diff --git a/imgui-sys/third-party/imgui-docking-freetype/cimgui.cpp b/imgui-sys/third-party/imgui-docking-freetype/cimgui.cpp index 57ba2aa..56709c1 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/cimgui.cpp +++ b/imgui-sys/third-party/imgui-docking-freetype/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api //docking branch @@ -66,6 +66,10 @@ CIMGUI_API ImGuiIO* igGetIO() { return &ImGui::GetIO(); } +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() +{ + return &ImGui::GetPlatformIO(); +} CIMGUI_API ImGuiStyle* igGetStyle() { return &ImGui::GetStyle(); @@ -98,9 +102,9 @@ CIMGUI_API void igShowDebugLogWindow(bool* p_open) { return ImGui::ShowDebugLogWindow(p_open); } -CIMGUI_API void igShowStackToolWindow(bool* p_open) +CIMGUI_API void igShowIDStackToolWindow(bool* p_open) { - return ImGui::ShowStackToolWindow(p_open); + return ImGui::ShowIDStackToolWindow(p_open); } CIMGUI_API void igShowAboutWindow(bool* p_open) { @@ -146,13 +150,13 @@ CIMGUI_API void igEnd() { return ImGui::End(); } -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(str_id,size,border,flags); + return ImGui::BeginChild(str_id,size,child_flags,window_flags); } -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(id,size,border,flags); + return ImGui::BeginChild(id,size,child_flags,window_flags); } CIMGUI_API void igEndChild() { @@ -274,22 +278,6 @@ CIMGUI_API void igSetWindowFocus_Str(const char* name) { return ImGui::SetWindowFocus(name); } -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionAvail(); -} -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionMax(); -} -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMin(); -} -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMax(); -} CIMGUI_API float igGetScrollX() { return ImGui::GetScrollX(); @@ -358,25 +346,25 @@ CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val) { return ImGui::PushStyleVar(idx,val); } +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x) +{ + return ImGui::PushStyleVarX(idx,val_x); +} +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y) +{ + return ImGui::PushStyleVarY(idx,val_y); +} CIMGUI_API void igPopStyleVar(int count) { return ImGui::PopStyleVar(count); } -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus) +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled) { - return ImGui::PushAllowKeyboardFocus(allow_keyboard_focus); + return ImGui::PushItemFlag(option,enabled); } -CIMGUI_API void igPopAllowKeyboardFocus() +CIMGUI_API void igPopItemFlag() { - return ImGui::PopAllowKeyboardFocus(); -} -CIMGUI_API void igPushButtonRepeat(bool repeat) -{ - return ImGui::PushButtonRepeat(repeat); -} -CIMGUI_API void igPopButtonRepeat() -{ - return ImGui::PopButtonRepeat(); + return ImGui::PopItemFlag(); } CIMGUI_API void igPushItemWidth(float item_width) { @@ -422,14 +410,54 @@ CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col) { return ImGui::GetColorU32(col); } -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col) +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul) { - return ImGui::GetColorU32(col); + return ImGui::GetColorU32(col,alpha_mul); } CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx) { return &ImGui::GetStyleColorVec4(idx); } +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorScreenPos(); +} +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) +{ + return ImGui::SetCursorScreenPos(pos); +} +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) +{ + *pOut = ImGui::GetContentRegionAvail(); +} +CIMGUI_API void igGetCursorPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorPos(); +} +CIMGUI_API float igGetCursorPosX() +{ + return ImGui::GetCursorPosX(); +} +CIMGUI_API float igGetCursorPosY() +{ + return ImGui::GetCursorPosY(); +} +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) +{ + return ImGui::SetCursorPos(local_pos); +} +CIMGUI_API void igSetCursorPosX(float local_x) +{ + return ImGui::SetCursorPosX(local_x); +} +CIMGUI_API void igSetCursorPosY(float local_y) +{ + return ImGui::SetCursorPosY(local_y); +} +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorStartPos(); +} CIMGUI_API void igSeparator() { return ImGui::Separator(); @@ -466,42 +494,6 @@ CIMGUI_API void igEndGroup() { return ImGui::EndGroup(); } -CIMGUI_API void igGetCursorPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorPos(); -} -CIMGUI_API float igGetCursorPosX() -{ - return ImGui::GetCursorPosX(); -} -CIMGUI_API float igGetCursorPosY() -{ - return ImGui::GetCursorPosY(); -} -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) -{ - return ImGui::SetCursorPos(local_pos); -} -CIMGUI_API void igSetCursorPosX(float local_x) -{ - return ImGui::SetCursorPosX(local_x); -} -CIMGUI_API void igSetCursorPosY(float local_y) -{ - return ImGui::SetCursorPosY(local_y); -} -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorStartPos(); -} -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorScreenPos(); -} -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) -{ - return ImGui::SetCursorScreenPos(pos); -} CIMGUI_API void igAlignTextToFramePadding() { return ImGui::AlignTextToFramePadding(); @@ -554,6 +546,10 @@ CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id) { return ImGui::GetID(ptr_id); } +CIMGUI_API ImGuiID igGetID_Int(int int_id) +{ + return ImGui::GetID(int_id); +} CIMGUI_API void igTextUnformatted(const char* text,const char* text_end) { return ImGui::TextUnformatted(text,text_end); @@ -624,6 +620,10 @@ CIMGUI_API void igBulletTextV(const char* fmt,va_list args) { return ImGui::BulletTextV(fmt,args); } +CIMGUI_API void igSeparatorText(const char* label) +{ + return ImGui::SeparatorText(label); +} CIMGUI_API bool igButton(const char* label,const ImVec2 size) { return ImGui::Button(label,size); @@ -668,13 +668,21 @@ CIMGUI_API void igBullet() { return ImGui::Bullet(); } -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +CIMGUI_API bool igTextLink(const char* label) { - return ImGui::Image(user_texture_id,size,uv0,uv1,tint_col,border_col); + return ImGui::TextLink(label); } -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url) { - return ImGui::ImageButton(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col); + return ImGui::TextLinkOpenURL(label,url); +} +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +{ + return ImGui::Image(user_texture_id,image_size,uv0,uv1,tint_col,border_col); +} +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +{ + return ImGui::ImageButton(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col); } CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags) { @@ -692,9 +700,9 @@ CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* item { return ImGui::Combo(label,current_item,items_separated_by_zeros,popup_max_height_in_items); } -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items) +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items) { - return ImGui::Combo(label,current_item,items_getter,data,items_count,popup_max_height_in_items); + return ImGui::Combo(label,current_item,getter,user_data,items_count,popup_max_height_in_items); } CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags) { @@ -964,6 +972,10 @@ CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond) { return ImGui::SetNextItemOpen(is_open,cond); } +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id) +{ + return ImGui::SetNextItemStorageID(storage_id); +} CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size) { return ImGui::Selectable(label,selected,flags,size); @@ -972,6 +984,22 @@ CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSel { return ImGui::Selectable(label,p_selected,flags,size); } +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count) +{ + return ImGui::BeginMultiSelect(flags,selection_size,items_count); +} +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect() +{ + return ImGui::EndMultiSelect(); +} +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data) +{ + return ImGui::SetNextItemSelectionUserData(selection_user_data); +} +CIMGUI_API bool igIsItemToggledSelection() +{ + return ImGui::IsItemToggledSelection(); +} CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size) { return ImGui::BeginListBox(label,size); @@ -984,9 +1012,9 @@ CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char { return ImGui::ListBox(label,current_item,items,items_count,height_in_items); } -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items) +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items) { - return ImGui::ListBox(label,current_item,items_getter,data,items_count,height_in_items); + return ImGui::ListBox(label,current_item,getter,user_data,items_count,height_in_items); } CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride) { @@ -1052,7 +1080,7 @@ CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* { return ImGui::MenuItem(label,shortcut,p_selected,enabled); } -CIMGUI_API void igBeginTooltip() +CIMGUI_API bool igBeginTooltip() { return ImGui::BeginTooltip(); } @@ -1071,6 +1099,21 @@ CIMGUI_API void igSetTooltipV(const char* fmt,va_list args) { return ImGui::SetTooltipV(fmt,args); } +CIMGUI_API bool igBeginItemTooltip() +{ + return ImGui::BeginItemTooltip(); +} +CIMGUI_API void igSetItemTooltip(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::SetItemTooltipV(fmt,args); + va_end(args); +} +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args) +{ + return ImGui::SetItemTooltipV(fmt,args); +} CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags) { return ImGui::BeginPopup(str_id,flags); @@ -1115,9 +1158,9 @@ CIMGUI_API bool igIsPopupOpen_Str(const char* str_id,ImGuiPopupFlags flags) { return ImGui::IsPopupOpen(str_id,flags); } -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) { - return ImGui::BeginTable(str_id,column,flags,outer_size,inner_width); + return ImGui::BeginTable(str_id,columns,flags,outer_size,inner_width); } CIMGUI_API void igEndTable() { @@ -1143,13 +1186,17 @@ CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows) { return ImGui::TableSetupScrollFreeze(cols,rows); } +CIMGUI_API void igTableHeader(const char* label) +{ + return ImGui::TableHeader(label); +} CIMGUI_API void igTableHeadersRow() { return ImGui::TableHeadersRow(); } -CIMGUI_API void igTableHeader(const char* label) +CIMGUI_API void igTableAngledHeadersRow() { - return ImGui::TableHeader(label); + return ImGui::TableAngledHeadersRow(); } CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs() { @@ -1179,13 +1226,17 @@ CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v) { return ImGui::TableSetColumnEnabled(column_n,v); } +CIMGUI_API int igTableGetHoveredColumn() +{ + return ImGui::TableGetHoveredColumn(); +} CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n) { return ImGui::TableSetBgColor(target,color,column_n); } -CIMGUI_API void igColumns(int count,const char* id,bool border) +CIMGUI_API void igColumns(int count,const char* id,bool borders) { - return ImGui::Columns(count,id,border); + return ImGui::Columns(count,id,borders); } CIMGUI_API void igNextColumn() { @@ -1239,13 +1290,13 @@ CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label) { return ImGui::SetTabItemClosed(tab_or_docked_window_label); } -CIMGUI_API ImGuiID igDockSpace(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) +CIMGUI_API ImGuiID igDockSpace(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) { - return ImGui::DockSpace(id,size,flags,window_class); + return ImGui::DockSpace(dockspace_id,size,flags,window_class); } -CIMGUI_API ImGuiID igDockSpaceOverViewport(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) +CIMGUI_API ImGuiID igDockSpaceOverViewport(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) { - return ImGui::DockSpaceOverViewport(viewport,flags,window_class); + return ImGui::DockSpaceOverViewport(dockspace_id,viewport,flags,window_class); } CIMGUI_API void igSetNextWindowDockID(ImGuiID dock_id,ImGuiCond cond) { @@ -1339,6 +1390,10 @@ CIMGUI_API void igSetKeyboardFocusHere(int offset) { return ImGui::SetKeyboardFocusHere(offset); } +CIMGUI_API void igSetNextItemAllowOverlap() +{ + return ImGui::SetNextItemAllowOverlap(); +} CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags) { return ImGui::IsItemHovered(flags); @@ -1407,23 +1462,11 @@ CIMGUI_API void igGetItemRectSize(ImVec2 *pOut) { *pOut = ImGui::GetItemRectSize(); } -CIMGUI_API void igSetItemAllowOverlap() -{ - return ImGui::SetItemAllowOverlap(); -} CIMGUI_API ImGuiViewport* igGetMainViewport() { return ImGui::GetMainViewport(); } -CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil() -{ - return ImGui::GetBackgroundDrawList(); -} -CIMGUI_API ImDrawList* igGetForegroundDrawList_Nil() -{ - return ImGui::GetForegroundDrawList(); -} -CIMGUI_API ImDrawList* igGetBackgroundDrawList_ViewportPtr(ImGuiViewport* viewport) +CIMGUI_API ImDrawList* igGetBackgroundDrawList(ImGuiViewport* viewport) { return ImGui::GetBackgroundDrawList(viewport); } @@ -1463,14 +1506,6 @@ CIMGUI_API ImGuiStorage* igGetStateStorage() { return ImGui::GetStateStorage(); } -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags) -{ - return ImGui::BeginChildFrame(id,size,flags); -} -CIMGUI_API void igEndChildFrame() -{ - return ImGui::EndChildFrame(); -} CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width) { *pOut = ImGui::CalcTextSize(text,text_end,hide_text_after_double_hash,wrap_width); @@ -1503,6 +1538,10 @@ CIMGUI_API bool igIsKeyReleased_Nil(ImGuiKey key) { return ImGui::IsKeyReleased(key); } +CIMGUI_API bool igIsKeyChordPressed_Nil(ImGuiKeyChord key_chord) +{ + return ImGui::IsKeyChordPressed(key_chord); +} CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate) { return ImGui::GetKeyPressedAmount(key,repeat_delay,rate); @@ -1515,6 +1554,18 @@ CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) { return ImGui::SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } +CIMGUI_API bool igShortcut_Nil(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::Shortcut(key_chord,flags); +} +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::SetNextItemShortcut(key_chord,flags); +} +CIMGUI_API void igSetItemKeyOwner_Nil(ImGuiKey key) +{ + return ImGui::SetItemKeyOwner(key); +} CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button) { return ImGui::IsMouseDown(button); @@ -1527,7 +1578,7 @@ CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button) { return ImGui::IsMouseReleased(button); } -CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button) +CIMGUI_API bool igIsMouseDoubleClicked_Nil(ImGuiMouseButton button) { return ImGui::IsMouseDoubleClicked(button); } @@ -1607,10 +1658,29 @@ CIMGUI_API void igDebugTextEncoding(const char* text) { return ImGui::DebugTextEncoding(text); } +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx) +{ + return ImGui::DebugFlashStyleColor(idx); +} +CIMGUI_API void igDebugStartItemPicker() +{ + return ImGui::DebugStartItemPicker(); +} CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx) { return ImGui::DebugCheckVersionAndDataLayout(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx); } +CIMGUI_API void igDebugLog(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::DebugLogV(fmt,args); + va_end(args); +} +CIMGUI_API void igDebugLogV(const char* fmt,va_list args) +{ + return ImGui::DebugLogV(fmt,args); +} CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data) { return ImGui::SetAllocatorFunctions(alloc_func,free_func,user_data); @@ -1627,10 +1697,6 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() -{ - return &ImGui::GetPlatformIO(); -} CIMGUI_API void igUpdatePlatformWindows() { return ImGui::UpdatePlatformWindows(); @@ -1651,6 +1717,22 @@ CIMGUI_API ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle) { return ImGui::FindViewportByPlatformHandle(platform_handle); } +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) +{ + return IM_NEW(ImGuiTableSortSpecs)(); +} +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) +{ + return IM_NEW(ImGuiTableColumnSortSpecs)(); +} +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); @@ -1679,9 +1761,13 @@ CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down) { return self->AddMouseButtonEvent(button,down); } -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y) +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y) { - return self->AddMouseWheelEvent(wh_x,wh_y); + return self->AddMouseWheelEvent(wheel_x,wheel_y); +} +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source) +{ + return self->AddMouseSourceEvent(source); } CIMGUI_API void ImGuiIO_AddMouseViewportEvent(ImGuiIO* self,ImGuiID id) { @@ -1711,14 +1797,18 @@ CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_event { return self->SetAppAcceptingEvents(accepting_events); } -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self) +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self) { - return self->ClearInputCharacters(); + return self->ClearEventsQueue(); } CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self) { return self->ClearInputKeys(); } +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self) +{ + return self->ClearInputMouse(); +} CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void) { return IM_NEW(ImGuiIO)(); @@ -1787,22 +1877,6 @@ CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self) { return self->IsDelivery(); } -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) -{ - return IM_NEW(ImGuiTableColumnSortSpecs)(); -} -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) -{ - IM_DELETE(self); -} -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) -{ - return IM_NEW(ImGuiTableSortSpecs)(); -} -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) -{ - IM_DELETE(self); -} CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void) { return IM_NEW(ImGuiOnceUponAFrame)(); @@ -1903,21 +1977,21 @@ CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,v { return self->appendfv(fmt,args); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_i); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self) { IM_DELETE(self); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_f); + return IM_NEW(ImGuiStoragePair)(_key,_val); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_p); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self) { @@ -1971,14 +2045,14 @@ CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void { return self->GetVoidPtrRef(key,default_val); } -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) -{ - return self->SetAllInt(val); -} CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self) { return self->BuildSortByKey(); } +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) +{ + return self->SetAllInt(val); +} CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void) { return IM_NEW(ImGuiListClipper)(); @@ -1999,9 +2073,17 @@ CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) { return self->Step(); } -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max) +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index) { - return self->ForceDisplayRangeByIndices(item_min,item_max); + return self->IncludeItemByIndex(item_index); +} +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end) +{ + return self->IncludeItemsByIndex(item_begin,item_end); +} +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index) +{ + return self->SeekCursorForItem(item_index); } CIMGUI_API ImColor* ImColor_ImColor_Nil(void) { @@ -2035,6 +2117,54 @@ CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a) { *pOut = ImColor::HSV(h,s,v,a); } +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void) +{ + return IM_NEW(ImGuiSelectionBasicStorage)(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id) +{ + return self->Contains(id); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self) +{ + return self->Clear(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r) +{ + return self->Swap(*r); +} +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected) +{ + return self->SetItemSelected(id,selected); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id) +{ + return self->GetNextSelectedItem(opaque_it,out_id); +} +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx) +{ + return self->GetStorageIdFromIndex(idx); +} +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void) +{ + return IM_NEW(ImGuiSelectionExternalStorage)(); +} +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void) { return IM_NEW(ImDrawCmd)(); @@ -2159,6 +2289,14 @@ CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,fl { return self->AddNgonFilled(center,radius,col,num_segments); } +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness) +{ + return self->AddEllipse(center,radius,col,rot,num_segments,thickness); +} +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments) +{ + return self->AddEllipseFilled(center,radius,col,rot,num_segments); +} CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end) { return self->AddText(pos,col,text_begin,text_end); @@ -2167,6 +2305,14 @@ CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,f { return self->AddText(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect); } +CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); +} +CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); +} CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness) { return self->AddPolyline(points,num_points,col,flags,thickness); @@ -2175,13 +2321,9 @@ CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* po { return self->AddConvexPolyFilled(points,num_points,col); } -CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col) { - return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); -} -CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) -{ - return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); + return self->AddConcavePolyFilled(points,num_points,col); } CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col) { @@ -2211,6 +2353,10 @@ CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col) { return self->PathFillConvex(col); } +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col) +{ + return self->PathFillConcave(col); +} CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness) { return self->PathStroke(col,flags,thickness); @@ -2223,6 +2369,10 @@ CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,fl { return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12); } +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments) +{ + return self->PathEllipticalArcTo(center,radius,rot,a_min,a_max,num_segments); +} CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments) { return self->PathBezierCubicCurveTo(p2,p3,p4,num_segments); @@ -2319,6 +2469,10 @@ CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self) { return self->_OnChangedVtxOffset(); } +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id) +{ + return self->_SetTextureID(texture_id); +} CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius) { return self->_CalcCircleAutoSegmentCount(radius); @@ -2343,6 +2497,10 @@ CIMGUI_API void ImDrawData_Clear(ImDrawData* self) { return self->Clear(); } +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list) +{ + return self->AddDrawList(draw_list); +} CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self) { return self->DeIndexAllBuffers(); @@ -2427,13 +2585,13 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* { return self->AddFontFromFileTTF(filename,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryTTF(font_data,font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryTTF(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges); } CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { @@ -2643,15 +2801,11 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self) { IM_DELETE(self); } -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key) -{ - return ImGui::GetKeyIndex(key); -} -CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImU32 seed) +CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed) { return ImHashData(data,data_size,seed); } -CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed) +CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed) { return ImHashStr(data,data_size,seed); } @@ -2699,18 +2853,10 @@ CIMGUI_API const char* igImStrchrRange(const char* str_begin,const char* str_end { return ImStrchrRange(str_begin,str_end,c); } -CIMGUI_API int igImStrlenW(const ImWchar* str) -{ - return ImStrlenW(str); -} CIMGUI_API const char* igImStreolRange(const char* str,const char* str_end) { return ImStreolRange(str,str_end); } -CIMGUI_API const ImWchar* igImStrbolW(const ImWchar* buf_mid_line,const ImWchar* buf_begin) -{ - return ImStrbolW(buf_mid_line,buf_begin); -} CIMGUI_API const char* igImStristr(const char* haystack,const char* haystack_end,const char* needle,const char* needle_end) { return ImStristr(haystack,haystack_end,needle,needle_end); @@ -2723,6 +2869,14 @@ CIMGUI_API const char* igImStrSkipBlank(const char* str) { return ImStrSkipBlank(str); } +CIMGUI_API int igImStrlenW(const ImWchar* str) +{ + return ImStrlenW(str); +} +CIMGUI_API const char* igImStrbol(const char* buf_mid_line,const char* buf_begin) +{ + return ImStrbol(buf_mid_line,buf_begin); +} CIMGUI_API char igImToUpper(char c) { return ImToUpper(c); @@ -2735,6 +2889,10 @@ CIMGUI_API bool igImCharIsBlankW(unsigned int c) { return ImCharIsBlankW(c); } +CIMGUI_API bool igImCharIsXdigitA(char c) +{ + return ImCharIsXdigitA(c); +} CIMGUI_API int igImFormatString(char* buf,size_t buf_size,const char* fmt,...) { va_list args; @@ -2810,6 +2968,14 @@ CIMGUI_API int igImTextCountUtf8BytesFromStr(const ImWchar* in_text,const ImWcha { return ImTextCountUtf8BytesFromStr(in_text,in_text_end); } +CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_text_curr) +{ + return ImTextFindPreviousUtf8Codepoint(in_text_start,in_text_curr); +} +CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end) +{ + return ImTextCountLines(in_text,in_text_end); +} CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode) { return ImFileOpen(filename,mode); @@ -2886,7 +3052,7 @@ CIMGUI_API void igImMax(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs) { *pOut = ImMax(lhs,rhs); } -CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx) +CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx) { *pOut = ImClamp(v,mn,mx); } @@ -2918,22 +3084,22 @@ CIMGUI_API float igImInvLength(const ImVec2 lhs,float fail_value) { return ImInvLength(lhs,fail_value); } +CIMGUI_API float igImTrunc_Float(float f) +{ + return ImTrunc(f); +} +CIMGUI_API void igImTrunc_Vec2(ImVec2 *pOut,const ImVec2 v) +{ + *pOut = ImTrunc(v); +} CIMGUI_API float igImFloor_Float(float f) { return ImFloor(f); } -CIMGUI_API float igImFloorSigned_Float(float f) -{ - return ImFloorSigned(f); -} CIMGUI_API void igImFloor_Vec2(ImVec2 *pOut,const ImVec2 v) { *pOut = ImFloor(v); } -CIMGUI_API void igImFloorSigned_Vec2(ImVec2 *pOut,const ImVec2 v) -{ - *pOut = ImFloorSigned(v); -} CIMGUI_API int igImModPositive(int a,int b) { return ImModPositive(a,b); @@ -2950,6 +3116,10 @@ CIMGUI_API float igImLinearSweep(float current,float target,float speed) { return ImLinearSweep(current,target,speed); } +CIMGUI_API float igImLinearRemapClamp(float s0,float s1,float d0,float d1,float x) +{ + return ImLinearRemapClamp(s0,s1,d0,d1,x); +} CIMGUI_API void igImMul(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs) { *pOut = ImMul(lhs,rhs); @@ -2998,9 +3168,9 @@ CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c) { return ImTriangleArea(a,b,c); } -CIMGUI_API ImGuiDir igImGetDirQuadrantFromDelta(float dx,float dy) +CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c) { - return ImGetDirQuadrantFromDelta(dx,dy); + return ImTriangleIsClockwise(a,b,c); } CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void) { @@ -3094,6 +3264,10 @@ CIMGUI_API bool ImRect_Contains_Rect(ImRect* self,const ImRect r) { return self->Contains(r); } +CIMGUI_API bool ImRect_ContainsWithPad(ImRect* self,const ImVec2 p,const ImVec2 pad) +{ + return self->ContainsWithPad(p,pad); +} CIMGUI_API bool ImRect_Overlaps(ImRect* self,const ImRect r) { return self->Overlaps(r); @@ -3146,6 +3320,14 @@ CIMGUI_API void ImRect_ToVec4(ImVec4 *pOut,ImRect* self) { *pOut = self->ToVec4(); } +CIMGUI_API size_t igImBitArrayGetStorageSizeInBytes(int bitcount) +{ + return ImBitArrayGetStorageSizeInBytes(bitcount); +} +CIMGUI_API void igImBitArrayClearAllBits(ImU32* arr,int bitcount) +{ + return ImBitArrayClearAllBits(arr,bitcount); +} CIMGUI_API bool igImBitArrayTestBit(const ImU32* arr,int n) { return ImBitArrayTestBit(arr,n); @@ -3202,6 +3384,10 @@ CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int { return self->append(base,old_size,new_size); } +CIMGUI_API ImGuiStoragePair* igImLowerBound(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key) +{ + return ImLowerBound(in_begin,in_end,key); +} CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void) { return IM_NEW(ImDrawListSharedData)(); @@ -3214,21 +3400,17 @@ CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSha { return self->SetCircleTessellationMaxError(max_error); } -CIMGUI_API void ImDrawDataBuilder_Clear(ImDrawDataBuilder* self) +CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void) { - return self->Clear(); + return IM_NEW(ImDrawDataBuilder)(); } -CIMGUI_API void ImDrawDataBuilder_ClearFreeMemory(ImDrawDataBuilder* self) +CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self) { - return self->ClearFreeMemory(); + IM_DELETE(self); } -CIMGUI_API int ImDrawDataBuilder_GetDrawListCount(ImDrawDataBuilder* self) +CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent) { - return self->GetDrawListCount(); -} -CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(ImDrawDataBuilder* self) -{ - return self->FlattenIntoSingleLayer(); + return self->GetVarPtr(parent); } CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v) { @@ -3274,9 +3456,21 @@ CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool { return self->CalcNextTotalWidth(update_offsets); } -CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(ImGuiContext* ctx) +CIMGUI_API ImGuiInputTextDeactivatedState* ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState(void) { - return IM_NEW(ImGuiInputTextState)(ctx); + return IM_NEW(ImGuiInputTextDeactivatedState)(); +} +CIMGUI_API void ImGuiInputTextDeactivatedState_destroy(ImGuiInputTextDeactivatedState* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiInputTextDeactivatedState_ClearFreeMemory(ImGuiInputTextDeactivatedState* self) +{ + return self->ClearFreeMemory(); +} +CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(void) +{ + return IM_NEW(ImGuiInputTextState)(); } CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self) { @@ -3290,18 +3484,14 @@ CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self) { return self->ClearFreeMemory(); } -CIMGUI_API int ImGuiInputTextState_GetUndoAvailCount(ImGuiInputTextState* self) -{ - return self->GetUndoAvailCount(); -} -CIMGUI_API int ImGuiInputTextState_GetRedoAvailCount(ImGuiInputTextState* self) -{ - return self->GetRedoAvailCount(); -} CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self,int key) { return self->OnKeyPressed(key); } +CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsigned int c) +{ + return self->OnCharPressed(c); +} CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self) { return self->CursorAnimReset(); @@ -3334,13 +3524,17 @@ CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self) { return self->SelectAll(); } -CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void) +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self) { - return IM_NEW(ImGuiPopupData)(); + return self->ReloadUserBufAndSelectAll(); } -CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self) +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self) { - IM_DELETE(self); + return self->ReloadUserBufAndKeepSelection(); +} +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self) +{ + return self->ReloadUserBufAndMoveToEnd(); } CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void) { @@ -3382,13 +3576,13 @@ CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self) { IM_DELETE(self); } -CIMGUI_API void ImGuiStackSizes_SetToCurrentState(ImGuiStackSizes* self) +CIMGUI_API void ImGuiStackSizes_SetToContextState(ImGuiStackSizes* self,ImGuiContext* ctx) { - return self->SetToCurrentState(); + return self->SetToContextState(ctx); } -CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self) +CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,ImGuiContext* ctx) { - return self->CompareWithCurrentState(); + return self->CompareWithContextState(ctx); } CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr) { @@ -3402,6 +3596,14 @@ CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index) { return IM_NEW(ImGuiPtrOrIndex)(index); } +CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void) +{ + return IM_NEW(ImGuiPopupData)(); +} +CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void) { return IM_NEW(ImGuiInputEvent)(); @@ -3470,6 +3672,18 @@ CIMGUI_API void ImGuiNavItemData_Clear(ImGuiNavItemData* self) { return self->Clear(); } +CIMGUI_API ImGuiTypingSelectState* ImGuiTypingSelectState_ImGuiTypingSelectState(void) +{ + return IM_NEW(ImGuiTypingSelectState)(); +} +CIMGUI_API void ImGuiTypingSelectState_destroy(ImGuiTypingSelectState* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiTypingSelectState_Clear(ImGuiTypingSelectState* self) +{ + return self->Clear(); +} CIMGUI_API ImGuiOldColumnData* ImGuiOldColumnData_ImGuiOldColumnData(void) { return IM_NEW(ImGuiOldColumnData)(); @@ -3486,6 +3700,38 @@ CIMGUI_API void ImGuiOldColumns_destroy(ImGuiOldColumns* self) { IM_DELETE(self); } +CIMGUI_API ImGuiBoxSelectState* ImGuiBoxSelectState_ImGuiBoxSelectState(void) +{ + return IM_NEW(ImGuiBoxSelectState)(); +} +CIMGUI_API void ImGuiBoxSelectState_destroy(ImGuiBoxSelectState* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiMultiSelectTempData* ImGuiMultiSelectTempData_ImGuiMultiSelectTempData(void) +{ + return IM_NEW(ImGuiMultiSelectTempData)(); +} +CIMGUI_API void ImGuiMultiSelectTempData_destroy(ImGuiMultiSelectTempData* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiMultiSelectTempData_Clear(ImGuiMultiSelectTempData* self) +{ + return self->Clear(); +} +CIMGUI_API void ImGuiMultiSelectTempData_ClearIO(ImGuiMultiSelectTempData* self) +{ + return self->ClearIO(); +} +CIMGUI_API ImGuiMultiSelectState* ImGuiMultiSelectState_ImGuiMultiSelectState(void) +{ + return IM_NEW(ImGuiMultiSelectState)(); +} +CIMGUI_API void ImGuiMultiSelectState_destroy(ImGuiMultiSelectState* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiDockNode* ImGuiDockNode_ImGuiDockNode(ImGuiID id) { return IM_NEW(ImGuiDockNode)(id); @@ -3562,13 +3808,13 @@ CIMGUI_API void ImGuiViewportP_ClearRequestFlags(ImGuiViewportP* self) { return self->ClearRequestFlags(); } -CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min) +CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min) { - *pOut = self->CalcWorkRectPos(off_min); + *pOut = self->CalcWorkRectPos(inset_min); } -CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max) +CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max) { - *pOut = self->CalcWorkRectSize(off_min,off_max); + *pOut = self->CalcWorkRectSize(inset_min,inset_max); } CIMGUI_API void ImGuiViewportP_UpdateWorkRect(ImGuiViewportP* self) { @@ -3606,11 +3852,11 @@ CIMGUI_API void ImGuiSettingsHandler_destroy(ImGuiSettingsHandler* self) { IM_DELETE(self); } -CIMGUI_API ImGuiMetricsConfig* ImGuiMetricsConfig_ImGuiMetricsConfig(void) +CIMGUI_API ImGuiDebugAllocInfo* ImGuiDebugAllocInfo_ImGuiDebugAllocInfo(void) { - return IM_NEW(ImGuiMetricsConfig)(); + return IM_NEW(ImGuiDebugAllocInfo)(); } -CIMGUI_API void ImGuiMetricsConfig_destroy(ImGuiMetricsConfig* self) +CIMGUI_API void ImGuiDebugAllocInfo_destroy(ImGuiDebugAllocInfo* self) { IM_DELETE(self); } @@ -3622,11 +3868,11 @@ CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self) { IM_DELETE(self); } -CIMGUI_API ImGuiStackTool* ImGuiStackTool_ImGuiStackTool(void) +CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void) { - return IM_NEW(ImGuiStackTool)(); + return IM_NEW(ImGuiIDStackTool)(); } -CIMGUI_API void ImGuiStackTool_destroy(ImGuiStackTool* self) +CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self) { IM_DELETE(self); } @@ -3666,6 +3912,10 @@ CIMGUI_API ImGuiID ImGuiWindow_GetID_Int(ImGuiWindow* self,int n) { return self->GetID(n); } +CIMGUI_API ImGuiID ImGuiWindow_GetIDFromPos(ImGuiWindow* self,const ImVec2 p_abs) +{ + return self->GetIDFromPos(p_abs); +} CIMGUI_API ImGuiID ImGuiWindow_GetIDFromRectangle(ImGuiWindow* self,const ImRect r_abs) { return self->GetIDFromRectangle(r_abs); @@ -3678,18 +3928,10 @@ CIMGUI_API float ImGuiWindow_CalcFontSize(ImGuiWindow* self) { return self->CalcFontSize(); } -CIMGUI_API float ImGuiWindow_TitleBarHeight(ImGuiWindow* self) -{ - return self->TitleBarHeight(); -} CIMGUI_API void ImGuiWindow_TitleBarRect(ImRect *pOut,ImGuiWindow* self) { *pOut = self->TitleBarRect(); } -CIMGUI_API float ImGuiWindow_MenuBarHeight(ImGuiWindow* self) -{ - return self->MenuBarHeight(); -} CIMGUI_API void ImGuiWindow_MenuBarRect(ImRect *pOut,ImGuiWindow* self) { *pOut = self->MenuBarRect(); @@ -3710,14 +3952,6 @@ CIMGUI_API void ImGuiTabBar_destroy(ImGuiTabBar* self) { IM_DELETE(self); } -CIMGUI_API int ImGuiTabBar_GetTabOrder(ImGuiTabBar* self,const ImGuiTabItem* tab) -{ - return self->GetTabOrder(tab); -} -CIMGUI_API const char* ImGuiTabBar_GetTabName(ImGuiTabBar* self,const ImGuiTabItem* tab) -{ - return self->GetTabName(tab); -} CIMGUI_API ImGuiTableColumn* ImGuiTableColumn_ImGuiTableColumn(void) { return IM_NEW(ImGuiTableColumn)(); @@ -3790,6 +4024,10 @@ CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindow { return ImGui::UpdateWindowParentAndRootLinks(window,flags,parent_window); } +CIMGUI_API void igUpdateWindowSkipRefresh(ImGuiWindow* window) +{ + return ImGui::UpdateWindowSkipRefresh(window); +} CIMGUI_API void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window) { *pOut = ImGui::CalcWindowNextAutoFitSize(window); @@ -3826,6 +4064,14 @@ CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,cons { return ImGui::SetWindowHitTestHole(window,pos,size); } +CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window) +{ + return ImGui::SetWindowHiddenAndSkipItemsForCurrentFrame(window); +} +CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window) +{ + return ImGui::SetWindowParentWindowForFocusRoute(window,parent_window); +} CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r) { *pOut = ImGui::WindowRectAbsToRel(window,r); @@ -3834,13 +4080,21 @@ CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRe { *pOut = ImGui::WindowRectRelToAbs(window,r); } -CIMGUI_API void igFocusWindow(ImGuiWindow* window) +CIMGUI_API void igWindowPosAbsToRel(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) { - return ImGui::FocusWindow(window); + *pOut = ImGui::WindowPosAbsToRel(window,p); } -CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window) +CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) { - return ImGui::FocusTopMostWindowUnderOne(under_this_window,ignore_window); + *pOut = ImGui::WindowPosRelToAbs(window,p); +} +CIMGUI_API void igFocusWindow(ImGuiWindow* window,ImGuiFocusRequestFlags flags) +{ + return ImGui::FocusWindow(window,flags); +} +CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags) +{ + return ImGui::FocusTopMostWindowUnderOne(under_this_window,ignore_window,filter_viewport,flags); } CIMGUI_API void igBringWindowToFocusFront(ImGuiWindow* window) { @@ -3866,6 +4120,10 @@ CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindo { return ImGui::FindBottomMostVisibleWindowWithinBeginStack(window); } +CIMGUI_API void igSetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags) +{ + return ImGui::SetNextWindowRefreshPolicy(flags); +} CIMGUI_API void igSetCurrentFont(ImFont* font) { return ImGui::SetCurrentFont(font); @@ -3878,6 +4136,10 @@ CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window) { return ImGui::GetForegroundDrawList(window); } +CIMGUI_API void igAddDrawListToDrawDataEx(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list) +{ + return ImGui::AddDrawListToDrawDataEx(draw_data,out_list,draw_list); +} CIMGUI_API void igInitialize() { return ImGui::Initialize(); @@ -3894,13 +4156,17 @@ CIMGUI_API void igUpdateHoveredWindowAndCaptureFlags() { return ImGui::UpdateHoveredWindowAndCaptureFlags(); } +CIMGUI_API void igFindHoveredWindowEx(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window) +{ + return ImGui::FindHoveredWindowEx(pos,find_first_and_in_any_viewport,out_hovered_window,out_hovered_window_under_moving_window); +} CIMGUI_API void igStartMouseMovingWindow(ImGuiWindow* window) { return ImGui::StartMouseMovingWindow(window); } -CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node) +CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock) { - return ImGui::StartMouseMovingWindowOrNode(window,node,undock_floating_node); + return ImGui::StartMouseMovingWindowOrNode(window,node,undock); } CIMGUI_API void igUpdateMouseMovingWindowNewFrame() { @@ -3922,9 +4188,9 @@ CIMGUI_API void igCallContextHooks(ImGuiContext* context,ImGuiContextHookType ty { return ImGui::CallContextHooks(context,type); } -CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos) +CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size) { - return ImGui::TranslateWindowsInViewport(viewport,old_pos,new_pos); + return ImGui::TranslateWindowsInViewport(viewport,old_pos,new_pos,old_size,new_size); } CIMGUI_API void igScaleWindowsInViewport(ImGuiViewportP* viewport,float scale) { @@ -3962,18 +4228,6 @@ CIMGUI_API void igClearIniSettings() { return ImGui::ClearIniSettings(); } -CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name) -{ - return ImGui::CreateNewWindowSettings(name); -} -CIMGUI_API ImGuiWindowSettings* igFindWindowSettings(ImGuiID id) -{ - return ImGui::FindWindowSettings(id); -} -CIMGUI_API ImGuiWindowSettings* igFindOrCreateWindowSettings(const char* name) -{ - return ImGui::FindOrCreateWindowSettings(name); -} CIMGUI_API void igAddSettingsHandler(const ImGuiSettingsHandler* handler) { return ImGui::AddSettingsHandler(handler); @@ -3986,6 +4240,22 @@ CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name) { return ImGui::FindSettingsHandler(type_name); } +CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name) +{ + return ImGui::CreateNewWindowSettings(name); +} +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByID(ImGuiID id) +{ + return ImGui::FindWindowSettingsByID(id); +} +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByWindow(ImGuiWindow* window) +{ + return ImGui::FindWindowSettingsByWindow(window); +} +CIMGUI_API void igClearWindowSettings(const char* name) +{ + return ImGui::ClearWindowSettings(name); +} CIMGUI_API void igLocalizeRegisterEntries(const ImGuiLocEntry* entries,int count) { return ImGui::LocalizeRegisterEntries(entries,count); @@ -4074,10 +4344,14 @@ CIMGUI_API void igPushOverrideID(ImGuiID id) { return ImGui::PushOverrideID(id); } -CIMGUI_API ImGuiID igGetIDWithSeed(const char* str_id_begin,const char* str_id_end,ImGuiID seed) +CIMGUI_API ImGuiID igGetIDWithSeed_Str(const char* str_id_begin,const char* str_id_end,ImGuiID seed) { return ImGui::GetIDWithSeed(str_id_begin,str_id_end,seed); } +CIMGUI_API ImGuiID igGetIDWithSeed_Int(int n,ImGuiID seed) +{ + return ImGui::GetIDWithSeed(n,seed); +} CIMGUI_API void igItemSize_Vec2(const ImVec2 size,float text_baseline_y) { return ImGui::ItemSize(size,text_baseline_y); @@ -4090,9 +4364,13 @@ CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiI { return ImGui::ItemAdd(bb,id,nav_bb,extra_flags); } -CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id) +CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags) { - return ImGui::ItemHoverable(bb,id); + return ImGui::ItemHoverable(bb,id,item_flags); +} +CIMGUI_API bool igIsWindowContentHoverable(ImGuiWindow* window,ImGuiHoveredFlags flags) +{ + return ImGui::IsWindowContentHoverable(window,flags); } CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id) { @@ -4114,25 +4392,21 @@ CIMGUI_API void igPushMultiItemsWidths(int components,float width_full) { return ImGui::PushMultiItemsWidths(components,width_full); } -CIMGUI_API bool igIsItemToggledSelection() -{ - return ImGui::IsItemToggledSelection(); -} -CIMGUI_API void igGetContentRegionMaxAbs(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionMaxAbs(); -} CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess) { return ImGui::ShrinkWidths(items,count,width_excess); } -CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled) +CIMGUI_API const ImGuiDataVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx) { - return ImGui::PushItemFlag(option,enabled); + return ImGui::GetStyleVarInfo(idx); } -CIMGUI_API void igPopItemFlag() +CIMGUI_API void igBeginDisabledOverrideReenable() { - return ImGui::PopItemFlag(); + return ImGui::BeginDisabledOverrideReenable(); +} +CIMGUI_API void igEndDisabledOverrideReenable() +{ + return ImGui::EndDisabledOverrideReenable(); } CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth) { @@ -4150,9 +4424,13 @@ CIMGUI_API void igLogSetNextTextDecoration(const char* prefix,const char* suffix { return ImGui::LogSetNextTextDecoration(prefix,suffix); } -CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChildEx(name,id,size_arg,border,flags); + return ImGui::BeginChildEx(name,id,size_arg,child_flags,window_flags); +} +CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags) +{ + return ImGui::BeginPopupEx(id,extra_window_flags); } CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags) { @@ -4174,14 +4452,6 @@ CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags) { return ImGui::IsPopupOpen(id,popup_flags); } -CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags) -{ - return ImGui::BeginPopupEx(id,extra_flags); -} -CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) -{ - return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); -} CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window) { *pOut = ImGui::GetPopupAllowedExtentRect(window); @@ -4194,6 +4464,10 @@ CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal() { return ImGui::GetTopMostAndVisiblePopupModal(); } +CIMGUI_API ImGuiWindow* igFindBlockingModal(ImGuiWindow* window) +{ + return ImGui::FindBlockingModal(window); +} CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window) { *pOut = ImGui::FindBestWindowPosForPopup(window); @@ -4202,6 +4476,14 @@ CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos, { *pOut = ImGui::FindBestWindowPosForPopupEx(ref_pos,size,last_dir,r_outer,r_avoid,policy); } +CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) +{ + return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); +} +CIMGUI_API bool igBeginTooltipHidden() +{ + return ImGui::BeginTooltipHidden(); +} CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags) { return ImGui::BeginViewportSideBar(name,viewport,dir,size,window_flags); @@ -4250,6 +4532,10 @@ CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result) { return ImGui::NavMoveRequestResolveWithLastItem(result); } +CIMGUI_API void igNavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data) +{ + return ImGui::NavMoveRequestResolveWithPastTreeNode(result,tree_node_data); +} CIMGUI_API void igNavMoveRequestCancel() { return ImGui::NavMoveRequestCancel(); @@ -4262,9 +4548,21 @@ CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlag { return ImGui::NavMoveRequestTryWrapping(window,move_flags); } -CIMGUI_API void igActivateItem(ImGuiID id) +CIMGUI_API void igNavHighlightActivated(ImGuiID id) { - return ImGui::ActivateItem(id); + return ImGui::NavHighlightActivated(id); +} +CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis) +{ + return ImGui::NavClearPreferredPosForAxis(axis); +} +CIMGUI_API void igNavRestoreHighlightAfterMove() +{ + return ImGui::NavRestoreHighlightAfterMove(); +} +CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX() +{ + return ImGui::NavUpdateCurrentWindowIsScrollPushableX(); } CIMGUI_API void igSetNavWindow(ImGuiWindow* window) { @@ -4274,13 +4572,25 @@ CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scop { return ImGui::SetNavID(id,nav_layer,focus_scope_id,rect_rel); } +CIMGUI_API void igSetNavFocusScope(ImGuiID focus_scope_id) +{ + return ImGui::SetNavFocusScope(focus_scope_id); +} +CIMGUI_API void igFocusItem() +{ + return ImGui::FocusItem(); +} +CIMGUI_API void igActivateItemByID(ImGuiID id) +{ + return ImGui::ActivateItemByID(id); +} CIMGUI_API bool igIsNamedKey(ImGuiKey key) { return ImGui::IsNamedKey(key); } -CIMGUI_API bool igIsNamedKeyOrModKey(ImGuiKey key) +CIMGUI_API bool igIsNamedKeyOrMod(ImGuiKey key) { - return ImGui::IsNamedKeyOrModKey(key); + return ImGui::IsNamedKeyOrMod(key); } CIMGUI_API bool igIsLegacyKey(ImGuiKey key) { @@ -4302,21 +4612,29 @@ CIMGUI_API bool igIsAliasKey(ImGuiKey key) { return ImGui::IsAliasKey(key); } -CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord) +CIMGUI_API bool igIsLRModKey(ImGuiKey key) { - return ImGui::ConvertShortcutMod(key_chord); + return ImGui::IsLRModKey(key); +} +CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiKeyChord key_chord) +{ + return ImGui::FixupKeyChord(key_chord); } CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key) { return ImGui::ConvertSingleModFlagToKey(key); } -CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key) +CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key) +{ + return ImGui::GetKeyData(ctx,key); +} +CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key) { return ImGui::GetKeyData(key); } -CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size) +CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord) { - return ImGui::GetKeyChordName(key_chord,out_buf,out_buf_size); + return ImGui::GetKeyChordName(key_chord); } CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button) { @@ -4342,6 +4660,10 @@ CIMGUI_API void igGetTypematicRepeatRate(ImGuiInputFlags flags,float* repeat_del { return ImGui::GetTypematicRepeatRate(flags,repeat_delay,repeat_rate); } +CIMGUI_API void igTeleportMousePos(const ImVec2 pos) +{ + return ImGui::TeleportMousePos(pos); +} CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys() { return ImGui::SetActiveIdUsingAllKeyboardKeys(); @@ -4358,7 +4680,11 @@ CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flag { return ImGui::SetKeyOwner(key,owner_id,flags); } -CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags) +CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::SetKeyOwnersForKeyChord(key,owner_id,flags); +} +CIMGUI_API void igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags) { return ImGui::SetItemKeyOwner(key,flags); } @@ -4366,41 +4692,49 @@ CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id) { return ImGui::TestKeyOwner(key,owner_id); } -CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key) +CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key) { - return ImGui::GetKeyOwnerData(key); + return ImGui::GetKeyOwnerData(ctx,key); } CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id) { return ImGui::IsKeyDown(key,owner_id); } -CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igIsKeyPressed_InputFlags(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id) { - return ImGui::IsKeyPressed(key,owner_id,flags); + return ImGui::IsKeyPressed(key,flags,owner_id); } CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id) { return ImGui::IsKeyReleased(key,owner_id); } +CIMGUI_API bool igIsKeyChordPressed_InputFlags(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id) +{ + return ImGui::IsKeyChordPressed(key_chord,flags,owner_id); +} CIMGUI_API bool igIsMouseDown_ID(ImGuiMouseButton button,ImGuiID owner_id) { return ImGui::IsMouseDown(button,owner_id); } -CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igIsMouseClicked_InputFlags(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id) { - return ImGui::IsMouseClicked(button,owner_id,flags); + return ImGui::IsMouseClicked(button,flags,owner_id); } CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id) { return ImGui::IsMouseReleased(button,owner_id); } -CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id) { - return ImGui::Shortcut(key_chord,owner_id,flags); + return ImGui::IsMouseDoubleClicked(button,owner_id); } -CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igShortcut_ID(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id) { - return ImGui::SetShortcutRouting(key_chord,owner_id,flags); + return ImGui::Shortcut(key_chord,flags,owner_id); +} +CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id) +{ + return ImGui::SetShortcutRouting(key_chord,flags,owner_id); } CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id) { @@ -4454,6 +4788,14 @@ CIMGUI_API void igDockContextQueueUndockNode(ImGuiContext* ctx,ImGuiDockNode* no { return ImGui::DockContextQueueUndockNode(ctx,node); } +CIMGUI_API void igDockContextProcessUndockWindow(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref) +{ + return ImGui::DockContextProcessUndockWindow(ctx,window,clear_persistent_docking_ref); +} +CIMGUI_API void igDockContextProcessUndockNode(ImGuiContext* ctx,ImGuiDockNode* node) +{ + return ImGui::DockContextProcessUndockNode(ctx,node); +} CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos) { return ImGui::DockContextCalcDropPosForDocking(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos); @@ -4462,6 +4804,10 @@ CIMGUI_API ImGuiDockNode* igDockContextFindNodeByID(ImGuiContext* ctx,ImGuiID id { return ImGui::DockContextFindNodeByID(ctx,id); } +CIMGUI_API void igDockNodeWindowMenuHandler_Default(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar) +{ + return ImGui::DockNodeWindowMenuHandler_Default(ctx,node,tab_bar); +} CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node) { return ImGui::DockNodeBeginAmendTabBar(node); @@ -4594,9 +4940,57 @@ CIMGUI_API bool igIsDragDropPayloadBeingAccepted() { return ImGui::IsDragDropPayloadBeingAccepted(); } -CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb) +CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb,const ImRect item_clip_rect) { - return ImGui::RenderDragDropTargetRect(bb); + return ImGui::RenderDragDropTargetRect(bb,item_clip_rect); +} +CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags) +{ + return ImGui::GetTypingSelectRequest(flags); +} +CIMGUI_API int igTypingSelectFindMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx) +{ + return ImGui::TypingSelectFindMatch(req,items_count,get_item_name_func,user_data,nav_item_idx); +} +CIMGUI_API int igTypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx) +{ + return ImGui::TypingSelectFindNextSingleCharMatch(req,items_count,get_item_name_func,user_data,nav_item_idx); +} +CIMGUI_API int igTypingSelectFindBestLeadingMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data) +{ + return ImGui::TypingSelectFindBestLeadingMatch(req,items_count,get_item_name_func,user_data); +} +CIMGUI_API bool igBeginBoxSelect(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags) +{ + return ImGui::BeginBoxSelect(scope_rect,window,box_select_id,ms_flags); +} +CIMGUI_API void igEndBoxSelect(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags) +{ + return ImGui::EndBoxSelect(scope_rect,ms_flags); +} +CIMGUI_API void igMultiSelectItemHeader(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags) +{ + return ImGui::MultiSelectItemHeader(id,p_selected,p_button_flags); +} +CIMGUI_API void igMultiSelectItemFooter(ImGuiID id,bool* p_selected,bool* p_pressed) +{ + return ImGui::MultiSelectItemFooter(id,p_selected,p_pressed); +} +CIMGUI_API void igMultiSelectAddSetAll(ImGuiMultiSelectTempData* ms,bool selected) +{ + return ImGui::MultiSelectAddSetAll(ms,selected); +} +CIMGUI_API void igMultiSelectAddSetRange(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item) +{ + return ImGui::MultiSelectAddSetRange(ms,selected,range_dir,first_item,last_item); +} +CIMGUI_API ImGuiBoxSelectState* igGetBoxSelectState(ImGuiID id) +{ + return ImGui::GetBoxSelectState(id); +} +CIMGUI_API ImGuiMultiSelectState* igGetMultiSelectState(ImGuiID id) +{ + return ImGui::GetMultiSelectState(id); } CIMGUI_API void igSetWindowClipRectBeforeSetChannel(ImGuiWindow* window,const ImRect clip_rect) { @@ -4650,14 +5044,18 @@ CIMGUI_API void igTableSetColumnSortDirection(int column_n,ImGuiSortDirection so { return ImGui::TableSetColumnSortDirection(column_n,sort_direction,append_to_sort_specs); } -CIMGUI_API int igTableGetHoveredColumn() +CIMGUI_API int igTableGetHoveredRow() { - return ImGui::TableGetHoveredColumn(); + return ImGui::TableGetHoveredRow(); } CIMGUI_API float igTableGetHeaderRowHeight() { return ImGui::TableGetHeaderRowHeight(); } +CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth() +{ + return ImGui::TableGetHeaderAngledMaxLabelWidth(); +} CIMGUI_API void igTablePushBackgroundChannel() { return ImGui::TablePushBackgroundChannel(); @@ -4666,6 +5064,10 @@ CIMGUI_API void igTablePopBackgroundChannel() { return ImGui::TablePopBackgroundChannel(); } +CIMGUI_API void igTableAngledHeadersRowEx(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count) +{ + return ImGui::TableAngledHeadersRowEx(row_id,angle,max_label_width,data,data_count); +} CIMGUI_API ImGuiTable* igGetCurrentTable() { return ImGui::GetCurrentTable(); @@ -4706,9 +5108,9 @@ CIMGUI_API void igTableDrawBorders(ImGuiTable* table) { return ImGui::TableDrawBorders(table); } -CIMGUI_API void igTableDrawContextMenu(ImGuiTable* table) +CIMGUI_API void igTableDrawDefaultContextMenu(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display) { - return ImGui::TableDrawContextMenu(table); + return ImGui::TableDrawDefaultContextMenu(table,flags_for_section_to_display); } CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table) { @@ -4722,6 +5124,10 @@ CIMGUI_API ImGuiTableInstanceData* igTableGetInstanceData(ImGuiTable* table,int { return ImGui::TableGetInstanceData(table,instance_no); } +CIMGUI_API ImGuiID igTableGetInstanceID(ImGuiTable* table,int instance_no) +{ + return ImGui::TableGetInstanceID(table,instance_no); +} CIMGUI_API void igTableSortSpecsSanitize(ImGuiTable* table) { return ImGui::TableSortSpecsSanitize(table); @@ -4766,13 +5172,13 @@ CIMGUI_API const char* igTableGetColumnName_TablePtr(const ImGuiTable* table,int { return ImGui::TableGetColumnName(table,column_n); } -CIMGUI_API ImGuiID igTableGetColumnResizeID(const ImGuiTable* table,int column_n,int instance_no) +CIMGUI_API ImGuiID igTableGetColumnResizeID(ImGuiTable* table,int column_n,int instance_no) { return ImGui::TableGetColumnResizeID(table,column_n,instance_no); } -CIMGUI_API float igTableGetMaxColumnWidth(const ImGuiTable* table,int column_n) +CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n) { - return ImGui::TableGetMaxColumnWidth(table,column_n); + return ImGui::TableCalcMaxColumnWidth(table,column_n); } CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n) { @@ -4826,18 +5232,38 @@ CIMGUI_API ImGuiTableSettings* igTableSettingsFindByID(ImGuiID id) { return ImGui::TableSettingsFindByID(id); } -CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node) +CIMGUI_API ImGuiTabBar* igGetCurrentTabBar() { - return ImGui::BeginTabBarEx(tab_bar,bb,flags,dock_node); + return ImGui::GetCurrentTabBar(); +} +CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags) +{ + return ImGui::BeginTabBarEx(tab_bar,bb,flags); } CIMGUI_API ImGuiTabItem* igTabBarFindTabByID(ImGuiTabBar* tab_bar,ImGuiID tab_id) { return ImGui::TabBarFindTabByID(tab_bar,tab_id); } +CIMGUI_API ImGuiTabItem* igTabBarFindTabByOrder(ImGuiTabBar* tab_bar,int order) +{ + return ImGui::TabBarFindTabByOrder(tab_bar,order); +} CIMGUI_API ImGuiTabItem* igTabBarFindMostRecentlySelectedTabForActiveWindow(ImGuiTabBar* tab_bar) { return ImGui::TabBarFindMostRecentlySelectedTabForActiveWindow(tab_bar); } +CIMGUI_API ImGuiTabItem* igTabBarGetCurrentTab(ImGuiTabBar* tab_bar) +{ + return ImGui::TabBarGetCurrentTab(tab_bar); +} +CIMGUI_API int igTabBarGetTabOrder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) +{ + return ImGui::TabBarGetTabOrder(tab_bar,tab); +} +CIMGUI_API const char* igTabBarGetTabName(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) +{ + return ImGui::TabBarGetTabName(tab_bar,tab); +} CIMGUI_API void igTabBarAddTab(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window) { return ImGui::TabBarAddTab(tab_bar,tab_flags,window); @@ -4850,11 +5276,15 @@ CIMGUI_API void igTabBarCloseTab(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) { return ImGui::TabBarCloseTab(tab_bar,tab); } -CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset) +CIMGUI_API void igTabBarQueueFocus(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) +{ + return ImGui::TabBarQueueFocus(tab_bar,tab); +} +CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset) { return ImGui::TabBarQueueReorder(tab_bar,tab,offset); } -CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos) +CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos) { return ImGui::TabBarQueueReorderFromMousePos(tab_bar,tab,mouse_pos); } @@ -4902,9 +5332,9 @@ CIMGUI_API void igRenderTextEllipsis(ImDrawList* draw_list,const ImVec2 pos_min, { return ImGui::RenderTextEllipsis(draw_list,pos_min,pos_max,clip_max_x,ellipsis_max_x,text,text_end,text_size_if_known); } -CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding) +CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding) { - return ImGui::RenderFrame(p_min,p_max,fill_col,border,rounding); + return ImGui::RenderFrame(p_min,p_max,fill_col,borders,rounding); } CIMGUI_API void igRenderFrameBorder(ImVec2 p_min,ImVec2 p_max,float rounding) { @@ -4970,13 +5400,17 @@ CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg, { return ImGui::ArrowButtonEx(str_id,dir,size_arg,flags); } -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags) { - return ImGui::ImageButtonEx(id,texture_id,size,uv0,uv1,bg_col,tint_col); + return ImGui::ImageButtonEx(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags); } -CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags) +CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags,float thickness) { - return ImGui::SeparatorEx(flags); + return ImGui::SeparatorEx(flags,thickness); +} +CIMGUI_API void igSeparatorTextEx(ImGuiID id,const char* label,const char* label_end,float extra_width) +{ + return ImGui::SeparatorTextEx(id,label,label_end,extra_width); } CIMGUI_API bool igCheckboxFlags_S64Ptr(const char* label,ImS64* flags,ImS64 flags_value) { @@ -5042,13 +5476,17 @@ CIMGUI_API void igTreePushOverrideID(ImGuiID id) { return ImGui::TreePushOverrideID(id); } -CIMGUI_API void igTreeNodeSetOpen(ImGuiID id,bool open) +CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id) { - return ImGui::TreeNodeSetOpen(id,open); + return ImGui::TreeNodeGetOpen(storage_id); } -CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID id,ImGuiTreeNodeFlags flags) +CIMGUI_API void igTreeNodeSetOpen(ImGuiID storage_id,bool open) { - return ImGui::TreeNodeUpdateNextOpen(id,flags); + return ImGui::TreeNodeSetOpen(storage_id,open); +} +CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID storage_id,ImGuiTreeNodeFlags flags) +{ + return ImGui::TreeNodeUpdateNextOpen(storage_id,flags); } CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type) { @@ -5062,9 +5500,9 @@ CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,co { return ImGui::DataTypeApplyOp(data_type,op,output,arg_1,arg_2); } -CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format) +CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty) { - return ImGui::DataTypeApplyFromText(buf,data_type,p_data,format); + return ImGui::DataTypeApplyFromText(buf,data_type,p_data,format,p_data_when_empty); } CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2) { @@ -5078,6 +5516,10 @@ CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int b { return ImGui::InputTextEx(label,hint,buf,buf_size,size_arg,flags,callback,user_data); } +CIMGUI_API void igInputTextDeactivateHook(ImGuiID id) +{ + return ImGui::InputTextDeactivateHook(id); +} CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags) { return ImGui::TempInputText(bb,id,label,buf,buf_size,flags); @@ -5094,6 +5536,10 @@ CIMGUI_API ImGuiInputTextState* igGetInputTextState(ImGuiID id) { return ImGui::GetInputTextState(id); } +CIMGUI_API void igSetNextItemRefVal(ImGuiDataType data_type,void* p_data) +{ + return ImGui::SetNextItemRefVal(data_type,p_data); +} CIMGUI_API void igColorTooltip(const char* text,const float* col,ImGuiColorEditFlags flags) { return ImGui::ColorTooltip(text,col,flags); @@ -5106,9 +5552,9 @@ CIMGUI_API void igColorPickerOptionsPopup(const float* ref_col,ImGuiColorEditFla { return ImGui::ColorPickerOptionsPopup(ref_col,flags); } -CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size) +CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg) { - return ImGui::PlotEx(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size); + return ImGui::PlotEx(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,size_arg); } CIMGUI_API void igShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,ImVec2 gradient_p0,ImVec2 gradient_p1,ImU32 col0,ImU32 col1) { @@ -5118,6 +5564,10 @@ CIMGUI_API void igShadeVertsLinearUV(ImDrawList* draw_list,int vert_start_idx,in { return ImGui::ShadeVertsLinearUV(draw_list,vert_start_idx,vert_end_idx,a,b,uv_a,uv_b,clamp); } +CIMGUI_API void igShadeVertsTransformPos(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out) +{ + return ImGui::ShadeVertsTransformPos(draw_list,vert_start_idx,vert_end_idx,pivot_in,cos_a,sin_a,pivot_out); +} CIMGUI_API void igGcCompactTransientMiscBuffers() { return ImGui::GcCompactTransientMiscBuffers(); @@ -5130,16 +5580,9 @@ CIMGUI_API void igGcAwakeTransientWindowBuffers(ImGuiWindow* window) { return ImGui::GcAwakeTransientWindowBuffers(window); } -CIMGUI_API void igDebugLog(const char* fmt,...) +CIMGUI_API void igDebugAllocHook(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size) { - va_list args; - va_start(args, fmt); - ImGui::DebugLogV(fmt,args); - va_end(args); -} -CIMGUI_API void igDebugLogV(const char* fmt,va_list args) -{ - return ImGui::DebugLogV(fmt,args); + return ImGui::DebugAllocHook(info,frame_count,ptr,size); } CIMGUI_API void igErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback,void* user_data) { @@ -5153,6 +5596,22 @@ CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries() { return ImGui::ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); } +CIMGUI_API void igDebugDrawCursorPos(ImU32 col) +{ + return ImGui::DebugDrawCursorPos(col); +} +CIMGUI_API void igDebugDrawLineExtents(ImU32 col) +{ + return ImGui::DebugDrawLineExtents(col); +} +CIMGUI_API void igDebugDrawItemRect(ImU32 col) +{ + return ImGui::DebugDrawItemRect(col); +} +CIMGUI_API void igDebugTextUnformattedWithLocateItem(const char* line_begin,const char* line_end) +{ + return ImGui::DebugTextUnformattedWithLocateItem(line_begin,line_end); +} CIMGUI_API void igDebugLocateItem(ImGuiID target_id) { return ImGui::DebugLocateItem(target_id); @@ -5165,13 +5624,17 @@ CIMGUI_API void igDebugLocateItemResolveWithLastItem() { return ImGui::DebugLocateItemResolveWithLastItem(); } -CIMGUI_API void igDebugDrawItemRect(ImU32 col) +CIMGUI_API void igDebugBreakClearData() { - return ImGui::DebugDrawItemRect(col); + return ImGui::DebugBreakClearData(); } -CIMGUI_API void igDebugStartItemPicker() +CIMGUI_API bool igDebugBreakButton(const char* label,const char* description_of_location) { - return ImGui::DebugStartItemPicker(); + return ImGui::DebugBreakButton(label,description_of_location); +} +CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* description_of_location) +{ + return ImGui::DebugBreakButtonTooltip(keyboard_only,description_of_location); } CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas) { @@ -5225,6 +5688,14 @@ CIMGUI_API void igDebugNodeInputTextState(ImGuiInputTextState* state) { return ImGui::DebugNodeInputTextState(state); } +CIMGUI_API void igDebugNodeTypingSelectState(ImGuiTypingSelectState* state) +{ + return ImGui::DebugNodeTypingSelectState(state); +} +CIMGUI_API void igDebugNodeMultiSelectState(ImGuiMultiSelectState* state) +{ + return ImGui::DebugNodeMultiSelectState(state); +} CIMGUI_API void igDebugNodeWindow(ImGuiWindow* window,const char* label) { return ImGui::DebugNodeWindow(window,label); @@ -5245,6 +5716,10 @@ CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport) { return ImGui::DebugNodeViewport(viewport); } +CIMGUI_API void igDebugNodePlatformMonitor(ImGuiPlatformMonitor* monitor,const char* label,int idx) +{ + return ImGui::DebugNodePlatformMonitor(monitor,label,idx); +} CIMGUI_API void igDebugRenderKeyboardPreview(ImDrawList* draw_list) { return ImGui::DebugRenderKeyboardPreview(draw_list); @@ -5253,9 +5728,9 @@ CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewpo { return ImGui::DebugRenderViewportThumbnail(draw_list,viewport,bb); } -CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat) +CIMGUI_API void igImFontAtlasUpdateConfigDataPointers(ImFontAtlas* atlas) { - return ImGui::IsKeyPressedMap(key,repeat); + return ImFontAtlasUpdateConfigDataPointers(atlas); } CIMGUI_API void igImFontAtlasBuildInit(ImFontAtlas* atlas) { @@ -5370,7 +5845,7 @@ CimguiStorage& GetCimguiStorage() ImGuiIO& io = ImGui::GetIO(); if (io.BackendLanguageUserData == NULL) { - io.BackendLanguageUserData = new CimguiStorage(); + io.BackendLanguageUserData = IM_NEW(CimguiStorage)(); } return *(CimguiStorage*)io.BackendLanguageUserData; diff --git a/imgui-sys/third-party/imgui-docking-freetype/cimgui.h b/imgui-sys/third-party/imgui-docking-freetype/cimgui.h index ec20b74..aea39b6 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/cimgui.h +++ b/imgui-sys/third-party/imgui-docking-freetype/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //with imgui_freetype.h api //docking branch @@ -61,13 +61,18 @@ typedef struct ImGuiIO ImGuiIO; typedef struct ImGuiInputTextCallbackData ImGuiInputTextCallbackData; typedef struct ImGuiKeyData ImGuiKeyData; typedef struct ImGuiListClipper ImGuiListClipper; +typedef struct ImGuiMultiSelectIO ImGuiMultiSelectIO; typedef struct ImGuiOnceUponAFrame ImGuiOnceUponAFrame; typedef struct ImGuiPayload ImGuiPayload; typedef struct ImGuiPlatformIO ImGuiPlatformIO; -typedef struct ImGuiPlatformMonitor ImGuiPlatformMonitor; typedef struct ImGuiPlatformImeData ImGuiPlatformImeData; +typedef struct ImGuiPlatformMonitor ImGuiPlatformMonitor; +typedef struct ImGuiSelectionBasicStorage ImGuiSelectionBasicStorage; +typedef struct ImGuiSelectionExternalStorage ImGuiSelectionExternalStorage; +typedef struct ImGuiSelectionRequest ImGuiSelectionRequest; typedef struct ImGuiSizeCallbackData ImGuiSizeCallbackData; typedef struct ImGuiStorage ImGuiStorage; +typedef struct ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiStyle ImGuiStyle; typedef struct ImGuiTableSortSpecs ImGuiTableSortSpecs; typedef struct ImGuiTableColumnSortSpecs ImGuiTableColumnSortSpecs; @@ -78,8 +83,10 @@ typedef struct ImGuiWindowClass ImGuiWindowClass; typedef struct ImBitVector ImBitVector; typedef struct ImRect ImRect; typedef struct ImDrawDataBuilder ImDrawDataBuilder; +typedef struct ImGuiBoxSelectState ImGuiBoxSelectState; typedef struct ImGuiColorMod ImGuiColorMod; typedef struct ImGuiContextHook ImGuiContextHook; +typedef struct ImGuiDataVarInfo ImGuiDataVarInfo; typedef struct ImGuiDataTypeInfo ImGuiDataTypeInfo; typedef struct ImGuiDockContext ImGuiDockContext; typedef struct ImGuiDockRequest ImGuiDockRequest; @@ -87,9 +94,12 @@ typedef struct ImGuiDockNode ImGuiDockNode; typedef struct ImGuiDockNodeSettings ImGuiDockNodeSettings; typedef struct ImGuiGroupData ImGuiGroupData; typedef struct ImGuiInputTextState ImGuiInputTextState; +typedef struct ImGuiInputTextDeactivateData ImGuiInputTextDeactivateData; typedef struct ImGuiLastItemData ImGuiLastItemData; typedef struct ImGuiLocEntry ImGuiLocEntry; typedef struct ImGuiMenuColumns ImGuiMenuColumns; +typedef struct ImGuiMultiSelectState ImGuiMultiSelectState; +typedef struct ImGuiMultiSelectTempData ImGuiMultiSelectTempData; typedef struct ImGuiNavItemData ImGuiNavItemData; typedef struct ImGuiMetricsConfig ImGuiMetricsConfig; typedef struct ImGuiNextWindowData ImGuiNextWindowData; @@ -103,16 +113,31 @@ typedef struct ImGuiStyleMod ImGuiStyleMod; typedef struct ImGuiTabBar ImGuiTabBar; typedef struct ImGuiTabItem ImGuiTabItem; typedef struct ImGuiTable ImGuiTable; +typedef struct ImGuiTableHeaderData ImGuiTableHeaderData; typedef struct ImGuiTableColumn ImGuiTableColumn; typedef struct ImGuiTableInstanceData ImGuiTableInstanceData; typedef struct ImGuiTableTempData ImGuiTableTempData; typedef struct ImGuiTableSettings ImGuiTableSettings; typedef struct ImGuiTableColumnsSettings ImGuiTableColumnsSettings; +typedef struct ImGuiTreeNodeStackData ImGuiTreeNodeStackData; +typedef struct ImGuiTypingSelectState ImGuiTypingSelectState; +typedef struct ImGuiTypingSelectRequest ImGuiTypingSelectRequest; typedef struct ImGuiWindow ImGuiWindow; +typedef struct ImGuiWindowDockStyle ImGuiWindowDockStyle; typedef struct ImGuiWindowTempData ImGuiWindowTempData; typedef struct ImGuiWindowSettings ImGuiWindowSettings; +typedef struct STB_TexteditState STB_TexteditState; typedef struct ImVector_const_charPtr {int Size;int Capacity;const char** Data;} ImVector_const_charPtr; +typedef unsigned int ImGuiID; +typedef signed char ImS8; +typedef unsigned char ImU8; +typedef signed short ImS16; +typedef unsigned short ImU16; +typedef signed int ImS32; +typedef unsigned int ImU32; +typedef signed long long ImS64; +typedef unsigned long long ImU64; struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -132,13 +157,18 @@ struct ImGuiIO; struct ImGuiInputTextCallbackData; struct ImGuiKeyData; struct ImGuiListClipper; +struct ImGuiMultiSelectIO; struct ImGuiOnceUponAFrame; struct ImGuiPayload; struct ImGuiPlatformIO; -struct ImGuiPlatformMonitor; struct ImGuiPlatformImeData; +struct ImGuiPlatformMonitor; +struct ImGuiSelectionBasicStorage; +struct ImGuiSelectionExternalStorage; +struct ImGuiSelectionRequest; struct ImGuiSizeCallbackData; struct ImGuiStorage; +struct ImGuiStoragePair; struct ImGuiStyle; struct ImGuiTableSortSpecs; struct ImGuiTableColumnSortSpecs; @@ -149,10 +179,8 @@ struct ImGuiWindowClass; typedef int ImGuiCol; typedef int ImGuiCond; typedef int ImGuiDataType; -typedef int ImGuiDir; typedef int ImGuiMouseButton; typedef int ImGuiMouseCursor; -typedef int ImGuiSortDirection; typedef int ImGuiStyleVar; typedef int ImGuiTableBgTarget; typedef int ImDrawFlags; @@ -160,6 +188,7 @@ typedef int ImDrawListFlags; typedef int ImFontAtlasFlags; typedef int ImGuiBackendFlags; typedef int ImGuiButtonFlags; +typedef int ImGuiChildFlags; typedef int ImGuiColorEditFlags; typedef int ImGuiConfigFlags; typedef int ImGuiComboFlags; @@ -167,9 +196,12 @@ typedef int ImGuiDockNodeFlags; typedef int ImGuiDragDropFlags; typedef int ImGuiFocusedFlags; typedef int ImGuiHoveredFlags; +typedef int ImGuiInputFlags; typedef int ImGuiInputTextFlags; +typedef int ImGuiItemFlags; typedef int ImGuiKeyChord; typedef int ImGuiPopupFlags; +typedef int ImGuiMultiSelectFlags; typedef int ImGuiSelectableFlags; typedef int ImGuiSliderFlags; typedef int ImGuiTabBarFlags; @@ -182,18 +214,10 @@ typedef int ImGuiViewportFlags; typedef int ImGuiWindowFlags; typedef void* ImTextureID; typedef unsigned short ImDrawIdx; -typedef unsigned int ImGuiID; -typedef signed char ImS8; -typedef unsigned char ImU8; -typedef signed short ImS16; -typedef unsigned short ImU16; -typedef signed int ImS32; -typedef unsigned int ImU32; -typedef signed long long ImS64; -typedef unsigned long long ImU64; -typedef unsigned short ImWchar16; typedef unsigned int ImWchar32; +typedef unsigned short ImWchar16; typedef ImWchar32 ImWchar; +typedef ImS64 ImGuiSelectionUserData; typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData* data); typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data); typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); @@ -226,15 +250,13 @@ typedef enum { ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, - ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 16, - ImGuiWindowFlags_NoNavInputs = 1 << 18, - ImGuiWindowFlags_NoNavFocus = 1 << 19, - ImGuiWindowFlags_UnsavedDocument = 1 << 20, - ImGuiWindowFlags_NoDocking = 1 << 21, + ImGuiWindowFlags_NoNavInputs = 1 << 16, + ImGuiWindowFlags_NoNavFocus = 1 << 17, + ImGuiWindowFlags_UnsavedDocument = 1 << 18, + ImGuiWindowFlags_NoDocking = 1 << 19, ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, - ImGuiWindowFlags_NavFlattened = 1 << 23, ImGuiWindowFlags_ChildWindow = 1 << 24, ImGuiWindowFlags_Tooltip = 1 << 25, ImGuiWindowFlags_Popup = 1 << 26, @@ -242,35 +264,58 @@ typedef enum { ImGuiWindowFlags_ChildMenu = 1 << 28, ImGuiWindowFlags_DockNodeHost = 1 << 29, }ImGuiWindowFlags_; +typedef enum { + ImGuiChildFlags_None = 0, + ImGuiChildFlags_Borders = 1 << 0, + ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, + ImGuiChildFlags_ResizeX = 1 << 2, + ImGuiChildFlags_ResizeY = 1 << 3, + ImGuiChildFlags_AutoResizeX = 1 << 4, + ImGuiChildFlags_AutoResizeY = 1 << 5, + ImGuiChildFlags_AlwaysAutoResize = 1 << 6, + ImGuiChildFlags_FrameStyle = 1 << 7, + ImGuiChildFlags_NavFlattened = 1 << 8, +}ImGuiChildFlags_; +typedef enum { + ImGuiItemFlags_None = 0, + ImGuiItemFlags_NoTabStop = 1 << 0, + ImGuiItemFlags_NoNav = 1 << 1, + ImGuiItemFlags_NoNavDefaultFocus = 1 << 2, + ImGuiItemFlags_ButtonRepeat = 1 << 3, + ImGuiItemFlags_AutoClosePopups = 1 << 4, + ImGuiItemFlags_AllowDuplicateId = 1 << 5, +}ImGuiItemFlags_; typedef enum { ImGuiInputTextFlags_None = 0, ImGuiInputTextFlags_CharsDecimal = 1 << 0, ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, - ImGuiInputTextFlags_CharsUppercase = 1 << 2, - ImGuiInputTextFlags_CharsNoBlank = 1 << 3, - ImGuiInputTextFlags_AutoSelectAll = 1 << 4, - ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, - ImGuiInputTextFlags_CallbackCompletion = 1 << 6, - ImGuiInputTextFlags_CallbackHistory = 1 << 7, - ImGuiInputTextFlags_CallbackAlways = 1 << 8, - ImGuiInputTextFlags_CallbackCharFilter = 1 << 9, - ImGuiInputTextFlags_AllowTabInput = 1 << 10, - ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 11, - ImGuiInputTextFlags_NoHorizontalScroll = 1 << 12, - ImGuiInputTextFlags_AlwaysOverwrite = 1 << 13, - ImGuiInputTextFlags_ReadOnly = 1 << 14, - ImGuiInputTextFlags_Password = 1 << 15, + ImGuiInputTextFlags_CharsScientific = 1 << 2, + ImGuiInputTextFlags_CharsUppercase = 1 << 3, + ImGuiInputTextFlags_CharsNoBlank = 1 << 4, + ImGuiInputTextFlags_AllowTabInput = 1 << 5, + ImGuiInputTextFlags_EnterReturnsTrue = 1 << 6, + ImGuiInputTextFlags_EscapeClearsAll = 1 << 7, + ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 8, + ImGuiInputTextFlags_ReadOnly = 1 << 9, + ImGuiInputTextFlags_Password = 1 << 10, + ImGuiInputTextFlags_AlwaysOverwrite = 1 << 11, + ImGuiInputTextFlags_AutoSelectAll = 1 << 12, + ImGuiInputTextFlags_ParseEmptyRefVal = 1 << 13, + ImGuiInputTextFlags_DisplayEmptyRefVal = 1 << 14, + ImGuiInputTextFlags_NoHorizontalScroll = 1 << 15, ImGuiInputTextFlags_NoUndoRedo = 1 << 16, - ImGuiInputTextFlags_CharsScientific = 1 << 17, - ImGuiInputTextFlags_CallbackResize = 1 << 18, - ImGuiInputTextFlags_CallbackEdit = 1 << 19, - ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, + ImGuiInputTextFlags_CallbackCompletion = 1 << 17, + ImGuiInputTextFlags_CallbackHistory = 1 << 18, + ImGuiInputTextFlags_CallbackAlways = 1 << 19, + ImGuiInputTextFlags_CallbackCharFilter = 1 << 20, + ImGuiInputTextFlags_CallbackResize = 1 << 21, + ImGuiInputTextFlags_CallbackEdit = 1 << 22, }ImGuiInputTextFlags_; typedef enum { ImGuiTreeNodeFlags_None = 0, ImGuiTreeNodeFlags_Selected = 1 << 0, ImGuiTreeNodeFlags_Framed = 1 << 1, - ImGuiTreeNodeFlags_AllowItemOverlap = 1 << 2, + ImGuiTreeNodeFlags_AllowOverlap = 1 << 2, ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, @@ -281,7 +326,9 @@ typedef enum { ImGuiTreeNodeFlags_FramePadding = 1 << 10, ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, - ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, + ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13, + ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, + ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15, ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, }ImGuiTreeNodeFlags_; typedef enum { @@ -291,19 +338,21 @@ typedef enum { ImGuiPopupFlags_MouseButtonMiddle = 2, ImGuiPopupFlags_MouseButtonMask_ = 0x1F, ImGuiPopupFlags_MouseButtonDefault_ = 1, - ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5, - ImGuiPopupFlags_NoOpenOverItems = 1 << 6, - ImGuiPopupFlags_AnyPopupId = 1 << 7, - ImGuiPopupFlags_AnyPopupLevel = 1 << 8, + ImGuiPopupFlags_NoReopen = 1 << 5, + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7, + ImGuiPopupFlags_NoOpenOverItems = 1 << 8, + ImGuiPopupFlags_AnyPopupId = 1 << 10, + ImGuiPopupFlags_AnyPopupLevel = 1 << 11, ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, }ImGuiPopupFlags_; typedef enum { ImGuiSelectableFlags_None = 0, - ImGuiSelectableFlags_DontClosePopups = 1 << 0, + ImGuiSelectableFlags_NoAutoClosePopups = 1 << 0, ImGuiSelectableFlags_SpanAllColumns = 1 << 1, ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, ImGuiSelectableFlags_Disabled = 1 << 3, - ImGuiSelectableFlags_AllowItemOverlap = 1 << 4, + ImGuiSelectableFlags_AllowOverlap = 1 << 4, + ImGuiSelectableFlags_Highlight = 1 << 5, }ImGuiSelectableFlags_; typedef enum { ImGuiComboFlags_None = 0, @@ -314,6 +363,7 @@ typedef enum { ImGuiComboFlags_HeightLargest = 1 << 4, ImGuiComboFlags_NoArrowButton = 1 << 5, ImGuiComboFlags_NoPreview = 1 << 6, + ImGuiComboFlags_WidthFitPreview = 1 << 7, ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, }ImGuiComboFlags_; typedef enum { @@ -324,8 +374,9 @@ typedef enum { ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, - ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, - ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, + ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6, + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7, + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8, ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, }ImGuiTabBarFlags_; @@ -339,84 +390,8 @@ typedef enum { ImGuiTabItemFlags_NoReorder = 1 << 5, ImGuiTabItemFlags_Leading = 1 << 6, ImGuiTabItemFlags_Trailing = 1 << 7, + ImGuiTabItemFlags_NoAssumedClosure = 1 << 8, }ImGuiTabItemFlags_; -typedef enum { - ImGuiTableFlags_None = 0, - ImGuiTableFlags_Resizable = 1 << 0, - ImGuiTableFlags_Reorderable = 1 << 1, - ImGuiTableFlags_Hideable = 1 << 2, - ImGuiTableFlags_Sortable = 1 << 3, - ImGuiTableFlags_NoSavedSettings = 1 << 4, - ImGuiTableFlags_ContextMenuInBody = 1 << 5, - ImGuiTableFlags_RowBg = 1 << 6, - ImGuiTableFlags_BordersInnerH = 1 << 7, - ImGuiTableFlags_BordersOuterH = 1 << 8, - ImGuiTableFlags_BordersInnerV = 1 << 9, - ImGuiTableFlags_BordersOuterV = 1 << 10, - ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, - ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, - ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, - ImGuiTableFlags_NoBordersInBody = 1 << 11, - ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, - ImGuiTableFlags_SizingFixedFit = 1 << 13, - ImGuiTableFlags_SizingFixedSame = 2 << 13, - ImGuiTableFlags_SizingStretchProp = 3 << 13, - ImGuiTableFlags_SizingStretchSame = 4 << 13, - ImGuiTableFlags_NoHostExtendX = 1 << 16, - ImGuiTableFlags_NoHostExtendY = 1 << 17, - ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, - ImGuiTableFlags_PreciseWidths = 1 << 19, - ImGuiTableFlags_NoClip = 1 << 20, - ImGuiTableFlags_PadOuterX = 1 << 21, - ImGuiTableFlags_NoPadOuterX = 1 << 22, - ImGuiTableFlags_NoPadInnerX = 1 << 23, - ImGuiTableFlags_ScrollX = 1 << 24, - ImGuiTableFlags_ScrollY = 1 << 25, - ImGuiTableFlags_SortMulti = 1 << 26, - ImGuiTableFlags_SortTristate = 1 << 27, - ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, -}ImGuiTableFlags_; -typedef enum { - ImGuiTableColumnFlags_None = 0, - ImGuiTableColumnFlags_Disabled = 1 << 0, - ImGuiTableColumnFlags_DefaultHide = 1 << 1, - ImGuiTableColumnFlags_DefaultSort = 1 << 2, - ImGuiTableColumnFlags_WidthStretch = 1 << 3, - ImGuiTableColumnFlags_WidthFixed = 1 << 4, - ImGuiTableColumnFlags_NoResize = 1 << 5, - ImGuiTableColumnFlags_NoReorder = 1 << 6, - ImGuiTableColumnFlags_NoHide = 1 << 7, - ImGuiTableColumnFlags_NoClip = 1 << 8, - ImGuiTableColumnFlags_NoSort = 1 << 9, - ImGuiTableColumnFlags_NoSortAscending = 1 << 10, - ImGuiTableColumnFlags_NoSortDescending = 1 << 11, - ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, - ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, - ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, - ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, - ImGuiTableColumnFlags_IndentEnable = 1 << 16, - ImGuiTableColumnFlags_IndentDisable = 1 << 17, - ImGuiTableColumnFlags_IsEnabled = 1 << 24, - ImGuiTableColumnFlags_IsVisible = 1 << 25, - ImGuiTableColumnFlags_IsSorted = 1 << 26, - ImGuiTableColumnFlags_IsHovered = 1 << 27, - ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, - ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, - ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, - ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, -}ImGuiTableColumnFlags_; -typedef enum { - ImGuiTableRowFlags_None = 0, - ImGuiTableRowFlags_Headers = 1 << 0, -}ImGuiTableRowFlags_; -typedef enum { - ImGuiTableBgTarget_None = 0, - ImGuiTableBgTarget_RowBg0 = 1, - ImGuiTableBgTarget_RowBg1 = 2, - ImGuiTableBgTarget_CellBg = 3, -}ImGuiTableBgTarget_; typedef enum { ImGuiFocusedFlags_None = 0, ImGuiFocusedFlags_ChildWindows = 1 << 0, @@ -435,23 +410,29 @@ typedef enum { ImGuiHoveredFlags_DockHierarchy = 1 << 4, ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 5, ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 7, - ImGuiHoveredFlags_AllowWhenOverlapped = 1 << 8, - ImGuiHoveredFlags_AllowWhenDisabled = 1 << 9, - ImGuiHoveredFlags_NoNavOverride = 1 << 10, + ImGuiHoveredFlags_AllowWhenOverlappedByItem = 1 << 8, + ImGuiHoveredFlags_AllowWhenOverlappedByWindow = 1 << 9, + ImGuiHoveredFlags_AllowWhenDisabled = 1 << 10, + ImGuiHoveredFlags_NoNavOverride = 1 << 11, + ImGuiHoveredFlags_AllowWhenOverlapped = ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow, ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, - ImGuiHoveredFlags_DelayNormal = 1 << 11, - ImGuiHoveredFlags_DelayShort = 1 << 12, - ImGuiHoveredFlags_NoSharedDelay = 1 << 13, + ImGuiHoveredFlags_ForTooltip = 1 << 12, + ImGuiHoveredFlags_Stationary = 1 << 13, + ImGuiHoveredFlags_DelayNone = 1 << 14, + ImGuiHoveredFlags_DelayShort = 1 << 15, + ImGuiHoveredFlags_DelayNormal = 1 << 16, + ImGuiHoveredFlags_NoSharedDelay = 1 << 17, }ImGuiHoveredFlags_; typedef enum { ImGuiDockNodeFlags_None = 0, ImGuiDockNodeFlags_KeepAliveOnly = 1 << 0, - ImGuiDockNodeFlags_NoDockingInCentralNode = 1 << 2, + ImGuiDockNodeFlags_NoDockingOverCentralNode = 1 << 2, ImGuiDockNodeFlags_PassthruCentralNode = 1 << 3, - ImGuiDockNodeFlags_NoSplit = 1 << 4, + ImGuiDockNodeFlags_NoDockingSplit = 1 << 4, ImGuiDockNodeFlags_NoResize = 1 << 5, ImGuiDockNodeFlags_AutoHideTabBar = 1 << 6, + ImGuiDockNodeFlags_NoUndocking = 1 << 7, }ImGuiDockNodeFlags_; typedef enum { ImGuiDragDropFlags_None = 0, @@ -460,7 +441,9 @@ typedef enum { ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, ImGuiDragDropFlags_SourceExtern = 1 << 4, - ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, + ImGuiDragDropFlags_PayloadAutoExpire = 1 << 5, + ImGuiDragDropFlags_PayloadNoCrossContext = 1 << 6, + ImGuiDragDropFlags_PayloadNoCrossProcess = 1 << 7, ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, @@ -477,21 +460,22 @@ typedef enum { ImGuiDataType_U64, ImGuiDataType_Float, ImGuiDataType_Double, + ImGuiDataType_Bool, ImGuiDataType_COUNT }ImGuiDataType_; typedef enum { - ImGuiDir_None = -1, - ImGuiDir_Left = 0, - ImGuiDir_Right = 1, - ImGuiDir_Up = 2, - ImGuiDir_Down = 3, - ImGuiDir_COUNT -}ImGuiDir_; +ImGuiDir_None=-1, +ImGuiDir_Left=0, +ImGuiDir_Right=1, +ImGuiDir_Up=2, +ImGuiDir_Down=3, +ImGuiDir_COUNT=4, +}ImGuiDir; typedef enum { - ImGuiSortDirection_None = 0, - ImGuiSortDirection_Ascending = 1, - ImGuiSortDirection_Descending = 2 -}ImGuiSortDirection_; +ImGuiSortDirection_None=0, +ImGuiSortDirection_Ascending=1, +ImGuiSortDirection_Descending=2, +}ImGuiSortDirection; typedef enum { ImGuiKey_None=0, ImGuiKey_Tab=512, @@ -566,93 +550,114 @@ ImGuiKey_F9=580, ImGuiKey_F10=581, ImGuiKey_F11=582, ImGuiKey_F12=583, -ImGuiKey_Apostrophe=584, -ImGuiKey_Comma=585, -ImGuiKey_Minus=586, -ImGuiKey_Period=587, -ImGuiKey_Slash=588, -ImGuiKey_Semicolon=589, -ImGuiKey_Equal=590, -ImGuiKey_LeftBracket=591, -ImGuiKey_Backslash=592, -ImGuiKey_RightBracket=593, -ImGuiKey_GraveAccent=594, -ImGuiKey_CapsLock=595, -ImGuiKey_ScrollLock=596, -ImGuiKey_NumLock=597, -ImGuiKey_PrintScreen=598, -ImGuiKey_Pause=599, -ImGuiKey_Keypad0=600, -ImGuiKey_Keypad1=601, -ImGuiKey_Keypad2=602, -ImGuiKey_Keypad3=603, -ImGuiKey_Keypad4=604, -ImGuiKey_Keypad5=605, -ImGuiKey_Keypad6=606, -ImGuiKey_Keypad7=607, -ImGuiKey_Keypad8=608, -ImGuiKey_Keypad9=609, -ImGuiKey_KeypadDecimal=610, -ImGuiKey_KeypadDivide=611, -ImGuiKey_KeypadMultiply=612, -ImGuiKey_KeypadSubtract=613, -ImGuiKey_KeypadAdd=614, -ImGuiKey_KeypadEnter=615, -ImGuiKey_KeypadEqual=616, -ImGuiKey_GamepadStart=617, -ImGuiKey_GamepadBack=618, -ImGuiKey_GamepadFaceLeft=619, -ImGuiKey_GamepadFaceRight=620, -ImGuiKey_GamepadFaceUp=621, -ImGuiKey_GamepadFaceDown=622, -ImGuiKey_GamepadDpadLeft=623, -ImGuiKey_GamepadDpadRight=624, -ImGuiKey_GamepadDpadUp=625, -ImGuiKey_GamepadDpadDown=626, -ImGuiKey_GamepadL1=627, -ImGuiKey_GamepadR1=628, -ImGuiKey_GamepadL2=629, -ImGuiKey_GamepadR2=630, -ImGuiKey_GamepadL3=631, -ImGuiKey_GamepadR3=632, -ImGuiKey_GamepadLStickLeft=633, -ImGuiKey_GamepadLStickRight=634, -ImGuiKey_GamepadLStickUp=635, -ImGuiKey_GamepadLStickDown=636, -ImGuiKey_GamepadRStickLeft=637, -ImGuiKey_GamepadRStickRight=638, -ImGuiKey_GamepadRStickUp=639, -ImGuiKey_GamepadRStickDown=640, -ImGuiKey_MouseLeft=641, -ImGuiKey_MouseRight=642, -ImGuiKey_MouseMiddle=643, -ImGuiKey_MouseX1=644, -ImGuiKey_MouseX2=645, -ImGuiKey_MouseWheelX=646, -ImGuiKey_MouseWheelY=647, -ImGuiKey_ReservedForModCtrl=648, -ImGuiKey_ReservedForModShift=649, -ImGuiKey_ReservedForModAlt=650, -ImGuiKey_ReservedForModSuper=651, -ImGuiKey_COUNT=652, +ImGuiKey_F13=584, +ImGuiKey_F14=585, +ImGuiKey_F15=586, +ImGuiKey_F16=587, +ImGuiKey_F17=588, +ImGuiKey_F18=589, +ImGuiKey_F19=590, +ImGuiKey_F20=591, +ImGuiKey_F21=592, +ImGuiKey_F22=593, +ImGuiKey_F23=594, +ImGuiKey_F24=595, +ImGuiKey_Apostrophe=596, +ImGuiKey_Comma=597, +ImGuiKey_Minus=598, +ImGuiKey_Period=599, +ImGuiKey_Slash=600, +ImGuiKey_Semicolon=601, +ImGuiKey_Equal=602, +ImGuiKey_LeftBracket=603, +ImGuiKey_Backslash=604, +ImGuiKey_RightBracket=605, +ImGuiKey_GraveAccent=606, +ImGuiKey_CapsLock=607, +ImGuiKey_ScrollLock=608, +ImGuiKey_NumLock=609, +ImGuiKey_PrintScreen=610, +ImGuiKey_Pause=611, +ImGuiKey_Keypad0=612, +ImGuiKey_Keypad1=613, +ImGuiKey_Keypad2=614, +ImGuiKey_Keypad3=615, +ImGuiKey_Keypad4=616, +ImGuiKey_Keypad5=617, +ImGuiKey_Keypad6=618, +ImGuiKey_Keypad7=619, +ImGuiKey_Keypad8=620, +ImGuiKey_Keypad9=621, +ImGuiKey_KeypadDecimal=622, +ImGuiKey_KeypadDivide=623, +ImGuiKey_KeypadMultiply=624, +ImGuiKey_KeypadSubtract=625, +ImGuiKey_KeypadAdd=626, +ImGuiKey_KeypadEnter=627, +ImGuiKey_KeypadEqual=628, +ImGuiKey_AppBack=629, +ImGuiKey_AppForward=630, +ImGuiKey_GamepadStart=631, +ImGuiKey_GamepadBack=632, +ImGuiKey_GamepadFaceLeft=633, +ImGuiKey_GamepadFaceRight=634, +ImGuiKey_GamepadFaceUp=635, +ImGuiKey_GamepadFaceDown=636, +ImGuiKey_GamepadDpadLeft=637, +ImGuiKey_GamepadDpadRight=638, +ImGuiKey_GamepadDpadUp=639, +ImGuiKey_GamepadDpadDown=640, +ImGuiKey_GamepadL1=641, +ImGuiKey_GamepadR1=642, +ImGuiKey_GamepadL2=643, +ImGuiKey_GamepadR2=644, +ImGuiKey_GamepadL3=645, +ImGuiKey_GamepadR3=646, +ImGuiKey_GamepadLStickLeft=647, +ImGuiKey_GamepadLStickRight=648, +ImGuiKey_GamepadLStickUp=649, +ImGuiKey_GamepadLStickDown=650, +ImGuiKey_GamepadRStickLeft=651, +ImGuiKey_GamepadRStickRight=652, +ImGuiKey_GamepadRStickUp=653, +ImGuiKey_GamepadRStickDown=654, +ImGuiKey_MouseLeft=655, +ImGuiKey_MouseRight=656, +ImGuiKey_MouseMiddle=657, +ImGuiKey_MouseX1=658, +ImGuiKey_MouseX2=659, +ImGuiKey_MouseWheelX=660, +ImGuiKey_MouseWheelY=661, +ImGuiKey_ReservedForModCtrl=662, +ImGuiKey_ReservedForModShift=663, +ImGuiKey_ReservedForModAlt=664, +ImGuiKey_ReservedForModSuper=665, +ImGuiKey_COUNT=666, ImGuiMod_None=0, ImGuiMod_Ctrl=1 << 12, ImGuiMod_Shift=1 << 13, ImGuiMod_Alt=1 << 14, ImGuiMod_Super=1 << 15, -ImGuiMod_Shortcut=1 << 11, -ImGuiMod_Mask_=0xF800, +ImGuiMod_Mask_=0xF000, ImGuiKey_NamedKey_BEGIN=512, ImGuiKey_NamedKey_END=ImGuiKey_COUNT, ImGuiKey_NamedKey_COUNT=ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, -ImGuiKey_KeysData_SIZE=ImGuiKey_COUNT, -ImGuiKey_KeysData_OFFSET=0, +ImGuiKey_KeysData_SIZE=ImGuiKey_NamedKey_COUNT, +ImGuiKey_KeysData_OFFSET=ImGuiKey_NamedKey_BEGIN, }ImGuiKey; typedef enum { - ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, - ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, - ImGuiNavInput_COUNT, -}ImGuiNavInput; + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, + ImGuiInputFlags_RouteActive = 1 << 10, + ImGuiInputFlags_RouteFocused = 1 << 11, + ImGuiInputFlags_RouteGlobal = 1 << 12, + ImGuiInputFlags_RouteAlways = 1 << 13, + ImGuiInputFlags_RouteOverFocused = 1 << 14, + ImGuiInputFlags_RouteOverActive = 1 << 15, + ImGuiInputFlags_RouteUnlessBgFocused = 1 << 16, + ImGuiInputFlags_RouteFromRootWindow = 1 << 17, + ImGuiInputFlags_Tooltip = 1 << 18, +}ImGuiInputFlags_; typedef enum { ImGuiConfigFlags_None = 0, ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, @@ -661,7 +666,8 @@ typedef enum { ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, ImGuiConfigFlags_NoMouse = 1 << 4, ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, - ImGuiConfigFlags_DockingEnable = 1 << 6, + ImGuiConfigFlags_NoKeyboard = 1 << 6, + ImGuiConfigFlags_DockingEnable = 1 << 7, ImGuiConfigFlags_ViewportsEnable = 1 << 10, ImGuiConfigFlags_DpiEnableScaleViewports= 1 << 14, ImGuiConfigFlags_DpiEnableScaleFonts = 1 << 15, @@ -712,11 +718,13 @@ typedef enum { ImGuiCol_ResizeGrip, ImGuiCol_ResizeGripHovered, ImGuiCol_ResizeGripActive, - ImGuiCol_Tab, ImGuiCol_TabHovered, - ImGuiCol_TabActive, - ImGuiCol_TabUnfocused, - ImGuiCol_TabUnfocusedActive, + ImGuiCol_Tab, + ImGuiCol_TabSelected, + ImGuiCol_TabSelectedOverline, + ImGuiCol_TabDimmed, + ImGuiCol_TabDimmedSelected, + ImGuiCol_TabDimmedSelectedOverline, ImGuiCol_DockingPreview, ImGuiCol_DockingEmptyBg, ImGuiCol_PlotLines, @@ -728,13 +736,14 @@ typedef enum { ImGuiCol_TableBorderLight, ImGuiCol_TableRowBg, ImGuiCol_TableRowBgAlt, + ImGuiCol_TextLink, ImGuiCol_TextSelectedBg, ImGuiCol_DragDropTarget, ImGuiCol_NavHighlight, ImGuiCol_NavWindowingHighlight, ImGuiCol_NavWindowingDimBg, ImGuiCol_ModalWindowDimBg, - ImGuiCol_COUNT + ImGuiCol_COUNT, }ImGuiCol_; typedef enum { ImGuiStyleVar_Alpha, @@ -760,8 +769,17 @@ typedef enum { ImGuiStyleVar_GrabMinSize, ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, + ImGuiStyleVar_TabBorderSize, + ImGuiStyleVar_TabBarBorderSize, + ImGuiStyleVar_TabBarOverlineSize, + ImGuiStyleVar_TableAngledHeadersAngle, + ImGuiStyleVar_TableAngledHeadersTextAlign, ImGuiStyleVar_ButtonTextAlign, ImGuiStyleVar_SelectableTextAlign, + ImGuiStyleVar_SeparatorTextBorderSize, + ImGuiStyleVar_SeparatorTextAlign, + ImGuiStyleVar_SeparatorTextPadding, + ImGuiStyleVar_DockingSeparatorSize, ImGuiStyleVar_COUNT }ImGuiStyleVar_; typedef enum { @@ -770,7 +788,6 @@ typedef enum { ImGuiButtonFlags_MouseButtonRight = 1 << 1, ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, - ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, }ImGuiButtonFlags_; typedef enum { ImGuiColorEditFlags_None = 0, @@ -809,6 +826,7 @@ typedef enum { ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, + ImGuiSliderFlags_WrapAround = 1 << 8, ImGuiSliderFlags_InvalidMask_ = 0x7000000F, }ImGuiSliderFlags_; typedef enum { @@ -830,6 +848,12 @@ typedef enum { ImGuiMouseCursor_NotAllowed, ImGuiMouseCursor_COUNT }ImGuiMouseCursor_; +typedef enum { +ImGuiMouseSource_Mouse=0, +ImGuiMouseSource_TouchScreen=1, +ImGuiMouseSource_Pen=2, +ImGuiMouseSource_COUNT=3, +}ImGuiMouseSource; typedef enum { ImGuiCond_None = 0, ImGuiCond_Always = 1 << 0, @@ -837,6 +861,98 @@ typedef enum { ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3, }ImGuiCond_; +typedef enum { + ImGuiTableFlags_None = 0, + ImGuiTableFlags_Resizable = 1 << 0, + ImGuiTableFlags_Reorderable = 1 << 1, + ImGuiTableFlags_Hideable = 1 << 2, + ImGuiTableFlags_Sortable = 1 << 3, + ImGuiTableFlags_NoSavedSettings = 1 << 4, + ImGuiTableFlags_ContextMenuInBody = 1 << 5, + ImGuiTableFlags_RowBg = 1 << 6, + ImGuiTableFlags_BordersInnerH = 1 << 7, + ImGuiTableFlags_BordersOuterH = 1 << 8, + ImGuiTableFlags_BordersInnerV = 1 << 9, + ImGuiTableFlags_BordersOuterV = 1 << 10, + ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, + ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, + ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, + ImGuiTableFlags_NoBordersInBody = 1 << 11, + ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, + ImGuiTableFlags_SizingFixedFit = 1 << 13, + ImGuiTableFlags_SizingFixedSame = 2 << 13, + ImGuiTableFlags_SizingStretchProp = 3 << 13, + ImGuiTableFlags_SizingStretchSame = 4 << 13, + ImGuiTableFlags_NoHostExtendX = 1 << 16, + ImGuiTableFlags_NoHostExtendY = 1 << 17, + ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, + ImGuiTableFlags_PreciseWidths = 1 << 19, + ImGuiTableFlags_NoClip = 1 << 20, + ImGuiTableFlags_PadOuterX = 1 << 21, + ImGuiTableFlags_NoPadOuterX = 1 << 22, + ImGuiTableFlags_NoPadInnerX = 1 << 23, + ImGuiTableFlags_ScrollX = 1 << 24, + ImGuiTableFlags_ScrollY = 1 << 25, + ImGuiTableFlags_SortMulti = 1 << 26, + ImGuiTableFlags_SortTristate = 1 << 27, + ImGuiTableFlags_HighlightHoveredColumn = 1 << 28, + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, +}ImGuiTableFlags_; +typedef enum { + ImGuiTableColumnFlags_None = 0, + ImGuiTableColumnFlags_Disabled = 1 << 0, + ImGuiTableColumnFlags_DefaultHide = 1 << 1, + ImGuiTableColumnFlags_DefaultSort = 1 << 2, + ImGuiTableColumnFlags_WidthStretch = 1 << 3, + ImGuiTableColumnFlags_WidthFixed = 1 << 4, + ImGuiTableColumnFlags_NoResize = 1 << 5, + ImGuiTableColumnFlags_NoReorder = 1 << 6, + ImGuiTableColumnFlags_NoHide = 1 << 7, + ImGuiTableColumnFlags_NoClip = 1 << 8, + ImGuiTableColumnFlags_NoSort = 1 << 9, + ImGuiTableColumnFlags_NoSortAscending = 1 << 10, + ImGuiTableColumnFlags_NoSortDescending = 1 << 11, + ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, + ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, + ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, + ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, + ImGuiTableColumnFlags_IndentEnable = 1 << 16, + ImGuiTableColumnFlags_IndentDisable = 1 << 17, + ImGuiTableColumnFlags_AngledHeader = 1 << 18, + ImGuiTableColumnFlags_IsEnabled = 1 << 24, + ImGuiTableColumnFlags_IsVisible = 1 << 25, + ImGuiTableColumnFlags_IsSorted = 1 << 26, + ImGuiTableColumnFlags_IsHovered = 1 << 27, + ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, + ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, + ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, +}ImGuiTableColumnFlags_; +typedef enum { + ImGuiTableRowFlags_None = 0, + ImGuiTableRowFlags_Headers = 1 << 0, +}ImGuiTableRowFlags_; +typedef enum { + ImGuiTableBgTarget_None = 0, + ImGuiTableBgTarget_RowBg0 = 1, + ImGuiTableBgTarget_RowBg1 = 2, + ImGuiTableBgTarget_CellBg = 3, +}ImGuiTableBgTarget_; +struct ImGuiTableSortSpecs +{ + const ImGuiTableColumnSortSpecs* Specs; + int SpecsCount; + bool SpecsDirty; +}; +struct ImGuiTableColumnSortSpecs +{ + ImGuiID ColumnUserID; + ImS16 ColumnIndex; + ImS16 SortOrder; + ImGuiSortDirection SortDirection; +}; struct ImGuiStyle { float Alpha; @@ -868,11 +984,19 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; float TabMinWidthForCloseButton; + float TabBarBorderSize; + float TabBarOverlineSize; + float TableAngledHeadersAngle; + ImVec2 TableAngledHeadersTextAlign; ImGuiDir ColorButtonPosition; ImVec2 ButtonTextAlign; ImVec2 SelectableTextAlign; + float SeparatorTextBorderSize; + ImVec2 SeparatorTextAlign; + ImVec2 SeparatorTextPadding; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; + float DockingSeparatorSize; float MouseCursorScale; bool AntiAliasedLines; bool AntiAliasedLinesUseTex; @@ -880,6 +1004,11 @@ struct ImGuiStyle float CurveTessellationTol; float CircleTessellationMaxError; ImVec4 Colors[ImGuiCol_COUNT]; + float HoverStationaryDelay; + float HoverDelayShort; + float HoverDelayNormal; + ImGuiHoveredFlags HoverFlagsForTooltipMouse; + ImGuiHoveredFlags HoverFlagsForTooltipNav; }; struct ImGuiKeyData { @@ -899,13 +1028,6 @@ struct ImGuiIO float IniSavingRate; const char* IniFilename; const char* LogFilename; - float MouseDoubleClickTime; - float MouseDoubleClickMaxDist; - float MouseDragThreshold; - float KeyRepeatDelay; - float KeyRepeatRate; - float HoverDelayNormal; - float HoverDelayShort; void* UserData; ImFontAtlas*Fonts; float FontGlobalScale; @@ -922,6 +1044,7 @@ struct ImGuiIO bool ConfigViewportsNoDefaultParent; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; + bool ConfigNavSwapGamepadButtons; bool ConfigInputTrickleEventQueue; bool ConfigInputTextCursorBlink; bool ConfigInputTextEnterKeepActive; @@ -929,16 +1052,22 @@ struct ImGuiIO bool ConfigWindowsResizeFromEdges; bool ConfigWindowsMoveFromTitleBarOnly; float ConfigMemoryCompactTimer; + float MouseDoubleClickTime; + float MouseDoubleClickMaxDist; + float MouseDragThreshold; + float KeyRepeatDelay; + float KeyRepeatRate; + bool ConfigDebugIsDebuggerPresent; + bool ConfigDebugHighlightIdConflicts; + bool ConfigDebugBeginReturnValueOnce; + bool ConfigDebugBeginReturnValueLoop; + bool ConfigDebugIgnoreFocusLoss; + bool ConfigDebugIniSettings; const char* BackendPlatformName; const char* BackendRendererName; void* BackendPlatformUserData; void* BackendRendererUserData; void* BackendLanguageUserData; - const char* (*GetClipboardTextFn)(void* user_data); - void (*SetClipboardTextFn)(void* user_data, const char* text); - void* ClipboardUserData; - void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data); - void* _UnusedPadding; bool WantCaptureMouse; bool WantCaptureKeyboard; bool WantTextInput; @@ -951,15 +1080,13 @@ struct ImGuiIO int MetricsRenderIndices; int MetricsRenderWindows; int MetricsActiveWindows; - int MetricsActiveAllocations; ImVec2 MouseDelta; - int KeyMap[ImGuiKey_COUNT]; - bool KeysDown[ImGuiKey_COUNT]; - float NavInputs[ImGuiNavInput_COUNT]; + ImGuiContext* Ctx; ImVec2 MousePos; bool MouseDown[5]; float MouseWheel; float MouseWheelH; + ImGuiMouseSource MouseSource; ImGuiID MouseHoveredViewport; bool KeyCtrl; bool KeyShift; @@ -978,6 +1105,8 @@ struct ImGuiIO bool MouseReleased[5]; bool MouseDownOwned[5]; bool MouseDownOwnedUnlessPopupClose[5]; + bool MouseWheelRequestAxisSwap; + bool MouseCtrlLeftAsRightClick; float MouseDownDuration[5]; float MouseDownDurationPrev[5]; ImVec2 MouseDragMaxDistanceAbs[5]; @@ -992,6 +1121,7 @@ struct ImGuiIO }; struct ImGuiInputTextCallbackData { + ImGuiContext* Ctx; ImGuiInputTextFlags EventFlag; ImGuiInputTextFlags Flags; void* UserData; @@ -1016,6 +1146,7 @@ struct ImGuiWindowClass { ImGuiID ClassId; ImGuiID ParentViewportId; + ImGuiID FocusRouteParentWindowId; ImGuiViewportFlags ViewportFlagsOverrideSet; ImGuiViewportFlags ViewportFlagsOverrideClear; ImGuiTabItemFlags TabItemFlagsOverrideSet; @@ -1034,19 +1165,6 @@ struct ImGuiPayload bool Preview; bool Delivery; }; -struct ImGuiTableColumnSortSpecs -{ - ImGuiID ColumnUserID; - ImS16 ColumnIndex; - ImS16 SortOrder; - ImGuiSortDirection SortDirection : 8; -}; -struct ImGuiTableSortSpecs -{ - const ImGuiTableColumnSortSpecs* Specs; - int SpecsCount; - bool SpecsDirty; -}; struct ImGuiOnceUponAFrame { int RefFrame; @@ -1075,31 +1193,87 @@ struct ImGuiTextBuffer }; struct ImGuiStoragePair { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; - typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; struct ImGuiStorage { ImVector_ImGuiStoragePair Data; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; struct ImGuiListClipper { + ImGuiContext* Ctx; int DisplayStart; int DisplayEnd; int ItemsCount; float ItemsHeight; float StartPosY; + double StartSeekOffsetY; void* TempData; }; struct ImColor { ImVec4 Value; }; +typedef enum { + ImGuiMultiSelectFlags_None = 0, + ImGuiMultiSelectFlags_SingleSelect = 1 << 0, + ImGuiMultiSelectFlags_NoSelectAll = 1 << 1, + ImGuiMultiSelectFlags_NoRangeSelect = 1 << 2, + ImGuiMultiSelectFlags_NoAutoSelect = 1 << 3, + ImGuiMultiSelectFlags_NoAutoClear = 1 << 4, + ImGuiMultiSelectFlags_NoAutoClearOnReselect = 1 << 5, + ImGuiMultiSelectFlags_BoxSelect1d = 1 << 6, + ImGuiMultiSelectFlags_BoxSelect2d = 1 << 7, + ImGuiMultiSelectFlags_BoxSelectNoScroll = 1 << 8, + ImGuiMultiSelectFlags_ClearOnEscape = 1 << 9, + ImGuiMultiSelectFlags_ClearOnClickVoid = 1 << 10, + ImGuiMultiSelectFlags_ScopeWindow = 1 << 11, + ImGuiMultiSelectFlags_ScopeRect = 1 << 12, + ImGuiMultiSelectFlags_SelectOnClick = 1 << 13, + ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14, + ImGuiMultiSelectFlags_NavWrapX = 1 << 16, +}ImGuiMultiSelectFlags_; +typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest; + +struct ImGuiMultiSelectIO +{ + ImVector_ImGuiSelectionRequest Requests; + ImGuiSelectionUserData RangeSrcItem; + ImGuiSelectionUserData NavIdItem; + bool NavIdSelected; + bool RangeSrcReset; + int ItemsCount; +}; +typedef enum { + ImGuiSelectionRequestType_None = 0, + ImGuiSelectionRequestType_SetAll, + ImGuiSelectionRequestType_SetRange, +}ImGuiSelectionRequestType; +struct ImGuiSelectionRequest +{ + ImGuiSelectionRequestType Type; + bool Selected; + ImS8 RangeDirection; + ImGuiSelectionUserData RangeFirstItem; + ImGuiSelectionUserData RangeLastItem; +}; +struct ImGuiSelectionBasicStorage +{ + int Size; + bool PreserveOrder; + void* UserData; + ImGuiID (*AdapterIndexToStorageId)(ImGuiSelectionBasicStorage* self, int idx); + int _SelectionOrder; + ImGuiStorage _Storage; +}; +struct ImGuiSelectionExternalStorage +{ + void* UserData; + void (*AdapterSetItemSelected)(ImGuiSelectionExternalStorage* self, int idx, bool selected); +}; typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { @@ -1166,12 +1340,12 @@ typedef enum { }ImDrawListFlags_; typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; - struct ImDrawList { ImVector_ImDrawCmd CmdBuffer; @@ -1180,23 +1354,25 @@ struct ImDrawList ImDrawListFlags Flags; unsigned int _VtxCurrentIdx; ImDrawListSharedData* _Data; - const char* _OwnerName; ImDrawVert* _VtxWritePtr; ImDrawIdx* _IdxWritePtr; - ImVector_ImVec4 _ClipRectStack; - ImVector_ImTextureID _TextureIdStack; ImVector_ImVec2 _Path; ImDrawCmdHeader _CmdHeader; ImDrawListSplitter _Splitter; + ImVector_ImVec4 _ClipRectStack; + ImVector_ImTextureID _TextureIdStack; float _FringeScale; + const char* _OwnerName; }; +typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr; + struct ImDrawData { bool Valid; int CmdListsCount; int TotalIdxCount; int TotalVtxCount; - ImDrawList** CmdLists; + ImVector_ImDrawListPtr CmdLists; ImVec2 DisplayPos; ImVec2 DisplaySize; ImVec2 FramebufferScale; @@ -1220,6 +1396,7 @@ struct ImFontConfig bool MergeMode; unsigned int FontBuilderFlags; float RasterizerMultiply; + float RasterizerDensity; ImWchar EllipsisChar; char Name[40]; ImFont* DstFont; @@ -1303,7 +1480,9 @@ struct ImFont short ConfigDataCount; ImWchar FallbackChar; ImWchar EllipsisChar; - ImWchar DotChar; + short EllipsisCharCount; + float EllipsisWidth; + float EllipsisCharStep; bool DirtyLookupTables; float Scale; float Ascent, Descent; @@ -1321,10 +1500,11 @@ typedef enum { ImGuiViewportFlags_NoFocusOnClick = 1 << 6, ImGuiViewportFlags_NoInputs = 1 << 7, ImGuiViewportFlags_NoRendererClear = 1 << 8, - ImGuiViewportFlags_TopMost = 1 << 9, - ImGuiViewportFlags_Minimized = 1 << 10, - ImGuiViewportFlags_NoAutoMerge = 1 << 11, - ImGuiViewportFlags_CanHostOtherWindows = 1 << 12, + ImGuiViewportFlags_NoAutoMerge = 1 << 9, + ImGuiViewportFlags_TopMost = 1 << 10, + ImGuiViewportFlags_CanHostOtherWindows = 1 << 11, + ImGuiViewportFlags_IsMinimized = 1 << 12, + ImGuiViewportFlags_IsFocused = 1 << 13, }ImGuiViewportFlags_; struct ImGuiViewport { @@ -1352,6 +1532,14 @@ typedef struct ImVector_ImGuiViewportPtr {int Size;int Capacity;ImGuiViewport** struct ImGuiPlatformIO { + const char* (*Platform_GetClipboardTextFn)(ImGuiContext* ctx); + void (*Platform_SetClipboardTextFn)(ImGuiContext* ctx, const char* text); + void* Platform_ClipboardUserData; + bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); + void* Platform_OpenInShellUserData; + void (*Platform_SetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + void* Platform_ImeUserData; + ImWchar Platform_LocaleDecimalPoint; void (*Platform_CreateWindow)(ImGuiViewport* vp); void (*Platform_DestroyWindow)(ImGuiViewport* vp); void (*Platform_ShowWindow)(ImGuiViewport* vp); @@ -1369,6 +1557,7 @@ struct ImGuiPlatformIO void (*Platform_SwapBuffers)(ImGuiViewport* vp, void* render_arg); float (*Platform_GetWindowDpiScale)(ImGuiViewport* vp); void (*Platform_OnChangedViewport)(ImGuiViewport* vp); + ImVec4 (*Platform_GetWindowWorkAreaInsets)(ImGuiViewport* vp); int (*Platform_CreateVkSurface)(ImGuiViewport* vp, ImU64 vk_inst, const void* vk_allocators, ImU64* out_vk_surface); void (*Renderer_CreateWindow)(ImGuiViewport* vp); void (*Renderer_DestroyWindow)(ImGuiViewport* vp); @@ -1383,6 +1572,7 @@ struct ImGuiPlatformMonitor ImVec2 MainPos, MainSize; ImVec2 WorkPos, WorkSize; float DpiScale; + void* PlatformHandle; }; struct ImGuiPlatformImeData { @@ -1394,9 +1584,11 @@ struct ImBitVector; struct ImRect; struct ImDrawDataBuilder; struct ImDrawListSharedData; +struct ImGuiBoxSelectState; struct ImGuiColorMod; struct ImGuiContext; struct ImGuiContextHook; +struct ImGuiDataVarInfo; struct ImGuiDataTypeInfo; struct ImGuiDockContext; struct ImGuiDockRequest; @@ -1404,9 +1596,12 @@ struct ImGuiDockNode; struct ImGuiDockNodeSettings; struct ImGuiGroupData; struct ImGuiInputTextState; +struct ImGuiInputTextDeactivateData; struct ImGuiLastItemData; struct ImGuiLocEntry; struct ImGuiMenuColumns; +struct ImGuiMultiSelectState; +struct ImGuiMultiSelectTempData; struct ImGuiNavItemData; struct ImGuiMetricsConfig; struct ImGuiNextWindowData; @@ -1420,20 +1615,24 @@ struct ImGuiStyleMod; struct ImGuiTabBar; struct ImGuiTabItem; struct ImGuiTable; +struct ImGuiTableHeaderData; struct ImGuiTableColumn; struct ImGuiTableInstanceData; struct ImGuiTableTempData; struct ImGuiTableSettings; struct ImGuiTableColumnsSettings; +struct ImGuiTreeNodeStackData; +struct ImGuiTypingSelectState; +struct ImGuiTypingSelectRequest; struct ImGuiWindow; +struct ImGuiWindowDockStyle; struct ImGuiWindowTempData; struct ImGuiWindowSettings; typedef int ImGuiDataAuthority; typedef int ImGuiLayoutType; typedef int ImGuiActivateFlags; typedef int ImGuiDebugLogFlags; -typedef int ImGuiInputFlags; -typedef int ImGuiItemFlags; +typedef int ImGuiFocusRequestFlags; typedef int ImGuiItemStatusFlags; typedef int ImGuiOldColumnFlags; typedef int ImGuiNavHighlightFlags; @@ -1444,48 +1643,10 @@ typedef int ImGuiScrollFlags; typedef int ImGuiSeparatorFlags; typedef int ImGuiTextFlags; typedef int ImGuiTooltipFlags; +typedef int ImGuiTypingSelectFlags; +typedef int ImGuiWindowRefreshFlags; typedef void (*ImGuiErrorLogCallback)(void* user_data, const char* fmt, ...); extern ImGuiContext* GImGui; -typedef struct StbUndoRecord StbUndoRecord; -struct StbUndoRecord -{ - int where; - int insert_length; - int delete_length; - int char_storage; -}; -typedef struct StbUndoState StbUndoState; -struct StbUndoState -{ - StbUndoRecord undo_rec [99]; - ImWchar undo_char[999]; - short undo_point, redo_point; - int undo_char_point, redo_char_point; -}; -typedef struct STB_TexteditState STB_TexteditState; -struct STB_TexteditState -{ - int cursor; - int select_start; - int select_end; - unsigned char insert_mode; - int row_count_per_page; - unsigned char cursor_at_end_of_line; - unsigned char initialized; - unsigned char has_preferred_x; - unsigned char single_line; - unsigned char padding1, padding2, padding3; - float preferred_x; - StbUndoState undostate; -}; -typedef struct StbTexteditRow StbTexteditRow; -struct StbTexteditRow -{ - float x0,x1; - float baseline_y_delta; - float ymin,ymax; - int num_chars; -}; typedef FILE* ImFileHandle; typedef struct ImVec1 ImVec1; struct ImVec1 @@ -1502,6 +1663,7 @@ struct ImRect ImVec2 Min; ImVec2 Max; }; +typedef ImU32* ImBitArrayPtr; struct ImBitVector { ImVector_ImU32 Storage; @@ -1520,6 +1682,7 @@ struct ImDrawListSharedData ImVec2 TexUvWhitePixel; ImFont* Font; float FontSize; + float FontScale; float CurveTessellationTol; float CircleSegmentMaxError; ImVec4 ClipRectFullscreen; @@ -1530,25 +1693,45 @@ struct ImDrawListSharedData ImU8 CircleSegmentCounts[64]; const ImVec4* TexUvLines; }; -typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr; - struct ImDrawDataBuilder { - ImVector_ImDrawListPtr Layers[2]; + ImVector_ImDrawListPtr* Layers[2]; + ImVector_ImDrawListPtr LayerData1; +}; +struct ImGuiDataVarInfo +{ + ImGuiDataType Type; + ImU32 Count; + ImU32 Offset; +}; +typedef struct ImGuiDataTypeStorage ImGuiDataTypeStorage; +struct ImGuiDataTypeStorage +{ + ImU8 Data[8]; +}; +struct ImGuiDataTypeInfo +{ + size_t Size; + const char* Name; + const char* PrintFmt; + const char* ScanFmt; }; typedef enum { - ImGuiItemFlags_None = 0, - ImGuiItemFlags_NoTabStop = 1 << 0, - ImGuiItemFlags_ButtonRepeat = 1 << 1, - ImGuiItemFlags_Disabled = 1 << 2, - ImGuiItemFlags_NoNav = 1 << 3, - ImGuiItemFlags_NoNavDefaultFocus = 1 << 4, - ImGuiItemFlags_SelectableDontClosePopup = 1 << 5, - ImGuiItemFlags_MixedValue = 1 << 6, - ImGuiItemFlags_ReadOnly = 1 << 7, - ImGuiItemFlags_NoWindowHoverableCheck = 1 << 8, - ImGuiItemFlags_Inputable = 1 << 10, -}ImGuiItemFlags_; + ImGuiDataType_String = ImGuiDataType_COUNT + 1, + ImGuiDataType_Pointer, + ImGuiDataType_ID, +}ImGuiDataTypePrivate_; +typedef enum { + ImGuiItemFlags_Disabled = 1 << 10, + ImGuiItemFlags_ReadOnly = 1 << 11, + ImGuiItemFlags_MixedValue = 1 << 12, + ImGuiItemFlags_NoWindowHoverableCheck = 1 << 13, + ImGuiItemFlags_AllowOverlap = 1 << 14, + ImGuiItemFlags_Inputable = 1 << 20, + ImGuiItemFlags_HasSelectionUserData = 1 << 21, + ImGuiItemFlags_IsMultiSelect = 1 << 22, + ImGuiItemFlags_Default_ = ImGuiItemFlags_AutoClosePopups, +}ImGuiItemFlagsPrivate_; typedef enum { ImGuiItemStatusFlags_None = 0, ImGuiItemStatusFlags_HoveredRect = 1 << 0, @@ -1559,13 +1742,20 @@ typedef enum { ImGuiItemStatusFlags_HasDeactivated = 1 << 5, ImGuiItemStatusFlags_Deactivated = 1 << 6, ImGuiItemStatusFlags_HoveredWindow = 1 << 7, - ImGuiItemStatusFlags_FocusedByTabbing = 1 << 8, - ImGuiItemStatusFlags_Visible = 1 << 9, + ImGuiItemStatusFlags_Visible = 1 << 8, + ImGuiItemStatusFlags_HasClipRect = 1 << 9, + ImGuiItemStatusFlags_HasShortcut = 1 << 10, }ImGuiItemStatusFlags_; +typedef enum { + ImGuiHoveredFlags_DelayMask_ = ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay, + ImGuiHoveredFlags_AllowedMaskForIsWindowHovered = ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_DockHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary, + ImGuiHoveredFlags_AllowedMaskForIsItemHovered = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_, +}ImGuiHoveredFlagsPrivate_; typedef enum { ImGuiInputTextFlags_Multiline = 1 << 26, ImGuiInputTextFlags_NoMarkEdited = 1 << 27, ImGuiInputTextFlags_MergedItem = 1 << 28, + ImGuiInputTextFlags_LocalizeDecimalPoint= 1 << 29, }ImGuiInputTextFlagsPrivate_; typedef enum { ImGuiButtonFlags_PressedOnClick = 1 << 4, @@ -1576,7 +1766,7 @@ typedef enum { ImGuiButtonFlags_PressedOnDragDropHold = 1 << 9, ImGuiButtonFlags_Repeat = 1 << 10, ImGuiButtonFlags_FlattenChildren = 1 << 11, - ImGuiButtonFlags_AllowItemOverlap = 1 << 12, + ImGuiButtonFlags_AllowOverlap = 1 << 12, ImGuiButtonFlags_DontClosePopups = 1 << 13, ImGuiButtonFlags_AlignTextBaseLine = 1 << 15, ImGuiButtonFlags_NoKeyModifiers = 1 << 16, @@ -1606,7 +1796,9 @@ typedef enum { ImGuiSelectableFlags_NoSetKeyOwner = 1 << 27, }ImGuiSelectableFlagsPrivate_; typedef enum { - ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20, + ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 28, + ImGuiTreeNodeFlags_UpsideDownArrow = 1 << 29, + ImGuiTreeNodeFlags_OpenOnMask_ = ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow, }ImGuiTreeNodeFlagsPrivate_; typedef enum { ImGuiSeparatorFlags_None = 0, @@ -1614,13 +1806,18 @@ typedef enum { ImGuiSeparatorFlags_Vertical = 1 << 1, ImGuiSeparatorFlags_SpanAllColumns = 1 << 2, }ImGuiSeparatorFlags_; +typedef enum { + ImGuiFocusRequestFlags_None = 0, + ImGuiFocusRequestFlags_RestoreFocusedChild = 1 << 0, + ImGuiFocusRequestFlags_UnlessBelowModal = 1 << 1, +}ImGuiFocusRequestFlags_; typedef enum { ImGuiTextFlags_None = 0, ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0, }ImGuiTextFlags_; typedef enum { ImGuiTooltipFlags_None = 0, - ImGuiTooltipFlags_OverridePreviousTooltip = 1 << 0, + ImGuiTooltipFlags_OverridePrevious = 1 << 1, }ImGuiTooltipFlags_; typedef enum { ImGuiLayoutType_Horizontal = 0, @@ -1642,28 +1839,6 @@ typedef enum { ImGuiPlotType_Lines, ImGuiPlotType_Histogram, }ImGuiPlotType; -typedef enum { - ImGuiPopupPositionPolicy_Default, - ImGuiPopupPositionPolicy_ComboBox, - ImGuiPopupPositionPolicy_Tooltip, -}ImGuiPopupPositionPolicy; -typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage; -struct ImGuiDataTypeTempStorage -{ - ImU8 Data[8]; -}; -struct ImGuiDataTypeInfo -{ - size_t Size; - const char* Name; - const char* PrintFmt; - const char* ScanFmt; -}; -typedef enum { - ImGuiDataType_String = ImGuiDataType_COUNT + 1, - ImGuiDataType_Pointer, - ImGuiDataType_ID, -}ImGuiDataTypePrivate_; struct ImGuiColorMod { ImGuiCol Col; @@ -1689,6 +1864,7 @@ struct ImGuiGroupData ImGuiID WindowID; ImVec2 BackupCursorPos; ImVec2 BackupCursorMaxPos; + ImVec2 BackupCursorPosPrevLine; ImVec1 BackupIndent; ImVec1 BackupGroupOffset; ImVec2 BackupCurrLineSize; @@ -1696,6 +1872,7 @@ struct ImGuiGroupData ImGuiID BackupActiveIdIsAlive; bool BackupActiveIdPreviousFrameIsAlive; bool BackupHoveredIdIsAlive; + bool BackupIsSameLine; bool EmitItem; }; struct ImGuiMenuColumns @@ -1709,35 +1886,39 @@ struct ImGuiMenuColumns ImU16 OffsetMark; ImU16 Widths[4]; }; +typedef struct ImGuiInputTextDeactivatedState ImGuiInputTextDeactivatedState; +struct ImGuiInputTextDeactivatedState +{ + ImGuiID ID; + ImVector_char TextA; +}; struct STB_TexteditState; +typedef STB_TexteditState ImStbTexteditState; struct ImGuiInputTextState { ImGuiContext* Ctx; + ImStbTexteditState* Stb; ImGuiID ID; - int CurLenW, CurLenA; - ImVector_ImWchar TextW; + int CurLenA; ImVector_char TextA; ImVector_char InitialTextA; - bool TextAIsValid; + ImVector_char CallbackTextBackup; int BufCapacityA; - float ScrollX; - STB_TexteditState Stb; + ImVec2 Scroll; float CursorAnim; bool CursorFollow; bool SelectedAllMouseLock; bool Edited; ImGuiInputTextFlags Flags; + bool ReloadUserBuf; + int ReloadSelectionStart; + int ReloadSelectionEnd; }; -struct ImGuiPopupData -{ - ImGuiID PopupId; - ImGuiWindow* Window; - ImGuiWindow* BackupNavWindow; - int ParentNavLayer; - int OpenFrameCount; - ImGuiID OpenParentId; - ImVec2 OpenPopupPos; - ImVec2 OpenMousePos; -}; +typedef enum { + ImGuiWindowRefreshFlags_None = 0, + ImGuiWindowRefreshFlags_TryToAvoidRefresh = 1 << 0, + ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1, + ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2, +}ImGuiWindowRefreshFlags_; typedef enum { ImGuiNextWindowDataFlags_None = 0, ImGuiNextWindowDataFlags_HasPos = 1 << 0, @@ -1748,9 +1929,11 @@ typedef enum { ImGuiNextWindowDataFlags_HasFocus = 1 << 5, ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6, ImGuiNextWindowDataFlags_HasScroll = 1 << 7, - ImGuiNextWindowDataFlags_HasViewport = 1 << 8, - ImGuiNextWindowDataFlags_HasDock = 1 << 9, - ImGuiNextWindowDataFlags_HasWindowClass = 1 << 10, + ImGuiNextWindowDataFlags_HasChildFlags = 1 << 8, + ImGuiNextWindowDataFlags_HasRefreshPolicy = 1 << 9, + ImGuiNextWindowDataFlags_HasViewport = 1 << 10, + ImGuiNextWindowDataFlags_HasDock = 1 << 11, + ImGuiNextWindowDataFlags_HasWindowClass = 1 << 12, }ImGuiNextWindowDataFlags_; struct ImGuiNextWindowData { @@ -1764,6 +1947,7 @@ struct ImGuiNextWindowData ImVec2 SizeVal; ImVec2 ContentSizeVal; ImVec2 ScrollVal; + ImGuiChildFlags ChildFlags; bool PosUndock; bool CollapsedVal; ImRect SizeConstraintRect; @@ -1774,19 +1958,29 @@ struct ImGuiNextWindowData ImGuiID DockId; ImGuiWindowClass WindowClass; ImVec2 MenuBarOffsetMinVal; + ImGuiWindowRefreshFlags RefreshFlagsVal; }; typedef enum { ImGuiNextItemDataFlags_None = 0, ImGuiNextItemDataFlags_HasWidth = 1 << 0, ImGuiNextItemDataFlags_HasOpen = 1 << 1, + ImGuiNextItemDataFlags_HasShortcut = 1 << 2, + ImGuiNextItemDataFlags_HasRefVal = 1 << 3, + ImGuiNextItemDataFlags_HasStorageID = 1 << 4, }ImGuiNextItemDataFlags_; struct ImGuiNextItemData { ImGuiNextItemDataFlags Flags; - float Width; + ImGuiItemFlags ItemFlags; ImGuiID FocusScopeId; - ImGuiCond OpenCond; + ImGuiSelectionUserData SelectionUserData; + float Width; + ImGuiKeyChord Shortcut; + ImGuiInputFlags ShortcutFlags; bool OpenVal; + ImU8 OpenCond; + ImGuiDataTypeStorage RefVal; + ImGuiID StorageId; }; struct ImGuiLastItemData { @@ -1796,6 +1990,15 @@ struct ImGuiLastItemData ImRect Rect; ImRect NavRect; ImRect DisplayRect; + ImRect ClipRect; + ImGuiKeyChord Shortcut; +}; +struct ImGuiTreeNodeStackData +{ + ImGuiID ID; + ImGuiTreeNodeFlags TreeFlags; + ImGuiItemFlags InFlags; + ImRect NavRect; }; struct ImGuiStackSizes { @@ -1815,6 +2018,7 @@ struct ImGuiWindowStackData ImGuiWindow* Window; ImGuiLastItemData ParentLastItemDataBackup; ImGuiStackSizes StackSizesOnBegin; + bool DisabledOverrideReenable; }; typedef struct ImGuiShrinkWidthItem ImGuiShrinkWidthItem; struct ImGuiShrinkWidthItem @@ -1829,6 +2033,22 @@ struct ImGuiPtrOrIndex void* Ptr; int Index; }; +typedef enum { + ImGuiPopupPositionPolicy_Default, + ImGuiPopupPositionPolicy_ComboBox, + ImGuiPopupPositionPolicy_Tooltip, +}ImGuiPopupPositionPolicy; +struct ImGuiPopupData +{ + ImGuiID PopupId; + ImGuiWindow* Window; + ImGuiWindow* RestoreNavWindow; + int ParentNavLayer; + int OpenFrameCount; + ImGuiID OpenParentId; + ImVec2 OpenPopupPos; + ImVec2 OpenMousePos; +}; typedef struct ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN {ImU32 Storage[(ImGuiKey_NamedKey_COUNT+31)>>5];} ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN; typedef ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN ImBitArrayForNamedKeys; @@ -1848,21 +2068,19 @@ typedef enum { ImGuiInputSource_Mouse, ImGuiInputSource_Keyboard, ImGuiInputSource_Gamepad, - ImGuiInputSource_Clipboard, - ImGuiInputSource_Nav, ImGuiInputSource_COUNT }ImGuiInputSource; typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos; struct ImGuiInputEventMousePos -{ float PosX, PosY; +{ float PosX, PosY; ImGuiMouseSource MouseSource; }; typedef struct ImGuiInputEventMouseWheel ImGuiInputEventMouseWheel; struct ImGuiInputEventMouseWheel -{ float WheelX, WheelY; +{ float WheelX, WheelY; ImGuiMouseSource MouseSource; }; typedef struct ImGuiInputEventMouseButton ImGuiInputEventMouseButton; struct ImGuiInputEventMouseButton -{ int Button; bool Down; +{ int Button; bool Down; ImGuiMouseSource MouseSource; }; typedef struct ImGuiInputEventMouseViewport ImGuiInputEventMouseViewport; struct ImGuiInputEventMouseViewport @@ -1885,6 +2103,7 @@ struct ImGuiInputEvent { ImGuiInputEventType Type; ImGuiInputSource Source; + ImU32 EventId; union { ImGuiInputEventMousePos MousePos; @@ -1903,6 +2122,7 @@ struct ImGuiKeyRoutingData { ImGuiKeyRoutingIndex NextEntryIndex; ImU16 Mods; + ImU8 RoutingCurrScore; ImU8 RoutingNextScore; ImGuiID RoutingCurr; ImGuiID RoutingNext; @@ -1925,31 +2145,31 @@ struct ImGuiKeyOwnerData bool LockUntilRelease; }; typedef enum { - ImGuiInputFlags_None = 0, - ImGuiInputFlags_Repeat = 1 << 0, ImGuiInputFlags_RepeatRateDefault = 1 << 1, ImGuiInputFlags_RepeatRateNavMove = 1 << 2, ImGuiInputFlags_RepeatRateNavTweak = 1 << 3, - ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, - ImGuiInputFlags_CondHovered = 1 << 4, - ImGuiInputFlags_CondActive = 1 << 5, + ImGuiInputFlags_RepeatUntilRelease = 1 << 4, + ImGuiInputFlags_RepeatUntilKeyModsChange = 1 << 5, + ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone = 1 << 6, + ImGuiInputFlags_RepeatUntilOtherKeyPress = 1 << 7, + ImGuiInputFlags_LockThisFrame = 1 << 20, + ImGuiInputFlags_LockUntilRelease = 1 << 21, + ImGuiInputFlags_CondHovered = 1 << 22, + ImGuiInputFlags_CondActive = 1 << 23, ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, + ImGuiInputFlags_RepeatUntilMask_ = ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress, + ImGuiInputFlags_RepeatMask_ = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_, ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, - ImGuiInputFlags_LockThisFrame = 1 << 6, - ImGuiInputFlags_LockUntilRelease = 1 << 7, - ImGuiInputFlags_RouteFocused = 1 << 8, - ImGuiInputFlags_RouteGlobalLow = 1 << 9, - ImGuiInputFlags_RouteGlobal = 1 << 10, - ImGuiInputFlags_RouteGlobalHigh = 1 << 11, - ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh, - ImGuiInputFlags_RouteAlways = 1 << 12, - ImGuiInputFlags_RouteUnlessBgFocused= 1 << 13, - ImGuiInputFlags_RouteExtraMask_ = ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused, - ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_, - ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_, + ImGuiInputFlags_RouteTypeMask_ = ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways, + ImGuiInputFlags_RouteOptionsMask_ = ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow, + ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_RepeatMask_, + ImGuiInputFlags_SupportedByIsMouseClicked = ImGuiInputFlags_Repeat, + ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_, + ImGuiInputFlags_SupportedBySetNextItemShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip, ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease, ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_, -}ImGuiInputFlags_; +}ImGuiInputFlagsPrivate_; typedef struct ImGuiListClipperRange ImGuiListClipperRange; struct ImGuiListClipperRange { @@ -1975,6 +2195,8 @@ typedef enum { ImGuiActivateFlags_PreferInput = 1 << 0, ImGuiActivateFlags_PreferTweak = 1 << 1, ImGuiActivateFlags_TryToPreserveState = 1 << 2, + ImGuiActivateFlags_FromTabbing = 1 << 3, + ImGuiActivateFlags_FromShortcut = 1 << 4, }ImGuiActivateFlags_; typedef enum { ImGuiScrollFlags_None = 0, @@ -1990,8 +2212,7 @@ typedef enum { }ImGuiScrollFlags_; typedef enum { ImGuiNavHighlightFlags_None = 0, - ImGuiNavHighlightFlags_TypeDefault = 1 << 0, - ImGuiNavHighlightFlags_TypeThin = 1 << 1, + ImGuiNavHighlightFlags_Compact = 1 << 1, ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, ImGuiNavHighlightFlags_NoRounding = 1 << 3, }ImGuiNavHighlightFlags_; @@ -2001,15 +2222,19 @@ typedef enum { ImGuiNavMoveFlags_LoopY = 1 << 1, ImGuiNavMoveFlags_WrapX = 1 << 2, ImGuiNavMoveFlags_WrapY = 1 << 3, + ImGuiNavMoveFlags_WrapMask_ = ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY, ImGuiNavMoveFlags_AllowCurrentNavId = 1 << 4, ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1 << 5, ImGuiNavMoveFlags_ScrollToEdgeY = 1 << 6, ImGuiNavMoveFlags_Forwarded = 1 << 7, ImGuiNavMoveFlags_DebugNoResult = 1 << 8, ImGuiNavMoveFlags_FocusApi = 1 << 9, - ImGuiNavMoveFlags_Tabbing = 1 << 10, - ImGuiNavMoveFlags_Activate = 1 << 11, - ImGuiNavMoveFlags_DontSetNavHighlight = 1 << 12, + ImGuiNavMoveFlags_IsTabbing = 1 << 10, + ImGuiNavMoveFlags_IsPageMove = 1 << 11, + ImGuiNavMoveFlags_Activate = 1 << 12, + ImGuiNavMoveFlags_NoSelect = 1 << 13, + ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14, + ImGuiNavMoveFlags_NoClearActiveId = 1 << 15, }ImGuiNavMoveFlags_; typedef enum { ImGuiNavLayer_Main = 0, @@ -2026,6 +2251,36 @@ struct ImGuiNavItemData float DistBox; float DistCenter; float DistAxial; + ImGuiSelectionUserData SelectionUserData; +}; +typedef struct ImGuiFocusScopeData ImGuiFocusScopeData; +struct ImGuiFocusScopeData +{ + ImGuiID ID; + ImGuiID WindowID; +}; +typedef enum { + ImGuiTypingSelectFlags_None = 0, + ImGuiTypingSelectFlags_AllowBackspace = 1 << 0, + ImGuiTypingSelectFlags_AllowSingleCharMode = 1 << 1, +}ImGuiTypingSelectFlags_; +struct ImGuiTypingSelectRequest +{ + ImGuiTypingSelectFlags Flags; + int SearchBufferLen; + const char* SearchBuffer; + bool SelectRequest; + bool SingleCharMode; + ImS8 SingleCharSize; +}; +struct ImGuiTypingSelectState +{ + ImGuiTypingSelectRequest Request; + char SearchBuffer[64]; + ImGuiID FocusScope; + int LastRequestFrame; + float LastRequestTime; + bool SingleCharModeLock; }; typedef enum { ImGuiOldColumnFlags_None = 0, @@ -2062,6 +2317,54 @@ struct ImGuiOldColumns ImVector_ImGuiOldColumnData Columns; ImDrawListSplitter Splitter; }; +struct ImGuiBoxSelectState +{ + ImGuiID ID; + bool IsActive; + bool IsStarting; + bool IsStartedFromVoid; + bool IsStartedSetNavIdOnce; + bool RequestClear; + ImGuiKeyChord KeyMods : 16; + ImVec2 StartPosRel; + ImVec2 EndPosRel; + ImVec2 ScrollAccum; + ImGuiWindow* Window; + bool UnclipMode; + ImRect UnclipRect; + ImRect BoxSelectRectPrev; + ImRect BoxSelectRectCurr; +}; +struct ImGuiMultiSelectTempData +{ + ImGuiMultiSelectIO IO; + ImGuiMultiSelectState* Storage; + ImGuiID FocusScopeId; + ImGuiMultiSelectFlags Flags; + ImVec2 ScopeRectMin; + ImVec2 BackupCursorMaxPos; + ImGuiSelectionUserData LastSubmittedItem; + ImGuiID BoxSelectId; + ImGuiKeyChord KeyMods; + ImS8 LoopRequestSetAll; + bool IsEndIO; + bool IsFocused; + bool IsKeyboardSetRange; + bool NavIdPassedBy; + bool RangeSrcPassedBy; + bool RangeDstPassedBy; +}; +struct ImGuiMultiSelectState +{ + ImGuiWindow* Window; + ImGuiID ID; + int LastFrameActive; + int LastSelectionSize; + ImS8 RangeSelected; + ImS8 NavIdSelected; + ImGuiSelectionUserData RangeSrcItem; + ImGuiSelectionUserData NavIdItem; +}; typedef enum { ImGuiDockNodeFlags_DockSpace = 1 << 10, ImGuiDockNodeFlags_CentralNode = 1 << 11, @@ -2069,19 +2372,18 @@ typedef enum { ImGuiDockNodeFlags_HiddenTabBar = 1 << 13, ImGuiDockNodeFlags_NoWindowMenuButton = 1 << 14, ImGuiDockNodeFlags_NoCloseButton = 1 << 15, - ImGuiDockNodeFlags_NoDocking = 1 << 16, - ImGuiDockNodeFlags_NoDockingSplitMe = 1 << 17, - ImGuiDockNodeFlags_NoDockingSplitOther = 1 << 18, - ImGuiDockNodeFlags_NoDockingOverMe = 1 << 19, - ImGuiDockNodeFlags_NoDockingOverOther = 1 << 20, - ImGuiDockNodeFlags_NoDockingOverEmpty = 1 << 21, - ImGuiDockNodeFlags_NoResizeX = 1 << 22, - ImGuiDockNodeFlags_NoResizeY = 1 << 23, + ImGuiDockNodeFlags_NoResizeX = 1 << 16, + ImGuiDockNodeFlags_NoResizeY = 1 << 17, + ImGuiDockNodeFlags_DockedWindowsInFocusRoute= 1 << 18, + ImGuiDockNodeFlags_NoDockingSplitOther = 1 << 19, + ImGuiDockNodeFlags_NoDockingOverMe = 1 << 20, + ImGuiDockNodeFlags_NoDockingOverOther = 1 << 21, + ImGuiDockNodeFlags_NoDockingOverEmpty = 1 << 22, + ImGuiDockNodeFlags_NoDocking = ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther, ImGuiDockNodeFlags_SharedFlagsInheritMask_ = ~0, - ImGuiDockNodeFlags_NoResizeFlagsMask_ = ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, - ImGuiDockNodeFlags_LocalFlagsMask_ = ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking, - ImGuiDockNodeFlags_LocalFlagsTransferMask_ = ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace, - ImGuiDockNodeFlags_SavedFlagsMask_ = ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking + ImGuiDockNodeFlags_NoResizeFlagsMask_ = (int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, + ImGuiDockNodeFlags_LocalFlagsTransferMask_ = (int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, + ImGuiDockNodeFlags_SavedFlagsMask_ = ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, }ImGuiDockNodeFlagsPrivate_; typedef enum { ImGuiDataAuthority_Auto, @@ -2125,6 +2427,7 @@ struct ImGuiDockNode ImGuiID LastFocusedNodeId; ImGuiID SelectedTabId; ImGuiID WantCloseTabId; + ImGuiID RefViewportId; ImGuiDataAuthority AuthorityForPos :3; ImGuiDataAuthority AuthorityForSize :3; ImGuiDataAuthority AuthorityForViewport :3; @@ -2142,14 +2445,15 @@ struct ImGuiDockNode }; typedef enum { ImGuiWindowDockStyleCol_Text, - ImGuiWindowDockStyleCol_Tab, ImGuiWindowDockStyleCol_TabHovered, - ImGuiWindowDockStyleCol_TabActive, - ImGuiWindowDockStyleCol_TabUnfocused, - ImGuiWindowDockStyleCol_TabUnfocusedActive, + ImGuiWindowDockStyleCol_TabFocused, + ImGuiWindowDockStyleCol_TabSelected, + ImGuiWindowDockStyleCol_TabSelectedOverline, + ImGuiWindowDockStyleCol_TabDimmed, + ImGuiWindowDockStyleCol_TabDimmedSelected, + ImGuiWindowDockStyleCol_TabDimmedSelectedOverline, ImGuiWindowDockStyleCol_COUNT }ImGuiWindowDockStyleCol; -typedef struct ImGuiWindowDockStyle ImGuiWindowDockStyle; struct ImGuiWindowDockStyle { ImU32 Colors[ImGuiWindowDockStyleCol_COUNT]; @@ -2169,26 +2473,28 @@ typedef struct ImGuiViewportP ImGuiViewportP; struct ImGuiViewportP { ImGuiViewport _ImGuiViewport; + ImGuiWindow* Window; int Idx; int LastFrameActive; - int LastFrontMostStampCount; + int LastFocusedStampCount; ImGuiID LastNameHash; ImVec2 LastPos; + ImVec2 LastSize; float Alpha; float LastAlpha; + bool LastFocusedHadNavWindow; short PlatformMonitor; - ImGuiWindow* Window; - int DrawListsLastFrame[2]; - ImDrawList* DrawLists[2]; + int BgFgDrawListsLastFrame[2]; + ImDrawList* BgFgDrawLists[2]; ImDrawData DrawDataP; ImDrawDataBuilder DrawDataBuilder; ImVec2 LastPlatformPos; ImVec2 LastPlatformSize; ImVec2 LastRendererSize; - ImVec2 WorkOffsetMin; - ImVec2 WorkOffsetMax; - ImVec2 BuildWorkOffsetMin; - ImVec2 BuildWorkOffsetMax; + ImVec2 WorkInsetMin; + ImVec2 WorkInsetMax; + ImVec2 BuildWorkInsetMin; + ImVec2 BuildWorkInsetMax; }; struct ImGuiWindowSettings { @@ -2201,7 +2507,9 @@ struct ImGuiWindowSettings ImGuiID ClassId; short DockOrder; bool Collapsed; + bool IsChild; bool WantApply; + bool WantDelete; }; struct ImGuiSettingsHandler { @@ -2216,15 +2524,20 @@ struct ImGuiSettingsHandler void* UserData; }; typedef enum { -ImGuiLocKey_TableSizeOne=0, -ImGuiLocKey_TableSizeAllFit=1, -ImGuiLocKey_TableSizeAllDefault=2, -ImGuiLocKey_TableResetOrder=3, -ImGuiLocKey_WindowingMainMenuBar=4, -ImGuiLocKey_WindowingPopup=5, -ImGuiLocKey_WindowingUntitled=6, -ImGuiLocKey_DockingHideTabBar=7, -ImGuiLocKey_COUNT=8, +ImGuiLocKey_VersionStr=0, +ImGuiLocKey_TableSizeOne=1, +ImGuiLocKey_TableSizeAllFit=2, +ImGuiLocKey_TableSizeAllDefault=3, +ImGuiLocKey_TableResetOrder=4, +ImGuiLocKey_WindowingMainMenuBar=5, +ImGuiLocKey_WindowingPopup=6, +ImGuiLocKey_WindowingUntitled=7, +ImGuiLocKey_OpenLink_s=8, +ImGuiLocKey_CopyLink=9, +ImGuiLocKey_DockingHideTabBar=10, +ImGuiLocKey_DockingHoldShiftToDock=11, +ImGuiLocKey_DockingDragToUndockOrMoveNode=12, +ImGuiLocKey_COUNT=13, }ImGuiLocKey; struct ImGuiLocEntry { @@ -2238,24 +2551,46 @@ typedef enum { ImGuiDebugLogFlags_EventPopup = 1 << 2, ImGuiDebugLogFlags_EventNav = 1 << 3, ImGuiDebugLogFlags_EventClipper = 1 << 4, - ImGuiDebugLogFlags_EventIO = 1 << 5, - ImGuiDebugLogFlags_EventDocking = 1 << 6, - ImGuiDebugLogFlags_EventViewport = 1 << 7, - ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, - ImGuiDebugLogFlags_OutputToTTY = 1 << 10, + ImGuiDebugLogFlags_EventSelection = 1 << 5, + ImGuiDebugLogFlags_EventIO = 1 << 6, + ImGuiDebugLogFlags_EventInputRouting = 1 << 7, + ImGuiDebugLogFlags_EventDocking = 1 << 8, + ImGuiDebugLogFlags_EventViewport = 1 << 9, + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, + ImGuiDebugLogFlags_OutputToTTY = 1 << 20, + ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21, }ImGuiDebugLogFlags_; +typedef struct ImGuiDebugAllocEntry ImGuiDebugAllocEntry; +struct ImGuiDebugAllocEntry +{ + int FrameCount; + ImS16 AllocCount; + ImS16 FreeCount; +}; +typedef struct ImGuiDebugAllocInfo ImGuiDebugAllocInfo; +struct ImGuiDebugAllocInfo +{ + int TotalAllocCount; + int TotalFreeCount; + ImS16 LastEntriesIdx; + ImGuiDebugAllocEntry LastEntriesBuf[6]; +}; struct ImGuiMetricsConfig { bool ShowDebugLog; - bool ShowStackTool; + bool ShowIDStackTool; bool ShowWindowsRects; bool ShowWindowsBeginOrder; bool ShowTablesRects; bool ShowDrawCmdMesh; bool ShowDrawCmdBoundingBoxes; + bool ShowTextEncodingViewer; + bool ShowAtlasTintedWithTextColor; bool ShowDockingNodes; int ShowWindowsRectsType; int ShowTablesRectsType; + int HighlightMonitorIdx; + ImGuiID HighlightViewportID; }; typedef struct ImGuiStackLevelInfo ImGuiStackLevelInfo; struct ImGuiStackLevelInfo @@ -2266,10 +2601,10 @@ struct ImGuiStackLevelInfo ImGuiDataType DataType : 8; char Desc[57]; }; -typedef struct ImGuiStackTool ImGuiStackTool; +typedef struct ImGuiIDStackTool ImGuiIDStackTool; typedef struct ImVector_ImGuiStackLevelInfo {int Size;int Capacity;ImGuiStackLevelInfo* Data;} ImVector_ImGuiStackLevelInfo; -struct ImGuiStackTool +struct ImGuiIDStackTool { int LastActiveFrame; int StackLevel; @@ -2296,7 +2631,7 @@ typedef struct ImVector_ImGuiColorMod {int Size;int Capacity;ImGuiColorMod* Data typedef struct ImVector_ImGuiStyleMod {int Size;int Capacity;ImGuiStyleMod* Data;} ImVector_ImGuiStyleMod; -typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; +typedef struct ImVector_ImGuiFocusScopeData {int Size;int Capacity;ImGuiFocusScopeData* Data;} ImVector_ImGuiFocusScopeData; typedef struct ImVector_ImGuiItemFlags {int Size;int Capacity;ImGuiItemFlags* Data;} ImVector_ImGuiItemFlags; @@ -2304,6 +2639,8 @@ typedef struct ImVector_ImGuiGroupData {int Size;int Capacity;ImGuiGroupData* Da typedef struct ImVector_ImGuiPopupData {int Size;int Capacity;ImGuiPopupData* Data;} ImVector_ImGuiPopupData; +typedef struct ImVector_ImGuiTreeNodeStackData {int Size;int Capacity;ImGuiTreeNodeStackData* Data;} ImVector_ImGuiTreeNodeStackData; + typedef struct ImVector_ImGuiViewportPPtr {int Size;int Capacity;ImGuiViewportP** Data;} ImVector_ImGuiViewportPPtr; typedef struct ImVector_unsigned_char {int Size;int Capacity;unsigned char* Data;} ImVector_unsigned_char; @@ -2324,6 +2661,14 @@ typedef struct ImVector_ImGuiPtrOrIndex {int Size;int Capacity;ImGuiPtrOrIndex* typedef struct ImVector_ImGuiShrinkWidthItem {int Size;int Capacity;ImGuiShrinkWidthItem* Data;} ImVector_ImGuiShrinkWidthItem; +typedef struct ImVector_ImGuiMultiSelectTempData {int Size;int Capacity;ImGuiMultiSelectTempData* Data;} ImVector_ImGuiMultiSelectTempData; + +typedef struct ImVector_ImGuiMultiSelectState {int Size;int Capacity;ImGuiMultiSelectState* Data;} ImVector_ImGuiMultiSelectState; + +typedef struct ImPool_ImGuiMultiSelectState {ImVector_ImGuiMultiSelectState Buf;ImGuiStorage Map;ImPoolIdx FreeIdx;ImPoolIdx AliveCount;} ImPool_ImGuiMultiSelectState; + +typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; + typedef struct ImVector_ImGuiSettingsHandler {int Size;int Capacity;ImGuiSettingsHandler* Data;} ImVector_ImGuiSettingsHandler; typedef struct ImChunkStream_ImGuiWindowSettings {ImVector_char Buf;} ImChunkStream_ImGuiWindowSettings; @@ -2338,14 +2683,14 @@ struct ImGuiContext bool FontAtlasOwnedByContext; ImGuiIO IO; ImGuiPlatformIO PlatformIO; - ImVector_ImGuiInputEvent InputEventsQueue; - ImVector_ImGuiInputEvent InputEventsTrail; ImGuiStyle Style; ImGuiConfigFlags ConfigFlagsCurrFrame; ImGuiConfigFlags ConfigFlagsLastFrame; ImFont* Font; float FontSize; float FontBaseSize; + float FontScale; + float CurrentDpiScale; ImDrawListSharedData DrawListSharedData; double Time; int FrameCount; @@ -2358,6 +2703,11 @@ struct ImGuiContext bool GcCompactAll; bool TestEngineHookItems; void* TestEngine; + char ContextName[16]; + ImVector_ImGuiInputEvent InputEventsQueue; + ImVector_ImGuiInputEvent InputEventsTrail; + ImGuiMouseSource InputEventsNextMouseSource; + ImU32 InputEventsNextEventId; ImVector_ImGuiWindowPtr Windows; ImVector_ImGuiWindowPtr WindowsFocusOrder; ImVector_ImGuiWindowPtr WindowsTempSortBuffer; @@ -2365,23 +2715,29 @@ struct ImGuiContext ImGuiStorage WindowsById; int WindowsActiveCount; ImVec2 WindowsHoverPadding; + ImGuiID DebugBreakInWindow; ImGuiWindow* CurrentWindow; ImGuiWindow* HoveredWindow; ImGuiWindow* HoveredWindowUnderMovingWindow; + ImGuiWindow* HoveredWindowBeforeClear; ImGuiWindow* MovingWindow; ImGuiWindow* WheelingWindow; ImVec2 WheelingWindowRefMousePos; int WheelingWindowStartFrame; + int WheelingWindowScrolledFrame; float WheelingWindowReleaseTimer; ImVec2 WheelingWindowWheelRemainder; ImVec2 WheelingAxisAvg; + ImGuiID DebugDrawIdConflicts; ImGuiID DebugHookIdInfo; ImGuiID HoveredId; ImGuiID HoveredIdPreviousFrame; - bool HoveredIdAllowOverlap; - bool HoveredIdDisabled; + int HoveredIdPreviousFrameItemCount; float HoveredIdTimer; float HoveredIdNotActiveTimer; + bool HoveredIdAllowOverlap; + bool HoveredIdIsDisabled; + bool ItemUnclipByLog; ImGuiID ActiveId; ImGuiID ActiveIdIsAlive; float ActiveIdTimer; @@ -2391,59 +2747,68 @@ struct ImGuiContext bool ActiveIdHasBeenPressedBefore; bool ActiveIdHasBeenEditedBefore; bool ActiveIdHasBeenEditedThisFrame; + bool ActiveIdFromShortcut; + int ActiveIdMouseButton : 8; ImVec2 ActiveIdClickOffset; ImGuiWindow* ActiveIdWindow; ImGuiInputSource ActiveIdSource; - int ActiveIdMouseButton; ImGuiID ActiveIdPreviousFrame; bool ActiveIdPreviousFrameIsAlive; bool ActiveIdPreviousFrameHasBeenEditedBefore; ImGuiWindow* ActiveIdPreviousFrameWindow; ImGuiID LastActiveId; float LastActiveIdTimer; + double LastKeyModsChangeTime; + double LastKeyModsChangeFromNoneTime; + double LastKeyboardKeyPressTime; + ImBitArrayForNamedKeys KeysMayBeCharInput; ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT]; ImGuiKeyRoutingTable KeysRoutingTable; ImU32 ActiveIdUsingNavDirMask; bool ActiveIdUsingAllKeyboardKeys; - ImU32 ActiveIdUsingNavInputMask; + ImGuiKeyChord DebugBreakInShortcutRouting; ImGuiID CurrentFocusScopeId; ImGuiItemFlags CurrentItemFlags; ImGuiID DebugLocateId; ImGuiNextItemData NextItemData; ImGuiLastItemData LastItemData; ImGuiNextWindowData NextWindowData; + bool DebugShowGroupRects; + ImGuiCol DebugFlashStyleColorIdx; ImVector_ImGuiColorMod ColorStack; ImVector_ImGuiStyleMod StyleVarStack; ImVector_ImFontPtr FontStack; - ImVector_ImGuiID FocusScopeStack; + ImVector_ImGuiFocusScopeData FocusScopeStack; ImVector_ImGuiItemFlags ItemFlagsStack; ImVector_ImGuiGroupData GroupStack; ImVector_ImGuiPopupData OpenPopupStack; ImVector_ImGuiPopupData BeginPopupStack; - int BeginMenuCount; + ImVector_ImGuiTreeNodeStackData TreeNodeStack; ImVector_ImGuiViewportPPtr Viewports; - float CurrentDpiScale; ImGuiViewportP* CurrentViewport; ImGuiViewportP* MouseViewport; ImGuiViewportP* MouseLastHoveredViewport; ImGuiID PlatformLastFocusedViewportId; ImGuiPlatformMonitor FallbackMonitor; - int ViewportFrontMostStampCount; + ImRect PlatformMonitorsFullWorkRect; + int ViewportCreatedCount; + int PlatformWindowsCreatedCount; + int ViewportFocusedStampCount; ImGuiWindow* NavWindow; ImGuiID NavId; ImGuiID NavFocusScopeId; + ImGuiNavLayer NavLayer; ImGuiID NavActivateId; ImGuiID NavActivateDownId; ImGuiID NavActivatePressedId; - ImGuiID NavActivateInputId; ImGuiActivateFlags NavActivateFlags; - ImGuiID NavJustMovedToId; - ImGuiID NavJustMovedToFocusScopeId; - ImGuiKeyChord NavJustMovedToKeyMods; + ImVector_ImGuiFocusScopeData NavFocusRoute; + ImGuiID NavHighlightActivatedId; + float NavHighlightActivatedTimer; ImGuiID NavNextActivateId; ImGuiActivateFlags NavNextActivateFlags; ImGuiInputSource NavInputSource; - ImGuiNavLayer NavLayer; + ImGuiSelectionUserData NavLastValidSelectionUserData; bool NavIdIsAlive; bool NavMousePosDirty; bool NavDisableHighlight; @@ -2451,8 +2816,7 @@ struct ImGuiContext bool NavAnyRequest; bool NavInitRequest; bool NavInitRequestFromMove; - ImGuiID NavInitResultId; - ImRect NavInitResultRectRel; + ImGuiNavItemData NavInitResult; bool NavMoveSubmitted; bool NavMoveScoringItems; bool NavMoveForwardToNextFrame; @@ -2471,6 +2835,12 @@ struct ImGuiContext ImGuiNavItemData NavMoveResultLocalVisible; ImGuiNavItemData NavMoveResultOther; ImGuiNavItemData NavTabbingResultFirst; + ImGuiID NavJustMovedFromFocusScopeId; + ImGuiID NavJustMovedToId; + ImGuiID NavJustMovedToFocusScopeId; + ImGuiKeyChord NavJustMovedToKeyMods; + bool NavJustMovedToIsTabbing; + bool NavJustMovedToHasSelectionData; ImGuiKeyChord ConfigNavWindowingKeyNext; ImGuiKeyChord ConfigNavWindowingKeyPrev; ImGuiWindow* NavWindowingTarget; @@ -2479,10 +2849,10 @@ struct ImGuiContext float NavWindowingTimer; float NavWindowingHighlightAlpha; bool NavWindowingToggleLayer; + ImGuiKey NavWindowingToggleKey; ImVec2 NavWindowingAccumDeltaPos; ImVec2 NavWindowingAccumDeltaSize; float DimBgRatio; - ImGuiMouseCursor MouseCursor; bool DragDropActive; bool DragDropWithinSource; bool DragDropWithinTarget; @@ -2491,6 +2861,7 @@ struct ImGuiContext int DragDropMouseButton; ImGuiPayload DragDropPayload; ImRect DragDropTargetRect; + ImRect DragDropTargetClipRect; ImGuiID DragDropTargetId; ImGuiDragDropFlags DragDropAcceptFlags; float DragDropAcceptIdCurrRectSurface; @@ -2503,6 +2874,7 @@ struct ImGuiContext int ClipperTempDataStacked; ImVector_ImGuiListClipperData ClipperTempData; ImGuiTable* CurrentTable; + ImGuiID DebugBreakInTable; int TablesTempDataStacked; ImVector_ImGuiTableTempData TablesTempData; ImPool_ImGuiTable Tables; @@ -2512,37 +2884,57 @@ struct ImGuiContext ImPool_ImGuiTabBar TabBars; ImVector_ImGuiPtrOrIndex CurrentTabBarStack; ImVector_ImGuiShrinkWidthItem ShrinkWidthBuffer; - ImGuiID HoverDelayId; - ImGuiID HoverDelayIdPreviousFrame; - float HoverDelayTimer; - float HoverDelayClearTimer; + ImGuiBoxSelectState BoxSelectState; + ImGuiMultiSelectTempData* CurrentMultiSelect; + int MultiSelectTempDataStacked; + ImVector_ImGuiMultiSelectTempData MultiSelectTempData; + ImPool_ImGuiMultiSelectState MultiSelectStorage; + ImGuiID HoverItemDelayId; + ImGuiID HoverItemDelayIdPreviousFrame; + float HoverItemDelayTimer; + float HoverItemDelayClearTimer; + ImGuiID HoverItemUnlockedStationaryId; + ImGuiID HoverWindowUnlockedStationaryId; + ImGuiMouseCursor MouseCursor; + float MouseStationaryTimer; ImVec2 MouseLastValidPos; ImGuiInputTextState InputTextState; + ImGuiInputTextDeactivatedState InputTextDeactivatedState; ImFont InputTextPasswordFont; ImGuiID TempInputId; + ImGuiDataTypeStorage DataTypeZeroValue; + int BeginMenuDepth; + int BeginComboDepth; ImGuiColorEditFlags ColorEditOptions; - float ColorEditLastHue; - float ColorEditLastSat; - ImU32 ColorEditLastColor; + ImGuiID ColorEditCurrentID; + ImGuiID ColorEditSavedID; + float ColorEditSavedHue; + float ColorEditSavedSat; + ImU32 ColorEditSavedColor; ImVec4 ColorPickerRef; ImGuiComboPreviewData ComboPreviewData; + ImRect WindowResizeBorderExpectedRect; + bool WindowResizeRelativeMode; + short ScrollbarSeekMode; + float ScrollbarClickDeltaToGrabCenter; float SliderGrabClickOffset; float SliderCurrentAccum; bool SliderCurrentAccumDirty; bool DragCurrentAccumDirty; float DragCurrentAccum; float DragSpeedDefaultRatio; - float ScrollbarClickDeltaToGrabCenter; float DisabledAlphaBackup; short DisabledStackSize; + short LockMarkEdited; short TooltipOverrideCount; ImVector_char ClipboardHandlerData; ImVector_ImGuiID MenusIdSubmittedThisFrame; + ImGuiTypingSelectState TypingSelectState; ImGuiPlatformImeData PlatformImeData; ImGuiPlatformImeData PlatformImeDataPrev; ImGuiID PlatformImeViewport; - char PlatformLocaleDecimalPoint; ImGuiDockContext DockContext; + void (*DockNodeWindowMenuHandler)(ImGuiContext* ctx, ImGuiDockNode* node, ImGuiTabBar* tab_bar); bool SettingsLoaded; float SettingsDirtyTimer; ImGuiTextBuffer SettingsIniData; @@ -2566,12 +2958,20 @@ struct ImGuiContext ImGuiDebugLogFlags DebugLogFlags; ImGuiTextBuffer DebugLogBuf; ImGuiTextIndex DebugLogIndex; + ImGuiDebugLogFlags DebugLogAutoDisableFlags; + ImU8 DebugLogAutoDisableFrames; ImU8 DebugLocateFrames; + bool DebugBreakInLocateId; + ImGuiKeyChord DebugBreakKeyChord; + ImS8 DebugBeginReturnValueCullDepth; bool DebugItemPickerActive; ImU8 DebugItemPickerMouseButton; ImGuiID DebugItemPickerBreakId; + float DebugFlashStyleColorTime; + ImVec4 DebugFlashStyleColorBackup; ImGuiMetricsConfig DebugMetricsConfig; - ImGuiStackTool DebugStackTool; + ImGuiIDStackTool DebugIDStackTool; + ImGuiDebugAllocInfo DebugAllocInfo; ImGuiDockNode* DebugHoveredDockNode; float FramerateSecPerFrame[60]; int FramerateSecPerFrameIdx; @@ -2581,6 +2981,7 @@ struct ImGuiContext int WantCaptureKeyboardNextFrame; int WantTextInputNextFrame; ImVector_char TempBuffer; + char TempKeychordName[64]; }; struct ImGuiWindowTempData { @@ -2602,19 +3003,21 @@ struct ImGuiWindowTempData ImGuiNavLayer NavLayerCurrent; short NavLayersActiveMask; short NavLayersActiveMaskNext; + bool NavIsScrollPushableX; bool NavHideHighlightOneFrame; - bool NavHasScroll; + bool NavWindowHasScrollY; bool MenuBarAppending; ImVec2 MenuBarOffset; ImGuiMenuColumns MenuColumns; int TreeDepth; - ImU32 TreeJumpToParentOnPopMask; + ImU32 TreeHasStackDataDepthMask; ImVector_ImGuiWindowPtr ChildWindows; ImGuiStorage* StateStorage; ImGuiOldColumns* CurrentColumns; int CurrentTableIdx; ImGuiLayoutType LayoutType; ImGuiLayoutType ParentLayoutType; + ImU32 ModalDimBgColor; float ItemWidth; float TextWrapPos; ImVector_float ItemWidthStack; @@ -2624,9 +3027,11 @@ typedef struct ImVector_ImGuiOldColumns {int Size;int Capacity;ImGuiOldColumns* struct ImGuiWindow { + ImGuiContext* Ctx; char* Name; ImGuiID ID; ImGuiWindowFlags Flags, FlagsPreviousFrame; + ImGuiChildFlags ChildFlags; ImGuiWindowClass WindowClass; ImGuiViewportP* Viewport; ImGuiID ViewportId; @@ -2641,6 +3046,7 @@ struct ImGuiWindow ImVec2 WindowPadding; float WindowRounding; float WindowBorderSize; + float TitleBarHeight, MenuBarHeight; float DecoOuterSizeX1, DecoOuterSizeY1; float DecoOuterSizeX2, DecoOuterSizeY2; float DecoInnerSizeX1, DecoInnerSizeY1; @@ -2648,6 +3054,7 @@ struct ImGuiWindow ImGuiID MoveId; ImGuiID TabId; ImGuiID ChildId; + ImGuiID PopupId; ImVec2 Scroll; ImVec2 ScrollMax; ImVec2 ScrollTarget; @@ -2662,20 +3069,20 @@ struct ImGuiWindow bool Collapsed; bool WantCollapseToggle; bool SkipItems; + bool SkipRefresh; bool Appearing; bool Hidden; bool IsFallbackWindow; bool IsExplicitChild; bool HasCloseButton; + signed char ResizeBorderHovered; signed char ResizeBorderHeld; short BeginCount; short BeginCountPreviousFrame; short BeginOrderWithinParent; short BeginOrderWithinContext; short FocusOrder; - ImGuiID PopupId; ImS8 AutoFitFramesX, AutoFitFramesY; - ImS8 AutoFitChildAxises; bool AutoFitOnlyGrows; ImGuiDir AutoPosLastDirection; ImS8 HiddenFramesCanSkipItems; @@ -2717,9 +3124,11 @@ struct ImGuiWindow ImGuiWindow* RootWindowDockTree; ImGuiWindow* RootWindowForTitleBarHighlight; ImGuiWindow* RootWindowForNav; + ImGuiWindow* ParentWindowForFocusRoute; ImGuiWindow* NavLastChildNavWindow; ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; ImRect NavRectRel[ImGuiNavLayer_COUNT]; + ImVec2 NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]; ImGuiID NavRootFocusScopeId; int MemoryDrawListIdxCapacity; int MemoryDrawListVtxCapacity; @@ -2746,7 +3155,6 @@ typedef enum { ImGuiTabItemFlags_NoCloseButton = 1 << 20, ImGuiTabItemFlags_Button = 1 << 21, ImGuiTabItemFlags_Unsorted = 1 << 22, - ImGuiTabItemFlags_Preview = 1 << 23, }ImGuiTabItemFlagsPrivate_; struct ImGuiTabItem { @@ -2787,6 +3195,8 @@ struct ImGuiTabBar float ScrollingSpeed; float ScrollingRectMinX; float ScrollingRectMaxX; + float SeparatorMinX; + float SeparatorMaxX; ImGuiID ReorderRequestTabId; ImS16 ReorderRequestOffset; ImS8 BeginCount; @@ -2800,8 +3210,8 @@ struct ImGuiTabBar ImVec2 BackupCursorPos; ImGuiTextBuffer TabsNames; }; -typedef ImS8 ImGuiTableColumnIdx; -typedef ImU8 ImGuiTableDrawChannelIdx; +typedef ImS16 ImGuiTableColumnIdx; +typedef ImU16 ImGuiTableDrawChannelIdx; struct ImGuiTableColumn { ImGuiTableColumnFlags Flags; @@ -2810,6 +3220,7 @@ struct ImGuiTableColumn float MaxX; float WidthRequest; float WidthAuto; + float WidthMax; float StretchWeight; float InitStretchWeightOrWidth; ImRect ClipRect; @@ -2852,11 +3263,21 @@ struct ImGuiTableCellData ImU32 BgColor; ImGuiTableColumnIdx Column; }; +struct ImGuiTableHeaderData +{ + ImGuiTableColumnIdx Index; + ImU32 TextColor; + ImU32 BgColor0; + ImU32 BgColor1; +}; struct ImGuiTableInstanceData { + ImGuiID TableInstanceID; float LastOuterHeight; - float LastFirstRowHeight; + float LastTopHeadersRowHeight; float LastFrozenHeight; + int HoveredRowLast; + int HoveredRowNext; }; typedef struct ImSpan_ImGuiTableColumn {ImGuiTableColumn* Data;ImGuiTableColumn* DataEnd;} ImSpan_ImGuiTableColumn; @@ -2877,10 +3298,9 @@ struct ImGuiTable ImSpan_ImGuiTableColumn Columns; ImSpan_ImGuiTableColumnIdx DisplayOrderToIndex; ImSpan_ImGuiTableCellData RowCellData; - ImU64 EnabledMaskByDisplayOrder; - ImU64 EnabledMaskByIndex; - ImU64 VisibleMaskByIndex; - ImU64 RequestOutputMaskByIndex; + ImBitArrayPtr EnabledMaskByDisplayOrder; + ImBitArrayPtr EnabledMaskByIndex; + ImBitArrayPtr VisibleMaskByIndex; ImGuiTableFlags SettingsLoadedFlags; int SettingsOffset; int LastFrameActive; @@ -2892,6 +3312,7 @@ struct ImGuiTable float RowPosY1; float RowPosY2; float RowMinHeight; + float RowCellPaddingY; float RowTextBaseline; float RowIndentOffsetX; ImGuiTableRowFlags RowFlags : 16; @@ -2906,7 +3327,6 @@ struct ImGuiTable float MinColumnWidth; float OuterPaddingX; float CellPaddingX; - float CellPaddingY; float CellSpacingX1; float CellSpacingX2; float InnerWidth; @@ -2916,6 +3336,8 @@ struct ImGuiTable float ResizedColumnNextWidth; float ResizeLockMinContentsX2; float RefScale; + float AngledHeadersHeight; + float AngledHeadersSlope; ImRect OuterRect; ImRect InnerRect; ImRect WorkRect; @@ -2938,8 +3360,10 @@ struct ImGuiTable ImGuiTableColumnIdx ColumnsEnabledCount; ImGuiTableColumnIdx ColumnsEnabledFixedCount; ImGuiTableColumnIdx DeclColumnsCount; + ImGuiTableColumnIdx AngledHeadersCount; ImGuiTableColumnIdx HoveredColumnBody; ImGuiTableColumnIdx HoveredColumnBorder; + ImGuiTableColumnIdx HighlightColumnHeader; ImGuiTableColumnIdx AutoFitSingleColumn; ImGuiTableColumnIdx ResizedColumn; ImGuiTableColumnIdx LastResizedColumn; @@ -2965,6 +3389,7 @@ struct ImGuiTable bool IsSortSpecsDirty; bool IsUsingHeaders; bool IsContextPopupOpen; + bool DisableDefaultContextMenu; bool IsSettingsRequestLoad; bool IsSettingsDirty; bool IsDefaultDisplayOrder; @@ -2972,15 +3397,21 @@ struct ImGuiTable bool IsResetDisplayOrderRequest; bool IsUnfrozenRows; bool IsDefaultSizingPolicy; + bool IsActiveIdAliveBeforeTable; + bool IsActiveIdInTable; bool HasScrollbarYCurr; bool HasScrollbarYPrev; bool MemoryCompacted; bool HostSkipItems; }; +typedef struct ImVector_ImGuiTableHeaderData {int Size;int Capacity;ImGuiTableHeaderData* Data;} ImVector_ImGuiTableHeaderData; + struct ImGuiTableTempData { int TableIndex; float LastTimeActive; + float AngledHeadersExtraWidth; + ImVector_ImGuiTableHeaderData AngledHeadersRequests; ImVec2 UserOuterSize; ImDrawListSplitter DrawSplitter; ImRect HostBackupWorkRect; @@ -3033,6 +3464,8 @@ typedef enum { }ImGuiFreeTypeBuilderFlags; #define IMGUI_HAS_DOCK 1 +#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8) + #else struct GLFWwindow; struct SDL_Window; @@ -3040,14 +3473,11 @@ typedef union SDL_Event SDL_Event; #endif // CIMGUI_DEFINE_ENUMS_AND_STRUCTS #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS -typedef struct ImGuiStorage::ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiTextFilter::ImGuiTextRange ImGuiTextRange; typedef ImStb::STB_TexteditState STB_TexteditState; -typedef ImStb::StbTexteditRow StbTexteditRow; -typedef ImStb::StbUndoRecord StbUndoRecord; -typedef ImStb::StbUndoState StbUndoState; typedef ImChunkStream ImChunkStream_ImGuiTableSettings; typedef ImChunkStream ImChunkStream_ImGuiWindowSettings; +typedef ImPool ImPool_ImGuiMultiSelectState; typedef ImPool ImPool_ImGuiTabBar; typedef ImPool ImPool_ImGuiTable; typedef ImSpan ImSpan_ImGuiTableCellData; @@ -3066,6 +3496,7 @@ typedef ImVector ImVector_ImGuiColorMod; typedef ImVector ImVector_ImGuiContextHook; typedef ImVector ImVector_ImGuiDockNodeSettings; typedef ImVector ImVector_ImGuiDockRequest; +typedef ImVector ImVector_ImGuiFocusScopeData; typedef ImVector ImVector_ImGuiGroupData; typedef ImVector ImVector_ImGuiID; typedef ImVector ImVector_ImGuiInputEvent; @@ -3073,11 +3504,13 @@ typedef ImVector ImVector_ImGuiItemFlags; typedef ImVector ImVector_ImGuiKeyRoutingData; typedef ImVector ImVector_ImGuiListClipperData; typedef ImVector ImVector_ImGuiListClipperRange; +typedef ImVector ImVector_ImGuiMultiSelectTempData; typedef ImVector ImVector_ImGuiOldColumnData; typedef ImVector ImVector_ImGuiOldColumns; typedef ImVector ImVector_ImGuiPlatformMonitor; typedef ImVector ImVector_ImGuiPopupData; typedef ImVector ImVector_ImGuiPtrOrIndex; +typedef ImVector ImVector_ImGuiSelectionRequest; typedef ImVector ImVector_ImGuiSettingsHandler; typedef ImVector ImVector_ImGuiShrinkWidthItem; typedef ImVector ImVector_ImGuiStackLevelInfo; @@ -3085,9 +3518,11 @@ typedef ImVector ImVector_ImGuiStoragePair; typedef ImVector ImVector_ImGuiStyleMod; typedef ImVector ImVector_ImGuiTabItem; typedef ImVector ImVector_ImGuiTableColumnSortSpecs; +typedef ImVector ImVector_ImGuiTableHeaderData; typedef ImVector ImVector_ImGuiTableInstanceData; typedef ImVector ImVector_ImGuiTableTempData; typedef ImVector ImVector_ImGuiTextRange; +typedef ImVector ImVector_ImGuiTreeNodeStackData; typedef ImVector ImVector_ImGuiViewportPtr; typedef ImVector ImVector_ImGuiViewportPPtr; typedef ImVector ImVector_ImGuiWindowPtr; @@ -3114,6 +3549,7 @@ CIMGUI_API void igDestroyContext(ImGuiContext* ctx); CIMGUI_API ImGuiContext* igGetCurrentContext(void); CIMGUI_API void igSetCurrentContext(ImGuiContext* ctx); CIMGUI_API ImGuiIO* igGetIO(void); +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API ImGuiStyle* igGetStyle(void); CIMGUI_API void igNewFrame(void); CIMGUI_API void igEndFrame(void); @@ -3122,7 +3558,7 @@ CIMGUI_API ImDrawData* igGetDrawData(void); CIMGUI_API void igShowDemoWindow(bool* p_open); CIMGUI_API void igShowMetricsWindow(bool* p_open); CIMGUI_API void igShowDebugLogWindow(bool* p_open); -CIMGUI_API void igShowStackToolWindow(bool* p_open); +CIMGUI_API void igShowIDStackToolWindow(bool* p_open); CIMGUI_API void igShowAboutWindow(bool* p_open); CIMGUI_API void igShowStyleEditor(ImGuiStyle* ref); CIMGUI_API bool igShowStyleSelector(const char* label); @@ -3134,8 +3570,8 @@ CIMGUI_API void igStyleColorsLight(ImGuiStyle* dst); CIMGUI_API void igStyleColorsClassic(ImGuiStyle* dst); CIMGUI_API bool igBegin(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEnd(void); -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags); -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags); +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); CIMGUI_API void igEndChild(void); CIMGUI_API bool igIsWindowAppearing(void); CIMGUI_API bool igIsWindowCollapsed(void); @@ -3166,10 +3602,6 @@ CIMGUI_API void igSetWindowPos_Str(const char* name,const ImVec2 pos,ImGuiCond c CIMGUI_API void igSetWindowSize_Str(const char* name,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_Str(const char* name,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowFocus_Str(const char* name); -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut); CIMGUI_API float igGetScrollX(void); CIMGUI_API float igGetScrollY(void); CIMGUI_API void igSetScrollX_Float(float scroll_x); @@ -3187,11 +3619,11 @@ CIMGUI_API void igPushStyleColor_Vec4(ImGuiCol idx,const ImVec4 col); CIMGUI_API void igPopStyleColor(int count); CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val); CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val); +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x); +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y); CIMGUI_API void igPopStyleVar(int count); -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus); -CIMGUI_API void igPopAllowKeyboardFocus(void); -CIMGUI_API void igPushButtonRepeat(bool repeat); -CIMGUI_API void igPopButtonRepeat(void); +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); +CIMGUI_API void igPopItemFlag(void); CIMGUI_API void igPushItemWidth(float item_width); CIMGUI_API void igPopItemWidth(void); CIMGUI_API void igSetNextItemWidth(float item_width); @@ -3203,8 +3635,18 @@ CIMGUI_API float igGetFontSize(void); CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut); CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul); CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col); -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col); +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul); CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx); +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); +CIMGUI_API void igGetCursorPos(ImVec2 *pOut); +CIMGUI_API float igGetCursorPosX(void); +CIMGUI_API float igGetCursorPosY(void); +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); +CIMGUI_API void igSetCursorPosX(float local_x); +CIMGUI_API void igSetCursorPosY(float local_y); +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); CIMGUI_API void igSeparator(void); CIMGUI_API void igSameLine(float offset_from_start_x,float spacing); CIMGUI_API void igNewLine(void); @@ -3214,15 +3656,6 @@ CIMGUI_API void igIndent(float indent_w); CIMGUI_API void igUnindent(float indent_w); CIMGUI_API void igBeginGroup(void); CIMGUI_API void igEndGroup(void); -CIMGUI_API void igGetCursorPos(ImVec2 *pOut); -CIMGUI_API float igGetCursorPosX(void); -CIMGUI_API float igGetCursorPosY(void); -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); -CIMGUI_API void igSetCursorPosX(float local_x); -CIMGUI_API void igSetCursorPosY(float local_y); -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); CIMGUI_API void igAlignTextToFramePadding(void); CIMGUI_API float igGetTextLineHeight(void); CIMGUI_API float igGetTextLineHeightWithSpacing(void); @@ -3236,6 +3669,7 @@ CIMGUI_API void igPopID(void); CIMGUI_API ImGuiID igGetID_Str(const char* str_id); CIMGUI_API ImGuiID igGetID_StrStr(const char* str_id_begin,const char* str_id_end); CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id); +CIMGUI_API ImGuiID igGetID_Int(int int_id); CIMGUI_API void igTextUnformatted(const char* text,const char* text_end); CIMGUI_API void igText(const char* fmt,...); CIMGUI_API void igTextV(const char* fmt,va_list args); @@ -3249,6 +3683,7 @@ CIMGUI_API void igLabelText(const char* label,const char* fmt,...); CIMGUI_API void igLabelTextV(const char* label,const char* fmt,va_list args); CIMGUI_API void igBulletText(const char* fmt,...); CIMGUI_API void igBulletTextV(const char* fmt,va_list args); +CIMGUI_API void igSeparatorText(const char* label); CIMGUI_API bool igButton(const char* label,const ImVec2 size); CIMGUI_API bool igSmallButton(const char* label); CIMGUI_API bool igInvisibleButton(const char* str_id,const ImVec2 size,ImGuiButtonFlags flags); @@ -3260,13 +3695,15 @@ CIMGUI_API bool igRadioButton_Bool(const char* label,bool active); CIMGUI_API bool igRadioButton_IntPtr(const char* label,int* v,int v_button); CIMGUI_API void igProgressBar(float fraction,const ImVec2 size_arg,const char* overlay); CIMGUI_API void igBullet(void); -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); +CIMGUI_API bool igTextLink(const char* label); +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url); +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags); CIMGUI_API void igEndCombo(void); CIMGUI_API bool igCombo_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items); CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items); -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items); +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items); CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat2(const char* label,float v[2],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat3(const char* label,float v[3],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); @@ -3330,12 +3767,17 @@ CIMGUI_API float igGetTreeNodeToLabelSpacing(void); CIMGUI_API bool igCollapsingHeader_TreeNodeFlags(const char* label,ImGuiTreeNodeFlags flags); CIMGUI_API bool igCollapsingHeader_BoolPtr(const char* label,bool* p_visible,ImGuiTreeNodeFlags flags); CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond); +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id); CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size); CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size); +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count); +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect(void); +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data); +CIMGUI_API bool igIsItemToggledSelection(void); CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size); CIMGUI_API void igEndListBox(void); CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int height_in_items); -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items); +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items); CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); CIMGUI_API void igPlotLines_FnFloatPtr(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size); CIMGUI_API void igPlotHistogram_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); @@ -3352,10 +3794,13 @@ CIMGUI_API bool igBeginMenu(const char* label,bool enabled); CIMGUI_API void igEndMenu(void); CIMGUI_API bool igMenuItem_Bool(const char* label,const char* shortcut,bool selected,bool enabled); CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* p_selected,bool enabled); -CIMGUI_API void igBeginTooltip(void); +CIMGUI_API bool igBeginTooltip(void); CIMGUI_API void igEndTooltip(void); CIMGUI_API void igSetTooltip(const char* fmt,...); CIMGUI_API void igSetTooltipV(const char* fmt,va_list args); +CIMGUI_API bool igBeginItemTooltip(void); +CIMGUI_API void igSetItemTooltip(const char* fmt,...); +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args); CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags); CIMGUI_API bool igBeginPopupModal(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEndPopup(void); @@ -3367,15 +3812,16 @@ CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextVoid(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igIsPopupOpen_Str(const char* str_id,ImGuiPopupFlags flags); -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); CIMGUI_API void igEndTable(void); CIMGUI_API void igTableNextRow(ImGuiTableRowFlags row_flags,float min_row_height); CIMGUI_API bool igTableNextColumn(void); CIMGUI_API bool igTableSetColumnIndex(int column_n); CIMGUI_API void igTableSetupColumn(const char* label,ImGuiTableColumnFlags flags,float init_width_or_weight,ImGuiID user_id); CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows); -CIMGUI_API void igTableHeadersRow(void); CIMGUI_API void igTableHeader(const char* label); +CIMGUI_API void igTableHeadersRow(void); +CIMGUI_API void igTableAngledHeadersRow(void); CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs(void); CIMGUI_API int igTableGetColumnCount(void); CIMGUI_API int igTableGetColumnIndex(void); @@ -3383,8 +3829,9 @@ CIMGUI_API int igTableGetRowIndex(void); CIMGUI_API const char* igTableGetColumnName_Int(int column_n); CIMGUI_API ImGuiTableColumnFlags igTableGetColumnFlags(int column_n); CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v); +CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n); -CIMGUI_API void igColumns(int count,const char* id,bool border); +CIMGUI_API void igColumns(int count,const char* id,bool borders); CIMGUI_API void igNextColumn(void); CIMGUI_API int igGetColumnIndex(void); CIMGUI_API float igGetColumnWidth(int column_index); @@ -3398,8 +3845,8 @@ CIMGUI_API bool igBeginTabItem(const char* label,bool* p_open,ImGuiTabItemFlags CIMGUI_API void igEndTabItem(void); CIMGUI_API bool igTabItemButton(const char* label,ImGuiTabItemFlags flags); CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label); -CIMGUI_API ImGuiID igDockSpace(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); -CIMGUI_API ImGuiID igDockSpaceOverViewport(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); +CIMGUI_API ImGuiID igDockSpace(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); +CIMGUI_API ImGuiID igDockSpaceOverViewport(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); CIMGUI_API void igSetNextWindowDockID(ImGuiID dock_id,ImGuiCond cond); CIMGUI_API void igSetNextWindowClass(const ImGuiWindowClass* window_class); CIMGUI_API ImGuiID igGetWindowDockID(void); @@ -3423,6 +3870,7 @@ CIMGUI_API void igPushClipRect(const ImVec2 clip_rect_min,const ImVec2 clip_rect CIMGUI_API void igPopClipRect(void); CIMGUI_API void igSetItemDefaultFocus(void); CIMGUI_API void igSetKeyboardFocusHere(int offset); +CIMGUI_API void igSetNextItemAllowOverlap(void); CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags); CIMGUI_API bool igIsItemActive(void); CIMGUI_API bool igIsItemFocused(void); @@ -3440,11 +3888,8 @@ CIMGUI_API ImGuiID igGetItemID(void); CIMGUI_API void igGetItemRectMin(ImVec2 *pOut); CIMGUI_API void igGetItemRectMax(ImVec2 *pOut); CIMGUI_API void igGetItemRectSize(ImVec2 *pOut); -CIMGUI_API void igSetItemAllowOverlap(void); CIMGUI_API ImGuiViewport* igGetMainViewport(void); -CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil(void); -CIMGUI_API ImDrawList* igGetForegroundDrawList_Nil(void); -CIMGUI_API ImDrawList* igGetBackgroundDrawList_ViewportPtr(ImGuiViewport* viewport); +CIMGUI_API ImDrawList* igGetBackgroundDrawList(ImGuiViewport* viewport); CIMGUI_API ImDrawList* igGetForegroundDrawList_ViewportPtr(ImGuiViewport* viewport); CIMGUI_API bool igIsRectVisible_Nil(const ImVec2 size); CIMGUI_API bool igIsRectVisible_Vec2(const ImVec2 rect_min,const ImVec2 rect_max); @@ -3454,8 +3899,6 @@ CIMGUI_API ImDrawListSharedData* igGetDrawListSharedData(void); CIMGUI_API const char* igGetStyleColorName(ImGuiCol idx); CIMGUI_API void igSetStateStorage(ImGuiStorage* storage); CIMGUI_API ImGuiStorage* igGetStateStorage(void); -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags); -CIMGUI_API void igEndChildFrame(void); CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width); CIMGUI_API void igColorConvertU32ToFloat4(ImVec4 *pOut,ImU32 in); CIMGUI_API ImU32 igColorConvertFloat4ToU32(const ImVec4 in); @@ -3464,13 +3907,17 @@ CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float* out_r,floa CIMGUI_API bool igIsKeyDown_Nil(ImGuiKey key); CIMGUI_API bool igIsKeyPressed_Bool(ImGuiKey key,bool repeat); CIMGUI_API bool igIsKeyReleased_Nil(ImGuiKey key); +CIMGUI_API bool igIsKeyChordPressed_Nil(ImGuiKeyChord key_chord); CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate); CIMGUI_API const char* igGetKeyName(ImGuiKey key); CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); +CIMGUI_API bool igShortcut_Nil(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner_Nil(ImGuiKey key); CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button); CIMGUI_API bool igIsMouseClicked_Bool(ImGuiMouseButton button,bool repeat); CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button); -CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button); +CIMGUI_API bool igIsMouseDoubleClicked_Nil(ImGuiMouseButton button); CIMGUI_API int igGetMouseClickedCount(ImGuiMouseButton button); CIMGUI_API bool igIsMouseHoveringRect(const ImVec2 r_min,const ImVec2 r_max,bool clip); CIMGUI_API bool igIsMousePosValid(const ImVec2* mouse_pos); @@ -3490,17 +3937,24 @@ CIMGUI_API void igLoadIniSettingsFromMemory(const char* ini_data,size_t ini_size CIMGUI_API void igSaveIniSettingsToDisk(const char* ini_filename); CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igDebugTextEncoding(const char* text); +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx); +CIMGUI_API void igDebugStartItemPicker(void); CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx); +CIMGUI_API void igDebugLog(const char* fmt,...); +CIMGUI_API void igDebugLogV(const char* fmt,va_list args); CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data); CIMGUI_API void igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API void igUpdatePlatformWindows(void); CIMGUI_API void igRenderPlatformWindowsDefault(void* platform_render_arg,void* renderer_render_arg); CIMGUI_API void igDestroyPlatformWindows(void); CIMGUI_API ImGuiViewport* igFindViewportByID(ImGuiID id); CIMGUI_API ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle); +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); @@ -3508,7 +3962,8 @@ CIMGUI_API void ImGuiIO_AddKeyEvent(ImGuiIO* self,ImGuiKey key,bool down); CIMGUI_API void ImGuiIO_AddKeyAnalogEvent(ImGuiIO* self,ImGuiKey key,bool down,float v); CIMGUI_API void ImGuiIO_AddMousePosEvent(ImGuiIO* self,float x,float y); CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down); -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y); +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y); +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source); CIMGUI_API void ImGuiIO_AddMouseViewportEvent(ImGuiIO* self,ImGuiID id); CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused); CIMGUI_API void ImGuiIO_AddInputCharacter(ImGuiIO* self,unsigned int c); @@ -3516,8 +3971,9 @@ CIMGUI_API void ImGuiIO_AddInputCharacterUTF16(ImGuiIO* self,ImWchar16 c); CIMGUI_API void ImGuiIO_AddInputCharactersUTF8(ImGuiIO* self,const char* str); CIMGUI_API void ImGuiIO_SetKeyEventNativeData(ImGuiIO* self,ImGuiKey key,int native_keycode,int native_scancode,int native_legacy_index); CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_events); -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self); CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self); CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void); CIMGUI_API void ImGuiIO_destroy(ImGuiIO* self); CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputTextCallbackData(void); @@ -3535,10 +3991,6 @@ CIMGUI_API void ImGuiPayload_Clear(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDataType(ImGuiPayload* self,const char* type); CIMGUI_API bool ImGuiPayload_IsPreview(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self); -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void); CIMGUI_API void ImGuiOnceUponAFrame_destroy(ImGuiOnceUponAFrame* self); CIMGUI_API ImGuiTextFilter* ImGuiTextFilter_ImGuiTextFilter(const char* default_filter); @@ -3564,10 +4016,10 @@ CIMGUI_API void ImGuiTextBuffer_reserve(ImGuiTextBuffer* self,int capacity); CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end); CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val); CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val); CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self); CIMGUI_API int ImGuiStorage_GetInt(ImGuiStorage* self,ImGuiID key,int default_val); CIMGUI_API void ImGuiStorage_SetInt(ImGuiStorage* self,ImGuiID key,int val); @@ -3581,14 +4033,16 @@ CIMGUI_API int* ImGuiStorage_GetIntRef(ImGuiStorage* self,ImGuiID key,int defaul CIMGUI_API bool* ImGuiStorage_GetBoolRef(ImGuiStorage* self,ImGuiID key,bool default_val); CIMGUI_API float* ImGuiStorage_GetFloatRef(ImGuiStorage* self,ImGuiID key,float default_val); CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void* default_val); -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void); CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max); +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index); +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end); +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index); CIMGUI_API ImColor* ImColor_ImColor_Nil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColor_Float(float r,float g,float b,float a); @@ -3597,6 +4051,18 @@ CIMGUI_API ImColor* ImColor_ImColor_Int(int r,int g,int b,int a); CIMGUI_API ImColor* ImColor_ImColor_U32(ImU32 rgba); CIMGUI_API void ImColor_SetHSV(ImColor* self,float h,float s,float v,float a); CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a); +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void); +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io); +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id); +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r); +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected); +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id); +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx); +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void); +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self); +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io); CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void); CIMGUI_API void ImDrawCmd_destroy(ImDrawCmd* self); CIMGUI_API ImTextureID ImDrawCmd_GetTexID(ImDrawCmd* self); @@ -3628,12 +4094,15 @@ CIMGUI_API void ImDrawList_AddCircle(ImDrawList* self,const ImVec2 center,float CIMGUI_API void ImDrawList_AddCircleFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); CIMGUI_API void ImDrawList_AddNgon(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments,float thickness); CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness); +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments); CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end); CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,float font_size,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end,float wrap_width,const ImVec4* cpu_fine_clip_rect); -CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); -CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments); CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments); +CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col); CIMGUI_API void ImDrawList_AddImageQuad(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 uv1,const ImVec2 uv2,const ImVec2 uv3,const ImVec2 uv4,ImU32 col); CIMGUI_API void ImDrawList_AddImageRounded(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col,float rounding,ImDrawFlags flags); @@ -3641,9 +4110,11 @@ CIMGUI_API void ImDrawList_PathClear(ImDrawList* self); CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col); +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col); CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness); CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,float radius,int a_min_of_12,int a_max_of_12); +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments); CIMGUI_API void ImDrawList_PathBezierQuadraticCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,int num_segments); CIMGUI_API void ImDrawList_PathRect(ImDrawList* self,const ImVec2 rect_min,const ImVec2 rect_max,float rounding,ImDrawFlags flags); @@ -3668,12 +4139,14 @@ CIMGUI_API void ImDrawList__TryMergeDrawCmds(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedClipRect(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedTextureID(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self); +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id); CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius); CIMGUI_API void ImDrawList__PathArcToFastEx(ImDrawList* self,const ImVec2 center,float radius,int a_min_sample,int a_max_sample,int a_step); CIMGUI_API void ImDrawList__PathArcToN(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API ImDrawData* ImDrawData_ImDrawData(void); CIMGUI_API void ImDrawData_destroy(ImDrawData* self); CIMGUI_API void ImDrawData_Clear(ImDrawData* self); +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list); CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self); CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale); CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void); @@ -3695,8 +4168,8 @@ CIMGUI_API void ImFontAtlas_destroy(ImFontAtlas* self); CIMGUI_API ImFont* ImFontAtlas_AddFont(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontDefault(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* filename,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self); @@ -3749,9 +4222,8 @@ CIMGUI_API ImGuiPlatformMonitor* ImGuiPlatformMonitor_ImGuiPlatformMonitor(void) CIMGUI_API void ImGuiPlatformMonitor_destroy(ImGuiPlatformMonitor* self); CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void); CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self); -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key); -CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImU32 seed); -CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed); +CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed); +CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed); CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*)); CIMGUI_API ImU32 igImAlphaBlendColors(ImU32 col_a,ImU32 col_b); CIMGUI_API bool igImIsPowerOfTwo_Int(int v); @@ -3763,15 +4235,16 @@ CIMGUI_API void igImStrncpy(char* dst,const char* src,size_t count); CIMGUI_API char* igImStrdup(const char* str); CIMGUI_API char* igImStrdupcpy(char* dst,size_t* p_dst_size,const char* str); CIMGUI_API const char* igImStrchrRange(const char* str_begin,const char* str_end,char c); -CIMGUI_API int igImStrlenW(const ImWchar* str); CIMGUI_API const char* igImStreolRange(const char* str,const char* str_end); -CIMGUI_API const ImWchar* igImStrbolW(const ImWchar* buf_mid_line,const ImWchar* buf_begin); CIMGUI_API const char* igImStristr(const char* haystack,const char* haystack_end,const char* needle,const char* needle_end); CIMGUI_API void igImStrTrimBlanks(char* str); CIMGUI_API const char* igImStrSkipBlank(const char* str); +CIMGUI_API int igImStrlenW(const ImWchar* str); +CIMGUI_API const char* igImStrbol(const char* buf_mid_line,const char* buf_begin); CIMGUI_API char igImToUpper(char c); CIMGUI_API bool igImCharIsBlankA(char c); CIMGUI_API bool igImCharIsBlankW(unsigned int c); +CIMGUI_API bool igImCharIsXdigitA(char c); CIMGUI_API int igImFormatString(char* buf,size_t buf_size,const char* fmt,...); CIMGUI_API int igImFormatStringV(char* buf,size_t buf_size,const char* fmt,va_list args); CIMGUI_API void igImFormatStringToTempBuffer(const char** out_buf,const char** out_buf_end,const char* fmt,...); @@ -3789,6 +4262,8 @@ CIMGUI_API int igImTextStrFromUtf8(ImWchar* out_buf,int out_buf_size,const char* CIMGUI_API int igImTextCountCharsFromUtf8(const char* in_text,const char* in_text_end); CIMGUI_API int igImTextCountUtf8BytesFromChar(const char* in_text,const char* in_text_end); CIMGUI_API int igImTextCountUtf8BytesFromStr(const ImWchar* in_text,const ImWchar* in_text_end); +CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_text_curr); +CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end); CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode); CIMGUI_API bool igImFileClose(ImFileHandle file); CIMGUI_API ImU64 igImFileGetSize(ImFileHandle file); @@ -3808,7 +4283,7 @@ CIMGUI_API float igImRsqrt_Float(float x); CIMGUI_API double igImRsqrt_double(double x); CIMGUI_API void igImMin(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); CIMGUI_API void igImMax(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); -CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx); +CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx); CIMGUI_API void igImLerp_Vec2Float(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,float t); CIMGUI_API void igImLerp_Vec2Vec2(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,const ImVec2 t); CIMGUI_API void igImLerp_Vec4(ImVec4 *pOut,const ImVec4 a,const ImVec4 b,float t); @@ -3816,14 +4291,15 @@ CIMGUI_API float igImSaturate(float f); CIMGUI_API float igImLengthSqr_Vec2(const ImVec2 lhs); CIMGUI_API float igImLengthSqr_Vec4(const ImVec4 lhs); CIMGUI_API float igImInvLength(const ImVec2 lhs,float fail_value); +CIMGUI_API float igImTrunc_Float(float f); +CIMGUI_API void igImTrunc_Vec2(ImVec2 *pOut,const ImVec2 v); CIMGUI_API float igImFloor_Float(float f); -CIMGUI_API float igImFloorSigned_Float(float f); CIMGUI_API void igImFloor_Vec2(ImVec2 *pOut,const ImVec2 v); -CIMGUI_API void igImFloorSigned_Vec2(ImVec2 *pOut,const ImVec2 v); CIMGUI_API int igImModPositive(int a,int b); CIMGUI_API float igImDot(const ImVec2 a,const ImVec2 b); CIMGUI_API void igImRotate(ImVec2 *pOut,const ImVec2 v,float cos_a,float sin_a); CIMGUI_API float igImLinearSweep(float current,float target,float speed); +CIMGUI_API float igImLinearRemapClamp(float s0,float s1,float d0,float d1,float x); CIMGUI_API void igImMul(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); CIMGUI_API bool igImIsFloatAboveGuaranteedIntegerPrecision(float f); CIMGUI_API float igImExponentialMovingAverage(float avg,float sample,int n); @@ -3836,7 +4312,7 @@ CIMGUI_API bool igImTriangleContainsPoint(const ImVec2 a,const ImVec2 b,const Im CIMGUI_API void igImTriangleClosestPoint(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,const ImVec2 c,const ImVec2 p); CIMGUI_API void igImTriangleBarycentricCoords(const ImVec2 a,const ImVec2 b,const ImVec2 c,const ImVec2 p,float* out_u,float* out_v,float* out_w); CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c); -CIMGUI_API ImGuiDir igImGetDirQuadrantFromDelta(float dx,float dy); +CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c); CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void); CIMGUI_API void ImVec1_destroy(ImVec1* self); CIMGUI_API ImVec1* ImVec1_ImVec1_Float(float _x); @@ -3860,6 +4336,7 @@ CIMGUI_API void ImRect_GetBL(ImVec2 *pOut,ImRect* self); CIMGUI_API void ImRect_GetBR(ImVec2 *pOut,ImRect* self); CIMGUI_API bool ImRect_Contains_Vec2(ImRect* self,const ImVec2 p); CIMGUI_API bool ImRect_Contains_Rect(ImRect* self,const ImRect r); +CIMGUI_API bool ImRect_ContainsWithPad(ImRect* self,const ImVec2 p,const ImVec2 pad); CIMGUI_API bool ImRect_Overlaps(ImRect* self,const ImRect r); CIMGUI_API void ImRect_Add_Vec2(ImRect* self,const ImVec2 p); CIMGUI_API void ImRect_Add_Rect(ImRect* self,const ImRect r); @@ -3873,6 +4350,8 @@ CIMGUI_API void ImRect_ClipWithFull(ImRect* self,const ImRect r); CIMGUI_API void ImRect_Floor(ImRect* self); CIMGUI_API bool ImRect_IsInverted(ImRect* self); CIMGUI_API void ImRect_ToVec4(ImVec4 *pOut,ImRect* self); +CIMGUI_API size_t igImBitArrayGetStorageSizeInBytes(int bitcount); +CIMGUI_API void igImBitArrayClearAllBits(ImU32* arr,int bitcount); CIMGUI_API bool igImBitArrayTestBit(const ImU32* arr,int n); CIMGUI_API void igImBitArrayClearBit(ImU32* arr,int n); CIMGUI_API void igImBitArraySetBit(ImU32* arr,int n); @@ -3887,13 +4366,13 @@ CIMGUI_API int ImGuiTextIndex_size(ImGuiTextIndex* self); CIMGUI_API const char* ImGuiTextIndex_get_line_begin(ImGuiTextIndex* self,const char* base,int n); CIMGUI_API const char* ImGuiTextIndex_get_line_end(ImGuiTextIndex* self,const char* base,int n); CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int old_size,int new_size); +CIMGUI_API ImGuiStoragePair* igImLowerBound(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key); CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void); CIMGUI_API void ImDrawListSharedData_destroy(ImDrawListSharedData* self); CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error); -CIMGUI_API void ImDrawDataBuilder_Clear(ImDrawDataBuilder* self); -CIMGUI_API void ImDrawDataBuilder_ClearFreeMemory(ImDrawDataBuilder* self); -CIMGUI_API int ImDrawDataBuilder_GetDrawListCount(ImDrawDataBuilder* self); -CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(ImDrawDataBuilder* self); +CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void); +CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self); +CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent); CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v); CIMGUI_API void ImGuiStyleMod_destroy(ImGuiStyleMod* self); CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Float(ImGuiStyleVar idx,float v); @@ -3905,13 +4384,15 @@ CIMGUI_API void ImGuiMenuColumns_destroy(ImGuiMenuColumns* self); CIMGUI_API void ImGuiMenuColumns_Update(ImGuiMenuColumns* self,float spacing,bool window_reappearing); CIMGUI_API float ImGuiMenuColumns_DeclColumns(ImGuiMenuColumns* self,float w_icon,float w_label,float w_shortcut,float w_mark); CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool update_offsets); -CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(ImGuiContext* ctx); +CIMGUI_API ImGuiInputTextDeactivatedState* ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState(void); +CIMGUI_API void ImGuiInputTextDeactivatedState_destroy(ImGuiInputTextDeactivatedState* self); +CIMGUI_API void ImGuiInputTextDeactivatedState_ClearFreeMemory(ImGuiInputTextDeactivatedState* self); +CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(void); CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetUndoAvailCount(ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetRedoAvailCount(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self,int key); +CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsigned int c); CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_CursorClamp(ImGuiInputTextState* self); CIMGUI_API bool ImGuiInputTextState_HasSelection(ImGuiInputTextState* self); @@ -3920,8 +4401,9 @@ CIMGUI_API int ImGuiInputTextState_GetCursorPos(ImGuiInputTextState* self); CIMGUI_API int ImGuiInputTextState_GetSelectionStart(ImGuiInputTextState* self); CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self); -CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void); -CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self); CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void); CIMGUI_API void ImGuiNextWindowData_destroy(ImGuiNextWindowData* self); CIMGUI_API void ImGuiNextWindowData_ClearFlags(ImGuiNextWindowData* self); @@ -3932,11 +4414,13 @@ CIMGUI_API ImGuiLastItemData* ImGuiLastItemData_ImGuiLastItemData(void); CIMGUI_API void ImGuiLastItemData_destroy(ImGuiLastItemData* self); CIMGUI_API ImGuiStackSizes* ImGuiStackSizes_ImGuiStackSizes(void); CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self); -CIMGUI_API void ImGuiStackSizes_SetToCurrentState(ImGuiStackSizes* self); -CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self); +CIMGUI_API void ImGuiStackSizes_SetToContextState(ImGuiStackSizes* self,ImGuiContext* ctx); +CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,ImGuiContext* ctx); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr); CIMGUI_API void ImGuiPtrOrIndex_destroy(ImGuiPtrOrIndex* self); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index); +CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void); +CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self); CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void); CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self); CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void); @@ -3954,10 +4438,21 @@ CIMGUI_API void ImGuiListClipperData_Reset(ImGuiListClipperData* self,ImGuiListC CIMGUI_API ImGuiNavItemData* ImGuiNavItemData_ImGuiNavItemData(void); CIMGUI_API void ImGuiNavItemData_destroy(ImGuiNavItemData* self); CIMGUI_API void ImGuiNavItemData_Clear(ImGuiNavItemData* self); +CIMGUI_API ImGuiTypingSelectState* ImGuiTypingSelectState_ImGuiTypingSelectState(void); +CIMGUI_API void ImGuiTypingSelectState_destroy(ImGuiTypingSelectState* self); +CIMGUI_API void ImGuiTypingSelectState_Clear(ImGuiTypingSelectState* self); CIMGUI_API ImGuiOldColumnData* ImGuiOldColumnData_ImGuiOldColumnData(void); CIMGUI_API void ImGuiOldColumnData_destroy(ImGuiOldColumnData* self); CIMGUI_API ImGuiOldColumns* ImGuiOldColumns_ImGuiOldColumns(void); CIMGUI_API void ImGuiOldColumns_destroy(ImGuiOldColumns* self); +CIMGUI_API ImGuiBoxSelectState* ImGuiBoxSelectState_ImGuiBoxSelectState(void); +CIMGUI_API void ImGuiBoxSelectState_destroy(ImGuiBoxSelectState* self); +CIMGUI_API ImGuiMultiSelectTempData* ImGuiMultiSelectTempData_ImGuiMultiSelectTempData(void); +CIMGUI_API void ImGuiMultiSelectTempData_destroy(ImGuiMultiSelectTempData* self); +CIMGUI_API void ImGuiMultiSelectTempData_Clear(ImGuiMultiSelectTempData* self); +CIMGUI_API void ImGuiMultiSelectTempData_ClearIO(ImGuiMultiSelectTempData* self); +CIMGUI_API ImGuiMultiSelectState* ImGuiMultiSelectState_ImGuiMultiSelectState(void); +CIMGUI_API void ImGuiMultiSelectState_destroy(ImGuiMultiSelectState* self); CIMGUI_API ImGuiDockNode* ImGuiDockNode_ImGuiDockNode(ImGuiID id); CIMGUI_API void ImGuiDockNode_destroy(ImGuiDockNode* self); CIMGUI_API bool ImGuiDockNode_IsRootNode(ImGuiDockNode* self); @@ -3977,8 +4472,8 @@ CIMGUI_API void ImGuiDockContext_destroy(ImGuiDockContext* self); CIMGUI_API ImGuiViewportP* ImGuiViewportP_ImGuiViewportP(void); CIMGUI_API void ImGuiViewportP_destroy(ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_ClearRequestFlags(ImGuiViewportP* self); -CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min); -CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max); +CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min); +CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max); CIMGUI_API void ImGuiViewportP_UpdateWorkRect(ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_GetMainRect(ImRect *pOut,ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_GetWorkRect(ImRect *pOut,ImGuiViewportP* self); @@ -3988,12 +4483,12 @@ CIMGUI_API void ImGuiWindowSettings_destroy(ImGuiWindowSettings* self); CIMGUI_API char* ImGuiWindowSettings_GetName(ImGuiWindowSettings* self); CIMGUI_API ImGuiSettingsHandler* ImGuiSettingsHandler_ImGuiSettingsHandler(void); CIMGUI_API void ImGuiSettingsHandler_destroy(ImGuiSettingsHandler* self); -CIMGUI_API ImGuiMetricsConfig* ImGuiMetricsConfig_ImGuiMetricsConfig(void); -CIMGUI_API void ImGuiMetricsConfig_destroy(ImGuiMetricsConfig* self); +CIMGUI_API ImGuiDebugAllocInfo* ImGuiDebugAllocInfo_ImGuiDebugAllocInfo(void); +CIMGUI_API void ImGuiDebugAllocInfo_destroy(ImGuiDebugAllocInfo* self); CIMGUI_API ImGuiStackLevelInfo* ImGuiStackLevelInfo_ImGuiStackLevelInfo(void); CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self); -CIMGUI_API ImGuiStackTool* ImGuiStackTool_ImGuiStackTool(void); -CIMGUI_API void ImGuiStackTool_destroy(ImGuiStackTool* self); +CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void); +CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self); CIMGUI_API ImGuiContextHook* ImGuiContextHook_ImGuiContextHook(void); CIMGUI_API void ImGuiContextHook_destroy(ImGuiContextHook* self); CIMGUI_API ImGuiContext* ImGuiContext_ImGuiContext(ImFontAtlas* shared_font_atlas); @@ -4003,19 +4498,16 @@ CIMGUI_API void ImGuiWindow_destroy(ImGuiWindow* self); CIMGUI_API ImGuiID ImGuiWindow_GetID_Str(ImGuiWindow* self,const char* str,const char* str_end); CIMGUI_API ImGuiID ImGuiWindow_GetID_Ptr(ImGuiWindow* self,const void* ptr); CIMGUI_API ImGuiID ImGuiWindow_GetID_Int(ImGuiWindow* self,int n); +CIMGUI_API ImGuiID ImGuiWindow_GetIDFromPos(ImGuiWindow* self,const ImVec2 p_abs); CIMGUI_API ImGuiID ImGuiWindow_GetIDFromRectangle(ImGuiWindow* self,const ImRect r_abs); CIMGUI_API void ImGuiWindow_Rect(ImRect *pOut,ImGuiWindow* self); CIMGUI_API float ImGuiWindow_CalcFontSize(ImGuiWindow* self); -CIMGUI_API float ImGuiWindow_TitleBarHeight(ImGuiWindow* self); CIMGUI_API void ImGuiWindow_TitleBarRect(ImRect *pOut,ImGuiWindow* self); -CIMGUI_API float ImGuiWindow_MenuBarHeight(ImGuiWindow* self); CIMGUI_API void ImGuiWindow_MenuBarRect(ImRect *pOut,ImGuiWindow* self); CIMGUI_API ImGuiTabItem* ImGuiTabItem_ImGuiTabItem(void); CIMGUI_API void ImGuiTabItem_destroy(ImGuiTabItem* self); CIMGUI_API ImGuiTabBar* ImGuiTabBar_ImGuiTabBar(void); CIMGUI_API void ImGuiTabBar_destroy(ImGuiTabBar* self); -CIMGUI_API int ImGuiTabBar_GetTabOrder(ImGuiTabBar* self,const ImGuiTabItem* tab); -CIMGUI_API const char* ImGuiTabBar_GetTabName(ImGuiTabBar* self,const ImGuiTabItem* tab); CIMGUI_API ImGuiTableColumn* ImGuiTableColumn_ImGuiTableColumn(void); CIMGUI_API void ImGuiTableColumn_destroy(ImGuiTableColumn* self); CIMGUI_API ImGuiTableInstanceData* ImGuiTableInstanceData_ImGuiTableInstanceData(void); @@ -4034,6 +4526,7 @@ CIMGUI_API ImGuiWindow* igGetCurrentWindow(void); CIMGUI_API ImGuiWindow* igFindWindowByID(ImGuiID id); CIMGUI_API ImGuiWindow* igFindWindowByName(const char* name); CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window); +CIMGUI_API void igUpdateWindowSkipRefresh(ImGuiWindow* window); CIMGUI_API void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_parent,bool popup_hierarchy,bool dock_hierarchy); CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent); @@ -4043,31 +4536,38 @@ CIMGUI_API void igSetWindowPos_WindowPtr(ImGuiWindow* window,const ImVec2 pos,Im CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_WindowPtr(ImGuiWindow* window,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size); +CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window); +CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window); CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r); CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r); -CIMGUI_API void igFocusWindow(ImGuiWindow* window); -CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window); +CIMGUI_API void igWindowPosAbsToRel(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); +CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); +CIMGUI_API void igFocusWindow(ImGuiWindow* window,ImGuiFocusRequestFlags flags); +CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags); CIMGUI_API void igBringWindowToFocusFront(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayFront(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayBack(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayBehind(ImGuiWindow* window,ImGuiWindow* above_window); CIMGUI_API int igFindWindowDisplayIndex(ImGuiWindow* window); CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window); +CIMGUI_API void igSetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags); CIMGUI_API void igSetCurrentFont(ImFont* font); CIMGUI_API ImFont* igGetDefaultFont(void); CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window); +CIMGUI_API void igAddDrawListToDrawDataEx(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list); CIMGUI_API void igInitialize(void); CIMGUI_API void igShutdown(void); CIMGUI_API void igUpdateInputEvents(bool trickle_fast_inputs); CIMGUI_API void igUpdateHoveredWindowAndCaptureFlags(void); +CIMGUI_API void igFindHoveredWindowEx(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window); CIMGUI_API void igStartMouseMovingWindow(ImGuiWindow* window); -CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node); +CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock); CIMGUI_API void igUpdateMouseMovingWindowNewFrame(void); CIMGUI_API void igUpdateMouseMovingWindowEndFrame(void); CIMGUI_API ImGuiID igAddContextHook(ImGuiContext* context,const ImGuiContextHook* hook); CIMGUI_API void igRemoveContextHook(ImGuiContext* context,ImGuiID hook_to_remove); CIMGUI_API void igCallContextHooks(ImGuiContext* context,ImGuiContextHookType type); -CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos); +CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size); CIMGUI_API void igScaleWindowsInViewport(ImGuiViewportP* viewport,float scale); CIMGUI_API void igDestroyPlatformWindow(ImGuiViewportP* viewport); CIMGUI_API void igSetWindowViewport(ImGuiWindow* window,ImGuiViewportP* viewport); @@ -4077,12 +4577,13 @@ CIMGUI_API ImGuiViewportP* igFindHoveredViewportFromPlatformWindowStack(const Im CIMGUI_API void igMarkIniSettingsDirty_Nil(void); CIMGUI_API void igMarkIniSettingsDirty_WindowPtr(ImGuiWindow* window); CIMGUI_API void igClearIniSettings(void); -CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name); -CIMGUI_API ImGuiWindowSettings* igFindWindowSettings(ImGuiID id); -CIMGUI_API ImGuiWindowSettings* igFindOrCreateWindowSettings(const char* name); CIMGUI_API void igAddSettingsHandler(const ImGuiSettingsHandler* handler); CIMGUI_API void igRemoveSettingsHandler(const char* type_name); CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name); +CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name); +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByID(ImGuiID id); +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByWindow(ImGuiWindow* window); +CIMGUI_API void igClearWindowSettings(const char* name); CIMGUI_API void igLocalizeRegisterEntries(const ImGuiLocEntry* entries,int count); CIMGUI_API const char* igLocalizeGetMsg(ImGuiLocKey key); CIMGUI_API void igSetScrollX_WindowPtr(ImGuiWindow* window,float scroll_x); @@ -4105,38 +4606,41 @@ CIMGUI_API void igSetHoveredID(ImGuiID id); CIMGUI_API void igKeepAliveID(ImGuiID id); CIMGUI_API void igMarkItemEdited(ImGuiID id); CIMGUI_API void igPushOverrideID(ImGuiID id); -CIMGUI_API ImGuiID igGetIDWithSeed(const char* str_id_begin,const char* str_id_end,ImGuiID seed); +CIMGUI_API ImGuiID igGetIDWithSeed_Str(const char* str_id_begin,const char* str_id_end,ImGuiID seed); +CIMGUI_API ImGuiID igGetIDWithSeed_Int(int n,ImGuiID seed); CIMGUI_API void igItemSize_Vec2(const ImVec2 size,float text_baseline_y); CIMGUI_API void igItemSize_Rect(const ImRect bb,float text_baseline_y); CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags); -CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id); +CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags); +CIMGUI_API bool igIsWindowContentHoverable(ImGuiWindow* window,ImGuiHoveredFlags flags); CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id); CIMGUI_API void igSetLastItemData(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect item_rect); CIMGUI_API void igCalcItemSize(ImVec2 *pOut,ImVec2 size,float default_w,float default_h); CIMGUI_API float igCalcWrapWidthForPos(const ImVec2 pos,float wrap_pos_x); CIMGUI_API void igPushMultiItemsWidths(int components,float width_full); -CIMGUI_API bool igIsItemToggledSelection(void); -CIMGUI_API void igGetContentRegionMaxAbs(ImVec2 *pOut); CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess); -CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); -CIMGUI_API void igPopItemFlag(void); +CIMGUI_API const ImGuiDataVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx); +CIMGUI_API void igBeginDisabledOverrideReenable(void); +CIMGUI_API void igEndDisabledOverrideReenable(void); CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth); CIMGUI_API void igLogToBuffer(int auto_open_depth); CIMGUI_API void igLogRenderedText(const ImVec2* ref_pos,const char* text,const char* text_end); CIMGUI_API void igLogSetNextTextDecoration(const char* prefix,const char* suffix); -CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags); +CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags); CIMGUI_API void igClosePopupToLevel(int remaining,bool restore_focus_to_window_under_popup); CIMGUI_API void igClosePopupsOverWindow(ImGuiWindow* ref_window,bool restore_focus_to_window_under_popup); CIMGUI_API void igClosePopupsExceptModals(void); CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags); -CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags); -CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window); CIMGUI_API ImGuiWindow* igGetTopMostPopupModal(void); CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal(void); +CIMGUI_API ImGuiWindow* igFindBlockingModal(ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos,const ImVec2 size,ImGuiDir* last_dir,const ImRect r_outer,const ImRect r_avoid,ImGuiPopupPositionPolicy policy); +CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); +CIMGUI_API bool igBeginTooltipHidden(void); CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags); CIMGUI_API bool igBeginMenuEx(const char* label,const char* icon,bool enabled); CIMGUI_API bool igMenuItemEx(const char* label,const char* icon,const char* shortcut,bool selected,bool enabled); @@ -4149,44 +4653,57 @@ CIMGUI_API bool igNavMoveRequestButNoResultYet(void); CIMGUI_API void igNavMoveRequestSubmit(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags); CIMGUI_API void igNavMoveRequestForward(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags); CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result); +CIMGUI_API void igNavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data); CIMGUI_API void igNavMoveRequestCancel(void); CIMGUI_API void igNavMoveRequestApplyResult(void); CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags); -CIMGUI_API void igActivateItem(ImGuiID id); +CIMGUI_API void igNavHighlightActivated(ImGuiID id); +CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis); +CIMGUI_API void igNavRestoreHighlightAfterMove(void); +CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX(void); CIMGUI_API void igSetNavWindow(ImGuiWindow* window); CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel); +CIMGUI_API void igSetNavFocusScope(ImGuiID focus_scope_id); +CIMGUI_API void igFocusItem(void); +CIMGUI_API void igActivateItemByID(ImGuiID id); CIMGUI_API bool igIsNamedKey(ImGuiKey key); -CIMGUI_API bool igIsNamedKeyOrModKey(ImGuiKey key); +CIMGUI_API bool igIsNamedKeyOrMod(ImGuiKey key); CIMGUI_API bool igIsLegacyKey(ImGuiKey key); CIMGUI_API bool igIsKeyboardKey(ImGuiKey key); CIMGUI_API bool igIsGamepadKey(ImGuiKey key); CIMGUI_API bool igIsMouseKey(ImGuiKey key); CIMGUI_API bool igIsAliasKey(ImGuiKey key); -CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord); +CIMGUI_API bool igIsLRModKey(ImGuiKey key); +CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key); -CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key); -CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size); +CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key); +CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key); +CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button); CIMGUI_API bool igIsMouseDragPastThreshold(ImGuiMouseButton button,float lock_threshold); CIMGUI_API void igGetKeyMagnitude2d(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down); CIMGUI_API float igGetNavTweakPressedAmount(ImGuiAxis axis); CIMGUI_API int igCalcTypematicRepeatAmount(float t0,float t1,float repeat_delay,float repeat_rate); CIMGUI_API void igGetTypematicRepeatRate(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate); +CIMGUI_API void igTeleportMousePos(const ImVec2 pos); CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys(void); CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir); CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key); CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); -CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags); +CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags); CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id); -CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key); +CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key); CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id); -CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsKeyPressed_InputFlags(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id); +CIMGUI_API bool igIsKeyChordPressed_InputFlags(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igIsMouseDown_ID(ImGuiMouseButton button,ImGuiID owner_id); -CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsMouseClicked_InputFlags(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id); -CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); -CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id); +CIMGUI_API bool igShortcut_ID(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id); +CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id); CIMGUI_API ImGuiKeyRoutingData* igGetShortcutRoutingData(ImGuiKeyChord key_chord); CIMGUI_API void igDockContextInitialize(ImGuiContext* ctx); @@ -4200,8 +4717,11 @@ CIMGUI_API ImGuiID igDockContextGenNodeID(ImGuiContext* ctx); CIMGUI_API void igDockContextQueueDock(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer); CIMGUI_API void igDockContextQueueUndockWindow(ImGuiContext* ctx,ImGuiWindow* window); CIMGUI_API void igDockContextQueueUndockNode(ImGuiContext* ctx,ImGuiDockNode* node); +CIMGUI_API void igDockContextProcessUndockWindow(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref); +CIMGUI_API void igDockContextProcessUndockNode(ImGuiContext* ctx,ImGuiDockNode* node); CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos); CIMGUI_API ImGuiDockNode* igDockContextFindNodeByID(ImGuiContext* ctx,ImGuiID id); +CIMGUI_API void igDockNodeWindowMenuHandler_Default(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar); CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node); CIMGUI_API void igDockNodeEndAmendTabBar(void); CIMGUI_API ImGuiDockNode* igDockNodeGetRootNode(ImGuiDockNode* node); @@ -4235,7 +4755,19 @@ CIMGUI_API bool igIsDragDropActive(void); CIMGUI_API bool igBeginDragDropTargetCustom(const ImRect bb,ImGuiID id); CIMGUI_API void igClearDragDrop(void); CIMGUI_API bool igIsDragDropPayloadBeingAccepted(void); -CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb); +CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb,const ImRect item_clip_rect); +CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags); +CIMGUI_API int igTypingSelectFindMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx); +CIMGUI_API int igTypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx); +CIMGUI_API int igTypingSelectFindBestLeadingMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data); +CIMGUI_API bool igBeginBoxSelect(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags); +CIMGUI_API void igEndBoxSelect(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags); +CIMGUI_API void igMultiSelectItemHeader(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags); +CIMGUI_API void igMultiSelectItemFooter(ImGuiID id,bool* p_selected,bool* p_pressed); +CIMGUI_API void igMultiSelectAddSetAll(ImGuiMultiSelectTempData* ms,bool selected); +CIMGUI_API void igMultiSelectAddSetRange(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item); +CIMGUI_API ImGuiBoxSelectState* igGetBoxSelectState(ImGuiID id); +CIMGUI_API ImGuiMultiSelectState* igGetMultiSelectState(ImGuiID id); CIMGUI_API void igSetWindowClipRectBeforeSetChannel(ImGuiWindow* window,const ImRect clip_rect); CIMGUI_API void igBeginColumns(const char* str_id,int count,ImGuiOldColumnFlags flags); CIMGUI_API void igEndColumns(void); @@ -4249,10 +4781,12 @@ CIMGUI_API float igGetColumnNormFromOffset(const ImGuiOldColumns* columns,float CIMGUI_API void igTableOpenContextMenu(int column_n); CIMGUI_API void igTableSetColumnWidth(int column_n,float width); CIMGUI_API void igTableSetColumnSortDirection(int column_n,ImGuiSortDirection sort_direction,bool append_to_sort_specs); -CIMGUI_API int igTableGetHoveredColumn(void); +CIMGUI_API int igTableGetHoveredRow(void); CIMGUI_API float igTableGetHeaderRowHeight(void); +CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth(void); CIMGUI_API void igTablePushBackgroundChannel(void); CIMGUI_API void igTablePopBackgroundChannel(void); +CIMGUI_API void igTableAngledHeadersRowEx(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count); CIMGUI_API ImGuiTable* igGetCurrentTable(void); CIMGUI_API ImGuiTable* igTableFindByID(ImGuiID id); CIMGUI_API bool igBeginTableEx(const char* name,ImGuiID id,int columns_count,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); @@ -4263,10 +4797,11 @@ CIMGUI_API void igTableUpdateLayout(ImGuiTable* table); CIMGUI_API void igTableUpdateBorders(ImGuiTable* table); CIMGUI_API void igTableUpdateColumnsWeightFromWidth(ImGuiTable* table); CIMGUI_API void igTableDrawBorders(ImGuiTable* table); -CIMGUI_API void igTableDrawContextMenu(ImGuiTable* table); +CIMGUI_API void igTableDrawDefaultContextMenu(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display); CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table); CIMGUI_API void igTableMergeDrawChannels(ImGuiTable* table); CIMGUI_API ImGuiTableInstanceData* igTableGetInstanceData(ImGuiTable* table,int instance_no); +CIMGUI_API ImGuiID igTableGetInstanceID(ImGuiTable* table,int instance_no); CIMGUI_API void igTableSortSpecsSanitize(ImGuiTable* table); CIMGUI_API void igTableSortSpecsBuild(ImGuiTable* table); CIMGUI_API ImGuiSortDirection igTableGetColumnNextSortDirection(ImGuiTableColumn* column); @@ -4278,8 +4813,8 @@ CIMGUI_API void igTableBeginCell(ImGuiTable* table,int column_n); CIMGUI_API void igTableEndCell(ImGuiTable* table); CIMGUI_API void igTableGetCellBgRect(ImRect *pOut,const ImGuiTable* table,int column_n); CIMGUI_API const char* igTableGetColumnName_TablePtr(const ImGuiTable* table,int column_n); -CIMGUI_API ImGuiID igTableGetColumnResizeID(const ImGuiTable* table,int column_n,int instance_no); -CIMGUI_API float igTableGetMaxColumnWidth(const ImGuiTable* table,int column_n); +CIMGUI_API ImGuiID igTableGetColumnResizeID(ImGuiTable* table,int column_n,int instance_no); +CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoAll(ImGuiTable* table); CIMGUI_API void igTableRemove(ImGuiTable* table); @@ -4293,14 +4828,20 @@ CIMGUI_API ImGuiTableSettings* igTableGetBoundSettings(ImGuiTable* table); CIMGUI_API void igTableSettingsAddSettingsHandler(void); CIMGUI_API ImGuiTableSettings* igTableSettingsCreate(ImGuiID id,int columns_count); CIMGUI_API ImGuiTableSettings* igTableSettingsFindByID(ImGuiID id); -CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node); +CIMGUI_API ImGuiTabBar* igGetCurrentTabBar(void); +CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags); CIMGUI_API ImGuiTabItem* igTabBarFindTabByID(ImGuiTabBar* tab_bar,ImGuiID tab_id); +CIMGUI_API ImGuiTabItem* igTabBarFindTabByOrder(ImGuiTabBar* tab_bar,int order); CIMGUI_API ImGuiTabItem* igTabBarFindMostRecentlySelectedTabForActiveWindow(ImGuiTabBar* tab_bar); +CIMGUI_API ImGuiTabItem* igTabBarGetCurrentTab(ImGuiTabBar* tab_bar); +CIMGUI_API int igTabBarGetTabOrder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); +CIMGUI_API const char* igTabBarGetTabName(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); CIMGUI_API void igTabBarAddTab(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window); CIMGUI_API void igTabBarRemoveTab(ImGuiTabBar* tab_bar,ImGuiID tab_id); CIMGUI_API void igTabBarCloseTab(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); -CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset); -CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos); +CIMGUI_API void igTabBarQueueFocus(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); +CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset); +CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos); CIMGUI_API bool igTabBarProcessReorder(ImGuiTabBar* tab_bar); CIMGUI_API bool igTabItemEx(ImGuiTabBar* tab_bar,const char* label,bool* p_open,ImGuiTabItemFlags flags,ImGuiWindow* docked_window); CIMGUI_API void igTabItemCalcSize_Str(ImVec2 *pOut,const char* label,bool has_close_button_or_unsaved_marker); @@ -4312,7 +4853,7 @@ CIMGUI_API void igRenderTextWrapped(ImVec2 pos,const char* text,const char* text CIMGUI_API void igRenderTextClipped(const ImVec2 pos_min,const ImVec2 pos_max,const char* text,const char* text_end,const ImVec2* text_size_if_known,const ImVec2 align,const ImRect* clip_rect); CIMGUI_API void igRenderTextClippedEx(ImDrawList* draw_list,const ImVec2 pos_min,const ImVec2 pos_max,const char* text,const char* text_end,const ImVec2* text_size_if_known,const ImVec2 align,const ImRect* clip_rect); CIMGUI_API void igRenderTextEllipsis(ImDrawList* draw_list,const ImVec2 pos_min,const ImVec2 pos_max,float clip_max_x,float ellipsis_max_x,const char* text,const char* text_end,const ImVec2* text_size_if_known); -CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding); +CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding); CIMGUI_API void igRenderFrameBorder(ImVec2 p_min,ImVec2 p_max,float rounding); CIMGUI_API void igRenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list,ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,float grid_step,ImVec2 grid_off,float rounding,ImDrawFlags flags); CIMGUI_API void igRenderNavHighlight(const ImRect bb,ImGuiID id,ImGuiNavHighlightFlags flags); @@ -4329,8 +4870,9 @@ CIMGUI_API ImDrawFlags igCalcRoundingFlagsForRectInRect(const ImRect r_in,const CIMGUI_API void igTextEx(const char* text,const char* text_end,ImGuiTextFlags flags); CIMGUI_API bool igButtonEx(const char* label,const ImVec2 size_arg,ImGuiButtonFlags flags); CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg,ImGuiButtonFlags flags); -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); -CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags); +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags); +CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags,float thickness); +CIMGUI_API void igSeparatorTextEx(ImGuiID id,const char* label,const char* label_end,float extra_width); CIMGUI_API bool igCheckboxFlags_S64Ptr(const char* label,ImS64* flags,ImS64 flags_value); CIMGUI_API bool igCheckboxFlags_U64Ptr(const char* label,ImU64* flags,ImU64 flags_value); CIMGUI_API bool igCloseButton(ImGuiID id,const ImVec2 pos); @@ -4347,38 +4889,46 @@ CIMGUI_API bool igSliderBehavior(const ImRect bb,ImGuiID id,ImGuiDataType data_t CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col); CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const char* label,const char* label_end); CIMGUI_API void igTreePushOverrideID(ImGuiID id); -CIMGUI_API void igTreeNodeSetOpen(ImGuiID id,bool open); -CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID id,ImGuiTreeNodeFlags flags); +CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id); +CIMGUI_API void igTreeNodeSetOpen(ImGuiID storage_id,bool open); +CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID storage_id,ImGuiTreeNodeFlags flags); CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type); CIMGUI_API int igDataTypeFormatString(char* buf,int buf_size,ImGuiDataType data_type,const void* p_data,const char* format); CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2); -CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format); +CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty); CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2); CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max); CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data); +CIMGUI_API void igInputTextDeactivateHook(ImGuiID id); CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags); CIMGUI_API bool igTempInputScalar(const ImRect bb,ImGuiID id,const char* label,ImGuiDataType data_type,void* p_data,const char* format,const void* p_clamp_min,const void* p_clamp_max); CIMGUI_API bool igTempInputIsActive(ImGuiID id); CIMGUI_API ImGuiInputTextState* igGetInputTextState(ImGuiID id); +CIMGUI_API void igSetNextItemRefVal(ImGuiDataType data_type,void* p_data); CIMGUI_API void igColorTooltip(const char* text,const float* col,ImGuiColorEditFlags flags); CIMGUI_API void igColorEditOptionsPopup(const float* col,ImGuiColorEditFlags flags); CIMGUI_API void igColorPickerOptionsPopup(const float* ref_col,ImGuiColorEditFlags flags); -CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size); +CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg); CIMGUI_API void igShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,ImVec2 gradient_p0,ImVec2 gradient_p1,ImU32 col0,ImU32 col1); CIMGUI_API void igShadeVertsLinearUV(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 a,const ImVec2 b,const ImVec2 uv_a,const ImVec2 uv_b,bool clamp); +CIMGUI_API void igShadeVertsTransformPos(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out); CIMGUI_API void igGcCompactTransientMiscBuffers(void); CIMGUI_API void igGcCompactTransientWindowBuffers(ImGuiWindow* window); CIMGUI_API void igGcAwakeTransientWindowBuffers(ImGuiWindow* window); -CIMGUI_API void igDebugLog(const char* fmt,...); -CIMGUI_API void igDebugLogV(const char* fmt,va_list args); +CIMGUI_API void igDebugAllocHook(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size); CIMGUI_API void igErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback,void* user_data); CIMGUI_API void igErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback,void* user_data); CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries(void); +CIMGUI_API void igDebugDrawCursorPos(ImU32 col); +CIMGUI_API void igDebugDrawLineExtents(ImU32 col); +CIMGUI_API void igDebugDrawItemRect(ImU32 col); +CIMGUI_API void igDebugTextUnformattedWithLocateItem(const char* line_begin,const char* line_end); CIMGUI_API void igDebugLocateItem(ImGuiID target_id); CIMGUI_API void igDebugLocateItemOnHover(ImGuiID target_id); CIMGUI_API void igDebugLocateItemResolveWithLastItem(void); -CIMGUI_API void igDebugDrawItemRect(ImU32 col); -CIMGUI_API void igDebugStartItemPicker(void); +CIMGUI_API void igDebugBreakClearData(void); +CIMGUI_API bool igDebugBreakButton(const char* label,const char* description_of_location); +CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* description_of_location); CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas); CIMGUI_API void igDebugHookIdInfo(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end); CIMGUI_API void igDebugNodeColumns(ImGuiOldColumns* columns); @@ -4392,14 +4942,17 @@ CIMGUI_API void igDebugNodeTabBar(ImGuiTabBar* tab_bar,const char* label); CIMGUI_API void igDebugNodeTable(ImGuiTable* table); CIMGUI_API void igDebugNodeTableSettings(ImGuiTableSettings* settings); CIMGUI_API void igDebugNodeInputTextState(ImGuiInputTextState* state); +CIMGUI_API void igDebugNodeTypingSelectState(ImGuiTypingSelectState* state); +CIMGUI_API void igDebugNodeMultiSelectState(ImGuiMultiSelectState* state); CIMGUI_API void igDebugNodeWindow(ImGuiWindow* window,const char* label); CIMGUI_API void igDebugNodeWindowSettings(ImGuiWindowSettings* settings); CIMGUI_API void igDebugNodeWindowsList(ImVector_ImGuiWindowPtr* windows,const char* label); CIMGUI_API void igDebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack); CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport); +CIMGUI_API void igDebugNodePlatformMonitor(ImGuiPlatformMonitor* monitor,const char* label,int idx); CIMGUI_API void igDebugRenderKeyboardPreview(ImDrawList* draw_list); CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewportP* viewport,const ImRect bb); -CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat); +CIMGUI_API void igImFontAtlasUpdateConfigDataPointers(ImFontAtlas* atlas); CIMGUI_API void igImFontAtlasBuildInit(ImFontAtlas* atlas); CIMGUI_API void igImFontAtlasBuildSetupFont(ImFontAtlas* atlas,ImFont* font,ImFontConfig* font_config,float ascent,float descent); CIMGUI_API void igImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas,void* stbrp_context_opaque); @@ -4428,6 +4981,10 @@ CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); +#ifdef IMGUI_HAS_DOCK +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowPos(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_pos)); +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowSize(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_size)); +#endif #endif //CIMGUI_INCLUDED diff --git a/imgui-sys/third-party/imgui-docking-freetype/cimgui_impl.h b/imgui-sys/third-party/imgui-docking-freetype/cimgui_impl.h index 597cca0..223f7bc 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/cimgui_impl.h +++ b/imgui-sys/third-party/imgui-docking-freetype/cimgui_impl.h @@ -10,6 +10,7 @@ CIMGUI_API void ImGui_ImplGlfw_Shutdown(void); CIMGUI_API void ImGui_ImplGlfw_NewFrame(void); CIMGUI_API void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window); CIMGUI_API void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window); +CIMGUI_API void ImGui_ImplGlfw_SetCallbacksChainForAllWindows(bool chain_for_all_windows); CIMGUI_API void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window,int focused); CIMGUI_API void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window,int entered); CIMGUI_API void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window,double x,double y); @@ -18,6 +19,7 @@ CIMGUI_API void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window,double xoffset, CIMGUI_API void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window,int key,int scancode,int action,int mods); CIMGUI_API void ImGui_ImplGlfw_CharCallback(GLFWwindow* window,unsigned int c); CIMGUI_API void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor,int event); +CIMGUI_API void ImGui_ImplGlfw_Sleep(int milliseconds); #endif #ifdef CIMGUI_USE_OPENGL3 @@ -42,19 +44,24 @@ CIMGUI_API bool ImGui_ImplOpenGL2_CreateDeviceObjects(void); CIMGUI_API void ImGui_ImplOpenGL2_DestroyDeviceObjects(void); #endif -#ifdef CIMGUI_USE_SDL +#ifdef CIMGUI_USE_SDL2 typedef struct SDL_Window SDL_Window; typedef struct SDL_Renderer SDL_Renderer; +typedef struct _SDL_GameController _SDL_GameController; struct SDL_Window; struct SDL_Renderer; -typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); +struct _SDL_GameController; +typedef union SDL_Event SDL_Event; +typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); CIMGUI_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForSDLRenderer(SDL_Window* window,SDL_Renderer* renderer); +CIMGUI_API bool ImGui_ImplSDL2_InitForOther(SDL_Window* window); CIMGUI_API void ImGui_ImplSDL2_Shutdown(void); CIMGUI_API void ImGui_ImplSDL2_NewFrame(void); CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event); +CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count); #endif diff --git a/imgui-sys/third-party/imgui-docking-freetype/definitions.json b/imgui-sys/third-party/imgui-docking-freetype/definitions.json index 334c149..8aebef8 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/definitions.json +++ b/imgui-sys/third-party/imgui-docking-freetype/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:587", + "location": "imgui_internal:596", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:591", + "location": "imgui_internal:600", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:586", + "location": "imgui_internal:595", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:588", + "location": "imgui_internal:597", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:590", + "location": "imgui_internal:599", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:592", + "location": "imgui_internal:601", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:589", + "location": "imgui_internal:598", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +202,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:602", + "location": "imgui_internal:611", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +227,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:605", + "location": "imgui_internal:614", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +252,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:601", + "location": "imgui_internal:610", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +277,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:604", + "location": "imgui_internal:613", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +302,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:603", + "location": "imgui_internal:612", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -327,7 +327,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:708", + "location": "imgui_internal:715", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -349,7 +349,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:709", + "location": "imgui_internal:716", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -375,7 +375,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:711", + "location": "imgui_internal:718", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -397,7 +397,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:705", + "location": "imgui_internal:712", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -419,7 +419,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:706", + "location": "imgui_internal:713", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -441,7 +441,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:712", + "location": "imgui_internal:719", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -467,7 +467,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:710", + "location": "imgui_internal:717", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -493,7 +493,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:713", + "location": "imgui_internal:720", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -519,7 +519,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:714", + "location": "imgui_internal:721", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -541,7 +541,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:707", + "location": "imgui_internal:714", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -568,7 +568,7 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:715", + "location": "imgui_internal:722", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -609,7 +609,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2469", + "location": "imgui:2859", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,7 +627,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2459", + "location": "imgui:2849", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -660,7 +660,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2460", + "location": "imgui:2850", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -679,7 +679,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2461", + "location": "imgui:2851", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -712,7 +712,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2462", + "location": "imgui:2852", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -731,7 +731,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2463", + "location": "imgui:2853", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -769,7 +769,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2468", + "location": "imgui:2858", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -809,7 +809,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2517", + "location": "imgui:3055", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -826,7 +826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2514", + "location": "imgui:3052", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -851,28 +851,23 @@ "stname": "ImDrawCmd" } ], - "ImDrawDataBuilder_Clear": [ + "ImDrawDataBuilder_ImDrawDataBuilder": [ { - "args": "(ImDrawDataBuilder* self)", - "argsT": [ - { - "name": "self", - "type": "ImDrawDataBuilder*" - } - ], + "args": "()", + "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImDrawDataBuilder_Clear", + "cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", + "constructor": true, "defaults": {}, - "funcname": "Clear", - "location": "imgui_internal:791", - "ov_cimguiname": "ImDrawDataBuilder_Clear", - "ret": "void", + "funcname": "ImDrawDataBuilder", + "location": "imgui_internal:801", + "ov_cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", "signature": "()", "stname": "ImDrawDataBuilder" } ], - "ImDrawDataBuilder_ClearFreeMemory": [ + "ImDrawDataBuilder_destroy": [ { "args": "(ImDrawDataBuilder* self)", "argsT": [ @@ -881,58 +876,39 @@ "type": "ImDrawDataBuilder*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", + "call_args": "(self)", + "cimguiname": "ImDrawDataBuilder_destroy", "defaults": {}, - "funcname": "ClearFreeMemory", - "location": "imgui_internal:792", - "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", + "destructor": true, + "ov_cimguiname": "ImDrawDataBuilder_destroy", "ret": "void", - "signature": "()", + "signature": "(ImDrawDataBuilder*)", "stname": "ImDrawDataBuilder" } ], - "ImDrawDataBuilder_FlattenIntoSingleLayer": [ + "ImDrawData_AddDrawList": [ { - "args": "(ImDrawDataBuilder* self)", + "args": "(ImDrawData* self,ImDrawList* draw_list)", "argsT": [ { "name": "self", - "type": "ImDrawDataBuilder*" + "type": "ImDrawData*" + }, + { + "name": "draw_list", + "type": "ImDrawList*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", + "argsoriginal": "(ImDrawList* draw_list)", + "call_args": "(draw_list)", + "cimguiname": "ImDrawData_AddDrawList", "defaults": {}, - "funcname": "FlattenIntoSingleLayer", - "location": "imgui_internal:794", - "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", + "funcname": "AddDrawList", + "location": "imgui:3303", + "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", - "signature": "()", - "stname": "ImDrawDataBuilder" - } - ], - "ImDrawDataBuilder_GetDrawListCount": [ - { - "args": "(ImDrawDataBuilder* self)", - "argsT": [ - { - "name": "self", - "type": "ImDrawDataBuilder*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImDrawDataBuilder_GetDrawListCount", - "defaults": {}, - "funcname": "GetDrawListCount", - "location": "imgui_internal:793", - "ov_cimguiname": "ImDrawDataBuilder_GetDrawListCount", - "ret": "int", - "signature": "()const", - "stname": "ImDrawDataBuilder" + "signature": "(ImDrawList*)", + "stname": "ImDrawData" } ], "ImDrawData_Clear": [ @@ -949,7 +925,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2751", + "location": "imgui:3302", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -970,7 +946,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2752", + "location": "imgui:3304", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -987,7 +963,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2750", + "location": "imgui:3301", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1011,7 +987,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2753", + "location": "imgui:3305", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1047,7 +1023,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:783", + "location": "imgui_internal:792", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1071,7 +1047,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:784", + "location": "imgui_internal:793", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1111,7 +1087,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2562", + "location": "imgui:3100", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1132,7 +1108,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2563", + "location": "imgui:3101", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1149,7 +1125,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2560", + "location": "imgui:3098", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1173,7 +1149,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2565", + "location": "imgui:3103", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1202,7 +1178,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2566", + "location": "imgui:3104", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1231,7 +1207,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2564", + "location": "imgui:3102", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1251,7 +1227,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2561", + "location": "imgui:3099", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1303,7 +1279,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2665", + "location": "imgui:3203", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1350,7 +1326,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2666", + "location": "imgui:3204", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1379,7 +1355,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2690", + "location": "imgui:3238", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1423,7 +1399,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2657", + "location": "imgui:3195", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1462,13 +1438,46 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2658", + "location": "imgui:3196", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" } ], + "ImDrawList_AddConcavePolyFilled": [ + { + "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "points", + "type": "const ImVec2*" + }, + { + "name": "num_points", + "type": "int" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col)", + "call_args": "(points,num_points,col)", + "cimguiname": "ImDrawList_AddConcavePolyFilled", + "defaults": {}, + "funcname": "AddConcavePolyFilled", + "location": "imgui:3211", + "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", + "ret": "void", + "signature": "(const ImVec2*,int,ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddConvexPolyFilled": [ { "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", @@ -1495,7 +1504,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2664", + "location": "imgui:3210", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1516,13 +1525,106 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2691", + "location": "imgui:3239", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_AddEllipse": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + }, + { + "name": "thickness", + "type": "float" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)", + "call_args": "(center,radius,col,rot,num_segments,thickness)", + "cimguiname": "ImDrawList_AddEllipse", + "defaults": { + "num_segments": "0", + "rot": "0.0f", + "thickness": "1.0f" + }, + "funcname": "AddEllipse", + "location": "imgui:3199", + "ov_cimguiname": "ImDrawList_AddEllipse", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", + "stname": "ImDrawList" + } + ], + "ImDrawList_AddEllipseFilled": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)", + "call_args": "(center,radius,col,rot,num_segments)", + "cimguiname": "ImDrawList_AddEllipseFilled", + "defaults": { + "num_segments": "0", + "rot": "0.0f" + }, + "funcname": "AddEllipseFilled", + "location": "imgui:3200", + "ov_cimguiname": "ImDrawList_AddEllipseFilled", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddImage": [ { "args": "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)", @@ -1565,7 +1667,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2672", + "location": "imgui:3217", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1632,7 +1734,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2673", + "location": "imgui:3218", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1687,7 +1789,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2674", + "location": "imgui:3219", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1726,7 +1828,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2649", + "location": "imgui:3187", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1769,7 +1871,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2659", + "location": "imgui:3197", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1806,7 +1908,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2660", + "location": "imgui:3198", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1847,7 +1949,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2663", + "location": "imgui:3209", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1894,7 +1996,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2653", + "location": "imgui:3191", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1935,7 +2037,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2654", + "location": "imgui:3192", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1984,7 +2086,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2650", + "location": "imgui:3188", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2028,7 +2130,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2651", + "location": "imgui:3189", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2073,7 +2175,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2652", + "location": "imgui:3190", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2112,7 +2214,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2661", + "location": "imgui:3201", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2167,7 +2269,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2662", + "location": "imgui:3202", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2210,7 +2312,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2655", + "location": "imgui:3193", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2247,7 +2349,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2656", + "location": "imgui:3194", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2268,7 +2370,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2701", + "location": "imgui:3249", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2293,7 +2395,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2702", + "location": "imgui:3250", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2318,7 +2420,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2700", + "location": "imgui:3248", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2339,7 +2441,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2692", + "location": "imgui:3240", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2364,7 +2466,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2640", + "location": "imgui:3178", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2390,7 +2492,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2639", + "location": "imgui:3177", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2413,7 +2515,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2631", + "location": "imgui:3169", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2455,7 +2557,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2683", + "location": "imgui:3230", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2492,7 +2594,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2684", + "location": "imgui:3231", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2531,7 +2633,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2685", + "location": "imgui:3233", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2566,7 +2668,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2686", + "location": "imgui:3234", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2587,13 +2689,85 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2678", + "location": "imgui:3224", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_PathEllipticalArcTo": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "a_min", + "type": "float" + }, + { + "name": "a_max", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)", + "call_args": "(center,radius,rot,a_min,a_max,num_segments)", + "cimguiname": "ImDrawList_PathEllipticalArcTo", + "defaults": { + "num_segments": "0" + }, + "funcname": "PathEllipticalArcTo", + "location": "imgui:3232", + "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,float,float,float,int)", + "stname": "ImDrawList" + } + ], + "ImDrawList_PathFillConcave": [ + { + "args": "(ImDrawList* self,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col)", + "call_args": "(col)", + "cimguiname": "ImDrawList_PathFillConcave", + "defaults": {}, + "funcname": "PathFillConcave", + "location": "imgui:3228", + "ov_cimguiname": "ImDrawList_PathFillConcave", + "ret": "void", + "signature": "(ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_PathFillConvex": [ { "args": "(ImDrawList* self,ImU32 col)", @@ -2612,7 +2786,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2681", + "location": "imgui:3227", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2637,7 +2811,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2679", + "location": "imgui:3225", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2662,7 +2836,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2680", + "location": "imgui:3226", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2702,7 +2876,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2687", + "location": "imgui:3235", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2738,7 +2912,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2682", + "location": "imgui:3229", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2759,7 +2933,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2636", + "location": "imgui:3174", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2780,7 +2954,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2638", + "location": "imgui:3176", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2837,7 +3011,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2711", + "location": "imgui:3259", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2870,7 +3044,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2709", + "location": "imgui:3257", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2911,7 +3085,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2710", + "location": "imgui:3258", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2940,7 +3114,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2707", + "location": "imgui:3255", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2969,7 +3143,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2708", + "location": "imgui:3256", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3002,7 +3176,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2714", + "location": "imgui:3262", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3027,7 +3201,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2713", + "location": "imgui:3261", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3060,7 +3234,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2712", + "location": "imgui:3260", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3095,7 +3269,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2634", + "location": "imgui:3172", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3116,7 +3290,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2635", + "location": "imgui:3173", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3141,7 +3315,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2637", + "location": "imgui:3175", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3166,7 +3340,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2729", + "location": "imgui:3280", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3187,7 +3361,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2723", + "location": "imgui:3273", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3208,7 +3382,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2726", + "location": "imgui:3276", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3229,7 +3403,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2727", + "location": "imgui:3277", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3250,7 +3424,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2728", + "location": "imgui:3278", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3291,7 +3465,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2730", + "location": "imgui:3281", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3332,7 +3506,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2731", + "location": "imgui:3282", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3353,7 +3527,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2724", + "location": "imgui:3274", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3374,13 +3548,38 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2722", + "location": "imgui:3272", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList__SetTextureID": [ + { + "args": "(ImDrawList* self,ImTextureID texture_id)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "texture_id", + "type": "ImTextureID" + } + ], + "argsoriginal": "(ImTextureID texture_id)", + "call_args": "(texture_id)", + "cimguiname": "ImDrawList__SetTextureID", + "defaults": {}, + "funcname": "_SetTextureID", + "location": "imgui:3279", + "ov_cimguiname": "ImDrawList__SetTextureID", + "ret": "void", + "signature": "(ImTextureID)", + "stname": "ImDrawList" + } + ], "ImDrawList__TryMergeDrawCmds": [ { "args": "(ImDrawList* self)", @@ -3395,7 +3594,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:2725", + "location": "imgui:3275", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3415,7 +3614,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2633", + "location": "imgui:3171", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3433,7 +3632,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2824", + "location": "imgui:3377", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3453,7 +3652,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2825", + "location": "imgui:3378", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3519,7 +3718,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2909", + "location": "imgui:3463", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3548,7 +3747,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2908", + "location": "imgui:3462", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3573,7 +3772,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2858", + "location": "imgui:3411", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3600,7 +3799,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2859", + "location": "imgui:3412", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3640,7 +3839,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2860", + "location": "imgui:3413", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3680,7 +3879,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2863", + "location": "imgui:3416", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3689,7 +3888,7 @@ ], "ImFontAtlas_AddFontFromMemoryCompressedTTF": [ { - "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -3700,7 +3899,7 @@ "type": "const void*" }, { - "name": "compressed_font_size", + "name": "compressed_font_data_size", "type": "int" }, { @@ -3716,15 +3915,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2862", + "location": "imgui:3415", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3733,7 +3932,7 @@ ], "ImFontAtlas_AddFontFromMemoryTTF": [ { - "args": "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -3744,7 +3943,7 @@ "type": "void*" }, { - "name": "font_size", + "name": "font_data_size", "type": "int" }, { @@ -3760,15 +3959,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2861", + "location": "imgui:3414", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3789,7 +3988,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2874", + "location": "imgui:3427", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3822,7 +4021,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2913", + "location": "imgui:3467", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3843,7 +4042,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2867", + "location": "imgui:3420", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3864,7 +4063,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2866", + "location": "imgui:3419", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3885,7 +4084,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2864", + "location": "imgui:3417", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3906,7 +4105,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2865", + "location": "imgui:3418", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3931,7 +4130,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2910", + "location": "imgui:3464", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3952,7 +4151,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2891", + "location": "imgui:3445", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3973,7 +4172,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2892", + "location": "imgui:3446", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3994,7 +4193,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2893", + "location": "imgui:3447", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -4015,7 +4214,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2887", + "location": "imgui:3441", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4036,7 +4235,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "defaults": {}, "funcname": "GetGlyphRangesGreek", - "location": "imgui:2888", + "location": "imgui:3442", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "ret": "const ImWchar*", "signature": "()", @@ -4057,7 +4256,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2890", + "location": "imgui:3444", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4078,7 +4277,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2889", + "location": "imgui:3443", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4099,7 +4298,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2894", + "location": "imgui:3448", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4120,7 +4319,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2895", + "location": "imgui:3449", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4161,7 +4360,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2914", + "location": "imgui:3468", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4200,7 +4399,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2875", + "location": "imgui:3428", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4239,7 +4438,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2876", + "location": "imgui:3429", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4256,7 +4455,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2856", + "location": "imgui:3409", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4276,7 +4475,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2877", + "location": "imgui:3430", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4301,7 +4500,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2878", + "location": "imgui:3431", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4321,7 +4520,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2857", + "location": "imgui:3410", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4339,7 +4538,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2784", + "location": "imgui:3337", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4382,7 +4581,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2809", + "location": "imgui:3362", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4407,7 +4606,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2811", + "location": "imgui:3364", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4438,7 +4637,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2810", + "location": "imgui:3363", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4463,7 +4662,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2812", + "location": "imgui:3365", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4484,7 +4683,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2806", + "location": "imgui:3359", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4509,7 +4708,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2807", + "location": "imgui:3360", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4526,7 +4725,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2805", + "location": "imgui:3358", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4550,7 +4749,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2808", + "location": "imgui:3361", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4634,7 +4833,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:3002", + "location": "imgui:3558", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4669,7 +4868,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:3003", + "location": "imgui:3559", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4690,7 +4889,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2999", + "location": "imgui:3555", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4742,7 +4941,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2993", + "location": "imgui:3549", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4780,7 +4979,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2994", + "location": "imgui:3550", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4801,7 +5000,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3000", + "location": "imgui:3556", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4826,7 +5025,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2985", + "location": "imgui:3541", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4851,7 +5050,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2986", + "location": "imgui:3542", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4876,7 +5075,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2987", + "location": "imgui:3543", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4897,7 +5096,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2989", + "location": "imgui:3545", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4922,7 +5121,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:3001", + "location": "imgui:3557", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4939,7 +5138,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2983", + "location": "imgui:3539", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4967,7 +5166,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:3005", + "location": "imgui:3561", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4988,7 +5187,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2988", + "location": "imgui:3544", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5029,7 +5228,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2995", + "location": "imgui:3551", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const", @@ -5089,7 +5288,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2996", + "location": "imgui:3552", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -5118,7 +5317,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:3004", + "location": "imgui:3560", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5138,7 +5337,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2984", + "location": "imgui:3540", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5146,6 +5345,41 @@ "stname": "ImFont" } ], + "ImGuiBoxSelectState_ImGuiBoxSelectState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiBoxSelectState", + "location": "imgui_internal:1754", + "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", + "signature": "()", + "stname": "ImGuiBoxSelectState" + } + ], + "ImGuiBoxSelectState_destroy": [ + { + "args": "(ImGuiBoxSelectState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiBoxSelectState*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiBoxSelectState_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiBoxSelectState_destroy", + "ret": "void", + "signature": "(ImGuiBoxSelectState*)", + "stname": "ImGuiBoxSelectState" + } + ], "ImGuiComboPreviewData_ImGuiComboPreviewData": [ { "args": "()", @@ -5156,7 +5390,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1022", + "location": "imgui_internal:1058", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5191,7 +5425,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:1903", + "location": "imgui_internal:2177", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5231,7 +5465,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2212", + "location": "imgui_internal:2550", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5256,6 +5490,66 @@ "stname": "ImGuiContext" } ], + "ImGuiDataVarInfo_GetVarPtr": [ + { + "args": "(ImGuiDataVarInfo* self,void* parent)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDataVarInfo*" + }, + { + "name": "parent", + "type": "void*" + } + ], + "argsoriginal": "(void* parent)", + "call_args": "(parent)", + "cimguiname": "ImGuiDataVarInfo_GetVarPtr", + "defaults": {}, + "funcname": "GetVarPtr", + "location": "imgui_internal:813", + "ov_cimguiname": "ImGuiDataVarInfo_GetVarPtr", + "ret": "void*", + "signature": "(void*)const", + "stname": "ImGuiDataVarInfo" + } + ], + "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiDebugAllocInfo", + "location": "imgui_internal:2117", + "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", + "signature": "()", + "stname": "ImGuiDebugAllocInfo" + } + ], + "ImGuiDebugAllocInfo_destroy": [ + { + "args": "(ImGuiDebugAllocInfo* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDebugAllocInfo*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiDebugAllocInfo_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiDebugAllocInfo_destroy", + "ret": "void", + "signature": "(ImGuiDebugAllocInfo*)", + "stname": "ImGuiDebugAllocInfo" + } + ], "ImGuiDockContext_ImGuiDockContext": [ { "args": "()", @@ -5266,7 +5560,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:1708", + "location": "imgui_internal:1952", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5306,7 +5600,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:1665", + "location": "imgui_internal:1906", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5326,7 +5620,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:1670", + "location": "imgui_internal:1911", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5347,7 +5641,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:1668", + "location": "imgui_internal:1909", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5368,7 +5662,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:1675", + "location": "imgui_internal:1916", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5389,7 +5683,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:1669", + "location": "imgui_internal:1910", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5410,7 +5704,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:1671", + "location": "imgui_internal:1912", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5431,7 +5725,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:1674", + "location": "imgui_internal:1915", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5452,7 +5746,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:1672", + "location": "imgui_internal:1913", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5473,7 +5767,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:1667", + "location": "imgui_internal:1908", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5494,7 +5788,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:1673", + "location": "imgui_internal:1914", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5519,7 +5813,7 @@ "cimguiname": "ImGuiDockNode_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1676", + "location": "imgui_internal:1917", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "void", @@ -5545,7 +5839,7 @@ "cimguiname": "ImGuiDockNode_SetLocalFlags", "defaults": {}, "funcname": "SetLocalFlags", - "location": "imgui_internal:1678", + "location": "imgui_internal:1919", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5566,7 +5860,7 @@ "cimguiname": "ImGuiDockNode_UpdateMergedFlags", "defaults": {}, "funcname": "UpdateMergedFlags", - "location": "imgui_internal:1679", + "location": "imgui_internal:1920", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5586,7 +5880,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1666", + "location": "imgui_internal:1907", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5647,6 +5941,41 @@ "stname": "" } ], + "ImGuiIDStackTool_ImGuiIDStackTool": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiIDStackTool", + "location": "imgui_internal:2159", + "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", + "signature": "()", + "stname": "ImGuiIDStackTool" + } + ], + "ImGuiIDStackTool_destroy": [ + { + "args": "(ImGuiIDStackTool* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIDStackTool*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiIDStackTool_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiIDStackTool_destroy", + "ret": "void", + "signature": "(ImGuiIDStackTool*)", + "stname": "ImGuiIDStackTool" + } + ], "ImGuiIO_AddFocusEvent": [ { "args": "(ImGuiIO* self,bool focused)", @@ -5665,7 +5994,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2060", + "location": "imgui:2408", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5690,7 +6019,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2061", + "location": "imgui:2409", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5715,7 +6044,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2062", + "location": "imgui:2410", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5740,7 +6069,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2063", + "location": "imgui:2411", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5773,7 +6102,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2055", + "location": "imgui:2402", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5802,7 +6131,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2054", + "location": "imgui:2401", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5831,7 +6160,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2057", + "location": "imgui:2404", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5860,13 +6189,38 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2056", + "location": "imgui:2403", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], + "ImGuiIO_AddMouseSourceEvent": [ + { + "args": "(ImGuiIO* self,ImGuiMouseSource source)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + }, + { + "name": "source", + "type": "ImGuiMouseSource" + } + ], + "argsoriginal": "(ImGuiMouseSource source)", + "call_args": "(source)", + "cimguiname": "ImGuiIO_AddMouseSourceEvent", + "defaults": {}, + "funcname": "AddMouseSourceEvent", + "location": "imgui:2406", + "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", + "ret": "void", + "signature": "(ImGuiMouseSource)", + "stname": "ImGuiIO" + } + ], "ImGuiIO_AddMouseViewportEvent": [ { "args": "(ImGuiIO* self,ImGuiID id)", @@ -5885,7 +6239,7 @@ "cimguiname": "ImGuiIO_AddMouseViewportEvent", "defaults": {}, "funcname": "AddMouseViewportEvent", - "location": "imgui:2059", + "location": "imgui:2407", "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", "ret": "void", "signature": "(ImGuiID)", @@ -5894,34 +6248,34 @@ ], "ImGuiIO_AddMouseWheelEvent": [ { - "args": "(ImGuiIO* self,float wh_x,float wh_y)", + "args": "(ImGuiIO* self,float wheel_x,float wheel_y)", "argsT": [ { "name": "self", "type": "ImGuiIO*" }, { - "name": "wh_x", + "name": "wheel_x", "type": "float" }, { - "name": "wh_y", + "name": "wheel_y", "type": "float" } ], - "argsoriginal": "(float wh_x,float wh_y)", - "call_args": "(wh_x,wh_y)", + "argsoriginal": "(float wheel_x,float wheel_y)", + "call_args": "(wheel_x,wheel_y)", "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2058", + "location": "imgui:2405", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], - "ImGuiIO_ClearInputCharacters": [ + "ImGuiIO_ClearEventsQueue": [ { "args": "(ImGuiIO* self)", "argsT": [ @@ -5932,11 +6286,11 @@ ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiIO_ClearInputCharacters", + "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, - "funcname": "ClearInputCharacters", - "location": "imgui:2067", - "ov_cimguiname": "ImGuiIO_ClearInputCharacters", + "funcname": "ClearEventsQueue", + "location": "imgui:2415", + "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -5956,13 +6310,34 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2068", + "location": "imgui:2416", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", "stname": "ImGuiIO" } ], + "ImGuiIO_ClearInputMouse": [ + { + "args": "(ImGuiIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIO_ClearInputMouse", + "defaults": {}, + "funcname": "ClearInputMouse", + "location": "imgui:2417", + "ov_cimguiname": "ImGuiIO_ClearInputMouse", + "ret": "void", + "signature": "()", + "stname": "ImGuiIO" + } + ], "ImGuiIO_ImGuiIO": [ { "args": "()", @@ -5973,7 +6348,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2143", + "location": "imgui:2508", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -5997,7 +6372,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2066", + "location": "imgui:2414", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -6036,7 +6411,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2065", + "location": "imgui:2413", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6072,7 +6447,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1307", + "location": "imgui_internal:1427", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6111,7 +6486,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2184", + "location": "imgui:2552", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6140,7 +6515,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2181", + "location": "imgui:2549", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6161,7 +6536,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2185", + "location": "imgui:2553", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6178,7 +6553,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2180", + "location": "imgui:2548", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6212,7 +6587,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2182", + "location": "imgui:2550", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6233,7 +6608,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2183", + "location": "imgui:2551", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6259,6 +6634,62 @@ "stname": "ImGuiInputTextCallbackData" } ], + "ImGuiInputTextDeactivatedState_ClearFreeMemory": [ + { + "args": "(ImGuiInputTextDeactivatedState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextDeactivatedState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", + "defaults": {}, + "funcname": "ClearFreeMemory", + "location": "imgui_internal:1104", + "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextDeactivatedState" + } + ], + "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiInputTextDeactivatedState", + "location": "imgui_internal:1103", + "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", + "signature": "()", + "stname": "ImGuiInputTextDeactivatedState" + } + ], + "ImGuiInputTextDeactivatedState_destroy": [ + { + "args": "(ImGuiInputTextDeactivatedState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextDeactivatedState*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiInputTextDeactivatedState_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiInputTextDeactivatedState_destroy", + "ret": "void", + "signature": "(ImGuiInputTextDeactivatedState*)", + "stname": "ImGuiInputTextDeactivatedState" + } + ], "ImGuiInputTextState_ClearFreeMemory": [ { "args": "(ImGuiInputTextState* self)", @@ -6273,7 +6704,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1081", + "location": "imgui_internal:1143", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6294,7 +6725,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1090", + "location": "imgui_internal:1151", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6315,7 +6746,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1080", + "location": "imgui_internal:1142", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6336,7 +6767,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1087", + "location": "imgui_internal:1148", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6357,7 +6788,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1088", + "location": "imgui_internal:1149", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6378,34 +6809,13 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1091", + "location": "imgui_internal:1152", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_GetRedoAvailCount": [ - { - "args": "(ImGuiInputTextState* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiInputTextState*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", - "defaults": {}, - "funcname": "GetRedoAvailCount", - "location": "imgui_internal:1083", - "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", - "ret": "int", - "signature": "()const", - "stname": "ImGuiInputTextState" - } - ], "ImGuiInputTextState_GetSelectionEnd": [ { "args": "(ImGuiInputTextState* self)", @@ -6420,7 +6830,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1093", + "location": "imgui_internal:1154", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6441,34 +6851,13 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1092", + "location": "imgui_internal:1153", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_GetUndoAvailCount": [ - { - "args": "(ImGuiInputTextState* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiInputTextState*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", - "defaults": {}, - "funcname": "GetUndoAvailCount", - "location": "imgui_internal:1082", - "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", - "ret": "int", - "signature": "()const", - "stname": "ImGuiInputTextState" - } - ], "ImGuiInputTextState_HasSelection": [ { "args": "(ImGuiInputTextState* self)", @@ -6483,7 +6872,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1089", + "location": "imgui_internal:1150", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6492,22 +6881,42 @@ ], "ImGuiInputTextState_ImGuiInputTextState": [ { - "args": "(ImGuiContext* ctx)", - "argsT": [ - { - "name": "ctx", - "type": "ImGuiContext*" - } - ], - "argsoriginal": "(ImGuiContext* ctx)", - "call_args": "(ctx)", + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", "cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1079", + "location": "imgui_internal:1140", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", - "signature": "(ImGuiContext*)", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_OnCharPressed": [ + { + "args": "(ImGuiInputTextState* self,unsigned int c)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + }, + { + "name": "c", + "type": "unsigned int" + } + ], + "argsoriginal": "(unsigned int c)", + "call_args": "(c)", + "cimguiname": "ImGuiInputTextState_OnCharPressed", + "defaults": {}, + "funcname": "OnCharPressed", + "location": "imgui_internal:1145", + "ov_cimguiname": "ImGuiInputTextState_OnCharPressed", + "ret": "void", + "signature": "(unsigned int)", "stname": "ImGuiInputTextState" } ], @@ -6529,13 +6938,76 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1084", + "location": "imgui_internal:1144", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", "stname": "ImGuiInputTextState" } ], + "ImGuiInputTextState_ReloadUserBufAndKeepSelection": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", + "defaults": {}, + "funcname": "ReloadUserBufAndKeepSelection", + "location": "imgui_internal:1163", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ReloadUserBufAndMoveToEnd": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", + "defaults": {}, + "funcname": "ReloadUserBufAndMoveToEnd", + "location": "imgui_internal:1164", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ReloadUserBufAndSelectAll": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", + "defaults": {}, + "funcname": "ReloadUserBufAndSelectAll", + "location": "imgui_internal:1162", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], "ImGuiInputTextState_SelectAll": [ { "args": "(ImGuiInputTextState* self)", @@ -6550,7 +7022,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1094", + "location": "imgui_internal:1155", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6570,7 +7042,9 @@ "cimguiname": "ImGuiInputTextState_destroy", "defaults": {}, "destructor": true, + "location": "imgui_internal:1141", "ov_cimguiname": "ImGuiInputTextState_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImGuiInputTextState*)", "stname": "ImGuiInputTextState" @@ -6586,7 +7060,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1349", + "location": "imgui_internal:1471", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -6621,7 +7095,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1325", + "location": "imgui_internal:1447", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -6660,7 +7134,7 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1337", + "location": "imgui_internal:1459", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -6677,7 +7151,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1336", + "location": "imgui_internal:1458", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -6712,7 +7186,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1185", + "location": "imgui_internal:1266", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6747,7 +7221,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1425", + "location": "imgui_internal:1542", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -6771,7 +7245,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1426", + "location": "imgui_internal:1543", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -6816,7 +7290,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1412", + "location": "imgui_internal:1529", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -6850,7 +7324,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1413", + "location": "imgui_internal:1530", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -6881,7 +7355,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2417", + "location": "imgui:2768", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -6902,42 +7376,13 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2418", + "location": "imgui:2769", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" } ], - "ImGuiListClipper_ForceDisplayRangeByIndices": [ - { - "args": "(ImGuiListClipper* self,int item_min,int item_max)", - "argsT": [ - { - "name": "self", - "type": "ImGuiListClipper*" - }, - { - "name": "item_min", - "type": "int" - }, - { - "name": "item_max", - "type": "int" - } - ], - "argsoriginal": "(int item_min,int item_max)", - "call_args": "(item_min,item_max)", - "cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "defaults": {}, - "funcname": "ForceDisplayRangeByIndices", - "location": "imgui:2422", - "ov_cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "ret": "void", - "signature": "(int,int)", - "stname": "ImGuiListClipper" - } - ], "ImGuiListClipper_ImGuiListClipper": [ { "args": "()", @@ -6948,12 +7393,91 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2415", + "location": "imgui:2766", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" } ], + "ImGuiListClipper_IncludeItemByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "defaults": {}, + "funcname": "IncludeItemByIndex", + "location": "imgui:2774", + "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_IncludeItemsByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_begin,int item_end)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_begin", + "type": "int" + }, + { + "name": "item_end", + "type": "int" + } + ], + "argsoriginal": "(int item_begin,int item_end)", + "call_args": "(item_begin,item_end)", + "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "defaults": {}, + "funcname": "IncludeItemsByIndex", + "location": "imgui:2775", + "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "ret": "void", + "signature": "(int,int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_SeekCursorForItem": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_SeekCursorForItem", + "defaults": {}, + "funcname": "SeekCursorForItem", + "location": "imgui:2780", + "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], "ImGuiListClipper_Step": [ { "args": "(ImGuiListClipper* self)", @@ -6968,7 +7492,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2419", + "location": "imgui:2770", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -6988,7 +7512,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2416", + "location": "imgui:2767", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -7014,7 +7538,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1056", + "location": "imgui_internal:1094", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -7051,7 +7575,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1055", + "location": "imgui_internal:1093", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7068,7 +7592,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1053", + "location": "imgui_internal:1091", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7096,7 +7620,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1054", + "location": "imgui_internal:1092", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7122,39 +7646,116 @@ "stname": "ImGuiMenuColumns" } ], - "ImGuiMetricsConfig_ImGuiMetricsConfig": [ + "ImGuiMultiSelectState_ImGuiMultiSelectState": [ { "args": "()", "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", + "cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "constructor": true, "defaults": {}, - "funcname": "ImGuiMetricsConfig", - "location": "imgui_internal:1854", - "ov_cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", + "funcname": "ImGuiMultiSelectState", + "location": "imgui_internal:1801", + "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", - "stname": "ImGuiMetricsConfig" + "stname": "ImGuiMultiSelectState" } ], - "ImGuiMetricsConfig_destroy": [ + "ImGuiMultiSelectState_destroy": [ { - "args": "(ImGuiMetricsConfig* self)", + "args": "(ImGuiMultiSelectState* self)", "argsT": [ { "name": "self", - "type": "ImGuiMetricsConfig*" + "type": "ImGuiMultiSelectState*" } ], "call_args": "(self)", - "cimguiname": "ImGuiMetricsConfig_destroy", + "cimguiname": "ImGuiMultiSelectState_destroy", "defaults": {}, "destructor": true, - "ov_cimguiname": "ImGuiMetricsConfig_destroy", + "ov_cimguiname": "ImGuiMultiSelectState_destroy", "ret": "void", - "signature": "(ImGuiMetricsConfig*)", - "stname": "ImGuiMetricsConfig" + "signature": "(ImGuiMultiSelectState*)", + "stname": "ImGuiMultiSelectState" + } + ], + "ImGuiMultiSelectTempData_Clear": [ + { + "args": "(ImGuiMultiSelectTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiMultiSelectTempData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiMultiSelectTempData_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui_internal:1785", + "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiMultiSelectTempData" + } + ], + "ImGuiMultiSelectTempData_ClearIO": [ + { + "args": "(ImGuiMultiSelectTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiMultiSelectTempData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiMultiSelectTempData_ClearIO", + "defaults": {}, + "funcname": "ClearIO", + "location": "imgui_internal:1786", + "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", + "ret": "void", + "signature": "()", + "stname": "ImGuiMultiSelectTempData" + } + ], + "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiMultiSelectTempData", + "location": "imgui_internal:1784", + "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", + "signature": "()", + "stname": "ImGuiMultiSelectTempData" + } + ], + "ImGuiMultiSelectTempData_destroy": [ + { + "args": "(ImGuiMultiSelectTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiMultiSelectTempData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiMultiSelectTempData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiMultiSelectTempData_destroy", + "ret": "void", + "signature": "(ImGuiMultiSelectTempData*)", + "stname": "ImGuiMultiSelectTempData" } ], "ImGuiNavItemData_Clear": [ @@ -7171,7 +7772,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1502", + "location": "imgui_internal:1626", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7188,7 +7789,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1501", + "location": "imgui_internal:1625", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7227,7 +7828,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1172", + "location": "imgui_internal:1250", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7244,7 +7845,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1171", + "location": "imgui_internal:1249", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7283,7 +7884,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1153", + "location": "imgui_internal:1221", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7300,7 +7901,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1152", + "location": "imgui_internal:1220", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7335,7 +7936,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1537", + "location": "imgui_internal:1705", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7370,7 +7971,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1558", + "location": "imgui_internal:1726", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7405,7 +8006,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2281", + "location": "imgui:2626", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7444,7 +8045,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2235", + "location": "imgui:2604", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7461,7 +8062,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2234", + "location": "imgui:2603", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -7485,7 +8086,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2236", + "location": "imgui:2605", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -7506,7 +8107,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2238", + "location": "imgui:2607", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -7527,7 +8128,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2237", + "location": "imgui:2606", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -7563,7 +8164,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3180", + "location": "imgui:3684", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -7598,7 +8199,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:3200", + "location": "imgui:3787", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -7633,7 +8234,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:3190", + "location": "imgui:3777", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -7668,7 +8269,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1109", + "location": "imgui_internal:1346", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7708,7 +8309,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1225", + "location": "imgui_internal:1319", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -7727,7 +8328,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1226", + "location": "imgui_internal:1320", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -7752,6 +8353,281 @@ "stname": "ImGuiPtrOrIndex" } ], + "ImGuiSelectionBasicStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:2988", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Clear": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui:2990", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Contains": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "ImGuiSelectionBasicStorage_Contains", + "defaults": {}, + "funcname": "Contains", + "location": "imgui:2989", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", + "ret": "bool", + "signature": "(ImGuiID)const", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetNextSelectedItem": [ + { + "args": "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "opaque_it", + "type": "void**" + }, + { + "name": "out_id", + "type": "ImGuiID*" + } + ], + "argsoriginal": "(void** opaque_it,ImGuiID* out_id)", + "call_args": "(opaque_it,out_id)", + "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "defaults": {}, + "funcname": "GetNextSelectedItem", + "location": "imgui:2993", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "ret": "bool", + "signature": "(void**,ImGuiID*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetStorageIdFromIndex": [ + { + "args": "(ImGuiSelectionBasicStorage* self,int idx)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "idx", + "type": "int" + } + ], + "argsoriginal": "(int idx)", + "call_args": "(idx)", + "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "defaults": {}, + "funcname": "GetStorageIdFromIndex", + "location": "imgui:2994", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionBasicStorage", + "location": "imgui:2987", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_SetItemSelected": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "selected", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiID id,bool selected)", + "call_args": "(id,selected)", + "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "defaults": {}, + "funcname": "SetItemSelected", + "location": "imgui:2992", + "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "ret": "void", + "signature": "(ImGuiID,bool)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Swap": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "r", + "reftoptr": true, + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "(ImGuiSelectionBasicStorage& r)", + "call_args": "(*r)", + "cimguiname": "ImGuiSelectionBasicStorage_Swap", + "defaults": {}, + "funcname": "Swap", + "location": "imgui:2991", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_destroy": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionBasicStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionExternalStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:3007", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionExternalStorage", + "location": "imgui:3006", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "signature": "()", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_destroy": [ + { + "args": "(ImGuiSelectionExternalStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionExternalStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionExternalStorage*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], "ImGuiSettingsHandler_ImGuiSettingsHandler": [ { "args": "()", @@ -7762,7 +8638,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1793", + "location": "imgui_internal:2046", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -7797,7 +8673,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:1872", + "location": "imgui_internal:2146", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -7822,24 +8698,28 @@ "stname": "ImGuiStackLevelInfo" } ], - "ImGuiStackSizes_CompareWithCurrentState": [ + "ImGuiStackSizes_CompareWithContextState": [ { - "args": "(ImGuiStackSizes* self)", + "args": "(ImGuiStackSizes* self,ImGuiContext* ctx)", "argsT": [ { "name": "self", "type": "ImGuiStackSizes*" + }, + { + "name": "ctx", + "type": "ImGuiContext*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiStackSizes_CompareWithCurrentState", + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "ImGuiStackSizes_CompareWithContextState", "defaults": {}, - "funcname": "CompareWithCurrentState", - "location": "imgui_internal:1202", - "ov_cimguiname": "ImGuiStackSizes_CompareWithCurrentState", + "funcname": "CompareWithContextState", + "location": "imgui_internal:1295", + "ov_cimguiname": "ImGuiStackSizes_CompareWithContextState", "ret": "void", - "signature": "()", + "signature": "(ImGuiContext*)", "stname": "ImGuiStackSizes" } ], @@ -7853,30 +8733,34 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1200", + "location": "imgui_internal:1293", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" } ], - "ImGuiStackSizes_SetToCurrentState": [ + "ImGuiStackSizes_SetToContextState": [ { - "args": "(ImGuiStackSizes* self)", + "args": "(ImGuiStackSizes* self,ImGuiContext* ctx)", "argsT": [ { "name": "self", "type": "ImGuiStackSizes*" + }, + { + "name": "ctx", + "type": "ImGuiContext*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiStackSizes_SetToCurrentState", + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "ImGuiStackSizes_SetToContextState", "defaults": {}, - "funcname": "SetToCurrentState", - "location": "imgui_internal:1201", - "ov_cimguiname": "ImGuiStackSizes_SetToCurrentState", + "funcname": "SetToContextState", + "location": "imgui_internal:1294", + "ov_cimguiname": "ImGuiStackSizes_SetToContextState", "ret": "void", - "signature": "()", + "signature": "(ImGuiContext*)", "stname": "ImGuiStackSizes" } ], @@ -7899,107 +8783,72 @@ "stname": "ImGuiStackSizes" } ], - "ImGuiStackTool_ImGuiStackTool": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiStackTool_ImGuiStackTool", - "constructor": true, - "defaults": {}, - "funcname": "ImGuiStackTool", - "location": "imgui_internal:1885", - "ov_cimguiname": "ImGuiStackTool_ImGuiStackTool", - "signature": "()", - "stname": "ImGuiStackTool" - } - ], - "ImGuiStackTool_destroy": [ - { - "args": "(ImGuiStackTool* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiStackTool*" - } - ], - "call_args": "(self)", - "cimguiname": "ImGuiStackTool_destroy", - "defaults": {}, - "destructor": true, - "ov_cimguiname": "ImGuiStackTool_destroy", - "ret": "void", - "signature": "(ImGuiStackTool*)", - "stname": "ImGuiStackTool" - } - ], "ImGuiStoragePair_ImGuiStoragePair": [ { - "args": "(ImGuiID _key,int _val_i)", + "args": "(ImGuiID _key,int _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_i", + "name": "_val", "type": "int" } ], - "argsoriginal": "(ImGuiID _key,int _val_i)", - "call_args": "(_key,_val_i)", + "argsoriginal": "(ImGuiID _key,int _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2348", + "location": "imgui:2683", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,float _val_f)", + "args": "(ImGuiID _key,float _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_f", + "name": "_val", "type": "float" } ], - "argsoriginal": "(ImGuiID _key,float _val_f)", - "call_args": "(_key,_val_f)", + "argsoriginal": "(ImGuiID _key,float _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2349", + "location": "imgui:2684", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,void* _val_p)", + "args": "(ImGuiID _key,void* _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_p", + "name": "_val", "type": "void*" } ], - "argsoriginal": "(ImGuiID _key,void* _val_p)", - "call_args": "(_key,_val_p)", + "argsoriginal": "(ImGuiID _key,void* _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2350", + "location": "imgui:2685", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -8038,7 +8887,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2381", + "location": "imgui:2724", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -8059,7 +8908,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2358", + "location": "imgui:2704", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -8090,7 +8939,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2361", + "location": "imgui:2707", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -8121,7 +8970,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2373", + "location": "imgui:2719", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -8152,7 +9001,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2363", + "location": "imgui:2709", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -8183,7 +9032,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2374", + "location": "imgui:2720", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -8214,7 +9063,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2359", + "location": "imgui:2705", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -8245,7 +9094,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2372", + "location": "imgui:2718", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -8270,7 +9119,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2365", + "location": "imgui:2711", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -8301,7 +9150,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2375", + "location": "imgui:2721", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -8326,7 +9175,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2378", + "location": "imgui:2726", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -8355,7 +9204,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2362", + "location": "imgui:2708", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8384,7 +9233,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2364", + "location": "imgui:2710", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -8413,7 +9262,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2360", + "location": "imgui:2706", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -8442,7 +9291,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2366", + "location": "imgui:2712", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -8468,7 +9317,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1007", + "location": "imgui_internal:1043", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -8491,7 +9340,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1008", + "location": "imgui_internal:1044", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -8514,7 +9363,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1009", + "location": "imgui_internal:1045", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -8549,7 +9398,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1950", + "location": "imgui:2272", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -8573,7 +9422,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1951", + "location": "imgui:2273", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -8599,56 +9448,6 @@ "stname": "ImGuiStyle" } ], - "ImGuiTabBar_GetTabName": [ - { - "args": "(ImGuiTabBar* self,const ImGuiTabItem* tab)", - "argsT": [ - { - "name": "self", - "type": "ImGuiTabBar*" - }, - { - "name": "tab", - "type": "const ImGuiTabItem*" - } - ], - "argsoriginal": "(const ImGuiTabItem* tab)", - "call_args": "(tab)", - "cimguiname": "ImGuiTabBar_GetTabName", - "defaults": {}, - "funcname": "GetTabName", - "location": "imgui_internal:2661", - "ov_cimguiname": "ImGuiTabBar_GetTabName", - "ret": "const char*", - "signature": "(const ImGuiTabItem*)const", - "stname": "ImGuiTabBar" - } - ], - "ImGuiTabBar_GetTabOrder": [ - { - "args": "(ImGuiTabBar* self,const ImGuiTabItem* tab)", - "argsT": [ - { - "name": "self", - "type": "ImGuiTabBar*" - }, - { - "name": "tab", - "type": "const ImGuiTabItem*" - } - ], - "argsoriginal": "(const ImGuiTabItem* tab)", - "call_args": "(tab)", - "cimguiname": "ImGuiTabBar_GetTabOrder", - "defaults": {}, - "funcname": "GetTabOrder", - "location": "imgui_internal:2660", - "ov_cimguiname": "ImGuiTabBar_GetTabOrder", - "ret": "int", - "signature": "(const ImGuiTabItem*)const", - "stname": "ImGuiTabBar" - } - ], "ImGuiTabBar_ImGuiTabBar": [ { "args": "()", @@ -8659,7 +9458,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2659", + "location": "imgui_internal:3049", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -8694,7 +9493,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2621", + "location": "imgui_internal:3009", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -8729,7 +9528,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2910", + "location": "imgui_internal:3317", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -8764,7 +9563,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2249", + "location": "imgui:2095", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -8799,7 +9598,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2730", + "location": "imgui_internal:3112", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -8834,7 +9633,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:2758", + "location": "imgui_internal:3155", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -8873,7 +9672,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2933", + "location": "imgui_internal:3340", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -8890,7 +9689,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2932", + "location": "imgui_internal:3339", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8925,7 +9724,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2262", + "location": "imgui:2084", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8960,7 +9759,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:2895", + "location": "imgui_internal:3302", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -8995,7 +9794,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2871", + "location": "imgui_internal:3274", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -9014,7 +9813,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2872", + "location": "imgui_internal:3275", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -9032,7 +9831,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2319", + "location": "imgui:2664", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -9062,7 +9861,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2328", + "location": "imgui:2673", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -9092,7 +9891,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2329", + "location": "imgui:2674", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -9122,7 +9921,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2330", + "location": "imgui:2675", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -9143,7 +9942,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2321", + "location": "imgui:2666", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -9164,7 +9963,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2327", + "location": "imgui:2672", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -9185,7 +9984,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2325", + "location": "imgui:2670", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9225,7 +10024,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2324", + "location": "imgui:2669", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -9246,7 +10045,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2322", + "location": "imgui:2667", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -9271,7 +10070,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2326", + "location": "imgui:2671", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -9292,7 +10091,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2323", + "location": "imgui:2668", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -9313,7 +10112,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2292", + "location": "imgui:2637", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -9334,7 +10133,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2293", + "location": "imgui:2638", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -9366,7 +10165,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2290", + "location": "imgui:2635", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -9390,7 +10189,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2289", + "location": "imgui:2634", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -9410,7 +10209,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2294", + "location": "imgui:2639", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -9441,7 +10240,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2291", + "location": "imgui:2636", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -9493,7 +10292,7 @@ "cimguiname": "ImGuiTextIndex_append", "defaults": {}, "funcname": "append", - "location": "imgui_internal:730", + "location": "imgui_internal:736", "ov_cimguiname": "ImGuiTextIndex_append", "ret": "void", "signature": "(const char*,int,int)", @@ -9514,7 +10313,7 @@ "cimguiname": "ImGuiTextIndex_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:726", + "location": "imgui_internal:732", "ov_cimguiname": "ImGuiTextIndex_clear", "ret": "void", "signature": "()", @@ -9543,7 +10342,7 @@ "cimguiname": "ImGuiTextIndex_get_line_begin", "defaults": {}, "funcname": "get_line_begin", - "location": "imgui_internal:728", + "location": "imgui_internal:734", "ov_cimguiname": "ImGuiTextIndex_get_line_begin", "ret": "const char*", "signature": "(const char*,int)", @@ -9572,7 +10371,7 @@ "cimguiname": "ImGuiTextIndex_get_line_end", "defaults": {}, "funcname": "get_line_end", - "location": "imgui_internal:729", + "location": "imgui_internal:735", "ov_cimguiname": "ImGuiTextIndex_get_line_end", "ret": "const char*", "signature": "(const char*,int)", @@ -9593,7 +10392,7 @@ "cimguiname": "ImGuiTextIndex_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:727", + "location": "imgui_internal:733", "ov_cimguiname": "ImGuiTextIndex_size", "ret": "int", "signature": "()", @@ -9610,7 +10409,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2302", + "location": "imgui:2647", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -9633,7 +10432,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2303", + "location": "imgui:2648", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -9672,7 +10471,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2304", + "location": "imgui:2649", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -9701,16 +10500,72 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2305", + "location": "imgui:2650", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", "stname": "ImGuiTextRange" } ], + "ImGuiTypingSelectState_Clear": [ + { + "args": "(ImGuiTypingSelectState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTypingSelectState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTypingSelectState_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui_internal:1670", + "ov_cimguiname": "ImGuiTypingSelectState_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiTypingSelectState" + } + ], + "ImGuiTypingSelectState_ImGuiTypingSelectState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiTypingSelectState", + "location": "imgui_internal:1669", + "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", + "signature": "()", + "stname": "ImGuiTypingSelectState" + } + ], + "ImGuiTypingSelectState_destroy": [ + { + "args": "(ImGuiTypingSelectState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTypingSelectState*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiTypingSelectState_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiTypingSelectState_destroy", + "ret": "void", + "signature": "(ImGuiTypingSelectState*)", + "stname": "ImGuiTypingSelectState" + } + ], "ImGuiViewportP_CalcWorkRectPos": [ { - "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)", + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min)", "argsT": [ { "name": "pOut", @@ -9721,16 +10576,16 @@ "type": "ImGuiViewportP*" }, { - "name": "off_min", + "name": "inset_min", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& off_min)", - "call_args": "(off_min)", + "argsoriginal": "(const ImVec2& inset_min)", + "call_args": "(inset_min)", "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1747", + "location": "imgui_internal:1998", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -9740,7 +10595,7 @@ ], "ImGuiViewportP_CalcWorkRectSize": [ { - "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)", + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max)", "argsT": [ { "name": "pOut", @@ -9751,20 +10606,20 @@ "type": "ImGuiViewportP*" }, { - "name": "off_min", + "name": "inset_min", "type": "const ImVec2" }, { - "name": "off_max", + "name": "inset_max", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& off_min,const ImVec2& off_max)", - "call_args": "(off_min,off_max)", + "argsoriginal": "(const ImVec2& inset_min,const ImVec2& inset_max)", + "call_args": "(inset_min,inset_max)", "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1748", + "location": "imgui_internal:1999", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -9786,7 +10641,7 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:1744", + "location": "imgui_internal:1995", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -9811,7 +10666,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1754", + "location": "imgui_internal:2005", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -9837,7 +10692,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1752", + "location": "imgui_internal:2003", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -9863,7 +10718,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1753", + "location": "imgui_internal:2004", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -9881,7 +10736,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1742", + "location": "imgui_internal:1993", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -9901,7 +10756,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1749", + "location": "imgui_internal:2000", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -9921,7 +10776,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1743", + "location": "imgui_internal:1994", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -9947,7 +10802,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:3068", + "location": "imgui:3627", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -9973,7 +10828,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:3069", + "location": "imgui:3628", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -9991,7 +10846,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:3064", + "location": "imgui:3623", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -10010,7 +10865,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3065", + "location": "imgui:3624", "ov_cimguiname": "ImGuiViewport_destroy", "realdestructor": true, "ret": "void", @@ -10028,7 +10883,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2216", + "location": "imgui:2585", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -10067,7 +10922,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1778", + "location": "imgui_internal:2031", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -10084,7 +10939,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1777", + "location": "imgui_internal:2030", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -10123,7 +10978,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2575", + "location": "imgui_internal:2966", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -10154,7 +11009,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2568", + "location": "imgui_internal:2958", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -10177,7 +11032,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2569", + "location": "imgui_internal:2959", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -10200,13 +11055,38 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2570", + "location": "imgui_internal:2960", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", "stname": "ImGuiWindow" } ], + "ImGuiWindow_GetIDFromPos": [ + { + "args": "(ImGuiWindow* self,const ImVec2 p_abs)", + "argsT": [ + { + "name": "self", + "type": "ImGuiWindow*" + }, + { + "name": "p_abs", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& p_abs)", + "call_args": "(p_abs)", + "cimguiname": "ImGuiWindow_GetIDFromPos", + "defaults": {}, + "funcname": "GetIDFromPos", + "location": "imgui_internal:2961", + "ov_cimguiname": "ImGuiWindow_GetIDFromPos", + "ret": "ImGuiID", + "signature": "(const ImVec2)", + "stname": "ImGuiWindow" + } + ], "ImGuiWindow_GetIDFromRectangle": [ { "args": "(ImGuiWindow* self,const ImRect r_abs)", @@ -10225,7 +11105,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2571", + "location": "imgui_internal:2962", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -10251,33 +11131,12 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2564", + "location": "imgui_internal:2954", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" } ], - "ImGuiWindow_MenuBarHeight": [ - { - "args": "(ImGuiWindow* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiWindow_MenuBarHeight", - "defaults": {}, - "funcname": "MenuBarHeight", - "location": "imgui_internal:2578", - "ov_cimguiname": "ImGuiWindow_MenuBarHeight", - "ret": "float", - "signature": "()const", - "stname": "ImGuiWindow" - } - ], "ImGuiWindow_MenuBarRect": [ { "args": "(ImRect *pOut,ImGuiWindow* self)", @@ -10296,7 +11155,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2579", + "location": "imgui_internal:2968", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -10322,7 +11181,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2574", + "location": "imgui_internal:2965", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -10330,27 +11189,6 @@ "stname": "ImGuiWindow" } ], - "ImGuiWindow_TitleBarHeight": [ - { - "args": "(ImGuiWindow* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiWindow_TitleBarHeight", - "defaults": {}, - "funcname": "TitleBarHeight", - "location": "imgui_internal:2576", - "ov_cimguiname": "ImGuiWindow_TitleBarHeight", - "ret": "float", - "signature": "()const", - "stname": "ImGuiWindow" - } - ], "ImGuiWindow_TitleBarRect": [ { "args": "(ImRect *pOut,ImGuiWindow* self)", @@ -10369,7 +11207,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2577", + "location": "imgui_internal:2967", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -10390,7 +11228,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2566", + "location": "imgui_internal:2956", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -10412,7 +11250,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:679", + "location": "imgui_internal:689", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -10434,7 +11272,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:678", + "location": "imgui_internal:688", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -10460,7 +11298,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:677", + "location": "imgui_internal:687", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -10482,7 +11320,7 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:686", + "location": "imgui_internal:696", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -10504,7 +11342,7 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:687", + "location": "imgui_internal:697", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -10530,7 +11368,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:674", + "location": "imgui_internal:684", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10556,7 +11394,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:673", + "location": "imgui_internal:683", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10582,7 +11420,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:675", + "location": "imgui_internal:685", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -10604,7 +11442,7 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:688", + "location": "imgui_internal:698", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -10630,7 +11468,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:676", + "location": "imgui_internal:686", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10648,7 +11486,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:671", + "location": "imgui_internal:681", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -10677,7 +11515,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:680", + "location": "imgui_internal:690", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -10705,7 +11543,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:681", + "location": "imgui_internal:691", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -10731,7 +11569,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:682", + "location": "imgui_internal:692", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -10757,7 +11595,7 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:689", + "location": "imgui_internal:699", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10778,7 +11616,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:672", + "location": "imgui_internal:682", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -10805,7 +11643,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:548", + "location": "imgui_internal:552", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10828,7 +11666,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:549", + "location": "imgui_internal:553", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -10853,7 +11691,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:555", + "location": "imgui_internal:559", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -10878,7 +11716,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:556", + "location": "imgui_internal:560", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -10903,7 +11741,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:545", + "location": "imgui_internal:548", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -10926,13 +11764,42 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:546", + "location": "imgui_internal:549", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", "stname": "ImRect" } ], + "ImRect_ContainsWithPad": [ + { + "args": "(ImRect* self,const ImVec2 p,const ImVec2 pad)", + "argsT": [ + { + "name": "self", + "type": "ImRect*" + }, + { + "name": "p", + "type": "const ImVec2" + }, + { + "name": "pad", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& p,const ImVec2& pad)", + "call_args": "(p,pad)", + "cimguiname": "ImRect_ContainsWithPad", + "defaults": {}, + "funcname": "ContainsWithPad", + "location": "imgui_internal:550", + "ov_cimguiname": "ImRect_ContainsWithPad", + "ret": "bool", + "signature": "(const ImVec2,const ImVec2)const", + "stname": "ImRect" + } + ], "ImRect_Expand": [ { "args": "(ImRect* self,const float amount)", @@ -10951,7 +11818,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:550", + "location": "imgui_internal:554", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -10974,7 +11841,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:551", + "location": "imgui_internal:555", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10995,7 +11862,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:557", + "location": "imgui_internal:561", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -11016,7 +11883,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:540", + "location": "imgui_internal:543", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -11041,7 +11908,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:543", + "location": "imgui_internal:546", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -11067,7 +11934,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:544", + "location": "imgui_internal:547", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -11093,7 +11960,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:536", + "location": "imgui_internal:539", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -11115,7 +11982,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:539", + "location": "imgui_internal:542", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -11140,7 +12007,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:537", + "location": "imgui_internal:540", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -11166,7 +12033,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:541", + "location": "imgui_internal:544", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -11192,7 +12059,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:542", + "location": "imgui_internal:545", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -11214,7 +12081,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:538", + "location": "imgui_internal:541", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -11231,7 +12098,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:531", + "location": "imgui_internal:534", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -11254,7 +12121,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:532", + "location": "imgui_internal:535", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -11273,7 +12140,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:533", + "location": "imgui_internal:536", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -11304,7 +12171,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:534", + "location": "imgui_internal:537", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -11324,7 +12191,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:558", + "location": "imgui_internal:562", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -11349,7 +12216,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:547", + "location": "imgui_internal:551", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -11374,7 +12241,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:559", + "location": "imgui_internal:563", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -11400,7 +12267,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:552", + "location": "imgui_internal:556", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -11425,7 +12292,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:553", + "location": "imgui_internal:557", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -11450,7 +12317,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:554", + "location": "imgui_internal:558", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -11490,7 +12357,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:651", + "location": "imgui_internal:661", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -11516,7 +12383,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:653", + "location": "imgui_internal:663", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -11542,7 +12409,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:654", + "location": "imgui_internal:664", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -11560,7 +12427,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:649", + "location": "imgui_internal:659", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -11595,7 +12462,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:650", + "location": "imgui_internal:660", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -11621,7 +12488,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:652", + "location": "imgui_internal:662", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -11659,7 +12526,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:617", + "location": "imgui_internal:627", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -11683,7 +12550,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:618", + "location": "imgui_internal:628", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -11707,7 +12574,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:619", + "location": "imgui_internal:629", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -11728,7 +12595,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:628", + "location": "imgui_internal:638", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -11748,7 +12615,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:629", + "location": "imgui_internal:639", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -11790,7 +12657,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:630", + "location": "imgui_internal:640", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -11810,7 +12677,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:631", + "location": "imgui_internal:641", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -11836,7 +12703,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:634", + "location": "imgui_internal:644", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11866,7 +12733,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:621", + "location": "imgui_internal:631", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -11894,7 +12761,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:622", + "location": "imgui_internal:632", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -11916,7 +12783,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:623", + "location": "imgui_internal:633", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -11938,7 +12805,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:624", + "location": "imgui_internal:634", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -11956,7 +12823,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:511", + "location": "imgui_internal:514", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -11975,7 +12842,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:512", + "location": "imgui_internal:515", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -12010,7 +12877,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:262", + "location": "imgui:296", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -12033,7 +12900,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:263", + "location": "imgui:297", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -12068,7 +12935,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:519", + "location": "imgui_internal:522", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -12091,7 +12958,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:520", + "location": "imgui_internal:523", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -12110,7 +12977,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:521", + "location": "imgui_internal:524", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -12145,7 +13012,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:275", + "location": "imgui:309", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -12176,7 +13043,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:276", + "location": "imgui:310", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -12211,7 +13078,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1847", + "location": "imgui:2152", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -12231,7 +13098,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1848", + "location": "imgui:2153", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -12256,7 +13123,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1874", + "location": "imgui:2179", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -12278,7 +13145,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1870", + "location": "imgui:2175", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -12299,7 +13166,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1871", + "location": "imgui:2176", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -12322,7 +13189,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1864", + "location": "imgui:2169", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -12342,7 +13209,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1865", + "location": "imgui:2170", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -12364,7 +13231,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1860", + "location": "imgui:2165", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -12386,7 +13253,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1852", + "location": "imgui:2157", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -12408,7 +13275,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:1853", + "location": "imgui:2158", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -12430,7 +13297,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:1854", + "location": "imgui:2159", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -12456,7 +13323,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1889", + "location": "imgui:2194", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -12477,7 +13344,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1850", + "location": "imgui:2155", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -12500,7 +13367,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1856", + "location": "imgui:2161", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -12522,7 +13389,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1866", + "location": "imgui:2171", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -12542,7 +13409,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1867", + "location": "imgui:2172", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -12568,7 +13435,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1885", + "location": "imgui:2190", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -12596,7 +13463,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1886", + "location": "imgui:2191", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -12622,7 +13489,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1887", + "location": "imgui:2192", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -12648,7 +13515,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1890", + "location": "imgui:2195", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -12672,7 +13539,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1891", + "location": "imgui:2196", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -12698,7 +13565,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1892", + "location": "imgui:2198", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -12724,7 +13591,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1893", + "location": "imgui:2199", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -12732,6 +13599,32 @@ "templated": true } ], + "ImVector_find_index": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_find_index", + "defaults": {}, + "funcname": "find_index", + "location": "imgui:2197", + "ov_cimguiname": "ImVector_find_index", + "ret": "int", + "signature": "(const T)const", + "stname": "ImVector", + "templated": true + } + ], "ImVector_front": [ { "args": "(ImVector* self)", @@ -12746,7 +13639,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1868", + "location": "imgui:2173", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -12767,7 +13660,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1869", + "location": "imgui:2174", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -12794,7 +13687,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1894", + "location": "imgui:2200", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12824,7 +13717,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1888", + "location": "imgui:2193", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -12846,7 +13739,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1859", + "location": "imgui:2164", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -12868,7 +13761,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1883", + "location": "imgui:2188", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -12894,7 +13787,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1882", + "location": "imgui:2187", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -12920,7 +13813,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1884", + "location": "imgui:2189", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -12946,7 +13839,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1878", + "location": "imgui:2183", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -12972,7 +13865,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:1879", + "location": "imgui:2184", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -12998,7 +13891,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1875", + "location": "imgui:2180", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -13026,7 +13919,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1876", + "location": "imgui:2181", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -13052,7 +13945,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1877", + "location": "imgui:2182", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -13074,7 +13967,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1857", + "location": "imgui:2162", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -13096,7 +13989,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1858", + "location": "imgui:2163", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -13123,7 +14016,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1872", + "location": "imgui:2177", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -13151,7 +14044,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:841", + "location": "imgui:911", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -13159,7 +14052,7 @@ "stname": "" } ], - "igActivateItem": [ + "igActivateItemByID": [ { "args": "(ImGuiID id)", "argsT": [ @@ -13170,12 +14063,12 @@ ], "argsoriginal": "(ImGuiID id)", "call_args": "(id)", - "cimguiname": "igActivateItem", + "cimguiname": "igActivateItemByID", "defaults": {}, - "funcname": "ActivateItem", - "location": "imgui_internal:3109", + "funcname": "ActivateItemByID", + "location": "imgui_internal:3549", "namespace": "ImGui", - "ov_cimguiname": "igActivateItem", + "ov_cimguiname": "igActivateItemByID", "ret": "void", "signature": "(ImGuiID)", "stname": "" @@ -13199,7 +14092,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:2993", + "location": "imgui_internal:3410", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -13207,6 +14100,36 @@ "stname": "" } ], + "igAddDrawListToDrawDataEx": [ + { + "args": "(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list)", + "argsT": [ + { + "name": "draw_data", + "type": "ImDrawData*" + }, + { + "name": "out_list", + "type": "ImVector_ImDrawListPtr*" + }, + { + "name": "draw_list", + "type": "ImDrawList*" + } + ], + "argsoriginal": "(ImDrawData* draw_data,ImVector* out_list,ImDrawList* draw_list)", + "call_args": "(draw_data,out_list,draw_list)", + "cimguiname": "igAddDrawListToDrawDataEx", + "defaults": {}, + "funcname": "AddDrawListToDrawDataEx", + "location": "imgui_internal:3394", + "namespace": "ImGui", + "ov_cimguiname": "igAddDrawListToDrawDataEx", + "ret": "void", + "signature": "(ImDrawData*,ImVector_ImDrawListPtr*,ImDrawList*)", + "stname": "" + } + ], "igAddSettingsHandler": [ { "args": "(const ImGuiSettingsHandler* handler)", @@ -13221,7 +14144,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:3013", + "location": "imgui_internal:3427", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -13238,7 +14161,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:465", + "location": "imgui:508", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -13264,7 +14187,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:512", + "location": "imgui:557", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -13300,7 +14223,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3370", + "location": "imgui_internal:3846", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -13333,7 +14256,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:336", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -13341,9 +14264,43 @@ "stname": "" } ], + "igBeginBoxSelect": [ + { + "args": "(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)", + "argsT": [ + { + "name": "scope_rect", + "type": "const ImRect" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "box_select_id", + "type": "ImGuiID" + }, + { + "name": "ms_flags", + "type": "ImGuiMultiSelectFlags" + } + ], + "argsoriginal": "(const ImRect& scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)", + "call_args": "(scope_rect,window,box_select_id,ms_flags)", + "cimguiname": "igBeginBoxSelect", + "defaults": {}, + "funcname": "BeginBoxSelect", + "location": "imgui_internal:3717", + "namespace": "ImGui", + "ov_cimguiname": "igBeginBoxSelect", + "ret": "bool", + "signature": "(const ImRect,ImGuiWindow*,ImGuiID,ImGuiMultiSelectFlags)", + "stname": "" + } + ], "igBeginChild": [ { - "args": "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "str_id", @@ -13354,32 +14311,32 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(str_id,size,border,flags)", + "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(str_id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:347", + "location": "imgui:392", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", - "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", + "signature": "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" }, { - "args": "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "id", @@ -13390,34 +14347,34 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,border,flags)", + "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:348", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", - "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", + "signature": "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" } ], "igBeginChildEx": [ { - "args": "(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags)", + "args": "(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "name", @@ -13432,56 +14389,24 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,ImGuiID id,const ImVec2& size_arg,bool border,ImGuiWindowFlags flags)", - "call_args": "(name,id,size_arg,border,flags)", + "argsoriginal": "(const char* name,ImGuiID id,const ImVec2& size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", + "call_args": "(name,id,size_arg,child_flags,window_flags)", "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3075", + "location": "imgui_internal:3496", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", - "signature": "(const char*,ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "" - } - ], - "igBeginChildFrame": [ - { - "args": "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)", - "argsT": [ - { - "name": "id", - "type": "ImGuiID" - }, - { - "name": "size", - "type": "const ImVec2" - }, - { - "name": "flags", - "type": "ImGuiWindowFlags" - } - ], - "argsoriginal": "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,flags)", - "cimguiname": "igBeginChildFrame", - "defaults": { - "flags": "0" - }, - "funcname": "BeginChildFrame", - "location": "imgui:905", - "namespace": "ImGui", - "ov_cimguiname": "igBeginChildFrame", - "ret": "bool", - "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", + "signature": "(const char*,ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" } ], @@ -13509,7 +14434,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3263", + "location": "imgui_internal:3730", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -13541,7 +14466,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:529", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -13571,7 +14496,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3095", + "location": "imgui_internal:3522", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -13588,7 +14513,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3096", + "location": "imgui_internal:3523", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -13612,7 +14537,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:849", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -13620,6 +14545,23 @@ "stname": "" } ], + "igBeginDisabledOverrideReenable": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginDisabledOverrideReenable", + "defaults": {}, + "funcname": "BeginDisabledOverrideReenable", + "location": "imgui_internal:3486", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDisabledOverrideReenable", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igBeginDockableDragDropSource": [ { "args": "(ImGuiWindow* window)", @@ -13634,7 +14576,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:3214", + "location": "imgui_internal:3663", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -13656,7 +14598,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:3215", + "location": "imgui_internal:3664", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -13682,7 +14624,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:3213", + "location": "imgui_internal:3662", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -13706,7 +14648,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:837", + "location": "imgui:907", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -13723,7 +14665,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:840", + "location": "imgui:910", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -13749,7 +14691,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3256", + "location": "imgui_internal:3705", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -13766,7 +14708,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:454", + "location": "imgui:506", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -13774,6 +14716,23 @@ "stname": "" } ], + "igBeginItemTooltip": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginItemTooltip", + "defaults": {}, + "funcname": "BeginItemTooltip", + "location": "imgui:749", + "namespace": "ImGui", + "ov_cimguiname": "igBeginItemTooltip", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igBeginListBox": [ { "args": "(const char* label,const ImVec2 size)", @@ -13794,7 +14753,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:641", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -13811,7 +14770,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:667", + "location": "imgui:729", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -13839,7 +14798,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:669", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -13856,7 +14815,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:665", + "location": "imgui:727", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -13888,7 +14847,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3091", + "location": "imgui_internal:3518", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -13896,6 +14855,39 @@ "stname": "" } ], + "igBeginMultiSelect": [ + { + "args": "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiMultiSelectFlags" + }, + { + "name": "selection_size", + "type": "int" + }, + { + "name": "items_count", + "type": "int" + } + ], + "argsoriginal": "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)", + "call_args": "(flags,selection_size,items_count)", + "cimguiname": "igBeginMultiSelect", + "defaults": { + "items_count": "-1", + "selection_size": "-1" + }, + "funcname": "BeginMultiSelect", + "location": "imgui:692", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "(ImGuiMultiSelectFlags,int,int)", + "stname": "" + } + ], "igBeginPopup": [ { "args": "(const char* str_id,ImGuiWindowFlags flags)", @@ -13916,7 +14908,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:693", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -13945,7 +14937,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:715", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -13974,7 +14966,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:717", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -14003,7 +14995,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:716", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -14013,23 +15005,23 @@ ], "igBeginPopupEx": [ { - "args": "(ImGuiID id,ImGuiWindowFlags extra_flags)", + "args": "(ImGuiID id,ImGuiWindowFlags extra_window_flags)", "argsT": [ { "name": "id", "type": "ImGuiID" }, { - "name": "extra_flags", + "name": "extra_window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_flags)", - "call_args": "(id,extra_flags)", + "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_window_flags)", + "call_args": "(id,extra_window_flags)", "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3081", + "location": "imgui_internal:3499", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -14062,7 +15054,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:694", + "location": "imgui:764", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -14090,7 +15082,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:795", + "location": "imgui:865", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -14100,7 +15092,7 @@ ], "igBeginTabBarEx": [ { - "args": "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)", + "args": "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags)", "argsT": [ { "name": "tab_bar", @@ -14113,22 +15105,18 @@ { "name": "flags", "type": "ImGuiTabBarFlags" - }, - { - "name": "dock_node", - "type": "ImGuiDockNode*" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)", - "call_args": "(tab_bar,bb,flags,dock_node)", + "argsoriginal": "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags)", + "call_args": "(tab_bar,bb,flags)", "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3327", + "location": "imgui_internal:3798", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", - "signature": "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags,ImGuiDockNode*)", + "signature": "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags)", "stname": "" } ], @@ -14157,7 +15145,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:797", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -14167,14 +15155,14 @@ ], "igBeginTable": [ { - "args": "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", + "args": "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", "argsT": [ { "name": "str_id", "type": "const char*" }, { - "name": "column", + "name": "columns", "type": "int" }, { @@ -14190,8 +15178,8 @@ "type": "float" } ], - "argsoriginal": "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", - "call_args": "(str_id,column,flags,outer_size,inner_width)", + "argsoriginal": "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", + "call_args": "(str_id,columns,flags,outer_size,inner_width)", "cimguiname": "igBeginTable", "defaults": { "flags": "0", @@ -14199,7 +15187,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:748", + "location": "imgui:816", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -14245,7 +15233,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3285", + "location": "imgui_internal:3754", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -14262,10 +15250,10 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:676", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", - "ret": "void", + "ret": "bool", "signature": "()", "stname": "" } @@ -14288,14 +15276,31 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3082", + "location": "imgui_internal:3513", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", - "ret": "void", + "ret": "bool", "signature": "(ImGuiTooltipFlags,ImGuiWindowFlags)", "stname": "" } ], + "igBeginTooltipHidden": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginTooltipHidden", + "defaults": {}, + "funcname": "BeginTooltipHidden", + "location": "imgui_internal:3514", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTooltipHidden", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igBeginViewportSideBar": [ { "args": "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)", @@ -14326,7 +15331,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3090", + "location": "imgui_internal:3517", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -14348,7 +15353,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2970", + "location": "imgui_internal:3382", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -14374,7 +15379,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:2971", + "location": "imgui_internal:3383", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -14396,7 +15401,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2969", + "location": "imgui_internal:3381", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -14418,7 +15423,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2968", + "location": "imgui_internal:3380", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -14435,7 +15440,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:519", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -14462,7 +15467,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:503", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -14488,7 +15493,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:504", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -14516,7 +15521,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:509", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -14556,7 +15561,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3387", + "location": "imgui_internal:3864", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -14589,7 +15594,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3369", + "location": "imgui_internal:3845", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -14623,7 +15628,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3057", + "location": "imgui_internal:3479", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -14641,7 +15646,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:426", + "location": "imgui:463", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -14671,7 +15676,7 @@ "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, "funcname": "CalcRoundingFlagsForRectInRect", - "location": "imgui_internal:3365", + "location": "imgui_internal:3841", "namespace": "ImGui", "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", "ret": "ImDrawFlags", @@ -14713,7 +15718,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:909", + "location": "imgui:978", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -14748,7 +15753,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3140", + "location": "imgui_internal:3578", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -14774,7 +15779,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2953", + "location": "imgui_internal:3361", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -14801,7 +15806,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3058", + "location": "imgui_internal:3480", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -14827,7 +15832,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:2995", + "location": "imgui_internal:3412", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -14853,7 +15858,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:513", + "location": "imgui:558", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -14883,7 +15888,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:514", + "location": "imgui:559", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -14911,7 +15916,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:515", + "location": "imgui:560", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -14939,7 +15944,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3373", + "location": "imgui_internal:3850", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -14967,7 +15972,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3374", + "location": "imgui_internal:3851", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -14984,7 +15989,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3042", + "location": "imgui_internal:3462", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -15001,7 +16006,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3257", + "location": "imgui_internal:3706", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -15018,7 +16023,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:3009", + "location": "imgui_internal:3426", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -15026,6 +16031,28 @@ "stname": "" } ], + "igClearWindowSettings": [ + { + "args": "(const char* name)", + "argsT": [ + { + "name": "name", + "type": "const char*" + } + ], + "argsoriginal": "(const char* name)", + "call_args": "(name)", + "cimguiname": "igClearWindowSettings", + "defaults": {}, + "funcname": "ClearWindowSettings", + "location": "imgui_internal:3435", + "namespace": "ImGui", + "ov_cimguiname": "igClearWindowSettings", + "ret": "void", + "signature": "(const char*)", + "stname": "" + } + ], "igCloseButton": [ { "args": "(ImGuiID id,const ImVec2 pos)", @@ -15044,7 +16071,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3377", + "location": "imgui_internal:3854", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -15061,7 +16088,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:708", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -15087,7 +16114,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3077", + "location": "imgui_internal:3501", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -15104,7 +16131,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3079", + "location": "imgui_internal:3503", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -15130,7 +16157,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3078", + "location": "imgui_internal:3502", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -15160,7 +16187,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3378", + "location": "imgui_internal:3855", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -15188,7 +16215,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:625", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -15218,7 +16245,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:626", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -15255,7 +16282,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:606", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -15277,7 +16304,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:913", + "location": "imgui:982", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -15322,7 +16349,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:915", + "location": "imgui:984", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -15367,7 +16394,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:914", + "location": "imgui:983", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -15393,7 +16420,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:912", + "location": "imgui:981", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -15426,7 +16453,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:602", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -15458,7 +16485,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:603", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -15484,7 +16511,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3423", + "location": "imgui_internal:3905", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -15516,7 +16543,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:604", + "location": "imgui:653", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -15553,7 +16580,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:605", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -15579,7 +16606,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3424", + "location": "imgui_internal:3906", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -15609,7 +16636,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3422", + "location": "imgui_internal:3904", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -15619,7 +16646,7 @@ ], "igColumns": [ { - "args": "(int count,const char* id,bool border)", + "args": "(int count,const char* id,bool borders)", "argsT": [ { "name": "count", @@ -15630,20 +16657,20 @@ "type": "const char*" }, { - "name": "border", + "name": "borders", "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", - "call_args": "(count,id,border)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool borders=true)", + "call_args": "(count,id,borders)", "cimguiname": "igColumns", "defaults": { - "border": "true", + "borders": "true", "count": "1", "id": "NULL" }, "funcname": "Columns", - "location": "imgui:784", + "location": "imgui:854", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -15683,7 +16710,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:531", + "location": "imgui:580", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -15717,7 +16744,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:532", + "location": "imgui:581", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -15725,7 +16752,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)", "argsT": [ { "name": "label", @@ -15736,13 +16763,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -15754,40 +16781,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)", "cimguiname": "igCombo", "defaults": { "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:533", + "location": "imgui:582", "namespace": "ImGui", - "ov_cimguiname": "igCombo_FnBoolPtr", + "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", - "stname": "" - } - ], - "igConvertShortcutMod": [ - { - "args": "(ImGuiKeyChord key_chord)", - "argsT": [ - { - "name": "key_chord", - "type": "ImGuiKeyChord" - } - ], - "argsoriginal": "(ImGuiKeyChord key_chord)", - "call_args": "(key_chord)", - "cimguiname": "igConvertShortcutMod", - "defaults": {}, - "funcname": "ConvertShortcutMod", - "location": "imgui_internal:3122", - "namespace": "ImGui", - "ov_cimguiname": "igConvertShortcutMod", - "ret": "ImGuiKeyChord", - "signature": "(ImGuiKeyChord)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -15805,7 +16810,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3123", + "location": "imgui_internal:3562", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -15829,7 +16834,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:294", + "location": "imgui:328", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -15851,7 +16856,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:3010", + "location": "imgui_internal:3432", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -15861,7 +16866,7 @@ ], "igDataTypeApplyFromText": [ { - "args": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)", + "args": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty)", "argsT": [ { "name": "buf", @@ -15878,18 +16883,24 @@ { "name": "format", "type": "const char*" + }, + { + "name": "p_data_when_empty", + "type": "void*" } ], - "argsoriginal": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)", - "call_args": "(buf,data_type,p_data,format)", + "argsoriginal": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty=((void*)0))", + "call_args": "(buf,data_type,p_data,format,p_data_when_empty)", "cimguiname": "igDataTypeApplyFromText", - "defaults": {}, + "defaults": { + "p_data_when_empty": "NULL" + }, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3410", + "location": "imgui_internal:3890", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", - "signature": "(const char*,ImGuiDataType,void*,const char*)", + "signature": "(const char*,ImGuiDataType,void*,const char*,void*)", "stname": "" } ], @@ -15923,7 +16934,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3409", + "location": "imgui_internal:3889", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -15957,7 +16968,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3412", + "location": "imgui_internal:3892", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -15987,7 +16998,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3411", + "location": "imgui_internal:3891", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -16025,7 +17036,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3408", + "location": "imgui_internal:3888", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -16047,7 +17058,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3407", + "location": "imgui_internal:3887", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -16055,6 +17066,109 @@ "stname": "" } ], + "igDebugAllocHook": [ + { + "args": "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)", + "argsT": [ + { + "name": "info", + "type": "ImGuiDebugAllocInfo*" + }, + { + "name": "frame_count", + "type": "int" + }, + { + "name": "ptr", + "type": "void*" + }, + { + "name": "size", + "type": "size_t" + } + ], + "argsoriginal": "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)", + "call_args": "(info,frame_count,ptr,size)", + "cimguiname": "igDebugAllocHook", + "defaults": {}, + "funcname": "DebugAllocHook", + "location": "imgui_internal:3922", + "namespace": "ImGui", + "ov_cimguiname": "igDebugAllocHook", + "ret": "void", + "signature": "(ImGuiDebugAllocInfo*,int,void*,size_t)", + "stname": "" + } + ], + "igDebugBreakButton": [ + { + "args": "(const char* label,const char* description_of_location)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "description_of_location", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label,const char* description_of_location)", + "call_args": "(label,description_of_location)", + "cimguiname": "igDebugBreakButton", + "defaults": {}, + "funcname": "DebugBreakButton", + "location": "imgui_internal:3934", + "namespace": "ImGui", + "ov_cimguiname": "igDebugBreakButton", + "ret": "bool", + "signature": "(const char*,const char*)", + "stname": "" + } + ], + "igDebugBreakButtonTooltip": [ + { + "args": "(bool keyboard_only,const char* description_of_location)", + "argsT": [ + { + "name": "keyboard_only", + "type": "bool" + }, + { + "name": "description_of_location", + "type": "const char*" + } + ], + "argsoriginal": "(bool keyboard_only,const char* description_of_location)", + "call_args": "(keyboard_only,description_of_location)", + "cimguiname": "igDebugBreakButtonTooltip", + "defaults": {}, + "funcname": "DebugBreakButtonTooltip", + "location": "imgui_internal:3935", + "namespace": "ImGui", + "ov_cimguiname": "igDebugBreakButtonTooltip", + "ret": "void", + "signature": "(bool,const char*)", + "stname": "" + } + ], + "igDebugBreakClearData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDebugBreakClearData", + "defaults": {}, + "funcname": "DebugBreakClearData", + "location": "imgui_internal:3933", + "namespace": "ImGui", + "ov_cimguiname": "igDebugBreakClearData", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igDebugCheckVersionAndDataLayout": [ { "args": "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)", @@ -16093,7 +17207,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:966", + "location": "imgui:1065", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -16101,6 +17215,30 @@ "stname": "" } ], + "igDebugDrawCursorPos": [ + { + "args": "(ImU32 col)", + "argsT": [ + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))", + "call_args": "(col)", + "cimguiname": "igDebugDrawCursorPos", + "defaults": { + "col": "4278190335" + }, + "funcname": "DebugDrawCursorPos", + "location": "imgui_internal:3926", + "namespace": "ImGui", + "ov_cimguiname": "igDebugDrawCursorPos", + "ret": "void", + "signature": "(ImU32)", + "stname": "" + } + ], "igDebugDrawItemRect": [ { "args": "(ImU32 col)", @@ -16117,7 +17255,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3449", + "location": "imgui_internal:3928", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -16125,6 +17263,52 @@ "stname": "" } ], + "igDebugDrawLineExtents": [ + { + "args": "(ImU32 col)", + "argsT": [ + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))", + "call_args": "(col)", + "cimguiname": "igDebugDrawLineExtents", + "defaults": { + "col": "4278190335" + }, + "funcname": "DebugDrawLineExtents", + "location": "imgui_internal:3927", + "namespace": "ImGui", + "ov_cimguiname": "igDebugDrawLineExtents", + "ret": "void", + "signature": "(ImU32)", + "stname": "" + } + ], + "igDebugFlashStyleColor": [ + { + "args": "(ImGuiCol idx)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiCol" + } + ], + "argsoriginal": "(ImGuiCol idx)", + "call_args": "(idx)", + "cimguiname": "igDebugFlashStyleColor", + "defaults": {}, + "funcname": "DebugFlashStyleColor", + "location": "imgui:1063", + "namespace": "ImGui", + "ov_cimguiname": "igDebugFlashStyleColor", + "ret": "void", + "signature": "(ImGuiCol)", + "stname": "" + } + ], "igDebugHookIdInfo": [ { "args": "(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end)", @@ -16151,7 +17335,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3452", + "location": "imgui_internal:3937", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -16173,7 +17357,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:3446", + "location": "imgui_internal:3930", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -16195,7 +17379,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:3447", + "location": "imgui_internal:3931", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -16212,7 +17396,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:3448", + "location": "imgui_internal:3932", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -16239,7 +17423,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui_internal:3439", + "location": "imgui:1067", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -16265,7 +17449,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui_internal:3440", + "location": "imgui:1068", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -16287,7 +17471,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3453", + "location": "imgui_internal:3938", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -16313,7 +17497,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:3454", + "location": "imgui_internal:3939", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -16351,7 +17535,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3456", + "location": "imgui_internal:3941", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -16385,7 +17569,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3455", + "location": "imgui_internal:3940", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -16407,7 +17591,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3457", + "location": "imgui_internal:3942", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -16433,7 +17617,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3458", + "location": "imgui_internal:3943", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -16455,7 +17639,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3463", + "location": "imgui_internal:3948", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -16463,6 +17647,58 @@ "stname": "" } ], + "igDebugNodeMultiSelectState": [ + { + "args": "(ImGuiMultiSelectState* state)", + "argsT": [ + { + "name": "state", + "type": "ImGuiMultiSelectState*" + } + ], + "argsoriginal": "(ImGuiMultiSelectState* state)", + "call_args": "(state)", + "cimguiname": "igDebugNodeMultiSelectState", + "defaults": {}, + "funcname": "DebugNodeMultiSelectState", + "location": "imgui_internal:3950", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeMultiSelectState", + "ret": "void", + "signature": "(ImGuiMultiSelectState*)", + "stname": "" + } + ], + "igDebugNodePlatformMonitor": [ + { + "args": "(ImGuiPlatformMonitor* monitor,const char* label,int idx)", + "argsT": [ + { + "name": "monitor", + "type": "ImGuiPlatformMonitor*" + }, + { + "name": "label", + "type": "const char*" + }, + { + "name": "idx", + "type": "int" + } + ], + "argsoriginal": "(ImGuiPlatformMonitor* monitor,const char* label,int idx)", + "call_args": "(monitor,label,idx)", + "cimguiname": "igDebugNodePlatformMonitor", + "defaults": {}, + "funcname": "DebugNodePlatformMonitor", + "location": "imgui_internal:3956", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodePlatformMonitor", + "ret": "void", + "signature": "(ImGuiPlatformMonitor*,const char*,int)", + "stname": "" + } + ], "igDebugNodeStorage": [ { "args": "(ImGuiStorage* storage,const char* label)", @@ -16481,7 +17717,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3459", + "location": "imgui_internal:3944", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -16507,7 +17743,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3460", + "location": "imgui_internal:3945", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -16529,7 +17765,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3461", + "location": "imgui_internal:3946", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -16551,7 +17787,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3462", + "location": "imgui_internal:3947", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -16559,6 +17795,28 @@ "stname": "" } ], + "igDebugNodeTypingSelectState": [ + { + "args": "(ImGuiTypingSelectState* state)", + "argsT": [ + { + "name": "state", + "type": "ImGuiTypingSelectState*" + } + ], + "argsoriginal": "(ImGuiTypingSelectState* state)", + "call_args": "(state)", + "cimguiname": "igDebugNodeTypingSelectState", + "defaults": {}, + "funcname": "DebugNodeTypingSelectState", + "location": "imgui_internal:3949", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeTypingSelectState", + "ret": "void", + "signature": "(ImGuiTypingSelectState*)", + "stname": "" + } + ], "igDebugNodeViewport": [ { "args": "(ImGuiViewportP* viewport)", @@ -16573,7 +17831,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3468", + "location": "imgui_internal:3955", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -16599,7 +17857,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3464", + "location": "imgui_internal:3951", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -16621,7 +17879,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3465", + "location": "imgui_internal:3952", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -16647,7 +17905,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3466", + "location": "imgui_internal:3953", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -16677,7 +17935,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3467", + "location": "imgui_internal:3954", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -16699,7 +17957,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:3469", + "location": "imgui_internal:3957", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -16729,7 +17987,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3470", + "location": "imgui_internal:3958", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -16746,7 +18004,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:3450", + "location": "imgui:1064", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -16768,7 +18026,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:965", + "location": "imgui:1062", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -16776,6 +18034,32 @@ "stname": "" } ], + "igDebugTextUnformattedWithLocateItem": [ + { + "args": "(const char* line_begin,const char* line_end)", + "argsT": [ + { + "name": "line_begin", + "type": "const char*" + }, + { + "name": "line_end", + "type": "const char*" + } + ], + "argsoriginal": "(const char* line_begin,const char* line_end)", + "call_args": "(line_begin,line_end)", + "cimguiname": "igDebugTextUnformattedWithLocateItem", + "defaults": {}, + "funcname": "DebugTextUnformattedWithLocateItem", + "location": "imgui_internal:3929", + "namespace": "ImGui", + "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igDestroyContext": [ { "args": "(ImGuiContext* ctx)", @@ -16792,7 +18076,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:295", + "location": "imgui:329", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -16814,7 +18098,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:3000", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -16831,7 +18115,7 @@ "cimguiname": "igDestroyPlatformWindows", "defaults": {}, "funcname": "DestroyPlatformWindows", - "location": "imgui:983", + "location": "imgui:1085", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindows", "ret": "void", @@ -16860,7 +18144,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:3230", + "location": "imgui_internal:3679", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -16890,7 +18174,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:3237", + "location": "imgui_internal:3686", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -16920,7 +18204,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:3238", + "location": "imgui_internal:3687", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -16946,7 +18230,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:3239", + "location": "imgui_internal:3688", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -16972,7 +18256,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:3227", + "location": "imgui_internal:3676", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -16994,7 +18278,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:3240", + "location": "imgui_internal:3689", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -17016,7 +18300,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:3229", + "location": "imgui_internal:3678", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -17038,7 +18322,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:3228", + "location": "imgui_internal:3677", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -17060,7 +18344,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:3231", + "location": "imgui_internal:3680", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -17082,7 +18366,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:3233", + "location": "imgui_internal:3682", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -17110,7 +18394,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:3232", + "location": "imgui_internal:3681", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -17136,7 +18420,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:3234", + "location": "imgui_internal:3683", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -17162,7 +18446,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:3235", + "location": "imgui_internal:3684", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -17200,7 +18484,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:3236", + "location": "imgui_internal:3685", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -17246,7 +18530,7 @@ "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:3203", + "location": "imgui_internal:3651", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", @@ -17276,7 +18560,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:3194", + "location": "imgui_internal:3640", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -17298,7 +18582,7 @@ "cimguiname": "igDockContextEndFrame", "defaults": {}, "funcname": "DockContextEndFrame", - "location": "imgui_internal:3198", + "location": "imgui_internal:3644", "namespace": "ImGui", "ov_cimguiname": "igDockContextEndFrame", "ret": "void", @@ -17324,7 +18608,7 @@ "cimguiname": "igDockContextFindNodeByID", "defaults": {}, "funcname": "DockContextFindNodeByID", - "location": "imgui_internal:3204", + "location": "imgui_internal:3652", "namespace": "ImGui", "ov_cimguiname": "igDockContextFindNodeByID", "ret": "ImGuiDockNode*", @@ -17346,7 +18630,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:3199", + "location": "imgui_internal:3645", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -17368,7 +18652,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:3192", + "location": "imgui_internal:3638", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -17390,7 +18674,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:3197", + "location": "imgui_internal:3643", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -17412,7 +18696,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:3196", + "location": "imgui_internal:3642", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -17420,6 +18704,64 @@ "stname": "" } ], + "igDockContextProcessUndockNode": [ + { + "args": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "call_args": "(ctx,node)", + "cimguiname": "igDockContextProcessUndockNode", + "defaults": {}, + "funcname": "DockContextProcessUndockNode", + "location": "imgui_internal:3650", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextProcessUndockNode", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*)", + "stname": "" + } + ], + "igDockContextProcessUndockWindow": [ + { + "args": "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "clear_persistent_docking_ref", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref=true)", + "call_args": "(ctx,window,clear_persistent_docking_ref)", + "cimguiname": "igDockContextProcessUndockWindow", + "defaults": { + "clear_persistent_docking_ref": "true" + }, + "funcname": "DockContextProcessUndockWindow", + "location": "imgui_internal:3649", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextProcessUndockWindow", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiWindow*,bool)", + "stname": "" + } + ], "igDockContextQueueDock": [ { "args": "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)", @@ -17458,7 +18800,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:3200", + "location": "imgui_internal:3646", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -17484,7 +18826,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:3202", + "location": "imgui_internal:3648", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -17510,7 +18852,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:3201", + "location": "imgui_internal:3647", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -17532,7 +18874,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:3195", + "location": "imgui_internal:3641", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -17554,7 +18896,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:3193", + "location": "imgui_internal:3639", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -17576,7 +18918,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:3205", + "location": "imgui_internal:3654", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -17593,7 +18935,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:3206", + "location": "imgui_internal:3655", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -17615,7 +18957,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:3209", + "location": "imgui_internal:3658", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -17637,7 +18979,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:3207", + "location": "imgui_internal:3656", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -17659,7 +19001,7 @@ "cimguiname": "igDockNodeGetWindowMenuButtonId", "defaults": {}, "funcname": "DockNodeGetWindowMenuButtonId", - "location": "imgui_internal:3210", + "location": "imgui_internal:3659", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", "ret": "ImGuiID", @@ -17685,7 +19027,7 @@ "cimguiname": "igDockNodeIsInHierarchyOf", "defaults": {}, "funcname": "DockNodeIsInHierarchyOf", - "location": "imgui_internal:3208", + "location": "imgui_internal:3657", "namespace": "ImGui", "ov_cimguiname": "igDockNodeIsInHierarchyOf", "ret": "bool", @@ -17693,12 +19035,42 @@ "stname": "" } ], - "igDockSpace": [ + "igDockNodeWindowMenuHandler_Default": [ { - "args": "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "args": "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)", "argsT": [ { - "name": "id", + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)", + "call_args": "(ctx,node,tab_bar)", + "cimguiname": "igDockNodeWindowMenuHandler_Default", + "defaults": {}, + "funcname": "DockNodeWindowMenuHandler_Default", + "location": "imgui_internal:3653", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeWindowMenuHandler_Default", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)", + "stname": "" + } + ], + "igDockSpace": [ + { + "args": "(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "argsT": [ + { + "name": "dockspace_id", "type": "ImGuiID" }, { @@ -17714,8 +19086,8 @@ "type": "const ImGuiWindowClass*" } ], - "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", - "call_args": "(id,size,flags,window_class)", + "argsoriginal": "(ImGuiID dockspace_id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", + "call_args": "(dockspace_id,size,flags,window_class)", "cimguiname": "igDockSpace", "defaults": { "flags": "0", @@ -17723,7 +19095,7 @@ "window_class": "NULL" }, "funcname": "DockSpace", - "location": "imgui:815", + "location": "imgui:885", "namespace": "ImGui", "ov_cimguiname": "igDockSpace", "ret": "ImGuiID", @@ -17733,8 +19105,12 @@ ], "igDockSpaceOverViewport": [ { - "args": "(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "args": "(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", "argsT": [ + { + "name": "dockspace_id", + "type": "ImGuiID" + }, { "name": "viewport", "type": "const ImGuiViewport*" @@ -17748,20 +19124,21 @@ "type": "const ImGuiWindowClass*" } ], - "argsoriginal": "(const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", - "call_args": "(viewport,flags,window_class)", + "argsoriginal": "(ImGuiID dockspace_id=0,const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", + "call_args": "(dockspace_id,viewport,flags,window_class)", "cimguiname": "igDockSpaceOverViewport", "defaults": { + "dockspace_id": "0", "flags": "0", "viewport": "NULL", "window_class": "NULL" }, "funcname": "DockSpaceOverViewport", - "location": "imgui:816", + "location": "imgui:886", "namespace": "ImGui", "ov_cimguiname": "igDockSpaceOverViewport", "ret": "ImGuiID", - "signature": "(const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)", + "signature": "(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)", "stname": "" } ], @@ -17807,7 +19184,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3388", + "location": "imgui_internal:3865", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -17859,7 +19236,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:547", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -17911,7 +19288,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:548", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -17963,7 +19340,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:549", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -18015,7 +19392,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:550", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -18076,7 +19453,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:551", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -18128,7 +19505,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:552", + "location": "imgui:601", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -18180,7 +19557,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:553", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -18232,7 +19609,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:554", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -18284,7 +19661,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:555", + "location": "imgui:604", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -18345,7 +19722,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:556", + "location": "imgui:605", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -18401,7 +19778,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:557", + "location": "imgui:606", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -18461,7 +19838,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:558", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -18483,7 +19860,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:451", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -18500,7 +19877,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:337", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -18508,6 +19885,32 @@ "stname": "" } ], + "igEndBoxSelect": [ + { + "args": "(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags)", + "argsT": [ + { + "name": "scope_rect", + "type": "const ImRect" + }, + { + "name": "ms_flags", + "type": "ImGuiMultiSelectFlags" + } + ], + "argsoriginal": "(const ImRect& scope_rect,ImGuiMultiSelectFlags ms_flags)", + "call_args": "(scope_rect,ms_flags)", + "cimguiname": "igEndBoxSelect", + "defaults": {}, + "funcname": "EndBoxSelect", + "location": "imgui_internal:3718", + "namespace": "ImGui", + "ov_cimguiname": "igEndBoxSelect", + "ret": "void", + "signature": "(const ImRect,ImGuiMultiSelectFlags)", + "stname": "" + } + ], "igEndChild": [ { "args": "()", @@ -18517,7 +19920,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:349", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -18525,23 +19928,6 @@ "stname": "" } ], - "igEndChildFrame": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igEndChildFrame", - "defaults": {}, - "funcname": "EndChildFrame", - "location": "imgui:906", - "namespace": "ImGui", - "ov_cimguiname": "igEndChildFrame", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igEndColumns": [ { "args": "()", @@ -18551,7 +19937,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3264", + "location": "imgui_internal:3731", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -18568,7 +19954,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:530", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -18585,7 +19971,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3097", + "location": "imgui_internal:3524", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -18602,7 +19988,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:850", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -18610,6 +19996,23 @@ "stname": "" } ], + "igEndDisabledOverrideReenable": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndDisabledOverrideReenable", + "defaults": {}, + "funcname": "EndDisabledOverrideReenable", + "location": "imgui_internal:3487", + "namespace": "ImGui", + "ov_cimguiname": "igEndDisabledOverrideReenable", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igEndDragDropSource": [ { "args": "()", @@ -18619,7 +20022,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:839", + "location": "imgui:909", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -18636,7 +20039,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:842", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -18653,7 +20056,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:303", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -18670,7 +20073,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:455", + "location": "imgui:507", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -18687,7 +20090,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:642", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -18704,7 +20107,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:668", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -18721,7 +20124,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:670", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -18738,7 +20141,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:666", + "location": "imgui:728", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -18746,6 +20149,23 @@ "stname": "" } ], + "igEndMultiSelect": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndMultiSelect", + "defaults": {}, + "funcname": "EndMultiSelect", + "location": "imgui:693", + "namespace": "ImGui", + "ov_cimguiname": "igEndMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "()", + "stname": "" + } + ], "igEndPopup": [ { "args": "()", @@ -18755,7 +20175,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:695", + "location": "imgui:765", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -18772,7 +20192,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:796", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -18789,7 +20209,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:798", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -18806,7 +20226,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:749", + "location": "imgui:817", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -18823,7 +20243,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:677", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -18851,7 +20271,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:3443", + "location": "imgui_internal:3923", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -18879,7 +20299,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", - "location": "imgui_internal:3444", + "location": "imgui_internal:3924", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -18896,7 +20316,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:3445", + "location": "imgui_internal:3925", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -18922,7 +20342,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3086", + "location": "imgui_internal:3509", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -18969,7 +20389,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3087", + "location": "imgui_internal:3510", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -18978,6 +20398,28 @@ "stname": "" } ], + "igFindBlockingModal": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igFindBlockingModal", + "defaults": {}, + "funcname": "FindBlockingModal", + "location": "imgui_internal:3508", + "namespace": "ImGui", + "ov_cimguiname": "igFindBlockingModal", + "ret": "ImGuiWindow*", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igFindBottomMostVisibleWindowWithinBeginStack": [ { "args": "(ImGuiWindow* window)", @@ -18992,7 +20434,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:2973", + "location": "imgui_internal:3385", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -19014,7 +20456,7 @@ "cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "defaults": {}, "funcname": "FindHoveredViewportFromPlatformWindowStack", - "location": "imgui_internal:3004", + "location": "imgui_internal:3421", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "ret": "ImGuiViewportP*", @@ -19022,6 +20464,40 @@ "stname": "" } ], + "igFindHoveredWindowEx": [ + { + "args": "(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", + "argsT": [ + { + "name": "pos", + "type": "const ImVec2" + }, + { + "name": "find_first_and_in_any_viewport", + "type": "bool" + }, + { + "name": "out_hovered_window", + "type": "ImGuiWindow**" + }, + { + "name": "out_hovered_window_under_moving_window", + "type": "ImGuiWindow**" + } + ], + "argsoriginal": "(const ImVec2& pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", + "call_args": "(pos,find_first_and_in_any_viewport,out_hovered_window,out_hovered_window_under_moving_window)", + "cimguiname": "igFindHoveredWindowEx", + "defaults": {}, + "funcname": "FindHoveredWindowEx", + "location": "imgui_internal:3403", + "namespace": "ImGui", + "ov_cimguiname": "igFindHoveredWindowEx", + "ret": "void", + "signature": "(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)", + "stname": "" + } + ], "igFindOrCreateColumns": [ { "args": "(ImGuiWindow* window,ImGuiID id)", @@ -19040,7 +20516,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3269", + "location": "imgui_internal:3736", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -19048,28 +20524,6 @@ "stname": "" } ], - "igFindOrCreateWindowSettings": [ - { - "args": "(const char* name)", - "argsT": [ - { - "name": "name", - "type": "const char*" - } - ], - "argsoriginal": "(const char* name)", - "call_args": "(name)", - "cimguiname": "igFindOrCreateWindowSettings", - "defaults": {}, - "funcname": "FindOrCreateWindowSettings", - "location": "imgui_internal:3012", - "namespace": "ImGui", - "ov_cimguiname": "igFindOrCreateWindowSettings", - "ret": "ImGuiWindowSettings*", - "signature": "(const char*)", - "stname": "" - } - ], "igFindRenderedTextEnd": [ { "args": "(const char* text,const char* text_end)", @@ -19090,7 +20544,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3354", + "location": "imgui_internal:3830", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -19112,7 +20566,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:3015", + "location": "imgui_internal:3429", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -19134,7 +20588,7 @@ "cimguiname": "igFindViewportByID", "defaults": {}, "funcname": "FindViewportByID", - "location": "imgui:984", + "location": "imgui:1086", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByID", "ret": "ImGuiViewport*", @@ -19156,7 +20610,7 @@ "cimguiname": "igFindViewportByPlatformHandle", "defaults": {}, "funcname": "FindViewportByPlatformHandle", - "location": "imgui:985", + "location": "imgui:1087", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByPlatformHandle", "ret": "ImGuiViewport*", @@ -19178,7 +20632,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2950", + "location": "imgui_internal:3357", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -19200,7 +20654,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2951", + "location": "imgui_internal:3358", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -19222,7 +20676,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:2972", + "location": "imgui_internal:3384", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -19230,7 +20684,7 @@ "stname": "" } ], - "igFindWindowSettings": [ + "igFindWindowSettingsByID": [ { "args": "(ImGuiID id)", "argsT": [ @@ -19241,44 +20695,18 @@ ], "argsoriginal": "(ImGuiID id)", "call_args": "(id)", - "cimguiname": "igFindWindowSettings", + "cimguiname": "igFindWindowSettingsByID", "defaults": {}, - "funcname": "FindWindowSettings", - "location": "imgui_internal:3011", + "funcname": "FindWindowSettingsByID", + "location": "imgui_internal:3433", "namespace": "ImGui", - "ov_cimguiname": "igFindWindowSettings", + "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", "signature": "(ImGuiID)", "stname": "" } ], - "igFocusTopMostWindowUnderOne": [ - { - "args": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)", - "argsT": [ - { - "name": "under_this_window", - "type": "ImGuiWindow*" - }, - { - "name": "ignore_window", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)", - "call_args": "(under_this_window,ignore_window)", - "cimguiname": "igFocusTopMostWindowUnderOne", - "defaults": {}, - "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2967", - "namespace": "ImGui", - "ov_cimguiname": "igFocusTopMostWindowUnderOne", - "ret": "void", - "signature": "(ImGuiWindow*,ImGuiWindow*)", - "stname": "" - } - ], - "igFocusWindow": [ + "igFindWindowSettingsByWindow": [ { "args": "(ImGuiWindow* window)", "argsT": [ @@ -19289,14 +20717,115 @@ ], "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", - "cimguiname": "igFocusWindow", + "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, + "funcname": "FindWindowSettingsByWindow", + "location": "imgui_internal:3434", + "namespace": "ImGui", + "ov_cimguiname": "igFindWindowSettingsByWindow", + "ret": "ImGuiWindowSettings*", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], + "igFixupKeyChord": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igFixupKeyChord", + "defaults": {}, + "funcname": "FixupKeyChord", + "location": "imgui_internal:3561", + "namespace": "ImGui", + "ov_cimguiname": "igFixupKeyChord", + "ret": "ImGuiKeyChord", + "signature": "(ImGuiKeyChord)", + "stname": "" + } + ], + "igFocusItem": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igFocusItem", + "defaults": {}, + "funcname": "FocusItem", + "location": "imgui_internal:3548", + "namespace": "ImGui", + "ov_cimguiname": "igFocusItem", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igFocusTopMostWindowUnderOne": [ + { + "args": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)", + "argsT": [ + { + "name": "under_this_window", + "type": "ImGuiWindow*" + }, + { + "name": "ignore_window", + "type": "ImGuiWindow*" + }, + { + "name": "filter_viewport", + "type": "ImGuiViewport*" + }, + { + "name": "flags", + "type": "ImGuiFocusRequestFlags" + } + ], + "argsoriginal": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)", + "call_args": "(under_this_window,ignore_window,filter_viewport,flags)", + "cimguiname": "igFocusTopMostWindowUnderOne", + "defaults": {}, + "funcname": "FocusTopMostWindowUnderOne", + "location": "imgui_internal:3379", + "namespace": "ImGui", + "ov_cimguiname": "igFocusTopMostWindowUnderOne", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiWindow*,ImGuiViewport*,ImGuiFocusRequestFlags)", + "stname": "" + } + ], + "igFocusWindow": [ + { + "args": "(ImGuiWindow* window,ImGuiFocusRequestFlags flags)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "flags", + "type": "ImGuiFocusRequestFlags" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiFocusRequestFlags flags=0)", + "call_args": "(window,flags)", + "cimguiname": "igFocusWindow", + "defaults": { + "flags": "0" + }, "funcname": "FocusWindow", - "location": "imgui_internal:2966", + "location": "imgui_internal:3378", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", - "signature": "(ImGuiWindow*)", + "signature": "(ImGuiWindow*,ImGuiFocusRequestFlags)", "stname": "" } ], @@ -19314,7 +20843,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3436", + "location": "imgui_internal:3919", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -19331,7 +20860,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3434", + "location": "imgui_internal:3917", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -19353,7 +20882,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3435", + "location": "imgui_internal:3918", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -19370,7 +20899,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3038", + "location": "imgui_internal:3458", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -19400,7 +20929,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:973", + "location": "imgui:1076", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -19409,21 +20938,6 @@ } ], "igGetBackgroundDrawList": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetBackgroundDrawList", - "defaults": {}, - "funcname": "GetBackgroundDrawList", - "location": "imgui:891", - "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawList_Nil", - "ret": "ImDrawList*", - "signature": "()", - "stname": "" - }, { "args": "(ImGuiViewport* viewport)", "argsT": [ @@ -19432,19 +20946,43 @@ "type": "ImGuiViewport*" } ], - "argsoriginal": "(ImGuiViewport* viewport)", + "argsoriginal": "(ImGuiViewport* viewport=((void*)0))", "call_args": "(viewport)", "cimguiname": "igGetBackgroundDrawList", - "defaults": {}, + "defaults": { + "viewport": "NULL" + }, "funcname": "GetBackgroundDrawList", - "location": "imgui:893", + "location": "imgui:964", "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", + "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", "signature": "(ImGuiViewport*)", "stname": "" } ], + "igGetBoxSelectState": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igGetBoxSelectState", + "defaults": {}, + "funcname": "GetBoxSelectState", + "location": "imgui_internal:3725", + "namespace": "ImGui", + "ov_cimguiname": "igGetBoxSelectState", + "ret": "ImGuiBoxSelectState*", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igGetClipboardText": [ { "args": "()", @@ -19454,7 +20992,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:952", + "location": "imgui:1048", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -19482,7 +21020,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:435", + "location": "imgui:472", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -19502,7 +21040,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:436", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -19510,23 +21048,29 @@ "stname": "" }, { - "args": "(ImU32 col)", + "args": "(ImU32 col,float alpha_mul)", "argsT": [ { "name": "col", "type": "ImU32" + }, + { + "name": "alpha_mul", + "type": "float" } ], - "argsoriginal": "(ImU32 col)", - "call_args": "(col)", + "argsoriginal": "(ImU32 col,float alpha_mul=1.0f)", + "call_args": "(col,alpha_mul)", "cimguiname": "igGetColorU32", - "defaults": {}, + "defaults": { + "alpha_mul": "1.0f" + }, "funcname": "GetColorU32", - "location": "imgui:437", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", - "signature": "(ImU32)", + "signature": "(ImU32,float)", "stname": "" } ], @@ -19539,7 +21083,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:786", + "location": "imgui:856", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -19565,7 +21109,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3271", + "location": "imgui_internal:3738", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -19589,7 +21133,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:789", + "location": "imgui:859", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -19615,7 +21159,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3270", + "location": "imgui_internal:3737", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -19639,7 +21183,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:787", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -19656,7 +21200,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:791", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -19682,7 +21226,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3268", + "location": "imgui_internal:3735", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -19704,7 +21248,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:389", + "location": "imgui:489", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -19713,52 +21257,6 @@ "stname": "" } ], - "igGetContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetContentRegionMax", - "defaults": {}, - "funcname": "GetContentRegionMax", - "location": "imgui:390", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igGetContentRegionMaxAbs": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetContentRegionMaxAbs", - "defaults": {}, - "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:3061", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetContentRegionMaxAbs", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetCurrentContext": [ { "args": "()", @@ -19768,7 +21266,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:296", + "location": "imgui:330", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -19785,7 +21283,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3252", + "location": "imgui_internal:3701", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -19793,6 +21291,23 @@ "stname": "" } ], + "igGetCurrentTabBar": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetCurrentTabBar", + "defaults": {}, + "funcname": "GetCurrentTabBar", + "location": "imgui_internal:3797", + "namespace": "ImGui", + "ov_cimguiname": "igGetCurrentTabBar", + "ret": "ImGuiTabBar*", + "signature": "()", + "stname": "" + } + ], "igGetCurrentTable": [ { "args": "()", @@ -19802,7 +21317,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3283", + "location": "imgui_internal:3752", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -19819,7 +21334,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2949", + "location": "imgui_internal:3356", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -19836,7 +21351,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2948", + "location": "imgui_internal:3355", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -19858,7 +21373,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:456", + "location": "imgui:490", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -19876,7 +21391,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:457", + "location": "imgui:491", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -19893,7 +21408,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:458", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -19915,7 +21430,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:463", + "location": "imgui:487", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -19938,7 +21453,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:462", + "location": "imgui:496", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -19956,7 +21471,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2977", + "location": "imgui_internal:3392", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -19973,7 +21488,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:843", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -19990,7 +21505,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:305", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -20007,7 +21522,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:901", + "location": "imgui:972", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -20024,7 +21539,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3039", + "location": "imgui_internal:3459", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -20041,7 +21556,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:432", + "location": "imgui:469", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -20058,7 +21573,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:433", + "location": "imgui:470", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -20080,7 +21595,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:434", + "location": "imgui:471", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -20090,21 +21605,6 @@ } ], "igGetForegroundDrawList": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetForegroundDrawList", - "defaults": {}, - "funcname": "GetForegroundDrawList", - "location": "imgui:892", - "namespace": "ImGui", - "ov_cimguiname": "igGetForegroundDrawList_Nil", - "ret": "ImDrawList*", - "signature": "()", - "stname": "" - }, { "args": "(ImGuiViewport* viewport)", "argsT": [ @@ -20113,12 +21613,14 @@ "type": "ImGuiViewport*" } ], - "argsoriginal": "(ImGuiViewport* viewport)", + "argsoriginal": "(ImGuiViewport* viewport=((void*)0))", "call_args": "(viewport)", "cimguiname": "igGetForegroundDrawList", - "defaults": {}, + "defaults": { + "viewport": "NULL" + }, "funcname": "GetForegroundDrawList", - "location": "imgui:894", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -20138,7 +21640,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2978", + "location": "imgui_internal:3393", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -20155,7 +21657,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:900", + "location": "imgui:971", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -20172,7 +21674,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:468", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -20189,7 +21691,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:469", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -20206,7 +21708,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3043", + "location": "imgui_internal:3463", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -20228,7 +21730,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:487", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -20252,7 +21754,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:488", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -20272,12 +21774,32 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:489", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "" + }, + { + "args": "(int int_id)", + "argsT": [ + { + "name": "int_id", + "type": "int" + } + ], + "argsoriginal": "(int int_id)", + "call_args": "(int_id)", + "cimguiname": "igGetID", + "defaults": {}, + "funcname": "GetID", + "location": "imgui:533", + "namespace": "ImGui", + "ov_cimguiname": "igGetID_Int", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "" } ], "igGetIDWithSeed": [ @@ -20302,12 +21824,36 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3048", + "location": "imgui_internal:3468", "namespace": "ImGui", - "ov_cimguiname": "igGetIDWithSeed", + "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", "signature": "(const char*,const char*,ImGuiID)", "stname": "" + }, + { + "args": "(int n,ImGuiID seed)", + "argsT": [ + { + "name": "n", + "type": "int" + }, + { + "name": "seed", + "type": "ImGuiID" + } + ], + "argsoriginal": "(int n,ImGuiID seed)", + "call_args": "(n,seed)", + "cimguiname": "igGetIDWithSeed", + "defaults": {}, + "funcname": "GetIDWithSeed", + "location": "imgui_internal:3469", + "namespace": "ImGui", + "ov_cimguiname": "igGetIDWithSeed_Int", + "ret": "ImGuiID", + "signature": "(int,ImGuiID)", + "stname": "" } ], "igGetIO": [ @@ -20319,7 +21865,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:300", + "location": "imgui:334", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -20342,7 +21888,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3419", + "location": "imgui_internal:3900", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -20359,7 +21905,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:3037", + "location": "imgui_internal:3457", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -20376,7 +21922,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:878", + "location": "imgui:952", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -20398,7 +21944,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:880", + "location": "imgui:954", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -20421,7 +21967,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:879", + "location": "imgui:953", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -20444,7 +21990,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:881", + "location": "imgui:955", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -20462,7 +22008,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3036", + "location": "imgui_internal:3456", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -20472,35 +22018,51 @@ ], "igGetKeyChordName": [ { - "args": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", + "args": "(ImGuiKeyChord key_chord)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" - }, - { - "name": "out_buf", - "type": "char*" - }, - { - "name": "out_buf_size", - "type": "int" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", - "call_args": "(key_chord,out_buf,out_buf_size)", + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3135", + "location": "imgui_internal:3573", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", - "ret": "void", - "signature": "(ImGuiKeyChord,char*,int)", + "ret": "const char*", + "signature": "(ImGuiKeyChord)", "stname": "" } ], "igGetKeyData": [ + { + "args": "(ImGuiContext* ctx,ImGuiKey key)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiKey key)", + "call_args": "(ctx,key)", + "cimguiname": "igGetKeyData", + "defaults": {}, + "funcname": "GetKeyData", + "location": "imgui_internal:3571", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyData_ContextPtr", + "ret": "ImGuiKeyData*", + "signature": "(ImGuiContext*,ImGuiKey)", + "stname": "" + }, { "args": "(ImGuiKey key)", "argsT": [ @@ -20514,36 +22076,14 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3134", + "location": "imgui_internal:3572", "namespace": "ImGui", - "ov_cimguiname": "igGetKeyData", + "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", "signature": "(ImGuiKey)", "stname": "" } ], - "igGetKeyIndex": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igGetKeyIndex", - "defaults": {}, - "funcname": "GetKeyIndex", - "location": "imgui:3212", - "namespace": "ImGui", - "ov_cimguiname": "igGetKeyIndex", - "ret": "ImGuiKey", - "signature": "(ImGuiKey)", - "stname": "" - } - ], "igGetKeyMagnitude2d": [ { "args": "(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)", @@ -20574,7 +22114,7 @@ "cimguiname": "igGetKeyMagnitude2d", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3138", + "location": "imgui_internal:3576", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -20597,7 +22137,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:926", + "location": "imgui:996", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -20619,7 +22159,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3156", + "location": "imgui_internal:3595", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -20629,23 +22169,27 @@ ], "igGetKeyOwnerData": [ { - "args": "(ImGuiKey key)", + "args": "(ImGuiContext* ctx,ImGuiKey key)", "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, { "name": "key", "type": "ImGuiKey" } ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", + "argsoriginal": "(ImGuiContext* ctx,ImGuiKey key)", + "call_args": "(ctx,key)", "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3160", + "location": "imgui_internal:3600", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", - "signature": "(ImGuiKey)", + "signature": "(ImGuiContext*,ImGuiKey)", "stname": "" } ], @@ -20671,7 +22215,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:925", + "location": "imgui:995", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -20688,7 +22232,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:888", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -20710,7 +22254,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:937", + "location": "imgui:1033", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -20727,7 +22271,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:946", + "location": "imgui:1042", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -20760,7 +22304,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:944", + "location": "imgui:1040", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -20783,7 +22327,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:941", + "location": "imgui:1037", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -20806,7 +22350,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:942", + "location": "imgui:1038", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -20815,6 +22359,28 @@ "stname": "" } ], + "igGetMultiSelectState": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igGetMultiSelectState", + "defaults": {}, + "funcname": "GetMultiSelectState", + "location": "imgui_internal:3726", + "namespace": "ImGui", + "ov_cimguiname": "igGetMultiSelectState", + "ret": "ImGuiMultiSelectState*", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igGetNavTweakPressedAmount": [ { "args": "(ImGuiAxis axis)", @@ -20829,7 +22395,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3139", + "location": "imgui_internal:3577", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -20846,7 +22412,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui:980", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO", "ret": "ImGuiPlatformIO*", @@ -20873,7 +22439,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3083", + "location": "imgui_internal:3505", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -20891,7 +22457,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:401", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -20908,7 +22474,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:402", + "location": "imgui:439", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -20925,7 +22491,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:397", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -20942,7 +22508,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:398", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -20964,7 +22530,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3188", + "location": "imgui_internal:3634", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -20981,7 +22547,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:904", + "location": "imgui:975", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -20998,7 +22564,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:301", + "location": "imgui:336", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -21021,7 +22587,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:902", + "location": "imgui:973", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -21043,7 +22609,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:438", + "location": "imgui:475", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -21052,6 +22618,28 @@ "stname": "" } ], + "igGetStyleVarInfo": [ + { + "args": "(ImGuiStyleVar idx)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + } + ], + "argsoriginal": "(ImGuiStyleVar idx)", + "call_args": "(idx)", + "cimguiname": "igGetStyleVarInfo", + "defaults": {}, + "funcname": "GetStyleVarInfo", + "location": "imgui_internal:3485", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleVarInfo", + "ret": "const ImGuiDataVarInfo*", + "signature": "(ImGuiStyleVar)", + "stname": "" + } + ], "igGetTextLineHeight": [ { "args": "()", @@ -21061,7 +22649,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:466", + "location": "imgui:509", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -21078,7 +22666,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:467", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -21095,7 +22683,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:899", + "location": "imgui:970", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -21112,7 +22700,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3085", + "location": "imgui_internal:3507", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -21129,7 +22717,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3084", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -21146,7 +22734,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:624", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -21176,7 +22764,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3141", + "location": "imgui_internal:3579", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -21184,6 +22772,30 @@ "stname": "" } ], + "igGetTypingSelectRequest": [ + { + "args": "(ImGuiTypingSelectFlags flags)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiTypingSelectFlags" + } + ], + "argsoriginal": "(ImGuiTypingSelectFlags flags=ImGuiTypingSelectFlags_None)", + "call_args": "(flags)", + "cimguiname": "igGetTypingSelectRequest", + "defaults": { + "flags": "ImGuiTypingSelectFlags_None" + }, + "funcname": "GetTypingSelectRequest", + "location": "imgui_internal:3711", + "namespace": "ImGui", + "ov_cimguiname": "igGetTypingSelectRequest", + "ret": "ImGuiTypingSelectRequest*", + "signature": "(ImGuiTypingSelectFlags)", + "stname": "" + } + ], "igGetVersion": [ { "args": "()", @@ -21193,7 +22805,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:317", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -21215,7 +22827,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:3003", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -21237,7 +22849,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:3212", + "location": "imgui_internal:3661", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -21245,52 +22857,6 @@ "stname": "" } ], - "igGetWindowContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMax", - "defaults": {}, - "funcname": "GetWindowContentRegionMax", - "location": "imgui:392", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igGetWindowContentRegionMin": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMin", - "defaults": {}, - "funcname": "GetWindowContentRegionMin", - "location": "imgui:391", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMin", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetWindowDockID": [ { "args": "()", @@ -21300,7 +22866,7 @@ "cimguiname": "igGetWindowDockID", "defaults": {}, "funcname": "GetWindowDockID", - "location": "imgui:819", + "location": "imgui:889", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockID", "ret": "ImGuiID", @@ -21317,7 +22883,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:3211", + "location": "imgui_internal:3660", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -21334,7 +22900,7 @@ "cimguiname": "igGetWindowDpiScale", "defaults": {}, "funcname": "GetWindowDpiScale", - "location": "imgui:358", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDpiScale", "ret": "float", @@ -21351,7 +22917,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:357", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -21368,7 +22934,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:362", + "location": "imgui:407", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -21390,7 +22956,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:359", + "location": "imgui:404", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -21417,7 +22983,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3384", + "location": "imgui_internal:3861", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -21443,7 +23009,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3383", + "location": "imgui_internal:3860", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -21469,7 +23035,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3382", + "location": "imgui_internal:3859", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -21499,7 +23065,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3381", + "location": "imgui_internal:3858", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -21522,7 +23088,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:360", + "location": "imgui:405", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -21540,7 +23106,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui:363", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -21557,7 +23123,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:361", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -21579,7 +23145,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:448", + "location": "imgui_internal:450", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -21598,7 +23164,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:449", + "location": "imgui_internal:451", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -21617,7 +23183,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:450", + "location": "imgui_internal:452", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -21642,7 +23208,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:338", + "location": "imgui_internal:361", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -21683,7 +23249,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:494", + "location": "imgui_internal:497", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -21729,7 +23295,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:495", + "location": "imgui_internal:498", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -21775,7 +23341,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:496", + "location": "imgui_internal:499", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -21813,7 +23379,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:497", + "location": "imgui_internal:500", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -21821,6 +23387,31 @@ "stname": "" } ], + "igImBitArrayClearAllBits": [ + { + "args": "(ImU32* arr,int bitcount)", + "argsT": [ + { + "name": "arr", + "type": "ImU32*" + }, + { + "name": "bitcount", + "type": "int" + } + ], + "argsoriginal": "(ImU32* arr,int bitcount)", + "call_args": "(arr,bitcount)", + "cimguiname": "igImBitArrayClearAllBits", + "defaults": {}, + "funcname": "ImBitArrayClearAllBits", + "location": "imgui_internal:570", + "ov_cimguiname": "igImBitArrayClearAllBits", + "ret": "void", + "signature": "(ImU32*,int)", + "stname": "" + } + ], "igImBitArrayClearBit": [ { "args": "(ImU32* arr,int n)", @@ -21839,13 +23430,34 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:565", + "location": "imgui_internal:572", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", "stname": "" } ], + "igImBitArrayGetStorageSizeInBytes": [ + { + "args": "(int bitcount)", + "argsT": [ + { + "name": "bitcount", + "type": "int" + } + ], + "argsoriginal": "(int bitcount)", + "call_args": "(bitcount)", + "cimguiname": "igImBitArrayGetStorageSizeInBytes", + "defaults": {}, + "funcname": "ImBitArrayGetStorageSizeInBytes", + "location": "imgui_internal:569", + "ov_cimguiname": "igImBitArrayGetStorageSizeInBytes", + "ret": "size_t", + "signature": "(int)", + "stname": "" + } + ], "igImBitArraySetBit": [ { "args": "(ImU32* arr,int n)", @@ -21864,7 +23476,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:566", + "location": "imgui_internal:573", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -21893,7 +23505,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:567", + "location": "imgui_internal:574", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -21918,7 +23530,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:564", + "location": "imgui_internal:571", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -21939,7 +23551,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:360", + "location": "imgui_internal:383", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -21960,16 +23572,37 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:361", + "location": "imgui_internal:384", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", "stname": "" } ], + "igImCharIsXdigitA": [ + { + "args": "(char c)", + "argsT": [ + { + "name": "c", + "type": "char" + } + ], + "argsoriginal": "(char c)", + "call_args": "(c)", + "cimguiname": "igImCharIsXdigitA", + "defaults": {}, + "funcname": "ImCharIsXdigitA", + "location": "imgui_internal:385", + "ov_cimguiname": "igImCharIsXdigitA", + "ret": "bool", + "signature": "(char)", + "stname": "" + } + ], "igImClamp": [ { - "args": "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx)", + "args": "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx)", "argsT": [ { "name": "pOut", @@ -21985,19 +23618,19 @@ }, { "name": "mx", - "type": "ImVec2" + "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& v,const ImVec2& mn,ImVec2 mx)", + "argsoriginal": "(const ImVec2& v,const ImVec2&mn,const ImVec2&mx)", "call_args": "(v,mn,mx)", "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:472", + "location": "imgui_internal:474", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", - "signature": "(const ImVec2,const ImVec2,ImVec2)", + "signature": "(const ImVec2,const ImVec2,const ImVec2)", "stname": "" } ], @@ -22019,7 +23652,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:485", + "location": "imgui_internal:487", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -22048,7 +23681,7 @@ "cimguiname": "igImExponentialMovingAverage", "defaults": {}, "funcname": "ImExponentialMovingAverage", - "location": "imgui_internal:490", + "location": "imgui_internal:493", "ov_cimguiname": "igImExponentialMovingAverage", "ret": "float", "signature": "(float,float,int)", @@ -22069,7 +23702,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:421", + "location": "imgui_internal:424", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -22090,7 +23723,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:422", + "location": "imgui_internal:425", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -22126,7 +23759,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:428", + "location": "imgui_internal:431", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -22151,7 +23784,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:420", + "location": "imgui_internal:423", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -22184,7 +23817,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:423", + "location": "imgui_internal:426", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -22217,7 +23850,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:424", + "location": "imgui_internal:427", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -22238,7 +23871,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:480", + "location": "imgui_internal:484", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -22261,7 +23894,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:482", + "location": "imgui_internal:485", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -22269,51 +23902,6 @@ "stname": "" } ], - "igImFloorSigned": [ - { - "args": "(float f)", - "argsT": [ - { - "name": "f", - "type": "float" - } - ], - "argsoriginal": "(float f)", - "call_args": "(f)", - "cimguiname": "igImFloorSigned", - "defaults": {}, - "funcname": "ImFloorSigned", - "location": "imgui_internal:481", - "ov_cimguiname": "igImFloorSigned_Float", - "ret": "float", - "signature": "(float)", - "stname": "" - }, - { - "args": "(ImVec2 *pOut,const ImVec2 v)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - }, - { - "name": "v", - "type": "const ImVec2" - } - ], - "argsoriginal": "(const ImVec2& v)", - "call_args": "(v)", - "cimguiname": "igImFloorSigned", - "defaults": {}, - "funcname": "ImFloorSigned", - "location": "imgui_internal:483", - "nonUDT": 1, - "ov_cimguiname": "igImFloorSigned_Vec2", - "ret": "void", - "signature": "(const ImVec2)", - "stname": "" - } - ], "igImFontAtlasBuildFinish": [ { "args": "(ImFontAtlas* atlas)", @@ -22328,7 +23916,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3509", + "location": "imgui_internal:3996", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22349,7 +23937,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3506", + "location": "imgui_internal:3993", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22374,7 +23962,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3512", + "location": "imgui_internal:3999", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -22419,7 +24007,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3513", + "location": "imgui_internal:4000", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -22444,7 +24032,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3508", + "location": "imgui_internal:3995", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -22493,7 +24081,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3511", + "location": "imgui_internal:3998", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -22542,7 +24130,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3510", + "location": "imgui_internal:3997", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -22579,13 +24167,34 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3507", + "location": "imgui_internal:3994", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", "stname": "" } ], + "igImFontAtlasUpdateConfigDataPointers": [ + { + "args": "(ImFontAtlas* atlas)", + "argsT": [ + { + "name": "atlas", + "type": "ImFontAtlas*" + } + ], + "argsoriginal": "(ImFontAtlas* atlas)", + "call_args": "(atlas)", + "cimguiname": "igImFontAtlasUpdateConfigDataPointers", + "defaults": {}, + "funcname": "ImFontAtlasUpdateConfigDataPointers", + "location": "imgui_internal:3992", + "ov_cimguiname": "igImFontAtlasUpdateConfigDataPointers", + "ret": "void", + "signature": "(ImFontAtlas*)", + "stname": "" + } + ], "igImFormatString": [ { "args": "(char* buf,size_t buf_size,const char* fmt,...)", @@ -22613,7 +24222,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:365", + "location": "imgui_internal:389", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -22647,7 +24256,7 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", - "location": "imgui_internal:367", + "location": "imgui_internal:391", "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -22680,7 +24289,7 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", - "location": "imgui_internal:368", + "location": "imgui_internal:392", "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -22713,41 +24322,16 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:366", + "location": "imgui_internal:390", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", "stname": "" } ], - "igImGetDirQuadrantFromDelta": [ - { - "args": "(float dx,float dy)", - "argsT": [ - { - "name": "dx", - "type": "float" - }, - { - "name": "dy", - "type": "float" - } - ], - "argsoriginal": "(float dx,float dy)", - "call_args": "(dx,dy)", - "cimguiname": "igImGetDirQuadrantFromDelta", - "defaults": {}, - "funcname": "ImGetDirQuadrantFromDelta", - "location": "imgui_internal:503", - "ov_cimguiname": "igImGetDirQuadrantFromDelta", - "ret": "ImGuiDir", - "signature": "(float,float)", - "stname": "" - } - ], "igImHashData": [ { - "args": "(const void* data,size_t data_size,ImU32 seed)", + "args": "(const void* data,size_t data_size,ImGuiID seed)", "argsT": [ { "name": "data", @@ -22759,26 +24343,26 @@ }, { "name": "seed", - "type": "ImU32" + "type": "ImGuiID" } ], - "argsoriginal": "(const void* data,size_t data_size,ImU32 seed=0)", + "argsoriginal": "(const void* data,size_t data_size,ImGuiID seed=0)", "call_args": "(data,data_size,seed)", "cimguiname": "igImHashData", "defaults": { "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:329", + "location": "imgui_internal:352", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", - "signature": "(const void*,size_t,ImU32)", + "signature": "(const void*,size_t,ImGuiID)", "stname": "" } ], "igImHashStr": [ { - "args": "(const char* data,size_t data_size,ImU32 seed)", + "args": "(const char* data,size_t data_size,ImGuiID seed)", "argsT": [ { "name": "data", @@ -22790,10 +24374,10 @@ }, { "name": "seed", - "type": "ImU32" + "type": "ImGuiID" } ], - "argsoriginal": "(const char* data,size_t data_size=0,ImU32 seed=0)", + "argsoriginal": "(const char* data,size_t data_size=0,ImGuiID seed=0)", "call_args": "(data,data_size,seed)", "cimguiname": "igImHashStr", "defaults": { @@ -22801,10 +24385,10 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:330", + "location": "imgui_internal:353", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", - "signature": "(const char*,size_t,ImU32)", + "signature": "(const char*,size_t,ImGuiID)", "stname": "" } ], @@ -22826,7 +24410,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:479", + "location": "imgui_internal:481", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -22847,7 +24431,7 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", - "location": "imgui_internal:489", + "location": "imgui_internal:492", "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -22868,7 +24452,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:341", + "location": "imgui_internal:364", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -22887,7 +24471,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:342", + "location": "imgui_internal:365", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -22908,7 +24492,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:477", + "location": "imgui_internal:479", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -22927,7 +24511,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:478", + "location": "imgui_internal:480", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -22960,7 +24544,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:473", + "location": "imgui_internal:475", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -22992,7 +24576,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:474", + "location": "imgui_internal:476", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -23024,7 +24608,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:475", + "location": "imgui_internal:477", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -23058,7 +24642,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:498", + "location": "imgui_internal:501", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -23066,6 +24650,43 @@ "stname": "" } ], + "igImLinearRemapClamp": [ + { + "args": "(float s0,float s1,float d0,float d1,float x)", + "argsT": [ + { + "name": "s0", + "type": "float" + }, + { + "name": "s1", + "type": "float" + }, + { + "name": "d0", + "type": "float" + }, + { + "name": "d1", + "type": "float" + }, + { + "name": "x", + "type": "float" + } + ], + "argsoriginal": "(float s0,float s1,float d0,float d1,float x)", + "call_args": "(s0,s1,d0,d1,x)", + "cimguiname": "igImLinearRemapClamp", + "defaults": {}, + "funcname": "ImLinearRemapClamp", + "location": "imgui_internal:490", + "ov_cimguiname": "igImLinearRemapClamp", + "ret": "float", + "signature": "(float,float,float,float,float)", + "stname": "" + } + ], "igImLinearSweep": [ { "args": "(float current,float target,float speed)", @@ -23088,7 +24709,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:487", + "location": "imgui_internal:489", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -23109,7 +24730,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:446", + "location": "imgui_internal:448", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -23128,13 +24749,42 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:447", + "location": "imgui_internal:449", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", "stname": "" } ], + "igImLowerBound": [ + { + "args": "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)", + "argsT": [ + { + "name": "in_begin", + "type": "ImGuiStoragePair*" + }, + { + "name": "in_end", + "type": "ImGuiStoragePair*" + }, + { + "name": "key", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)", + "call_args": "(in_begin,in_end,key)", + "cimguiname": "igImLowerBound", + "defaults": {}, + "funcname": "ImLowerBound", + "location": "imgui_internal:740", + "ov_cimguiname": "igImLowerBound", + "ret": "ImGuiStoragePair*", + "signature": "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)", + "stname": "" + } + ], "igImMax": [ { "args": "(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs)", @@ -23157,7 +24807,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:471", + "location": "imgui_internal:473", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -23187,7 +24837,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:470", + "location": "imgui_internal:472", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -23213,7 +24863,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:484", + "location": "imgui_internal:486", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -23242,7 +24892,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:488", + "location": "imgui_internal:491", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -23264,7 +24914,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:370", + "location": "imgui_internal:394", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -23285,7 +24935,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:369", + "location": "imgui_internal:393", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -23310,7 +24960,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:374", + "location": "imgui_internal:398", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -23339,7 +24989,7 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", - "location": "imgui_internal:372", + "location": "imgui_internal:396", "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -23368,7 +25018,7 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", - "location": "imgui_internal:373", + "location": "imgui_internal:397", "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -23397,7 +25047,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:371", + "location": "imgui_internal:395", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -23422,7 +25072,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:444", + "location": "imgui_internal:446", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -23445,7 +25095,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:445", + "location": "imgui_internal:447", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -23480,7 +25130,7 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", - "location": "imgui_internal:334", + "location": "imgui_internal:357", "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -23513,7 +25163,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:486", + "location": "imgui_internal:488", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -23535,7 +25185,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:454", + "location": "imgui_internal:458", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -23554,7 +25204,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:458", + "location": "imgui_internal:460", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -23575,7 +25225,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:476", + "location": "imgui_internal:478", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -23596,7 +25246,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:451", + "location": "imgui_internal:453", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -23615,7 +25265,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:452", + "location": "imgui_internal:454", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -23636,7 +25286,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:357", + "location": "imgui_internal:378", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -23657,35 +25307,35 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:356", + "location": "imgui_internal:377", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", "stname": "" } ], - "igImStrbolW": [ + "igImStrbol": [ { - "args": "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)", + "args": "(const char* buf_mid_line,const char* buf_begin)", "argsT": [ { "name": "buf_mid_line", - "type": "const ImWchar*" + "type": "const char*" }, { "name": "buf_begin", - "type": "const ImWchar*" + "type": "const char*" } ], - "argsoriginal": "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)", + "argsoriginal": "(const char* buf_mid_line,const char* buf_begin)", "call_args": "(buf_mid_line,buf_begin)", - "cimguiname": "igImStrbolW", + "cimguiname": "igImStrbol", "defaults": {}, - "funcname": "ImStrbolW", - "location": "imgui_internal:354", - "ov_cimguiname": "igImStrbolW", - "ret": "const ImWchar*", - "signature": "(const ImWchar*,const ImWchar*)", + "funcname": "ImStrbol", + "location": "imgui_internal:380", + "ov_cimguiname": "igImStrbol", + "ret": "const char*", + "signature": "(const char*,const char*)", "stname": "" } ], @@ -23711,7 +25361,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:351", + "location": "imgui_internal:374", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -23732,7 +25382,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:349", + "location": "imgui_internal:372", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -23761,7 +25411,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:350", + "location": "imgui_internal:373", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -23786,7 +25436,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:353", + "location": "imgui_internal:375", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23811,7 +25461,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:346", + "location": "imgui_internal:369", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -23844,7 +25494,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:355", + "location": "imgui_internal:376", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -23865,7 +25515,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:352", + "location": "imgui_internal:379", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -23894,7 +25544,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:348", + "location": "imgui_internal:371", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -23923,7 +25573,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:347", + "location": "imgui_internal:370", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -23952,7 +25602,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:379", + "location": "imgui_internal:403", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -23977,7 +25627,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:377", + "location": "imgui_internal:401", "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -24002,13 +25652,38 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:381", + "location": "imgui_internal:405", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", "stname": "" } ], + "igImTextCountLines": [ + { + "args": "(const char* in_text,const char* in_text_end)", + "argsT": [ + { + "name": "in_text", + "type": "const char*" + }, + { + "name": "in_text_end", + "type": "const char*" + } + ], + "argsoriginal": "(const char* in_text,const char* in_text_end)", + "call_args": "(in_text,in_text_end)", + "cimguiname": "igImTextCountLines", + "defaults": {}, + "funcname": "ImTextCountLines", + "location": "imgui_internal:409", + "ov_cimguiname": "igImTextCountLines", + "ret": "int", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igImTextCountUtf8BytesFromChar": [ { "args": "(const char* in_text,const char* in_text_end)", @@ -24027,7 +25702,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:382", + "location": "imgui_internal:406", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -24052,13 +25727,38 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:383", + "location": "imgui_internal:407", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", "stname": "" } ], + "igImTextFindPreviousUtf8Codepoint": [ + { + "args": "(const char* in_text_start,const char* in_text_curr)", + "argsT": [ + { + "name": "in_text_start", + "type": "const char*" + }, + { + "name": "in_text_curr", + "type": "const char*" + } + ], + "argsoriginal": "(const char* in_text_start,const char* in_text_curr)", + "call_args": "(in_text_start,in_text_curr)", + "cimguiname": "igImTextFindPreviousUtf8Codepoint", + "defaults": {}, + "funcname": "ImTextFindPreviousUtf8Codepoint", + "location": "imgui_internal:408", + "ov_cimguiname": "igImTextFindPreviousUtf8Codepoint", + "ret": "const char*", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igImTextStrFromUtf8": [ { "args": "(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining)", @@ -24091,7 +25791,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:380", + "location": "imgui_internal:404", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -24124,7 +25824,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:378", + "location": "imgui_internal:402", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -24145,7 +25845,7 @@ "cimguiname": "igImToUpper", "defaults": {}, "funcname": "ImToUpper", - "location": "imgui_internal:359", + "location": "imgui_internal:382", "ov_cimguiname": "igImToUpper", "ret": "char", "signature": "(char)", @@ -24174,7 +25874,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:502", + "location": "imgui_internal:505", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -24222,7 +25922,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:501", + "location": "imgui_internal:504", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -24259,7 +25959,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:500", + "location": "imgui_internal:503", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -24293,13 +25993,87 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:499", + "location": "imgui_internal:502", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", "stname": "" } ], + "igImTriangleIsClockwise": [ + { + "args": "(const ImVec2 a,const ImVec2 b,const ImVec2 c)", + "argsT": [ + { + "name": "a", + "type": "const ImVec2" + }, + { + "name": "b", + "type": "const ImVec2" + }, + { + "name": "c", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c)", + "call_args": "(a,b,c)", + "cimguiname": "igImTriangleIsClockwise", + "defaults": {}, + "funcname": "ImTriangleIsClockwise", + "location": "imgui_internal:506", + "ov_cimguiname": "igImTriangleIsClockwise", + "ret": "bool", + "signature": "(const ImVec2,const ImVec2,const ImVec2)", + "stname": "" + } + ], + "igImTrunc": [ + { + "args": "(float f)", + "argsT": [ + { + "name": "f", + "type": "float" + } + ], + "argsoriginal": "(float f)", + "call_args": "(f)", + "cimguiname": "igImTrunc", + "defaults": {}, + "funcname": "ImTrunc", + "location": "imgui_internal:482", + "ov_cimguiname": "igImTrunc_Float", + "ret": "float", + "signature": "(float)", + "stname": "" + }, + { + "args": "(ImVec2 *pOut,const ImVec2 v)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& v)", + "call_args": "(v)", + "cimguiname": "igImTrunc", + "defaults": {}, + "funcname": "ImTrunc", + "location": "imgui_internal:483", + "nonUDT": 1, + "ov_cimguiname": "igImTrunc_Vec2", + "ret": "void", + "signature": "(const ImVec2)", + "stname": "" + } + ], "igImUpperPowerOfTwo": [ { "args": "(int v)", @@ -24314,7 +26088,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:343", + "location": "imgui_internal:366", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -24323,14 +26097,14 @@ ], "igImage": [ { - "args": "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", + "args": "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", "argsT": [ { "name": "user_texture_id", "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -24350,8 +26124,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", - "call_args": "(user_texture_id,size,uv0,uv1,tint_col,border_col)", + "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", + "call_args": "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)", "cimguiname": "igImage", "defaults": { "border_col": "ImVec4(0,0,0,0)", @@ -24360,7 +26134,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:523", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -24370,7 +26144,7 @@ ], "igImageButton": [ { - "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", "argsT": [ { "name": "str_id", @@ -24381,7 +26155,7 @@ "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -24401,8 +26175,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", - "call_args": "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)", + "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", + "call_args": "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)", "cimguiname": "igImageButton", "defaults": { "bg_col": "ImVec4(0,0,0,0)", @@ -24411,7 +26185,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:524", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -24421,7 +26195,7 @@ ], "igImageButtonEx": [ { - "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)", "argsT": [ { "name": "id", @@ -24432,7 +26206,7 @@ "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -24450,18 +26224,24 @@ { "name": "tint_col", "type": "const ImVec4" + }, + { + "name": "flags", + "type": "ImGuiButtonFlags" } ], - "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col)", - "call_args": "(id,texture_id,size,uv0,uv1,bg_col,tint_col)", + "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)", + "call_args": "(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)", "cimguiname": "igImageButtonEx", - "defaults": {}, + "defaults": { + "flags": "0" + }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3371", + "location": "imgui_internal:3847", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", - "signature": "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", + "signature": "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4,ImGuiButtonFlags)", "stname": "" } ], @@ -24481,7 +26261,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:452", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -24498,7 +26278,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2981", + "location": "imgui_internal:3397", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -24545,7 +26325,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:595", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -24592,7 +26372,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:587", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -24629,7 +26409,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:588", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -24666,7 +26446,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:589", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -24703,7 +26483,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:590", + "location": "imgui:639", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -24745,7 +26525,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:591", + "location": "imgui:640", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -24777,7 +26557,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:592", + "location": "imgui:641", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -24809,7 +26589,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:593", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -24841,7 +26621,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:594", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -24892,7 +26672,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:596", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -24947,7 +26727,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:597", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -24993,7 +26773,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:584", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -25001,6 +26781,28 @@ "stname": "" } ], + "igInputTextDeactivateHook": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igInputTextDeactivateHook", + "defaults": {}, + "funcname": "InputTextDeactivateHook", + "location": "imgui_internal:3896", + "namespace": "ImGui", + "ov_cimguiname": "igInputTextDeactivateHook", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igInputTextEx": [ { "args": "(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data)", @@ -25046,7 +26848,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3415", + "location": "imgui_internal:3895", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -25097,7 +26899,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:585", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -25147,7 +26949,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:586", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -25179,7 +26981,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:511", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -25201,7 +27003,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3143", + "location": "imgui_internal:3582", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -25223,7 +27025,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3121", + "location": "imgui_internal:3559", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -25240,7 +27042,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:876", + "location": "imgui:950", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -25257,7 +27059,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:877", + "location": "imgui:951", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -25274,7 +27076,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:875", + "location": "imgui:949", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -25291,7 +27093,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:940", + "location": "imgui:1036", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -25317,7 +27119,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3055", + "location": "imgui_internal:3477", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -25334,7 +27136,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3255", + "location": "imgui_internal:3704", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -25351,7 +27153,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3258", + "location": "imgui_internal:3707", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -25373,7 +27175,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3119", + "location": "imgui_internal:3557", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -25390,7 +27192,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:871", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -25407,7 +27209,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:866", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -25431,7 +27233,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:868", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -25448,7 +27250,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:872", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -25465,7 +27267,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:873", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -25482,7 +27284,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:870", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -25499,7 +27301,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:867", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -25523,7 +27325,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:865", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -25540,7 +27342,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:874", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -25557,7 +27359,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:3060", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -25574,7 +27376,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:869", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -25582,6 +27384,58 @@ "stname": "" } ], + "igIsKeyChordPressed": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igIsKeyChordPressed", + "defaults": {}, + "funcname": "IsKeyChordPressed", + "location": "imgui:994", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyChordPressed_Nil", + "ret": "bool", + "signature": "(ImGuiKeyChord)", + "stname": "" + }, + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id=0)", + "call_args": "(key_chord,flags,owner_id)", + "cimguiname": "igIsKeyChordPressed", + "defaults": { + "owner_id": "0" + }, + "funcname": "IsKeyChordPressed", + "location": "imgui_internal:3611", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyChordPressed_InputFlags", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)", + "stname": "" + } + ], "igIsKeyDown": [ { "args": "(ImGuiKey key)", @@ -25596,7 +27450,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:922", + "location": "imgui:991", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -25620,7 +27474,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3168", + "location": "imgui_internal:3608", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -25648,7 +27502,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:923", + "location": "imgui:992", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -25656,61 +27510,33 @@ "stname": "" }, { - "args": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id)", "argsT": [ { "name": "key", "type": "ImGuiKey" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" - } - ], - "argsoriginal": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)", - "call_args": "(key,owner_id,flags)", - "cimguiname": "igIsKeyPressed", - "defaults": { - "flags": "0" - }, - "funcname": "IsKeyPressed", - "location": "imgui_internal:3169", - "namespace": "ImGui", - "ov_cimguiname": "igIsKeyPressed_ID", - "ret": "bool", - "signature": "(ImGuiKey,ImGuiID,ImGuiInputFlags)", - "stname": "" - } - ], - "igIsKeyPressedMap": [ - { - "args": "(ImGuiKey key,bool repeat)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" }, { - "name": "repeat", - "type": "bool" + "name": "owner_id", + "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiKey key,bool repeat=true)", - "call_args": "(key,repeat)", - "cimguiname": "igIsKeyPressedMap", + "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id=0)", + "call_args": "(key,flags,owner_id)", + "cimguiname": "igIsKeyPressed", "defaults": { - "repeat": "true" + "owner_id": "0" }, - "funcname": "IsKeyPressedMap", - "location": "imgui_internal:3486", + "funcname": "IsKeyPressed", + "location": "imgui_internal:3609", "namespace": "ImGui", - "ov_cimguiname": "igIsKeyPressedMap", + "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", - "signature": "(ImGuiKey,bool)", + "signature": "(ImGuiKey,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -25728,7 +27554,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:924", + "location": "imgui:993", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -25752,7 +27578,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3170", + "location": "imgui_internal:3610", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -25774,7 +27600,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3118", + "location": "imgui_internal:3556", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -25782,6 +27608,28 @@ "stname": "" } ], + "igIsLRModKey": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igIsLRModKey", + "defaults": {}, + "funcname": "IsLRModKey", + "location": "imgui_internal:3560", + "namespace": "ImGui", + "ov_cimguiname": "igIsLRModKey", + "ret": "bool", + "signature": "(ImGuiKey)", + "stname": "" + } + ], "igIsLegacyKey": [ { "args": "(ImGuiKey key)", @@ -25796,7 +27644,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3117", + "location": "imgui_internal:3555", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -25824,7 +27672,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:934", + "location": "imgui:1030", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -25832,33 +27680,33 @@ "stname": "" }, { - "args": "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id)", "argsT": [ { "name": "button", "type": "ImGuiMouseButton" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags=0)", - "call_args": "(button,owner_id,flags)", + "argsoriginal": "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id=0)", + "call_args": "(button,flags,owner_id)", "cimguiname": "igIsMouseClicked", "defaults": { - "flags": "0" + "owner_id": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3172", + "location": "imgui_internal:3613", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseClicked_ID", + "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", - "signature": "(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)", + "signature": "(ImGuiMouseButton,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -25876,12 +27724,36 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:936", + "location": "imgui:1032", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseDoubleClicked", + "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", "signature": "(ImGuiMouseButton)", "stname": "" + }, + { + "args": "(ImGuiMouseButton button,ImGuiID owner_id)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id)", + "call_args": "(button,owner_id)", + "cimguiname": "igIsMouseDoubleClicked", + "defaults": {}, + "funcname": "IsMouseDoubleClicked", + "location": "imgui_internal:3615", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDoubleClicked_ID", + "ret": "bool", + "signature": "(ImGuiMouseButton,ImGuiID)", + "stname": "" } ], "igIsMouseDown": [ @@ -25898,7 +27770,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:933", + "location": "imgui:1029", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -25922,7 +27794,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3171", + "location": "imgui_internal:3612", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -25950,7 +27822,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3137", + "location": "imgui_internal:3575", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -25978,7 +27850,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:943", + "location": "imgui:1039", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -26010,7 +27882,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:938", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -26032,7 +27904,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3120", + "location": "imgui_internal:3558", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -26056,7 +27928,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:939", + "location": "imgui:1035", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -26078,7 +27950,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:935", + "location": "imgui:1031", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -26102,7 +27974,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3173", + "location": "imgui_internal:3614", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -26124,7 +27996,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3115", + "location": "imgui_internal:3553", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -26132,7 +28004,7 @@ "stname": "" } ], - "igIsNamedKeyOrModKey": [ + "igIsNamedKeyOrMod": [ { "args": "(ImGuiKey key)", "argsT": [ @@ -26143,12 +28015,12 @@ ], "argsoriginal": "(ImGuiKey key)", "call_args": "(key)", - "cimguiname": "igIsNamedKeyOrModKey", + "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, - "funcname": "IsNamedKeyOrModKey", - "location": "imgui_internal:3116", + "funcname": "IsNamedKeyOrMod", + "location": "imgui_internal:3554", "namespace": "ImGui", - "ov_cimguiname": "igIsNamedKeyOrModKey", + "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", "signature": "(ImGuiKey)", "stname": "" @@ -26174,7 +28046,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:723", + "location": "imgui:793", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -26198,7 +28070,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3080", + "location": "imgui_internal:3504", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -26220,7 +28092,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:897", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -26244,7 +28116,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:898", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -26270,7 +28142,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2956", + "location": "imgui_internal:3364", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -26287,7 +28159,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:353", + "location": "imgui:398", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -26321,7 +28193,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2954", + "location": "imgui_internal:3362", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -26338,7 +28210,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:354", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -26346,6 +28218,34 @@ "stname": "" } ], + "igIsWindowContentHoverable": [ + { + "args": "(ImGuiWindow* window,ImGuiHoveredFlags flags)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "flags", + "type": "ImGuiHoveredFlags" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiHoveredFlags flags=0)", + "call_args": "(window,flags)", + "cimguiname": "igIsWindowContentHoverable", + "defaults": { + "flags": "0" + }, + "funcname": "IsWindowContentHoverable", + "location": "imgui_internal:3476", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowContentHoverable", + "ret": "bool", + "signature": "(ImGuiWindow*,ImGuiHoveredFlags)", + "stname": "" + } + ], "igIsWindowDocked": [ { "args": "()", @@ -26355,7 +28255,7 @@ "cimguiname": "igIsWindowDocked", "defaults": {}, "funcname": "IsWindowDocked", - "location": "imgui:820", + "location": "imgui:890", "namespace": "ImGui", "ov_cimguiname": "igIsWindowDocked", "ret": "bool", @@ -26379,7 +28279,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:355", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -26403,7 +28303,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:356", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -26425,7 +28325,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2957", + "location": "imgui_internal:3365", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -26451,7 +28351,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:2955", + "location": "imgui_internal:3363", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -26488,7 +28388,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3053", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -26498,7 +28398,7 @@ ], "igItemHoverable": [ { - "args": "(const ImRect bb,ImGuiID id)", + "args": "(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags)", "argsT": [ { "name": "bb", @@ -26507,18 +28407,22 @@ { "name": "id", "type": "ImGuiID" + }, + { + "name": "item_flags", + "type": "ImGuiItemFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id)", - "call_args": "(bb,id)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiItemFlags item_flags)", + "call_args": "(bb,id,item_flags)", "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3054", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", - "signature": "(const ImRect,ImGuiID)", + "signature": "(const ImRect,ImGuiID,ImGuiItemFlags)", "stname": "" } ], @@ -26542,7 +28446,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3051", + "location": "imgui_internal:3472", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -26568,7 +28472,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3052", + "location": "imgui_internal:3473", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -26590,7 +28494,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3045", + "location": "imgui_internal:3465", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -26621,7 +28525,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:501", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -26651,7 +28555,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:502", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -26691,7 +28595,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:643", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -26699,7 +28603,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)", "argsT": [ { "name": "label", @@ -26710,13 +28614,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -26728,18 +28632,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,height_in_items)", "cimguiname": "igListBox", "defaults": { "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:644", + "location": "imgui:706", "namespace": "ImGui", - "ov_cimguiname": "igListBox_FnBoolPtr", + "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -26757,7 +28661,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:959", + "location": "imgui:1055", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -26785,7 +28689,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:960", + "location": "imgui:1056", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -26807,7 +28711,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3019", + "location": "imgui_internal:3439", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -26833,7 +28737,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3018", + "location": "imgui_internal:3438", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -26859,7 +28763,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3069", + "location": "imgui_internal:3490", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -26876,7 +28780,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:828", + "location": "imgui:898", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -26893,7 +28797,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:827", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -26925,7 +28829,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3071", + "location": "imgui_internal:3492", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -26951,7 +28855,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3072", + "location": "imgui_internal:3493", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -26978,7 +28882,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:829", + "location": "imgui:899", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -27005,7 +28909,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:830", + "location": "imgui:900", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -27029,7 +28933,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3070", + "location": "imgui_internal:3491", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -27053,7 +28957,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:826", + "location": "imgui:896", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -27082,7 +28986,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:825", + "location": "imgui:895", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -27106,7 +29010,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:824", + "location": "imgui:894", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -27123,7 +29027,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3007", + "location": "imgui_internal:3424", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -27143,7 +29047,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3008", + "location": "imgui_internal:3425", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -27165,7 +29069,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3046", + "location": "imgui_internal:3466", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -27187,7 +29091,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:974", + "location": "imgui:1077", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -27209,7 +29113,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:975", + "location": "imgui:1078", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -27247,7 +29151,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:671", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -27281,7 +29185,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:672", + "location": "imgui:734", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -27323,7 +29227,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3092", + "location": "imgui_internal:3519", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -27345,7 +29249,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3136", + "location": "imgui_internal:3574", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -27353,6 +29257,174 @@ "stname": "" } ], + "igMultiSelectAddSetAll": [ + { + "args": "(ImGuiMultiSelectTempData* ms,bool selected)", + "argsT": [ + { + "name": "ms", + "type": "ImGuiMultiSelectTempData*" + }, + { + "name": "selected", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiMultiSelectTempData* ms,bool selected)", + "call_args": "(ms,selected)", + "cimguiname": "igMultiSelectAddSetAll", + "defaults": {}, + "funcname": "MultiSelectAddSetAll", + "location": "imgui_internal:3723", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectAddSetAll", + "ret": "void", + "signature": "(ImGuiMultiSelectTempData*,bool)", + "stname": "" + } + ], + "igMultiSelectAddSetRange": [ + { + "args": "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)", + "argsT": [ + { + "name": "ms", + "type": "ImGuiMultiSelectTempData*" + }, + { + "name": "selected", + "type": "bool" + }, + { + "name": "range_dir", + "type": "int" + }, + { + "name": "first_item", + "type": "ImGuiSelectionUserData" + }, + { + "name": "last_item", + "type": "ImGuiSelectionUserData" + } + ], + "argsoriginal": "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)", + "call_args": "(ms,selected,range_dir,first_item,last_item)", + "cimguiname": "igMultiSelectAddSetRange", + "defaults": {}, + "funcname": "MultiSelectAddSetRange", + "location": "imgui_internal:3724", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectAddSetRange", + "ret": "void", + "signature": "(ImGuiMultiSelectTempData*,bool,int,ImGuiSelectionUserData,ImGuiSelectionUserData)", + "stname": "" + } + ], + "igMultiSelectItemFooter": [ + { + "args": "(ImGuiID id,bool* p_selected,bool* p_pressed)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "p_selected", + "type": "bool*" + }, + { + "name": "p_pressed", + "type": "bool*" + } + ], + "argsoriginal": "(ImGuiID id,bool* p_selected,bool* p_pressed)", + "call_args": "(id,p_selected,p_pressed)", + "cimguiname": "igMultiSelectItemFooter", + "defaults": {}, + "funcname": "MultiSelectItemFooter", + "location": "imgui_internal:3722", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectItemFooter", + "ret": "void", + "signature": "(ImGuiID,bool*,bool*)", + "stname": "" + } + ], + "igMultiSelectItemHeader": [ + { + "args": "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "p_selected", + "type": "bool*" + }, + { + "name": "p_button_flags", + "type": "ImGuiButtonFlags*" + } + ], + "argsoriginal": "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)", + "call_args": "(id,p_selected,p_button_flags)", + "cimguiname": "igMultiSelectItemHeader", + "defaults": {}, + "funcname": "MultiSelectItemHeader", + "location": "imgui_internal:3721", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectItemHeader", + "ret": "void", + "signature": "(ImGuiID,bool*,ImGuiButtonFlags*)", + "stname": "" + } + ], + "igNavClearPreferredPosForAxis": [ + { + "args": "(ImGuiAxis axis)", + "argsT": [ + { + "name": "axis", + "type": "ImGuiAxis" + } + ], + "argsoriginal": "(ImGuiAxis axis)", + "call_args": "(axis)", + "cimguiname": "igNavClearPreferredPosForAxis", + "defaults": {}, + "funcname": "NavClearPreferredPosForAxis", + "location": "imgui_internal:3538", + "namespace": "ImGui", + "ov_cimguiname": "igNavClearPreferredPosForAxis", + "ret": "void", + "signature": "(ImGuiAxis)", + "stname": "" + } + ], + "igNavHighlightActivated": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igNavHighlightActivated", + "defaults": {}, + "funcname": "NavHighlightActivated", + "location": "imgui_internal:3537", + "namespace": "ImGui", + "ov_cimguiname": "igNavHighlightActivated", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igNavInitRequestApplyResult": [ { "args": "()", @@ -27362,7 +29434,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3101", + "location": "imgui_internal:3528", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -27388,7 +29460,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3100", + "location": "imgui_internal:3527", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -27405,7 +29477,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3107", + "location": "imgui_internal:3535", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -27422,7 +29494,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3102", + "location": "imgui_internal:3529", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -27439,7 +29511,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3106", + "location": "imgui_internal:3534", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -27473,7 +29545,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3104", + "location": "imgui_internal:3531", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -27495,7 +29567,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3105", + "location": "imgui_internal:3532", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -27503,6 +29575,32 @@ "stname": "" } ], + "igNavMoveRequestResolveWithPastTreeNode": [ + { + "args": "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)", + "argsT": [ + { + "name": "result", + "type": "ImGuiNavItemData*" + }, + { + "name": "tree_node_data", + "type": "ImGuiTreeNodeStackData*" + } + ], + "argsoriginal": "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)", + "call_args": "(result,tree_node_data)", + "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", + "defaults": {}, + "funcname": "NavMoveRequestResolveWithPastTreeNode", + "location": "imgui_internal:3533", + "namespace": "ImGui", + "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", + "ret": "void", + "signature": "(ImGuiNavItemData*,ImGuiTreeNodeStackData*)", + "stname": "" + } + ], "igNavMoveRequestSubmit": [ { "args": "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags)", @@ -27529,7 +29627,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3103", + "location": "imgui_internal:3530", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -27555,7 +29653,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3108", + "location": "imgui_internal:3536", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -27563,6 +29661,40 @@ "stname": "" } ], + "igNavRestoreHighlightAfterMove": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igNavRestoreHighlightAfterMove", + "defaults": {}, + "funcname": "NavRestoreHighlightAfterMove", + "location": "imgui_internal:3539", + "namespace": "ImGui", + "ov_cimguiname": "igNavRestoreHighlightAfterMove", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igNavUpdateCurrentWindowIsScrollPushableX": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", + "defaults": {}, + "funcname": "NavUpdateCurrentWindowIsScrollPushableX", + "location": "imgui_internal:3540", + "namespace": "ImGui", + "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igNewFrame": [ { "args": "()", @@ -27572,7 +29704,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:302", + "location": "imgui:337", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -27589,7 +29721,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:449", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -27606,7 +29738,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:785", + "location": "imgui:855", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -27634,7 +29766,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:705", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -27660,7 +29792,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:706", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -27688,7 +29820,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3076", + "location": "imgui_internal:3500", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -27717,7 +29849,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:707", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -27727,7 +29859,7 @@ ], "igPlotEx": [ { - "args": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)", + "args": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg)", "argsT": [ { "name": "plot_type", @@ -27768,20 +29900,20 @@ "type": "float" }, { - "name": "frame_size", - "type": "ImVec2" + "name": "size_arg", + "type": "const ImVec2" } ], - "argsoriginal": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)", - "call_args": "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size)", + "argsoriginal": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2& size_arg)", + "call_args": "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,size_arg)", "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3427", + "location": "imgui_internal:3909", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", - "signature": "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", + "signature": "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,const ImVec2)", "stname": "" } ], @@ -27826,7 +29958,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "defaults": { @@ -27838,7 +29970,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:650", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -27887,7 +30019,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "defaults": { @@ -27898,7 +30030,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:651", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -27947,7 +30079,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "defaults": { @@ -27959,7 +30091,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:648", + "location": "imgui:710", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -28008,7 +30140,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "defaults": { @@ -28019,7 +30151,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:649", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -28027,40 +30159,6 @@ "stname": "" } ], - "igPopAllowKeyboardFocus": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopAllowKeyboardFocus", - "defaults": {}, - "funcname": "PopAllowKeyboardFocus", - "location": "imgui:418", - "namespace": "ImGui", - "ov_cimguiname": "igPopAllowKeyboardFocus", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igPopButtonRepeat": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopButtonRepeat", - "defaults": {}, - "funcname": "PopButtonRepeat", - "location": "imgui:420", - "namespace": "ImGui", - "ov_cimguiname": "igPopButtonRepeat", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igPopClipRect": [ { "args": "()", @@ -28070,7 +30168,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:855", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -28087,7 +30185,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3267", + "location": "imgui_internal:3734", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -28104,7 +30202,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3251", + "location": "imgui_internal:3700", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -28121,7 +30219,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:410", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -28138,7 +30236,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:486", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -28155,7 +30253,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:3066", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -28172,7 +30270,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:424", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -28196,7 +30294,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:413", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -28220,7 +30318,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:416", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -28237,7 +30335,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:428", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -28262,7 +30360,7 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "defaults": { @@ -28270,7 +30368,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:518", + "location": "imgui:563", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -28278,50 +30376,6 @@ "stname": "" } ], - "igPushAllowKeyboardFocus": [ - { - "args": "(bool allow_keyboard_focus)", - "argsT": [ - { - "name": "allow_keyboard_focus", - "type": "bool" - } - ], - "argsoriginal": "(bool allow_keyboard_focus)", - "call_args": "(allow_keyboard_focus)", - "cimguiname": "igPushAllowKeyboardFocus", - "defaults": {}, - "funcname": "PushAllowKeyboardFocus", - "location": "imgui:417", - "namespace": "ImGui", - "ov_cimguiname": "igPushAllowKeyboardFocus", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], - "igPushButtonRepeat": [ - { - "args": "(bool repeat)", - "argsT": [ - { - "name": "repeat", - "type": "bool" - } - ], - "argsoriginal": "(bool repeat)", - "call_args": "(repeat)", - "cimguiname": "igPushButtonRepeat", - "defaults": {}, - "funcname": "PushButtonRepeat", - "location": "imgui:419", - "namespace": "ImGui", - "ov_cimguiname": "igPushButtonRepeat", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], "igPushClipRect": [ { "args": "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)", @@ -28344,7 +30398,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:854", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -28366,7 +30420,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3265", + "location": "imgui_internal:3732", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -28383,7 +30437,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3266", + "location": "imgui_internal:3733", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -28405,7 +30459,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3250", + "location": "imgui_internal:3699", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -28427,7 +30481,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:409", + "location": "imgui:446", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -28449,7 +30503,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:482", + "location": "imgui:525", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -28473,7 +30527,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:483", + "location": "imgui:526", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -28493,7 +30547,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:484", + "location": "imgui:527", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -28513,7 +30567,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:485", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -28539,7 +30593,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:3065", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -28561,7 +30615,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:423", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -28587,7 +30641,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3059", + "location": "imgui_internal:3481", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -28609,7 +30663,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3047", + "location": "imgui_internal:3467", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -28635,7 +30689,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:411", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -28659,7 +30713,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:412", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -28685,7 +30739,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:414", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -28709,7 +30763,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:415", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -28717,6 +30771,58 @@ "stname": "" } ], + "igPushStyleVarX": [ + { + "args": "(ImGuiStyleVar idx,float val_x)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_x", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_x)", + "call_args": "(idx,val_x)", + "cimguiname": "igPushStyleVarX", + "defaults": {}, + "funcname": "PushStyleVarX", + "location": "imgui:453", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarX", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], + "igPushStyleVarY": [ + { + "args": "(ImGuiStyleVar idx,float val_y)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_y", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_y)", + "call_args": "(idx,val_y)", + "cimguiname": "igPushStyleVarY", + "defaults": {}, + "funcname": "PushStyleVarY", + "location": "imgui:454", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarY", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], "igPushTextWrapPos": [ { "args": "(float wrap_local_pos_x)", @@ -28733,7 +30839,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:427", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -28759,7 +30865,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:516", + "location": "imgui:561", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -28787,7 +30893,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:517", + "location": "imgui:562", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -28813,7 +30919,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:2994", + "location": "imgui_internal:3411", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -28835,7 +30941,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:3014", + "location": "imgui_internal:3428", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -28852,7 +30958,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:304", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -28892,7 +30998,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3358", + "location": "imgui_internal:3834", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -28926,7 +31032,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:3362", + "location": "imgui_internal:3838", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -28964,7 +31070,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3361", + "location": "imgui_internal:3837", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -28994,7 +31100,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3359", + "location": "imgui_internal:3835", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -29028,7 +31134,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3360", + "location": "imgui_internal:3836", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -29081,7 +31187,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3352", + "location": "imgui_internal:3828", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -29091,29 +31197,33 @@ ], "igRenderDragDropTargetRect": [ { - "args": "(const ImRect bb)", + "args": "(const ImRect bb,const ImRect item_clip_rect)", "argsT": [ { "name": "bb", "type": "const ImRect" + }, + { + "name": "item_clip_rect", + "type": "const ImRect" } ], - "argsoriginal": "(const ImRect& bb)", - "call_args": "(bb)", + "argsoriginal": "(const ImRect& bb,const ImRect& item_clip_rect)", + "call_args": "(bb,item_clip_rect)", "cimguiname": "igRenderDragDropTargetRect", "defaults": {}, "funcname": "RenderDragDropTargetRect", - "location": "imgui_internal:3259", + "location": "imgui_internal:3708", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRect", "ret": "void", - "signature": "(const ImRect)", + "signature": "(const ImRect,const ImRect)", "stname": "" } ], "igRenderFrame": [ { - "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)", + "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding)", "argsT": [ { "name": "p_min", @@ -29128,7 +31238,7 @@ "type": "ImU32" }, { - "name": "border", + "name": "borders", "type": "bool" }, { @@ -29136,15 +31246,15 @@ "type": "float" } ], - "argsoriginal": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border=true,float rounding=0.0f)", - "call_args": "(p_min,p_max,fill_col,border,rounding)", + "argsoriginal": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders=true,float rounding=0.0f)", + "call_args": "(p_min,p_max,fill_col,borders,rounding)", "cimguiname": "igRenderFrame", "defaults": { - "border": "true", + "borders": "true", "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3350", + "location": "imgui_internal:3826", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -29176,7 +31286,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3351", + "location": "imgui_internal:3827", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -29218,7 +31328,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3355", + "location": "imgui_internal:3831", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -29243,14 +31353,14 @@ "type": "ImGuiNavHighlightFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_TypeDefault)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_None)", "call_args": "(bb,id,flags)", "cimguiname": "igRenderNavHighlight", "defaults": { - "flags": "ImGuiNavHighlightFlags_TypeDefault" + "flags": "ImGuiNavHighlightFlags_None" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:3353", + "location": "imgui_internal:3829", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -29279,7 +31389,7 @@ "renderer_render_arg": "NULL" }, "funcname": "RenderPlatformWindowsDefault", - "location": "imgui:982", + "location": "imgui:1084", "namespace": "ImGui", "ov_cimguiname": "igRenderPlatformWindowsDefault", "ret": "void", @@ -29321,7 +31431,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:3363", + "location": "imgui_internal:3839", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -29359,7 +31469,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3364", + "location": "imgui_internal:3840", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -29396,7 +31506,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3345", + "location": "imgui_internal:3821", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -29445,7 +31555,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3347", + "location": "imgui_internal:3823", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -29498,7 +31608,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3348", + "location": "imgui_internal:3824", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -29548,7 +31658,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3349", + "location": "imgui_internal:3825", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -29582,7 +31692,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3346", + "location": "imgui_internal:3822", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -29606,7 +31716,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:945", + "location": "imgui:1041", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -29635,7 +31745,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:448", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -29657,7 +31767,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:961", + "location": "imgui:1057", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -29681,7 +31791,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:962", + "location": "imgui:1058", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -29707,7 +31817,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:2999", + "location": "imgui_internal:3416", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -29733,7 +31843,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3032", + "location": "imgui_internal:3452", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -29757,7 +31867,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3028", + "location": "imgui_internal:3448", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -29789,7 +31899,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3029", + "location": "imgui_internal:3449", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -29825,7 +31935,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3030", + "location": "imgui_internal:3450", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -29848,7 +31958,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3379", + "location": "imgui_internal:3856", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -29894,7 +32004,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:3380", + "location": "imgui_internal:3857", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -29932,7 +32042,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:632", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -29967,7 +32077,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:633", + "location": "imgui:683", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -29984,7 +32094,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:447", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -29994,23 +32104,85 @@ ], "igSeparatorEx": [ { - "args": "(ImGuiSeparatorFlags flags)", + "args": "(ImGuiSeparatorFlags flags,float thickness)", "argsT": [ { "name": "flags", "type": "ImGuiSeparatorFlags" + }, + { + "name": "thickness", + "type": "float" } ], - "argsoriginal": "(ImGuiSeparatorFlags flags)", - "call_args": "(flags)", + "argsoriginal": "(ImGuiSeparatorFlags flags,float thickness=1.0f)", + "call_args": "(flags,thickness)", "cimguiname": "igSeparatorEx", - "defaults": {}, + "defaults": { + "thickness": "1.0f" + }, "funcname": "SeparatorEx", - "location": "imgui_internal:3372", + "location": "imgui_internal:3848", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", - "signature": "(ImGuiSeparatorFlags)", + "signature": "(ImGuiSeparatorFlags,float)", + "stname": "" + } + ], + "igSeparatorText": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igSeparatorText", + "defaults": {}, + "funcname": "SeparatorText", + "location": "imgui:549", + "namespace": "ImGui", + "ov_cimguiname": "igSeparatorText", + "ret": "void", + "signature": "(const char*)", + "stname": "" + } + ], + "igSeparatorTextEx": [ + { + "args": "(ImGuiID id,const char* label,const char* label_end,float extra_width)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "label", + "type": "const char*" + }, + { + "name": "label_end", + "type": "const char*" + }, + { + "name": "extra_width", + "type": "float" + } + ], + "argsoriginal": "(ImGuiID id,const char* label,const char* label_end,float extra_width)", + "call_args": "(id,label,label_end,extra_width)", + "cimguiname": "igSeparatorTextEx", + "defaults": {}, + "funcname": "SeparatorTextEx", + "location": "imgui_internal:3849", + "namespace": "ImGui", + "ov_cimguiname": "igSeparatorTextEx", + "ret": "void", + "signature": "(ImGuiID,const char*,const char*,float)", "stname": "" } ], @@ -30032,7 +32204,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3040", + "location": "imgui_internal:3460", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -30049,7 +32221,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3142", + "location": "imgui_internal:3581", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -30081,7 +32253,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:972", + "location": "imgui:1075", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -30103,7 +32275,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:953", + "location": "imgui:1049", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -30125,7 +32297,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:607", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -30151,7 +32323,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:790", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -30177,7 +32349,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:788", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -30199,7 +32371,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:297", + "location": "imgui:331", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -30221,7 +32393,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:2976", + "location": "imgui_internal:3391", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -30247,7 +32419,7 @@ "cimguiname": "igSetCurrentViewport", "defaults": {}, "funcname": "SetCurrentViewport", - "location": "imgui_internal:3002", + "location": "imgui_internal:3419", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentViewport", "ret": "void", @@ -30269,7 +32441,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:459", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -30291,7 +32463,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:460", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -30313,7 +32485,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:461", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -30335,7 +32507,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:464", + "location": "imgui:488", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -30371,7 +32543,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:838", + "location": "imgui:908", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -30397,7 +32569,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3041", + "location": "imgui_internal:3461", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -30419,7 +32591,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3044", + "location": "imgui_internal:3464", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -30427,23 +32599,6 @@ "stname": "" } ], - "igSetItemAllowOverlap": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igSetItemAllowOverlap", - "defaults": {}, - "funcname": "SetItemAllowOverlap", - "location": "imgui:882", - "namespace": "ImGui", - "ov_cimguiname": "igSetItemAllowOverlap", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igSetItemDefaultFocus": [ { "args": "()", @@ -30453,7 +32608,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:859", + "location": "imgui:930", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -30462,6 +32617,26 @@ } ], "igSetItemKeyOwner": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igSetItemKeyOwner", + "defaults": {}, + "funcname": "SetItemKeyOwner", + "location": "imgui:1023", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemKeyOwner_Nil", + "ret": "void", + "signature": "(ImGuiKey)", + "stname": "" + }, { "args": "(ImGuiKey key,ImGuiInputFlags flags)", "argsT": [ @@ -30474,21 +32649,72 @@ "type": "ImGuiInputFlags" } ], - "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags=0)", + "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags)", "call_args": "(key,flags)", "cimguiname": "igSetItemKeyOwner", - "defaults": { - "flags": "0" - }, + "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3158", + "location": "imgui_internal:3598", "namespace": "ImGui", - "ov_cimguiname": "igSetItemKeyOwner", + "ov_cimguiname": "igSetItemKeyOwner_InputFlags", "ret": "void", "signature": "(ImGuiKey,ImGuiInputFlags)", "stname": "" } ], + "igSetItemTooltip": [ + { + "args": "(const char* fmt,...)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "...", + "type": "..." + } + ], + "argsoriginal": "(const char* fmt,...)", + "call_args": "(fmt,...)", + "cimguiname": "igSetItemTooltip", + "defaults": {}, + "funcname": "SetItemTooltip", + "isvararg": "...)", + "location": "imgui:750", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltip", + "ret": "void", + "signature": "(const char*,...)", + "stname": "" + } + ], + "igSetItemTooltipV": [ + { + "args": "(const char* fmt,va_list args)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "args", + "type": "va_list" + } + ], + "argsoriginal": "(const char* fmt,va_list args)", + "call_args": "(fmt,args)", + "cimguiname": "igSetItemTooltipV", + "defaults": {}, + "funcname": "SetItemTooltipV", + "location": "imgui:751", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltipV", + "ret": "void", + "signature": "(const char*,va_list)", + "stname": "" + } + ], "igSetKeyOwner": [ { "args": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)", @@ -30513,7 +32739,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3157", + "location": "imgui_internal:3596", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -30521,6 +32747,38 @@ "stname": "" } ], + "igSetKeyOwnersForKeyChord": [ + { + "args": "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKeyChord" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags=0)", + "call_args": "(key,owner_id,flags)", + "cimguiname": "igSetKeyOwnersForKeyChord", + "defaults": { + "flags": "0" + }, + "funcname": "SetKeyOwnersForKeyChord", + "location": "imgui_internal:3597", + "namespace": "ImGui", + "ov_cimguiname": "igSetKeyOwnersForKeyChord", + "ret": "void", + "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "stname": "" + } + ], "igSetKeyboardFocusHere": [ { "args": "(int offset)", @@ -30537,7 +32795,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:860", + "location": "imgui:931", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -30571,7 +32829,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3056", + "location": "imgui_internal:3478", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -30593,7 +32851,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:947", + "location": "imgui:1043", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -30601,6 +32859,28 @@ "stname": "" } ], + "igSetNavFocusScope": [ + { + "args": "(ImGuiID focus_scope_id)", + "argsT": [ + { + "name": "focus_scope_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID focus_scope_id)", + "call_args": "(focus_scope_id)", + "cimguiname": "igSetNavFocusScope", + "defaults": {}, + "funcname": "SetNavFocusScope", + "location": "imgui_internal:3543", + "namespace": "ImGui", + "ov_cimguiname": "igSetNavFocusScope", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNavID": [ { "args": "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)", @@ -30627,7 +32907,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3111", + "location": "imgui_internal:3542", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -30649,7 +32929,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3110", + "location": "imgui_internal:3541", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -30671,7 +32951,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:927", + "location": "imgui:997", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -30693,7 +32973,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:948", + "location": "imgui:1044", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -30701,6 +32981,23 @@ "stname": "" } ], + "igSetNextItemAllowOverlap": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igSetNextItemAllowOverlap", + "defaults": {}, + "funcname": "SetNextItemAllowOverlap", + "location": "imgui:934", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemAllowOverlap", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igSetNextItemOpen": [ { "args": "(bool is_open,ImGuiCond cond)", @@ -30721,7 +33018,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:627", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -30729,6 +33026,104 @@ "stname": "" } ], + "igSetNextItemRefVal": [ + { + "args": "(ImGuiDataType data_type,void* p_data)", + "argsT": [ + { + "name": "data_type", + "type": "ImGuiDataType" + }, + { + "name": "p_data", + "type": "void*" + } + ], + "argsoriginal": "(ImGuiDataType data_type,void* p_data)", + "call_args": "(data_type,p_data)", + "cimguiname": "igSetNextItemRefVal", + "defaults": {}, + "funcname": "SetNextItemRefVal", + "location": "imgui_internal:3901", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemRefVal", + "ret": "void", + "signature": "(ImGuiDataType,void*)", + "stname": "" + } + ], + "igSetNextItemSelectionUserData": [ + { + "args": "(ImGuiSelectionUserData selection_user_data)", + "argsT": [ + { + "name": "selection_user_data", + "type": "ImGuiSelectionUserData" + } + ], + "argsoriginal": "(ImGuiSelectionUserData selection_user_data)", + "call_args": "(selection_user_data)", + "cimguiname": "igSetNextItemSelectionUserData", + "defaults": {}, + "funcname": "SetNextItemSelectionUserData", + "location": "imgui:694", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemSelectionUserData", + "ret": "void", + "signature": "(ImGuiSelectionUserData)", + "stname": "" + } + ], + "igSetNextItemShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", + "cimguiname": "igSetNextItemShortcut", + "defaults": { + "flags": "0" + }, + "funcname": "SetNextItemShortcut", + "location": "imgui:1015", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemShortcut", + "ret": "void", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + } + ], + "igSetNextItemStorageID": [ + { + "args": "(ImGuiID storage_id)", + "argsT": [ + { + "name": "storage_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID storage_id)", + "call_args": "(storage_id)", + "cimguiname": "igSetNextItemStorageID", + "defaults": {}, + "funcname": "SetNextItemStorageID", + "location": "imgui:677", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemStorageID", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNextItemWidth": [ { "args": "(float item_width)", @@ -30743,7 +33138,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:425", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -30765,7 +33160,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:374", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -30787,7 +33182,7 @@ "cimguiname": "igSetNextWindowClass", "defaults": {}, "funcname": "SetNextWindowClass", - "location": "imgui:818", + "location": "imgui:888", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowClass", "ret": "void", @@ -30815,7 +33210,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:371", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -30837,7 +33232,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:370", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -30865,7 +33260,7 @@ "cond": "0" }, "funcname": "SetNextWindowDockID", - "location": "imgui:817", + "location": "imgui:887", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowDockID", "ret": "void", @@ -30882,7 +33277,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:372", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -30915,7 +33310,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:367", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -30923,6 +33318,28 @@ "stname": "" } ], + "igSetNextWindowRefreshPolicy": [ + { + "args": "(ImGuiWindowRefreshFlags flags)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiWindowRefreshFlags" + } + ], + "argsoriginal": "(ImGuiWindowRefreshFlags flags)", + "call_args": "(flags)", + "cimguiname": "igSetNextWindowRefreshPolicy", + "defaults": {}, + "funcname": "SetNextWindowRefreshPolicy", + "location": "imgui_internal:3388", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowRefreshPolicy", + "ret": "void", + "signature": "(ImGuiWindowRefreshFlags)", + "stname": "" + } + ], "igSetNextWindowScroll": [ { "args": "(const ImVec2 scroll)", @@ -30937,7 +33354,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:373", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -30965,7 +33382,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:368", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -31002,7 +33419,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:369", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -31024,7 +33441,7 @@ "cimguiname": "igSetNextWindowViewport", "defaults": {}, "funcname": "SetNextWindowViewport", - "location": "imgui:375", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowViewport", "ret": "void", @@ -31052,7 +33469,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:405", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -31080,7 +33497,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3024", + "location": "imgui_internal:3444", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -31108,7 +33525,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:406", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -31136,7 +33553,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3025", + "location": "imgui_internal:3445", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -31160,7 +33577,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:403", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -31184,7 +33601,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:404", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -31206,7 +33623,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:399", + "location": "imgui:436", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -31230,7 +33647,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3022", + "location": "imgui_internal:3442", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -31252,7 +33669,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:400", + "location": "imgui:437", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -31276,7 +33693,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3023", + "location": "imgui_internal:3443", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -31286,34 +33703,31 @@ ], "igSetShortcutRouting": [ { - "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", - "call_args": "(key_chord,owner_id,flags)", + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "call_args": "(key_chord,flags,owner_id)", "cimguiname": "igSetShortcutRouting", - "defaults": { - "flags": "0", - "owner_id": "0" - }, + "defaults": {}, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3186", + "location": "imgui_internal:3632", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", - "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "signature": "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -31331,7 +33745,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:903", + "location": "imgui:974", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -31353,7 +33767,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:800", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -31380,7 +33794,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:678", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -31406,7 +33820,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:679", + "location": "imgui:743", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -31432,7 +33846,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3262", + "location": "imgui_internal:3729", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -31460,7 +33874,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:378", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -31490,7 +33904,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:383", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -31520,7 +33934,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2960", + "location": "imgui_internal:3368", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -31550,7 +33964,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:3216", + "location": "imgui_internal:3665", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -31567,7 +33981,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:379", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -31587,7 +34001,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:384", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -31609,7 +34023,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:380", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -31617,6 +34031,28 @@ "stname": "" } ], + "igSetWindowHiddenAndSkipItemsForCurrentFrame": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", + "defaults": {}, + "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", + "location": "imgui_internal:3370", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igSetWindowHitTestHole": [ { "args": "(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size)", @@ -31639,7 +34075,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2961", + "location": "imgui_internal:3369", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -31647,6 +34083,32 @@ "stname": "" } ], + "igSetWindowParentWindowForFocusRoute": [ + { + "args": "(ImGuiWindow* window,ImGuiWindow* parent_window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "parent_window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* parent_window)", + "call_args": "(window,parent_window)", + "cimguiname": "igSetWindowParentWindowForFocusRoute", + "defaults": {}, + "funcname": "SetWindowParentWindowForFocusRoute", + "location": "imgui_internal:3371", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiWindow*)", + "stname": "" + } + ], "igSetWindowPos": [ { "args": "(const ImVec2 pos,ImGuiCond cond)", @@ -31667,7 +34129,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:376", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -31697,7 +34159,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:381", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -31727,7 +34189,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2958", + "location": "imgui_internal:3366", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -31755,7 +34217,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:377", + "location": "imgui:422", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -31785,7 +34247,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:382", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -31815,7 +34277,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2959", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -31841,7 +34303,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:3001", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -31887,7 +34349,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3430", + "location": "imgui_internal:3912", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -31937,7 +34399,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3431", + "location": "imgui_internal:3913", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -31945,36 +34407,105 @@ "stname": "" } ], + "igShadeVertsTransformPos": [ + { + "args": "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out)", + "argsT": [ + { + "name": "draw_list", + "type": "ImDrawList*" + }, + { + "name": "vert_start_idx", + "type": "int" + }, + { + "name": "vert_end_idx", + "type": "int" + }, + { + "name": "pivot_in", + "type": "const ImVec2" + }, + { + "name": "cos_a", + "type": "float" + }, + { + "name": "sin_a", + "type": "float" + }, + { + "name": "pivot_out", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2& pivot_in,float cos_a,float sin_a,const ImVec2& pivot_out)", + "call_args": "(draw_list,vert_start_idx,vert_end_idx,pivot_in,cos_a,sin_a,pivot_out)", + "cimguiname": "igShadeVertsTransformPos", + "defaults": {}, + "funcname": "ShadeVertsTransformPos", + "location": "imgui_internal:3914", + "namespace": "ImGui", + "ov_cimguiname": "igShadeVertsTransformPos", + "ret": "void", + "signature": "(ImDrawList*,int,int,const ImVec2,float,float,const ImVec2)", + "stname": "" + } + ], "igShortcut": [ { - "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", - "call_args": "(key_chord,owner_id,flags)", + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", "cimguiname": "igShortcut", "defaults": { - "flags": "0", - "owner_id": "0" + "flags": "0" }, "funcname": "Shortcut", - "location": "imgui_internal:3185", + "location": "imgui:1014", "namespace": "ImGui", - "ov_cimguiname": "igShortcut", + "ov_cimguiname": "igShortcut_Nil", "ret": "bool", - "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + }, + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "call_args": "(key_chord,flags,owner_id)", + "cimguiname": "igShortcut", + "defaults": {}, + "funcname": "Shortcut", + "location": "imgui_internal:3631", + "namespace": "ImGui", + "ov_cimguiname": "igShortcut_ID", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -31994,7 +34525,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:312", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -32018,7 +34549,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:310", + "location": "imgui:345", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -32042,7 +34573,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:308", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -32064,7 +34595,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3451", + "location": "imgui_internal:3936", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -32086,7 +34617,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:315", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -32094,6 +34625,30 @@ "stname": "" } ], + "igShowIDStackToolWindow": [ + { + "args": "(bool* p_open)", + "argsT": [ + { + "name": "p_open", + "type": "bool*" + } + ], + "argsoriginal": "(bool* p_open=((void*)0))", + "call_args": "(p_open)", + "cimguiname": "igShowIDStackToolWindow", + "defaults": { + "p_open": "NULL" + }, + "funcname": "ShowIDStackToolWindow", + "location": "imgui:346", + "namespace": "ImGui", + "ov_cimguiname": "igShowIDStackToolWindow", + "ret": "void", + "signature": "(bool*)", + "stname": "" + } + ], "igShowMetricsWindow": [ { "args": "(bool* p_open)", @@ -32110,7 +34665,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:309", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -32118,30 +34673,6 @@ "stname": "" } ], - "igShowStackToolWindow": [ - { - "args": "(bool* p_open)", - "argsT": [ - { - "name": "p_open", - "type": "bool*" - } - ], - "argsoriginal": "(bool* p_open=((void*)0))", - "call_args": "(p_open)", - "cimguiname": "igShowStackToolWindow", - "defaults": { - "p_open": "NULL" - }, - "funcname": "ShowStackToolWindow", - "location": "imgui:311", - "namespace": "ImGui", - "ov_cimguiname": "igShowStackToolWindow", - "ret": "void", - "signature": "(bool*)", - "stname": "" - } - ], "igShowStyleEditor": [ { "args": "(ImGuiStyle* ref)", @@ -32158,7 +34689,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:313", + "location": "imgui:348", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -32180,7 +34711,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:314", + "location": "imgui:349", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -32197,7 +34728,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:316", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -32227,7 +34758,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3062", + "location": "imgui_internal:3482", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -32244,7 +34775,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2982", + "location": "imgui_internal:3398", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -32291,7 +34822,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:570", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -32345,7 +34876,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3389", + "location": "imgui_internal:3866", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -32390,7 +34921,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:566", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -32435,7 +34966,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:567", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -32480,7 +35011,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:568", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -32525,7 +35056,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:569", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -32570,7 +35101,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:571", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -32615,7 +35146,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:572", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -32660,7 +35191,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:573", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -32705,7 +35236,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:574", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -32754,7 +35285,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:575", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -32807,7 +35338,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:576", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -32829,7 +35360,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:510", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -32846,7 +35377,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:450", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -32908,7 +35439,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3390", + "location": "imgui_internal:3867", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -32930,7 +35461,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:2987", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -32940,7 +35471,7 @@ ], "igStartMouseMovingWindowOrNode": [ { - "args": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)", + "args": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)", "argsT": [ { "name": "window", @@ -32951,16 +35482,16 @@ "type": "ImGuiDockNode*" }, { - "name": "undock_floating_node", + "name": "undock", "type": "bool" } ], - "argsoriginal": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)", - "call_args": "(window,node,undock_floating_node)", + "argsoriginal": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)", + "call_args": "(window,node,undock)", "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:2988", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -32984,7 +35515,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:322", + "location": "imgui:357", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -33008,7 +35539,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:320", + "location": "imgui:355", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -33032,7 +35563,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:321", + "location": "imgui:356", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -33062,7 +35593,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:3330", + "location": "imgui_internal:3805", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -33088,7 +35619,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3332", + "location": "imgui_internal:3807", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -33110,7 +35641,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:3329", + "location": "imgui_internal:3801", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -33136,7 +35667,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3328", + "location": "imgui_internal:3799", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -33144,6 +35675,106 @@ "stname": "" } ], + "igTabBarFindTabByOrder": [ + { + "args": "(ImGuiTabBar* tab_bar,int order)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "order", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,int order)", + "call_args": "(tab_bar,order)", + "cimguiname": "igTabBarFindTabByOrder", + "defaults": {}, + "funcname": "TabBarFindTabByOrder", + "location": "imgui_internal:3800", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarFindTabByOrder", + "ret": "ImGuiTabItem*", + "signature": "(ImGuiTabBar*,int)", + "stname": "" + } + ], + "igTabBarGetCurrentTab": [ + { + "args": "(ImGuiTabBar* tab_bar)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar)", + "call_args": "(tab_bar)", + "cimguiname": "igTabBarGetCurrentTab", + "defaults": {}, + "funcname": "TabBarGetCurrentTab", + "location": "imgui_internal:3802", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarGetCurrentTab", + "ret": "ImGuiTabItem*", + "signature": "(ImGuiTabBar*)", + "stname": "" + } + ], + "igTabBarGetTabName": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "ImGuiTabItem*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "call_args": "(tab_bar,tab)", + "cimguiname": "igTabBarGetTabName", + "defaults": {}, + "funcname": "TabBarGetTabName", + "location": "imgui_internal:3804", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarGetTabName", + "ret": "const char*", + "signature": "(ImGuiTabBar*,ImGuiTabItem*)", + "stname": "" + } + ], + "igTabBarGetTabOrder": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "ImGuiTabItem*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "call_args": "(tab_bar,tab)", + "cimguiname": "igTabBarGetTabOrder", + "defaults": {}, + "funcname": "TabBarGetTabOrder", + "location": "imgui_internal:3803", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarGetTabOrder", + "ret": "int", + "signature": "(ImGuiTabBar*,ImGuiTabItem*)", + "stname": "" + } + ], "igTabBarProcessReorder": [ { "args": "(ImGuiTabBar* tab_bar)", @@ -33158,7 +35789,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3335", + "location": "imgui_internal:3811", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -33166,9 +35797,9 @@ "stname": "" } ], - "igTabBarQueueReorder": [ + "igTabBarQueueFocus": [ { - "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)", + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", "argsT": [ { "name": "tab_bar", @@ -33176,29 +35807,55 @@ }, { "name": "tab", - "type": "const ImGuiTabItem*" + "type": "ImGuiTabItem*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "call_args": "(tab_bar,tab)", + "cimguiname": "igTabBarQueueFocus", + "defaults": {}, + "funcname": "TabBarQueueFocus", + "location": "imgui_internal:3808", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarQueueFocus", + "ret": "void", + "signature": "(ImGuiTabBar*,ImGuiTabItem*)", + "stname": "" + } + ], + "igTabBarQueueReorder": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "ImGuiTabItem*" }, { "name": "offset", "type": "int" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)", + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)", "call_args": "(tab_bar,tab,offset)", "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3333", + "location": "imgui_internal:3809", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", - "signature": "(ImGuiTabBar*,const ImGuiTabItem*,int)", + "signature": "(ImGuiTabBar*,ImGuiTabItem*,int)", "stname": "" } ], "igTabBarQueueReorderFromMousePos": [ { - "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)", + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)", "argsT": [ { "name": "tab_bar", @@ -33206,23 +35863,23 @@ }, { "name": "tab", - "type": "const ImGuiTabItem*" + "type": "ImGuiTabItem*" }, { "name": "mouse_pos", "type": "ImVec2" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)", + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)", "call_args": "(tab_bar,tab,mouse_pos)", "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3334", + "location": "imgui_internal:3810", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", - "signature": "(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)", + "signature": "(ImGuiTabBar*,ImGuiTabItem*,ImVec2)", "stname": "" } ], @@ -33244,7 +35901,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3331", + "location": "imgui_internal:3806", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -33278,7 +35935,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3339", + "location": "imgui_internal:3815", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -33306,7 +35963,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:799", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -33336,7 +35993,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3337", + "location": "imgui_internal:3813", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -33361,7 +36018,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3338", + "location": "imgui_internal:3814", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -33400,7 +36057,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3336", + "location": "imgui_internal:3812", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -33458,7 +36115,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3340", + "location": "imgui_internal:3816", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -33466,6 +36123,61 @@ "stname": "" } ], + "igTableAngledHeadersRow": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableAngledHeadersRow", + "defaults": {}, + "funcname": "TableAngledHeadersRow", + "location": "imgui:834", + "namespace": "ImGui", + "ov_cimguiname": "igTableAngledHeadersRow", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igTableAngledHeadersRowEx": [ + { + "args": "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)", + "argsT": [ + { + "name": "row_id", + "type": "ImGuiID" + }, + { + "name": "angle", + "type": "float" + }, + { + "name": "max_label_width", + "type": "float" + }, + { + "name": "data", + "type": "const ImGuiTableHeaderData*" + }, + { + "name": "data_count", + "type": "int" + } + ], + "argsoriginal": "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)", + "call_args": "(row_id,angle,max_label_width,data,data_count)", + "cimguiname": "igTableAngledHeadersRowEx", + "defaults": {}, + "funcname": "TableAngledHeadersRowEx", + "location": "imgui_internal:3749", + "namespace": "ImGui", + "ov_cimguiname": "igTableAngledHeadersRowEx", + "ret": "void", + "signature": "(ImGuiID,float,float,const ImGuiTableHeaderData*,int)", + "stname": "" + } + ], "igTableBeginApplyRequests": [ { "args": "(ImGuiTable* table)", @@ -33480,7 +36192,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3287", + "location": "imgui_internal:3756", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -33506,7 +36218,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3304", + "location": "imgui_internal:3774", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -33528,7 +36240,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3294", + "location": "imgui_internal:3763", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -33554,7 +36266,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3286", + "location": "imgui_internal:3755", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -33576,7 +36288,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3302", + "location": "imgui_internal:3772", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -33584,6 +36296,32 @@ "stname": "" } ], + "igTableCalcMaxColumnWidth": [ + { + "args": "(const ImGuiTable* table,int column_n)", + "argsT": [ + { + "name": "table", + "type": "const ImGuiTable*" + }, + { + "name": "column_n", + "type": "int" + } + ], + "argsoriginal": "(const ImGuiTable* table,int column_n)", + "call_args": "(table,column_n)", + "cimguiname": "igTableCalcMaxColumnWidth", + "defaults": {}, + "funcname": "TableCalcMaxColumnWidth", + "location": "imgui_internal:3779", + "namespace": "ImGui", + "ov_cimguiname": "igTableCalcMaxColumnWidth", + "ret": "float", + "signature": "(const ImGuiTable*,int)", + "stname": "" + } + ], "igTableDrawBorders": [ { "args": "(ImGuiTable* table)", @@ -33598,7 +36336,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3292", + "location": "imgui_internal:3761", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -33606,25 +36344,29 @@ "stname": "" } ], - "igTableDrawContextMenu": [ + "igTableDrawDefaultContextMenu": [ { - "args": "(ImGuiTable* table)", + "args": "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)", "argsT": [ { "name": "table", "type": "ImGuiTable*" + }, + { + "name": "flags_for_section_to_display", + "type": "ImGuiTableFlags" } ], - "argsoriginal": "(ImGuiTable* table)", - "call_args": "(table)", - "cimguiname": "igTableDrawContextMenu", + "argsoriginal": "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)", + "call_args": "(table,flags_for_section_to_display)", + "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, - "funcname": "TableDrawContextMenu", - "location": "imgui_internal:3293", + "funcname": "TableDrawDefaultContextMenu", + "location": "imgui_internal:3762", "namespace": "ImGui", - "ov_cimguiname": "igTableDrawContextMenu", + "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", - "signature": "(ImGuiTable*)", + "signature": "(ImGuiTable*,ImGuiTableFlags)", "stname": "" } ], @@ -33642,7 +36384,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3305", + "location": "imgui_internal:3775", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -33664,7 +36406,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3303", + "location": "imgui_internal:3773", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -33686,7 +36428,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3284", + "location": "imgui_internal:3753", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -33712,7 +36454,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3300", + "location": "imgui_internal:3770", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -33729,7 +36471,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3315", + "location": "imgui_internal:3785", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -33751,7 +36493,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3313", + "location": "imgui_internal:3783", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -33771,7 +36513,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3314", + "location": "imgui_internal:3784", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -33793,7 +36535,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3321", + "location": "imgui_internal:3791", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -33823,7 +36565,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3306", + "location": "imgui_internal:3776", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -33841,7 +36583,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:774", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -33865,7 +36607,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:778", + "location": "imgui:847", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -33882,7 +36624,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:775", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -33906,7 +36648,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:777", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -33930,7 +36672,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3307", + "location": "imgui_internal:3777", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -33952,7 +36694,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3299", + "location": "imgui_internal:3769", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -33962,11 +36704,11 @@ ], "igTableGetColumnResizeID": [ { - "args": "(const ImGuiTable* table,int column_n,int instance_no)", + "args": "(ImGuiTable* table,int column_n,int instance_no)", "argsT": [ { "name": "table", - "type": "const ImGuiTable*" + "type": "ImGuiTable*" }, { "name": "column_n", @@ -33977,18 +36719,18 @@ "type": "int" } ], - "argsoriginal": "(const ImGuiTable* table,int column_n,int instance_no=0)", + "argsoriginal": "(ImGuiTable* table,int column_n,int instance_no=0)", "call_args": "(table,column_n,instance_no)", "cimguiname": "igTableGetColumnResizeID", "defaults": { "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3308", + "location": "imgui_internal:3778", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", - "signature": "(const ImGuiTable*,int,int)", + "signature": "(ImGuiTable*,int,int)", "stname": "" } ], @@ -34010,7 +36752,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3301", + "location": "imgui_internal:3771", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -34018,6 +36760,23 @@ "stname": "" } ], + "igTableGetHeaderAngledMaxLabelWidth": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", + "defaults": {}, + "funcname": "TableGetHeaderAngledMaxLabelWidth", + "location": "imgui_internal:3746", + "namespace": "ImGui", + "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", + "ret": "float", + "signature": "()", + "stname": "" + } + ], "igTableGetHeaderRowHeight": [ { "args": "()", @@ -34027,7 +36786,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3278", + "location": "imgui_internal:3745", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -34044,7 +36803,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui_internal:3277", + "location": "imgui:849", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -34052,6 +36811,23 @@ "stname": "" } ], + "igTableGetHoveredRow": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableGetHoveredRow", + "defaults": {}, + "funcname": "TableGetHoveredRow", + "location": "imgui_internal:3744", + "namespace": "ImGui", + "ov_cimguiname": "igTableGetHoveredRow", + "ret": "int", + "signature": "()", + "stname": "" + } + ], "igTableGetInstanceData": [ { "args": "(ImGuiTable* table,int instance_no)", @@ -34070,7 +36846,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3296", + "location": "imgui_internal:3765", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -34078,29 +36854,29 @@ "stname": "" } ], - "igTableGetMaxColumnWidth": [ + "igTableGetInstanceID": [ { - "args": "(const ImGuiTable* table,int column_n)", + "args": "(ImGuiTable* table,int instance_no)", "argsT": [ { "name": "table", - "type": "const ImGuiTable*" + "type": "ImGuiTable*" }, { - "name": "column_n", + "name": "instance_no", "type": "int" } ], - "argsoriginal": "(const ImGuiTable* table,int column_n)", - "call_args": "(table,column_n)", - "cimguiname": "igTableGetMaxColumnWidth", + "argsoriginal": "(ImGuiTable* table,int instance_no)", + "call_args": "(table,instance_no)", + "cimguiname": "igTableGetInstanceID", "defaults": {}, - "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:3309", + "funcname": "TableGetInstanceID", + "location": "imgui_internal:3766", "namespace": "ImGui", - "ov_cimguiname": "igTableGetMaxColumnWidth", - "ret": "float", - "signature": "(const ImGuiTable*,int)", + "ov_cimguiname": "igTableGetInstanceID", + "ret": "ImGuiID", + "signature": "(ImGuiTable*,int)", "stname": "" } ], @@ -34113,7 +36889,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:776", + "location": "imgui:845", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -34130,7 +36906,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:773", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -34152,7 +36928,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:765", + "location": "imgui:832", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -34169,7 +36945,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:764", + "location": "imgui:833", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -34191,7 +36967,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3318", + "location": "imgui_internal:3788", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -34213,7 +36989,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3295", + "location": "imgui_internal:3764", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -34230,7 +37006,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:751", + "location": "imgui:819", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -34259,7 +37035,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:750", + "location": "imgui:818", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -34283,7 +37059,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3274", + "location": "imgui_internal:3741", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -34300,7 +37076,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3280", + "location": "imgui_internal:3748", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -34317,7 +37093,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3279", + "location": "imgui_internal:3747", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -34339,7 +37115,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3312", + "location": "imgui_internal:3782", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -34361,7 +37137,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3320", + "location": "imgui_internal:3790", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -34383,7 +37159,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3319", + "location": "imgui_internal:3789", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -34415,7 +37191,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:780", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -34441,7 +37217,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:779", + "location": "imgui:848", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -34463,7 +37239,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:752", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -34493,7 +37269,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3276", + "location": "imgui_internal:3743", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -34519,7 +37295,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3275", + "location": "imgui_internal:3742", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -34541,7 +37317,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3311", + "location": "imgui_internal:3781", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -34567,7 +37343,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3310", + "location": "imgui_internal:3780", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -34584,7 +37360,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3322", + "location": "imgui_internal:3792", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -34610,7 +37386,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3323", + "location": "imgui_internal:3793", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -34632,7 +37408,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3324", + "location": "imgui_internal:3794", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -34670,7 +37446,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:762", + "location": "imgui:830", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -34692,7 +37468,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3288", + "location": "imgui_internal:3757", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -34718,7 +37494,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:763", + "location": "imgui:831", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -34740,7 +37516,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3298", + "location": "imgui_internal:3768", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -34762,7 +37538,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3297", + "location": "imgui_internal:3767", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -34784,7 +37560,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3290", + "location": "imgui_internal:3759", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -34806,7 +37582,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3291", + "location": "imgui_internal:3760", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -34828,7 +37604,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3289", + "location": "imgui_internal:3758", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -34836,6 +37612,28 @@ "stname": "" } ], + "igTeleportMousePos": [ + { + "args": "(const ImVec2 pos)", + "argsT": [ + { + "name": "pos", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& pos)", + "call_args": "(pos)", + "cimguiname": "igTeleportMousePos", + "defaults": {}, + "funcname": "TeleportMousePos", + "location": "imgui_internal:3580", + "namespace": "ImGui", + "ov_cimguiname": "igTeleportMousePos", + "ret": "void", + "signature": "(const ImVec2)", + "stname": "" + } + ], "igTempInputIsActive": [ { "args": "(ImGuiID id)", @@ -34850,7 +37648,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3418", + "location": "imgui_internal:3899", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -34903,7 +37701,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3417", + "location": "imgui_internal:3898", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -34945,7 +37743,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:3416", + "location": "imgui_internal:3897", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -34971,7 +37769,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3159", + "location": "imgui_internal:3599", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -34997,7 +37795,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3187", + "location": "imgui_internal:3633", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -35024,7 +37822,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:493", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -35055,7 +37853,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:495", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -35085,7 +37883,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:496", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -35112,7 +37910,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:497", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -35138,7 +37936,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:498", + "location": "imgui:542", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -35171,7 +37969,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3368", + "location": "imgui_internal:3844", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -35179,6 +37977,56 @@ "stname": "" } ], + "igTextLink": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igTextLink", + "defaults": {}, + "funcname": "TextLink", + "location": "imgui:565", + "namespace": "ImGui", + "ov_cimguiname": "igTextLink", + "ret": "bool", + "signature": "(const char*)", + "stname": "" + } + ], + "igTextLinkOpenURL": [ + { + "args": "(const char* label,const char* url)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "url", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label,const char* url=((void*)0))", + "call_args": "(label,url)", + "cimguiname": "igTextLinkOpenURL", + "defaults": { + "url": "NULL" + }, + "funcname": "TextLinkOpenURL", + "location": "imgui:566", + "namespace": "ImGui", + "ov_cimguiname": "igTextLinkOpenURL", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igTextUnformatted": [ { "args": "(const char* text,const char* text_end)", @@ -35199,7 +38047,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:492", + "location": "imgui:536", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -35225,7 +38073,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:494", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -35252,7 +38100,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:499", + "location": "imgui:543", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -35278,7 +38126,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:500", + "location": "imgui:544", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -35288,7 +38136,7 @@ ], "igTranslateWindowsInViewport": [ { - "args": "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos)", + "args": "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size)", "argsT": [ { "name": "viewport", @@ -35301,18 +38149,26 @@ { "name": "new_pos", "type": "const ImVec2" + }, + { + "name": "old_size", + "type": "const ImVec2" + }, + { + "name": "new_size", + "type": "const ImVec2" } ], - "argsoriginal": "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos)", - "call_args": "(viewport,old_pos,new_pos)", + "argsoriginal": "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos,const ImVec2& old_size,const ImVec2& new_size)", + "call_args": "(viewport,old_pos,new_pos,old_size,new_size)", "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:2998", + "location": "imgui_internal:3415", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", - "signature": "(ImGuiViewportP*,const ImVec2,const ImVec2)", + "signature": "(ImGuiViewportP*,const ImVec2,const ImVec2,const ImVec2,const ImVec2)", "stname": "" } ], @@ -35330,7 +38186,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:611", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -35359,7 +38215,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:612", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -35388,7 +38244,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:613", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -35424,7 +38280,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3391", + "location": "imgui_internal:3870", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -35452,7 +38308,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:616", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -35485,7 +38341,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:617", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -35518,7 +38374,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:618", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -35552,7 +38408,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:619", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -35584,7 +38440,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:620", + "location": "imgui:669", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -35592,12 +38448,34 @@ "stname": "" } ], - "igTreeNodeSetOpen": [ + "igTreeNodeGetOpen": [ { - "args": "(ImGuiID id,bool open)", + "args": "(ImGuiID storage_id)", "argsT": [ { - "name": "id", + "name": "storage_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID storage_id)", + "call_args": "(storage_id)", + "cimguiname": "igTreeNodeGetOpen", + "defaults": {}, + "funcname": "TreeNodeGetOpen", + "location": "imgui_internal:3872", + "namespace": "ImGui", + "ov_cimguiname": "igTreeNodeGetOpen", + "ret": "bool", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igTreeNodeSetOpen": [ + { + "args": "(ImGuiID storage_id,bool open)", + "argsT": [ + { + "name": "storage_id", "type": "ImGuiID" }, { @@ -35605,12 +38483,12 @@ "type": "bool" } ], - "argsoriginal": "(ImGuiID id,bool open)", - "call_args": "(id,open)", + "argsoriginal": "(ImGuiID storage_id,bool open)", + "call_args": "(storage_id,open)", "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3393", + "location": "imgui_internal:3873", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -35620,10 +38498,10 @@ ], "igTreeNodeUpdateNextOpen": [ { - "args": "(ImGuiID id,ImGuiTreeNodeFlags flags)", + "args": "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)", "argsT": [ { - "name": "id", + "name": "storage_id", "type": "ImGuiID" }, { @@ -35631,12 +38509,12 @@ "type": "ImGuiTreeNodeFlags" } ], - "argsoriginal": "(ImGuiID id,ImGuiTreeNodeFlags flags)", - "call_args": "(id,flags)", + "argsoriginal": "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)", + "call_args": "(storage_id,flags)", "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3394", + "location": "imgui_internal:3874", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -35666,7 +38544,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:614", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -35694,7 +38572,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:615", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -35711,7 +38589,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:623", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -35733,7 +38611,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:621", + "location": "imgui:670", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -35753,7 +38631,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:622", + "location": "imgui:671", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -35775,7 +38653,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3392", + "location": "imgui_internal:3871", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -35783,6 +38661,122 @@ "stname": "" } ], + "igTypingSelectFindBestLeadingMatch": [ + { + "args": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)", + "argsT": [ + { + "name": "req", + "type": "ImGuiTypingSelectRequest*" + }, + { + "name": "items_count", + "type": "int" + }, + { + "name": "get_item_name_func", + "ret": "const char*", + "signature": "(void*,int)", + "type": "const char*(*)(void*,int)" + }, + { + "name": "user_data", + "type": "void*" + } + ], + "argsoriginal": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)", + "call_args": "(req,items_count,get_item_name_func,user_data)", + "cimguiname": "igTypingSelectFindBestLeadingMatch", + "defaults": {}, + "funcname": "TypingSelectFindBestLeadingMatch", + "location": "imgui_internal:3714", + "namespace": "ImGui", + "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", + "ret": "int", + "signature": "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*)", + "stname": "" + } + ], + "igTypingSelectFindMatch": [ + { + "args": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "argsT": [ + { + "name": "req", + "type": "ImGuiTypingSelectRequest*" + }, + { + "name": "items_count", + "type": "int" + }, + { + "name": "get_item_name_func", + "ret": "const char*", + "signature": "(void*,int)", + "type": "const char*(*)(void*,int)" + }, + { + "name": "user_data", + "type": "void*" + }, + { + "name": "nav_item_idx", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "call_args": "(req,items_count,get_item_name_func,user_data,nav_item_idx)", + "cimguiname": "igTypingSelectFindMatch", + "defaults": {}, + "funcname": "TypingSelectFindMatch", + "location": "imgui_internal:3712", + "namespace": "ImGui", + "ov_cimguiname": "igTypingSelectFindMatch", + "ret": "int", + "signature": "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)", + "stname": "" + } + ], + "igTypingSelectFindNextSingleCharMatch": [ + { + "args": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "argsT": [ + { + "name": "req", + "type": "ImGuiTypingSelectRequest*" + }, + { + "name": "items_count", + "type": "int" + }, + { + "name": "get_item_name_func", + "ret": "const char*", + "signature": "(void*,int)", + "type": "const char*(*)(void*,int)" + }, + { + "name": "user_data", + "type": "void*" + }, + { + "name": "nav_item_idx", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "call_args": "(req,items_count,get_item_name_func,user_data,nav_item_idx)", + "cimguiname": "igTypingSelectFindNextSingleCharMatch", + "defaults": {}, + "funcname": "TypingSelectFindNextSingleCharMatch", + "location": "imgui_internal:3713", + "namespace": "ImGui", + "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", + "ret": "int", + "signature": "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)", + "stname": "" + } + ], "igUnindent": [ { "args": "(float indent_w)", @@ -35799,7 +38793,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:453", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -35816,7 +38810,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:2986", + "location": "imgui_internal:3402", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -35838,7 +38832,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:2985", + "location": "imgui_internal:3401", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -35855,7 +38849,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:2990", + "location": "imgui_internal:3407", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -35872,7 +38866,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:2989", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -35889,7 +38883,7 @@ "cimguiname": "igUpdatePlatformWindows", "defaults": {}, "funcname": "UpdatePlatformWindows", - "location": "imgui:981", + "location": "imgui:1083", "namespace": "ImGui", "ov_cimguiname": "igUpdatePlatformWindows", "ret": "void", @@ -35919,7 +38913,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2952", + "location": "imgui_internal:3359", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -35927,6 +38921,28 @@ "stname": "" } ], + "igUpdateWindowSkipRefresh": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igUpdateWindowSkipRefresh", + "defaults": {}, + "funcname": "UpdateWindowSkipRefresh", + "location": "imgui_internal:3360", + "namespace": "ImGui", + "ov_cimguiname": "igUpdateWindowSkipRefresh", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igVSliderFloat": [ { "args": "(const char* label,const ImVec2 size,float* v,float v_min,float v_max,const char* format,ImGuiSliderFlags flags)", @@ -35968,7 +38984,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:577", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -36017,7 +39033,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:578", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -36070,7 +39086,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:579", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -36096,7 +39112,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:655", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -36120,7 +39136,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:656", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -36144,7 +39160,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:657", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -36174,7 +39190,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:658", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -36182,6 +39198,68 @@ "stname": "" } ], + "igWindowPosAbsToRel": [ + { + "args": "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "p", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImGuiWindow* window,const ImVec2& p)", + "call_args": "(window,p)", + "cimguiname": "igWindowPosAbsToRel", + "defaults": {}, + "funcname": "WindowPosAbsToRel", + "location": "imgui_internal:3374", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igWindowPosAbsToRel", + "ret": "void", + "signature": "(ImGuiWindow*,const ImVec2)", + "stname": "" + } + ], + "igWindowPosRelToAbs": [ + { + "args": "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "p", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImGuiWindow* window,const ImVec2& p)", + "call_args": "(window,p)", + "cimguiname": "igWindowPosRelToAbs", + "defaults": {}, + "funcname": "WindowPosRelToAbs", + "location": "imgui_internal:3375", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igWindowPosRelToAbs", + "ret": "void", + "signature": "(ImGuiWindow*,const ImVec2)", + "stname": "" + } + ], "igWindowRectAbsToRel": [ { "args": "(ImRect *pOut,ImGuiWindow* window,const ImRect r)", @@ -36204,7 +39282,7 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:2962", + "location": "imgui_internal:3372", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -36235,7 +39313,7 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:2963", + "location": "imgui_internal:3373", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/imgui-sys/third-party/imgui-docking-freetype/definitions.lua b/imgui-sys/third-party/imgui-docking-freetype/definitions.lua index 6090f40..e63d180 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/definitions.lua +++ b/imgui-sys/third-party/imgui-docking-freetype/definitions.lua @@ -11,7 +11,7 @@ defs["ImBitArray_ClearAllBits"][1]["call_args"] = "()" defs["ImBitArray_ClearAllBits"][1]["cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["defaults"] = {} defs["ImBitArray_ClearAllBits"][1]["funcname"] = "ClearAllBits" -defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:587" +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:596" defs["ImBitArray_ClearAllBits"][1]["ov_cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["ret"] = "void" defs["ImBitArray_ClearAllBits"][1]["signature"] = "()" @@ -33,7 +33,7 @@ defs["ImBitArray_ClearBit"][1]["call_args"] = "(n)" defs["ImBitArray_ClearBit"][1]["cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["defaults"] = {} defs["ImBitArray_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:591" +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:600" defs["ImBitArray_ClearBit"][1]["ov_cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["ret"] = "void" defs["ImBitArray_ClearBit"][1]["signature"] = "(int)" @@ -50,7 +50,7 @@ defs["ImBitArray_ImBitArray"][1]["cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["constructor"] = true defs["ImBitArray_ImBitArray"][1]["defaults"] = {} defs["ImBitArray_ImBitArray"][1]["funcname"] = "ImBitArray" -defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:586" +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:595" defs["ImBitArray_ImBitArray"][1]["ov_cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["signature"] = "()" defs["ImBitArray_ImBitArray"][1]["stname"] = "ImBitArray" @@ -68,7 +68,7 @@ defs["ImBitArray_SetAllBits"][1]["call_args"] = "()" defs["ImBitArray_SetAllBits"][1]["cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["defaults"] = {} defs["ImBitArray_SetAllBits"][1]["funcname"] = "SetAllBits" -defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:588" +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:597" defs["ImBitArray_SetAllBits"][1]["ov_cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["ret"] = "void" defs["ImBitArray_SetAllBits"][1]["signature"] = "()" @@ -90,7 +90,7 @@ defs["ImBitArray_SetBit"][1]["call_args"] = "(n)" defs["ImBitArray_SetBit"][1]["cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["defaults"] = {} defs["ImBitArray_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:590" +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:599" defs["ImBitArray_SetBit"][1]["ov_cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["ret"] = "void" defs["ImBitArray_SetBit"][1]["signature"] = "(int)" @@ -115,7 +115,7 @@ defs["ImBitArray_SetBitRange"][1]["call_args"] = "(n,n2)" defs["ImBitArray_SetBitRange"][1]["cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["defaults"] = {} defs["ImBitArray_SetBitRange"][1]["funcname"] = "SetBitRange" -defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:592" +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:601" defs["ImBitArray_SetBitRange"][1]["ov_cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["ret"] = "void" defs["ImBitArray_SetBitRange"][1]["signature"] = "(int,int)" @@ -137,7 +137,7 @@ defs["ImBitArray_TestBit"][1]["call_args"] = "(n)" defs["ImBitArray_TestBit"][1]["cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["defaults"] = {} defs["ImBitArray_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:589" +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:598" defs["ImBitArray_TestBit"][1]["ov_cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["ret"] = "bool" defs["ImBitArray_TestBit"][1]["signature"] = "(int)const" @@ -173,7 +173,7 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" -defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:602" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:611" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -194,7 +194,7 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:605" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:614" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -215,7 +215,7 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" -defs["ImBitVector_Create"][1]["location"] = "imgui_internal:601" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:610" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -236,7 +236,7 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:604" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:613" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -257,7 +257,7 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:603" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:612" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -278,7 +278,7 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" -defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:708" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:715" defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -297,7 +297,7 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" -defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:709" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:716" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -319,7 +319,7 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" -defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:711" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:718" defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -338,7 +338,7 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" -defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:705" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:712" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -357,7 +357,7 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" -defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:706" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:713" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -376,7 +376,7 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" -defs["ImChunkStream_end"][1]["location"] = "imgui_internal:712" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:719" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -398,7 +398,7 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" -defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:710" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:717" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -420,7 +420,7 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" -defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:713" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:720" defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -442,7 +442,7 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" -defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:714" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:721" defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -461,7 +461,7 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" -defs["ImChunkStream_size"][1]["location"] = "imgui_internal:707" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:714" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -484,7 +484,7 @@ defs["ImChunkStream_swap"][1]["call_args"] = "(*rhs)" defs["ImChunkStream_swap"][1]["cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["defaults"] = {} defs["ImChunkStream_swap"][1]["funcname"] = "swap" -defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:715" +defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:722" defs["ImChunkStream_swap"][1]["ov_cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["ret"] = "void" defs["ImChunkStream_swap"][1]["signature"] = "(ImChunkStream_T *)" @@ -517,7 +517,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:2469" +defs["ImColor_HSV"][1]["location"] = "imgui:2859" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -534,7 +534,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:2459" +defs["ImColor_ImColor"][1]["location"] = "imgui:2849" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -560,7 +560,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2460" +defs["ImColor_ImColor"][2]["location"] = "imgui:2850" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -576,7 +576,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:2461" +defs["ImColor_ImColor"][3]["location"] = "imgui:2851" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -602,7 +602,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2462" +defs["ImColor_ImColor"][4]["location"] = "imgui:2852" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -618,7 +618,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:2463" +defs["ImColor_ImColor"][5]["location"] = "imgui:2853" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -652,7 +652,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:2468" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2858" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -686,7 +686,7 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" -defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2517" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:3055" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -702,7 +702,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2514" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:3052" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -723,78 +723,58 @@ defs["ImDrawCmd_destroy"][1]["ret"] = "void" defs["ImDrawCmd_destroy"][1]["signature"] = "(ImDrawCmd*)" defs["ImDrawCmd_destroy"][1]["stname"] = "ImDrawCmd" defs["ImDrawCmd_destroy"]["(ImDrawCmd*)"] = defs["ImDrawCmd_destroy"][1] -defs["ImDrawDataBuilder_Clear"] = {} -defs["ImDrawDataBuilder_Clear"][1] = {} -defs["ImDrawDataBuilder_Clear"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_Clear"][1]["argsT"] = {} -defs["ImDrawDataBuilder_Clear"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_Clear"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_Clear"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_Clear"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_Clear"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_Clear"][1]["cimguiname"] = "ImDrawDataBuilder_Clear" -defs["ImDrawDataBuilder_Clear"][1]["defaults"] = {} -defs["ImDrawDataBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:791" -defs["ImDrawDataBuilder_Clear"][1]["ov_cimguiname"] = "ImDrawDataBuilder_Clear" -defs["ImDrawDataBuilder_Clear"][1]["ret"] = "void" -defs["ImDrawDataBuilder_Clear"][1]["signature"] = "()" -defs["ImDrawDataBuilder_Clear"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_Clear"]["()"] = defs["ImDrawDataBuilder_Clear"][1] -defs["ImDrawDataBuilder_ClearFreeMemory"] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["defaults"] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:792" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ret"] = "void" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["signature"] = "()" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_ClearFreeMemory"]["()"] = defs["ImDrawDataBuilder_ClearFreeMemory"][1] -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["defaults"] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["funcname"] = "FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:794" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ov_cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ret"] = "void" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["signature"] = "()" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"]["()"] = defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1] -defs["ImDrawDataBuilder_GetDrawListCount"] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["defaults"] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["funcname"] = "GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["location"] = "imgui_internal:793" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["ov_cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["ret"] = "int" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["signature"] = "()const" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_GetDrawListCount"]["()const"] = defs["ImDrawDataBuilder_GetDrawListCount"][1] +defs["ImDrawDataBuilder_ImDrawDataBuilder"] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["args"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["argsT"] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["argsoriginal"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["call_args"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["cimguiname"] = "ImDrawDataBuilder_ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["constructor"] = true +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["defaults"] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["funcname"] = "ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["location"] = "imgui_internal:801" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["signature"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["stname"] = "ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"]["()"] = defs["ImDrawDataBuilder_ImDrawDataBuilder"][1] +defs["ImDrawDataBuilder_destroy"] = {} +defs["ImDrawDataBuilder_destroy"][1] = {} +defs["ImDrawDataBuilder_destroy"][1]["args"] = "(ImDrawDataBuilder* self)" +defs["ImDrawDataBuilder_destroy"][1]["argsT"] = {} +defs["ImDrawDataBuilder_destroy"][1]["argsT"][1] = {} +defs["ImDrawDataBuilder_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImDrawDataBuilder_destroy"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" +defs["ImDrawDataBuilder_destroy"][1]["call_args"] = "(self)" +defs["ImDrawDataBuilder_destroy"][1]["cimguiname"] = "ImDrawDataBuilder_destroy" +defs["ImDrawDataBuilder_destroy"][1]["defaults"] = {} +defs["ImDrawDataBuilder_destroy"][1]["destructor"] = true +defs["ImDrawDataBuilder_destroy"][1]["ov_cimguiname"] = "ImDrawDataBuilder_destroy" +defs["ImDrawDataBuilder_destroy"][1]["ret"] = "void" +defs["ImDrawDataBuilder_destroy"][1]["signature"] = "(ImDrawDataBuilder*)" +defs["ImDrawDataBuilder_destroy"][1]["stname"] = "ImDrawDataBuilder" +defs["ImDrawDataBuilder_destroy"]["(ImDrawDataBuilder*)"] = defs["ImDrawDataBuilder_destroy"][1] +defs["ImDrawData_AddDrawList"] = {} +defs["ImDrawData_AddDrawList"][1] = {} +defs["ImDrawData_AddDrawList"][1]["args"] = "(ImDrawData* self,ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["argsT"] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["name"] = "self" +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["type"] = "ImDrawData*" +defs["ImDrawData_AddDrawList"][1]["argsT"][2] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["name"] = "draw_list" +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["type"] = "ImDrawList*" +defs["ImDrawData_AddDrawList"][1]["argsoriginal"] = "(ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["call_args"] = "(draw_list)" +defs["ImDrawData_AddDrawList"][1]["cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["defaults"] = {} +defs["ImDrawData_AddDrawList"][1]["funcname"] = "AddDrawList" +defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3303" +defs["ImDrawData_AddDrawList"][1]["ov_cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["ret"] = "void" +defs["ImDrawData_AddDrawList"][1]["signature"] = "(ImDrawList*)" +defs["ImDrawData_AddDrawList"][1]["stname"] = "ImDrawData" +defs["ImDrawData_AddDrawList"]["(ImDrawList*)"] = defs["ImDrawData_AddDrawList"][1] defs["ImDrawData_Clear"] = {} defs["ImDrawData_Clear"][1] = {} defs["ImDrawData_Clear"][1]["args"] = "(ImDrawData* self)" @@ -807,7 +787,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2751" +defs["ImDrawData_Clear"][1]["location"] = "imgui:3302" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -825,7 +805,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2752" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:3304" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -841,7 +821,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2750" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:3301" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -861,7 +841,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2753" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:3305" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -893,7 +873,7 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" -defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:783" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:792" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -913,7 +893,7 @@ defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["call_args"] = "(m defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["funcname"] = "SetCircleTessellationMaxError" -defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:784" +defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:793" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["signature"] = "(float)" @@ -947,7 +927,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2562" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:3100" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -965,7 +945,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2563" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:3101" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -981,7 +961,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2560" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:3098" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -1001,7 +981,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2565" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:3103" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1025,7 +1005,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2566" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:3104" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1049,7 +1029,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2564" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:3102" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1066,7 +1046,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2561" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:3099" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1107,7 +1087,7 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" -defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2665" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3203" defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1144,7 +1124,7 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" -defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2666" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3204" defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1168,7 +1148,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2690" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3238" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -1203,7 +1183,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2657" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3195" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1234,12 +1214,39 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2658" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3196" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" defs["ImDrawList_AddCircleFilled"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddCircleFilled"]["(const ImVec2,float,ImU32,int)"] = defs["ImDrawList_AddCircleFilled"][1] +defs["ImDrawList_AddConcavePolyFilled"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["name"] = "points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["type"] = "const ImVec2*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["name"] = "num_points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["type"] = "int" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsoriginal"] = "(const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3211" +defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" +defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" +defs["ImDrawList_AddConcavePolyFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddConcavePolyFilled"]["(const ImVec2*,int,ImU32)"] = defs["ImDrawList_AddConcavePolyFilled"][1] defs["ImDrawList_AddConvexPolyFilled"] = {} defs["ImDrawList_AddConvexPolyFilled"][1] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" @@ -1261,7 +1268,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2664" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3210" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1279,12 +1286,86 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2691" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3239" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddDrawCmd"]["()"] = defs["ImDrawList_AddDrawCmd"][1] +defs["ImDrawList_AddEllipse"] = {} +defs["ImDrawList_AddEllipse"][1] = {} +defs["ImDrawList_AddEllipse"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)" +defs["ImDrawList_AddEllipse"][1]["argsT"] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipse"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipse"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipse"][1]["argsT"][7] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["name"] = "thickness" +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)" +defs["ImDrawList_AddEllipse"][1]["call_args"] = "(center,radius,col,rot,num_segments,thickness)" +defs["ImDrawList_AddEllipse"][1]["cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["defaults"] = {} +defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" +defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3199" +defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["ret"] = "void" +defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" +defs["ImDrawList_AddEllipse"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipse"]["(const ImVec2,const ImVec2,ImU32,float,int,float)"] = defs["ImDrawList_AddEllipse"][1] +defs["ImDrawList_AddEllipseFilled"] = {} +defs["ImDrawList_AddEllipseFilled"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipseFilled"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)" +defs["ImDrawList_AddEllipseFilled"][1]["call_args"] = "(center,radius,col,rot,num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3200" +defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" +defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" +defs["ImDrawList_AddEllipseFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipseFilled"]["(const ImVec2,const ImVec2,ImU32,float,int)"] = defs["ImDrawList_AddEllipseFilled"][1] defs["ImDrawList_AddImage"] = {} defs["ImDrawList_AddImage"][1] = {} defs["ImDrawList_AddImage"][1]["args"] = "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)" @@ -1318,7 +1399,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:2672" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:3217" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1371,7 +1452,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2673" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3218" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1414,7 +1495,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2674" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3219" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1445,7 +1526,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:2649" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:3187" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1479,7 +1560,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2659" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3197" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1509,7 +1590,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2660" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3198" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1542,7 +1623,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2663" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3209" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -1579,7 +1660,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2653" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3191" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1612,7 +1693,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2654" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3192" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1651,7 +1732,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:2650" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:3188" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1686,7 +1767,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2651" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3189" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1722,7 +1803,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2652" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3190" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1753,7 +1834,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:2661" +defs["ImDrawList_AddText"][1]["location"] = "imgui:3201" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1796,7 +1877,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:2662" +defs["ImDrawList_AddText"][2]["location"] = "imgui:3202" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1831,7 +1912,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2655" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3193" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1861,7 +1942,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2656" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3194" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1879,7 +1960,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2701" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3249" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1900,7 +1981,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2702" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3250" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1921,7 +2002,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2700" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3248" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1939,7 +2020,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2692" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3240" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1960,7 +2041,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2640" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3178" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1982,7 +2063,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2639" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3177" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -2002,7 +2083,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2631" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3169" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -2035,7 +2116,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2683" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3230" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2065,7 +2146,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2684" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3231" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2096,7 +2177,7 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" -defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2685" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3233" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -2124,7 +2205,7 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" -defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2686" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3234" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2142,12 +2223,70 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:2678" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:3224" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" defs["ImDrawList_PathClear"]["()"] = defs["ImDrawList_PathClear"][1] +defs["ImDrawList_PathEllipticalArcTo"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["name"] = "rot" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["name"] = "a_min" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["name"] = "a_max" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["name"] = "num_segments" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["type"] = "int" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)" +defs["ImDrawList_PathEllipticalArcTo"][1]["call_args"] = "(center,radius,rot,a_min,a_max,num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3232" +defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" +defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" +defs["ImDrawList_PathEllipticalArcTo"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathEllipticalArcTo"]["(const ImVec2,const ImVec2,float,float,float,int)"] = defs["ImDrawList_PathEllipticalArcTo"][1] +defs["ImDrawList_PathFillConcave"] = {} +defs["ImDrawList_PathFillConcave"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["args"] = "(ImDrawList* self,ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["argsT"] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["name"] = "col" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["type"] = "ImU32" +defs["ImDrawList_PathFillConcave"][1]["argsoriginal"] = "(ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" +defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} +defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3228" +defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" +defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" +defs["ImDrawList_PathFillConcave"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathFillConcave"]["(ImU32)"] = defs["ImDrawList_PathFillConcave"][1] defs["ImDrawList_PathFillConvex"] = {} defs["ImDrawList_PathFillConvex"][1] = {} defs["ImDrawList_PathFillConvex"][1]["args"] = "(ImDrawList* self,ImU32 col)" @@ -2163,7 +2302,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2681" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3227" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2184,7 +2323,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2679" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3225" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2205,7 +2344,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2680" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3226" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2237,7 +2376,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:2687" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3235" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -2266,7 +2405,7 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2682" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3229" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2284,7 +2423,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2636" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3174" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2302,7 +2441,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2638" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3176" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2347,7 +2486,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2711" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3259" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2374,7 +2513,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2709" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3257" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2407,7 +2546,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2710" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3258" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2431,7 +2570,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2707" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3255" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2455,7 +2594,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2708" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3256" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2482,7 +2621,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2714" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3262" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2503,7 +2642,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2713" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3261" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2530,7 +2669,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2712" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3260" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2558,7 +2697,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2634" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3172" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -2576,7 +2715,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2635" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3173" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2597,7 +2736,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2637" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3175" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2618,7 +2757,7 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" -defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2729" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:3280" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2636,7 +2775,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2723" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3273" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2654,7 +2793,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2726" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3276" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2672,7 +2811,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2727" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3277" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2690,7 +2829,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2728" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3278" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2723,7 +2862,7 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" -defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2730" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:3281" defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2756,7 +2895,7 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" -defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2731" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:3282" defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2774,7 +2913,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2724" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3274" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2792,12 +2931,33 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2722" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3272" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["stname"] = "ImDrawList" defs["ImDrawList__ResetForNewFrame"]["()"] = defs["ImDrawList__ResetForNewFrame"][1] +defs["ImDrawList__SetTextureID"] = {} +defs["ImDrawList__SetTextureID"][1] = {} +defs["ImDrawList__SetTextureID"][1]["args"] = "(ImDrawList* self,ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["argsT"] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList__SetTextureID"][1]["argsT"][2] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["name"] = "texture_id" +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["type"] = "ImTextureID" +defs["ImDrawList__SetTextureID"][1]["argsoriginal"] = "(ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["call_args"] = "(texture_id)" +defs["ImDrawList__SetTextureID"][1]["cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["defaults"] = {} +defs["ImDrawList__SetTextureID"][1]["funcname"] = "_SetTextureID" +defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3279" +defs["ImDrawList__SetTextureID"][1]["ov_cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["ret"] = "void" +defs["ImDrawList__SetTextureID"][1]["signature"] = "(ImTextureID)" +defs["ImDrawList__SetTextureID"][1]["stname"] = "ImDrawList" +defs["ImDrawList__SetTextureID"]["(ImTextureID)"] = defs["ImDrawList__SetTextureID"][1] defs["ImDrawList__TryMergeDrawCmds"] = {} defs["ImDrawList__TryMergeDrawCmds"][1] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["args"] = "(ImDrawList* self)" @@ -2810,7 +2970,7 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" -defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2725" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3275" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2827,7 +2987,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:2633" +defs["ImDrawList_destroy"][1]["location"] = "imgui:3171" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2844,7 +3004,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2824" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3377" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2861,7 +3021,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2825" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3378" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2914,7 +3074,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2909" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3463" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2938,7 +3098,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2908" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3462" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2959,7 +3119,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2858" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3411" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2981,7 +3141,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2859" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3412" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -3013,7 +3173,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2860" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3413" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3045,7 +3205,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2863" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3416" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3053,7 +3213,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["stname"] = "ImFontA defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"]["(const char*,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1] defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1]["name"] = "self" @@ -3062,7 +3222,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["name"] = "compressed_font_data" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["type"] = "const void*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_size" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_data_size" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -3073,14 +3233,14 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2862" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3415" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3088,7 +3248,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"]["(const void*,int,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] defs["ImFontAtlas_AddFontFromMemoryTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1]["name"] = "self" @@ -3097,7 +3257,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["name"] = "font_data" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["type"] = "void*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_size" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_data_size" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -3108,14 +3268,14 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2861" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3414" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3133,7 +3293,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2874" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:3427" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -3160,7 +3320,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2913" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3467" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -3178,7 +3338,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2867" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3420" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -3196,7 +3356,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2866" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3419" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -3214,7 +3374,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2864" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3417" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -3232,7 +3392,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2865" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3418" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -3253,7 +3413,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2910" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3464" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -3271,7 +3431,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2891" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3445" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -3289,7 +3449,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2892" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3446" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -3307,7 +3467,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2893" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3447" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -3325,7 +3485,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2887" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3441" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -3343,7 +3503,7 @@ defs["ImFontAtlas_GetGlyphRangesGreek"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesGreek"][1]["funcname"] = "GetGlyphRangesGreek" -defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:2888" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3442" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" @@ -3361,7 +3521,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2890" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3444" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -3379,7 +3539,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2889" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3443" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -3397,7 +3557,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2894" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3448" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3415,7 +3575,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2895" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3449" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3448,7 +3608,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2914" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3468" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3479,7 +3639,7 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2875" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3428" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3510,7 +3670,7 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2876" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3429" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3526,7 +3686,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2856" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3409" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3543,7 +3703,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2877" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3430" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3564,7 +3724,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2878" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3431" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3581,7 +3741,7 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true -defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2857" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3410" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3598,7 +3758,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2784" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:3337" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3634,7 +3794,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2809" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:3362" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3655,7 +3815,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2811" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:3364" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3680,7 +3840,7 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2810" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:3363" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3701,7 +3861,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2812" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:3365" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3719,7 +3879,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2806" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:3359" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3740,7 +3900,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2807" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:3360" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3756,7 +3916,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2805" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:3358" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3776,7 +3936,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2808" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:3361" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3843,7 +4003,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:3002" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3558" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3871,7 +4031,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3003" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3559" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3889,7 +4049,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2999" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3555" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3930,7 +4090,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2993" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3549" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3961,7 +4121,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2994" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3550" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3979,7 +4139,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3000" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3556" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -4000,7 +4160,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui:2985" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:3541" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -4021,7 +4181,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2986" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3542" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -4042,7 +4202,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2987" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3543" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -4060,7 +4220,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui:2989" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:3545" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -4081,7 +4241,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui:3001" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3557" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -4097,7 +4257,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui:2983" +defs["ImFont_ImFont"][1]["location"] = "imgui:3539" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -4120,7 +4280,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3005" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3561" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -4138,7 +4298,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui:2988" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:3544" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -4171,7 +4331,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui:2995" +defs["ImFont_RenderChar"][1]["location"] = "imgui:3551" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const" @@ -4218,7 +4378,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui:2996" +defs["ImFont_RenderText"][1]["location"] = "imgui:3552" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -4242,7 +4402,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3004" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3560" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -4259,13 +4419,44 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true -defs["ImFont_destroy"][1]["location"] = "imgui:2984" +defs["ImFont_destroy"][1]["location"] = "imgui:3540" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" defs["ImFont_destroy"][1]["signature"] = "(ImFont*)" defs["ImFont_destroy"][1]["stname"] = "ImFont" defs["ImFont_destroy"]["(ImFont*)"] = defs["ImFont_destroy"][1] +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["args"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["argsT"] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["argsoriginal"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["call_args"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["cimguiname"] = "ImGuiBoxSelectState_ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["constructor"] = true +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["defaults"] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["funcname"] = "ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["location"] = "imgui_internal:1754" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["signature"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["stname"] = "ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"]["()"] = defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1] +defs["ImGuiBoxSelectState_destroy"] = {} +defs["ImGuiBoxSelectState_destroy"][1] = {} +defs["ImGuiBoxSelectState_destroy"][1]["args"] = "(ImGuiBoxSelectState* self)" +defs["ImGuiBoxSelectState_destroy"][1]["argsT"] = {} +defs["ImGuiBoxSelectState_destroy"][1]["argsT"][1] = {} +defs["ImGuiBoxSelectState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiBoxSelectState_destroy"][1]["argsT"][1]["type"] = "ImGuiBoxSelectState*" +defs["ImGuiBoxSelectState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiBoxSelectState_destroy"][1]["cimguiname"] = "ImGuiBoxSelectState_destroy" +defs["ImGuiBoxSelectState_destroy"][1]["defaults"] = {} +defs["ImGuiBoxSelectState_destroy"][1]["destructor"] = true +defs["ImGuiBoxSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_destroy" +defs["ImGuiBoxSelectState_destroy"][1]["ret"] = "void" +defs["ImGuiBoxSelectState_destroy"][1]["signature"] = "(ImGuiBoxSelectState*)" +defs["ImGuiBoxSelectState_destroy"][1]["stname"] = "ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_destroy"]["(ImGuiBoxSelectState*)"] = defs["ImGuiBoxSelectState_destroy"][1] defs["ImGuiComboPreviewData_ImGuiComboPreviewData"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["args"] = "()" @@ -4276,7 +4467,7 @@ defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["cimguiname"] = "ImGuiCom defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["constructor"] = true defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["defaults"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["funcname"] = "ImGuiComboPreviewData" -defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1022" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1058" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4307,7 +4498,7 @@ defs["ImGuiContextHook_ImGuiContextHook"][1]["cimguiname"] = "ImGuiContextHook_I defs["ImGuiContextHook_ImGuiContextHook"][1]["constructor"] = true defs["ImGuiContextHook_ImGuiContextHook"][1]["defaults"] = {} defs["ImGuiContextHook_ImGuiContextHook"][1]["funcname"] = "ImGuiContextHook" -defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1903" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:2177" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4341,7 +4532,7 @@ defs["ImGuiContext_ImGuiContext"][1]["cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["constructor"] = true defs["ImGuiContext_ImGuiContext"][1]["defaults"] = {} defs["ImGuiContext_ImGuiContext"][1]["funcname"] = "ImGuiContext" -defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2212" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2550" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4362,6 +4553,58 @@ defs["ImGuiContext_destroy"][1]["ret"] = "void" defs["ImGuiContext_destroy"][1]["signature"] = "(ImGuiContext*)" defs["ImGuiContext_destroy"][1]["stname"] = "ImGuiContext" defs["ImGuiContext_destroy"]["(ImGuiContext*)"] = defs["ImGuiContext_destroy"][1] +defs["ImGuiDataVarInfo_GetVarPtr"] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["args"] = "(ImGuiDataVarInfo* self,void* parent)" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][1] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][1]["type"] = "ImGuiDataVarInfo*" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][2] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][2]["name"] = "parent" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][2]["type"] = "void*" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsoriginal"] = "(void* parent)" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["call_args"] = "(parent)" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["defaults"] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["funcname"] = "GetVarPtr" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:813" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["ov_cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["ret"] = "void*" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["signature"] = "(void*)const" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["stname"] = "ImGuiDataVarInfo" +defs["ImGuiDataVarInfo_GetVarPtr"]["(void*)const"] = defs["ImGuiDataVarInfo_GetVarPtr"][1] +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["args"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["argsT"] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["argsoriginal"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["call_args"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["constructor"] = true +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["defaults"] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["funcname"] = "ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:2117" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["signature"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["stname"] = "ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"]["()"] = defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1] +defs["ImGuiDebugAllocInfo_destroy"] = {} +defs["ImGuiDebugAllocInfo_destroy"][1] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["args"] = "(ImGuiDebugAllocInfo* self)" +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"][1] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"][1]["type"] = "ImGuiDebugAllocInfo*" +defs["ImGuiDebugAllocInfo_destroy"][1]["call_args"] = "(self)" +defs["ImGuiDebugAllocInfo_destroy"][1]["cimguiname"] = "ImGuiDebugAllocInfo_destroy" +defs["ImGuiDebugAllocInfo_destroy"][1]["defaults"] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["destructor"] = true +defs["ImGuiDebugAllocInfo_destroy"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_destroy" +defs["ImGuiDebugAllocInfo_destroy"][1]["ret"] = "void" +defs["ImGuiDebugAllocInfo_destroy"][1]["signature"] = "(ImGuiDebugAllocInfo*)" +defs["ImGuiDebugAllocInfo_destroy"][1]["stname"] = "ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_destroy"]["(ImGuiDebugAllocInfo*)"] = defs["ImGuiDebugAllocInfo_destroy"][1] defs["ImGuiDockContext_ImGuiDockContext"] = {} defs["ImGuiDockContext_ImGuiDockContext"][1] = {} defs["ImGuiDockContext_ImGuiDockContext"][1]["args"] = "()" @@ -4372,7 +4615,7 @@ defs["ImGuiDockContext_ImGuiDockContext"][1]["cimguiname"] = "ImGuiDockContext_I defs["ImGuiDockContext_ImGuiDockContext"][1]["constructor"] = true defs["ImGuiDockContext_ImGuiDockContext"][1]["defaults"] = {} defs["ImGuiDockContext_ImGuiDockContext"][1]["funcname"] = "ImGuiDockContext" -defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1708" +defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1952" defs["ImGuiDockContext_ImGuiDockContext"][1]["ov_cimguiname"] = "ImGuiDockContext_ImGuiDockContext" defs["ImGuiDockContext_ImGuiDockContext"][1]["signature"] = "()" defs["ImGuiDockContext_ImGuiDockContext"][1]["stname"] = "ImGuiDockContext" @@ -4406,7 +4649,7 @@ defs["ImGuiDockNode_ImGuiDockNode"][1]["cimguiname"] = "ImGuiDockNode_ImGuiDockN defs["ImGuiDockNode_ImGuiDockNode"][1]["constructor"] = true defs["ImGuiDockNode_ImGuiDockNode"][1]["defaults"] = {} defs["ImGuiDockNode_ImGuiDockNode"][1]["funcname"] = "ImGuiDockNode" -defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1665" +defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1906" defs["ImGuiDockNode_ImGuiDockNode"][1]["ov_cimguiname"] = "ImGuiDockNode_ImGuiDockNode" defs["ImGuiDockNode_ImGuiDockNode"][1]["signature"] = "(ImGuiID)" defs["ImGuiDockNode_ImGuiDockNode"][1]["stname"] = "ImGuiDockNode" @@ -4423,7 +4666,7 @@ defs["ImGuiDockNode_IsCentralNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsCentralNode"][1]["cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsCentralNode"][1]["funcname"] = "IsCentralNode" -defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1670" +defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1911" defs["ImGuiDockNode_IsCentralNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsCentralNode"][1]["signature"] = "()const" @@ -4441,7 +4684,7 @@ defs["ImGuiDockNode_IsDockSpace"][1]["call_args"] = "()" defs["ImGuiDockNode_IsDockSpace"][1]["cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["defaults"] = {} defs["ImGuiDockNode_IsDockSpace"][1]["funcname"] = "IsDockSpace" -defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1668" +defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1909" defs["ImGuiDockNode_IsDockSpace"][1]["ov_cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["ret"] = "bool" defs["ImGuiDockNode_IsDockSpace"][1]["signature"] = "()const" @@ -4459,7 +4702,7 @@ defs["ImGuiDockNode_IsEmpty"][1]["call_args"] = "()" defs["ImGuiDockNode_IsEmpty"][1]["cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["defaults"] = {} defs["ImGuiDockNode_IsEmpty"][1]["funcname"] = "IsEmpty" -defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1675" +defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1916" defs["ImGuiDockNode_IsEmpty"][1]["ov_cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["ret"] = "bool" defs["ImGuiDockNode_IsEmpty"][1]["signature"] = "()const" @@ -4477,7 +4720,7 @@ defs["ImGuiDockNode_IsFloatingNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsFloatingNode"][1]["cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsFloatingNode"][1]["funcname"] = "IsFloatingNode" -defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1669" +defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1910" defs["ImGuiDockNode_IsFloatingNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsFloatingNode"][1]["signature"] = "()const" @@ -4495,7 +4738,7 @@ defs["ImGuiDockNode_IsHiddenTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsHiddenTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsHiddenTabBar"][1]["funcname"] = "IsHiddenTabBar" -defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1671" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1912" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsHiddenTabBar"][1]["signature"] = "()const" @@ -4513,7 +4756,7 @@ defs["ImGuiDockNode_IsLeafNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsLeafNode"][1]["cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsLeafNode"][1]["funcname"] = "IsLeafNode" -defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1674" +defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1915" defs["ImGuiDockNode_IsLeafNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsLeafNode"][1]["signature"] = "()const" @@ -4531,7 +4774,7 @@ defs["ImGuiDockNode_IsNoTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsNoTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsNoTabBar"][1]["funcname"] = "IsNoTabBar" -defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1672" +defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1913" defs["ImGuiDockNode_IsNoTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsNoTabBar"][1]["signature"] = "()const" @@ -4549,7 +4792,7 @@ defs["ImGuiDockNode_IsRootNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsRootNode"][1]["cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsRootNode"][1]["funcname"] = "IsRootNode" -defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1667" +defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1908" defs["ImGuiDockNode_IsRootNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsRootNode"][1]["signature"] = "()const" @@ -4567,7 +4810,7 @@ defs["ImGuiDockNode_IsSplitNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsSplitNode"][1]["cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsSplitNode"][1]["funcname"] = "IsSplitNode" -defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1673" +defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1914" defs["ImGuiDockNode_IsSplitNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsSplitNode"][1]["signature"] = "()const" @@ -4588,7 +4831,7 @@ defs["ImGuiDockNode_Rect"][1]["call_args"] = "()" defs["ImGuiDockNode_Rect"][1]["cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["defaults"] = {} defs["ImGuiDockNode_Rect"][1]["funcname"] = "Rect" -defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1676" +defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1917" defs["ImGuiDockNode_Rect"][1]["nonUDT"] = 1 defs["ImGuiDockNode_Rect"][1]["ov_cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["ret"] = "void" @@ -4610,7 +4853,7 @@ defs["ImGuiDockNode_SetLocalFlags"][1]["call_args"] = "(flags)" defs["ImGuiDockNode_SetLocalFlags"][1]["cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["defaults"] = {} defs["ImGuiDockNode_SetLocalFlags"][1]["funcname"] = "SetLocalFlags" -defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1678" +defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1919" defs["ImGuiDockNode_SetLocalFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["ret"] = "void" defs["ImGuiDockNode_SetLocalFlags"][1]["signature"] = "(ImGuiDockNodeFlags)" @@ -4628,7 +4871,7 @@ defs["ImGuiDockNode_UpdateMergedFlags"][1]["call_args"] = "()" defs["ImGuiDockNode_UpdateMergedFlags"][1]["cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["defaults"] = {} defs["ImGuiDockNode_UpdateMergedFlags"][1]["funcname"] = "UpdateMergedFlags" -defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1679" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1920" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ret"] = "void" defs["ImGuiDockNode_UpdateMergedFlags"][1]["signature"] = "()" @@ -4645,7 +4888,7 @@ defs["ImGuiDockNode_destroy"][1]["call_args"] = "(self)" defs["ImGuiDockNode_destroy"][1]["cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["defaults"] = {} defs["ImGuiDockNode_destroy"][1]["destructor"] = true -defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1666" +defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1907" defs["ImGuiDockNode_destroy"][1]["ov_cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["realdestructor"] = true defs["ImGuiDockNode_destroy"][1]["ret"] = "void" @@ -4698,6 +4941,37 @@ defs["ImGuiFreeType_SetAllocatorFunctions"][1]["ret"] = "void" defs["ImGuiFreeType_SetAllocatorFunctions"][1]["signature"] = "(void*(*)(size_t,void*),void(*)(void*,void*),void*)" defs["ImGuiFreeType_SetAllocatorFunctions"][1]["stname"] = "" defs["ImGuiFreeType_SetAllocatorFunctions"]["(void*(*)(size_t,void*),void(*)(void*,void*),void*)"] = defs["ImGuiFreeType_SetAllocatorFunctions"][1] +defs["ImGuiIDStackTool_ImGuiIDStackTool"] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["args"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["argsT"] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["argsoriginal"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["call_args"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["constructor"] = true +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["defaults"] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["funcname"] = "ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:2159" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["ov_cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["signature"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["stname"] = "ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"]["()"] = defs["ImGuiIDStackTool_ImGuiIDStackTool"][1] +defs["ImGuiIDStackTool_destroy"] = {} +defs["ImGuiIDStackTool_destroy"][1] = {} +defs["ImGuiIDStackTool_destroy"][1]["args"] = "(ImGuiIDStackTool* self)" +defs["ImGuiIDStackTool_destroy"][1]["argsT"] = {} +defs["ImGuiIDStackTool_destroy"][1]["argsT"][1] = {} +defs["ImGuiIDStackTool_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIDStackTool_destroy"][1]["argsT"][1]["type"] = "ImGuiIDStackTool*" +defs["ImGuiIDStackTool_destroy"][1]["call_args"] = "(self)" +defs["ImGuiIDStackTool_destroy"][1]["cimguiname"] = "ImGuiIDStackTool_destroy" +defs["ImGuiIDStackTool_destroy"][1]["defaults"] = {} +defs["ImGuiIDStackTool_destroy"][1]["destructor"] = true +defs["ImGuiIDStackTool_destroy"][1]["ov_cimguiname"] = "ImGuiIDStackTool_destroy" +defs["ImGuiIDStackTool_destroy"][1]["ret"] = "void" +defs["ImGuiIDStackTool_destroy"][1]["signature"] = "(ImGuiIDStackTool*)" +defs["ImGuiIDStackTool_destroy"][1]["stname"] = "ImGuiIDStackTool" +defs["ImGuiIDStackTool_destroy"]["(ImGuiIDStackTool*)"] = defs["ImGuiIDStackTool_destroy"][1] defs["ImGuiIO_AddFocusEvent"] = {} defs["ImGuiIO_AddFocusEvent"][1] = {} defs["ImGuiIO_AddFocusEvent"][1]["args"] = "(ImGuiIO* self,bool focused)" @@ -4713,7 +4987,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2060" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2408" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4734,7 +5008,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2061" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2409" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4755,7 +5029,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2062" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2410" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4776,7 +5050,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2063" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2411" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4803,7 +5077,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2055" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2402" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -4827,7 +5101,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2054" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2401" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -4851,7 +5125,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2057" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2404" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -4875,12 +5149,33 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2056" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2403" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMousePosEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMousePosEvent"]["(float,float)"] = defs["ImGuiIO_AddMousePosEvent"][1] +defs["ImGuiIO_AddMouseSourceEvent"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["args"] = "(ImGuiIO* self,ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["name"] = "source" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["type"] = "ImGuiMouseSource" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsoriginal"] = "(ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2406" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" +defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_AddMouseSourceEvent"]["(ImGuiMouseSource)"] = defs["ImGuiIO_AddMouseSourceEvent"][1] defs["ImGuiIO_AddMouseViewportEvent"] = {} defs["ImGuiIO_AddMouseViewportEvent"][1] = {} defs["ImGuiIO_AddMouseViewportEvent"][1]["args"] = "(ImGuiIO* self,ImGuiID id)" @@ -4896,7 +5191,7 @@ defs["ImGuiIO_AddMouseViewportEvent"][1]["call_args"] = "(id)" defs["ImGuiIO_AddMouseViewportEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseViewportEvent"][1]["funcname"] = "AddMouseViewportEvent" -defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2059" +defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2407" defs["ImGuiIO_AddMouseViewportEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseViewportEvent"][1]["signature"] = "(ImGuiID)" @@ -4904,46 +5199,46 @@ defs["ImGuiIO_AddMouseViewportEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseViewportEvent"]["(ImGuiID)"] = defs["ImGuiIO_AddMouseViewportEvent"][1] defs["ImGuiIO_AddMouseWheelEvent"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wh_x,float wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wheel_x,float wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["name"] = "self" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wh_x" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wheel_x" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["type"] = "float" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wh_y" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wheel_y" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["type"] = "float" -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wh_x,float wh_y)" -defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wh_x,wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wheel_x,float wheel_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2058" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2405" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMouseWheelEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseWheelEvent"]["(float,float)"] = defs["ImGuiIO_AddMouseWheelEvent"][1] -defs["ImGuiIO_ClearInputCharacters"] = {} -defs["ImGuiIO_ClearInputCharacters"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["args"] = "(ImGuiIO* self)" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["name"] = "self" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["type"] = "ImGuiIO*" -defs["ImGuiIO_ClearInputCharacters"][1]["argsoriginal"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:2067" -defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" -defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" -defs["ImGuiIO_ClearInputCharacters"]["()"] = defs["ImGuiIO_ClearInputCharacters"][1] +defs["ImGuiIO_ClearEventsQueue"] = {} +defs["ImGuiIO_ClearEventsQueue"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearEventsQueue"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2415" +defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" +defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearEventsQueue"]["()"] = defs["ImGuiIO_ClearEventsQueue"][1] defs["ImGuiIO_ClearInputKeys"] = {} defs["ImGuiIO_ClearInputKeys"][1] = {} defs["ImGuiIO_ClearInputKeys"][1]["args"] = "(ImGuiIO* self)" @@ -4956,12 +5251,30 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2068" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2416" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ClearInputKeys"]["()"] = defs["ImGuiIO_ClearInputKeys"][1] +defs["ImGuiIO_ClearInputMouse"] = {} +defs["ImGuiIO_ClearInputMouse"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearInputMouse"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2417" +defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" +defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearInputMouse"]["()"] = defs["ImGuiIO_ClearInputMouse"][1] defs["ImGuiIO_ImGuiIO"] = {} defs["ImGuiIO_ImGuiIO"][1] = {} defs["ImGuiIO_ImGuiIO"][1]["args"] = "()" @@ -4972,7 +5285,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2143" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2508" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4992,7 +5305,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2066" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2414" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -5023,7 +5336,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2065" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2413" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -5055,7 +5368,7 @@ defs["ImGuiInputEvent_ImGuiInputEvent"][1]["cimguiname"] = "ImGuiInputEvent_ImGu defs["ImGuiInputEvent_ImGuiInputEvent"][1]["constructor"] = true defs["ImGuiInputEvent_ImGuiInputEvent"][1]["defaults"] = {} defs["ImGuiInputEvent_ImGuiInputEvent"][1]["funcname"] = "ImGuiInputEvent" -defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1307" +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1427" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -5088,7 +5401,7 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2184" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2552" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -5112,7 +5425,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2181" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2549" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -5130,7 +5443,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2185" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2553" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -5146,7 +5459,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2180" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2548" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -5173,7 +5486,7 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2182" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2550" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -5191,7 +5504,7 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2183" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2551" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -5213,6 +5526,55 @@ defs["ImGuiInputTextCallbackData_destroy"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_destroy"][1]["signature"] = "(ImGuiInputTextCallbackData*)" defs["ImGuiInputTextCallbackData_destroy"][1]["stname"] = "ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_destroy"]["(ImGuiInputTextCallbackData*)"] = defs["ImGuiInputTextCallbackData_destroy"][1] +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["args"] = "(ImGuiInputTextDeactivatedState* self)" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"][1] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"][1]["type"] = "ImGuiInputTextDeactivatedState*" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["call_args"] = "()" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["defaults"] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1104" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ret"] = "void" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["signature"] = "()" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["stname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"]["()"] = defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1] +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["args"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["argsT"] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["call_args"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["constructor"] = true +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["defaults"] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["funcname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1103" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["signature"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["stname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"]["()"] = defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1] +defs["ImGuiInputTextDeactivatedState_destroy"] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["args"] = "(ImGuiInputTextDeactivatedState* self)" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"][1] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"][1]["type"] = "ImGuiInputTextDeactivatedState*" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_destroy" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["defaults"] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["destructor"] = true +defs["ImGuiInputTextDeactivatedState_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_destroy" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["ret"] = "void" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["signature"] = "(ImGuiInputTextDeactivatedState*)" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["stname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_destroy"]["(ImGuiInputTextDeactivatedState*)"] = defs["ImGuiInputTextDeactivatedState_destroy"][1] defs["ImGuiInputTextState_ClearFreeMemory"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5225,7 +5587,7 @@ defs["ImGuiInputTextState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1081" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1143" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5243,7 +5605,7 @@ defs["ImGuiInputTextState_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1090" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1151" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5261,7 +5623,7 @@ defs["ImGuiInputTextState_ClearText"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearText"][1]["cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearText"][1]["funcname"] = "ClearText" -defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1080" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1142" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5279,7 +5641,7 @@ defs["ImGuiInputTextState_CursorAnimReset"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorAnimReset"][1]["cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorAnimReset"][1]["funcname"] = "CursorAnimReset" -defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1087" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1148" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5297,7 +5659,7 @@ defs["ImGuiInputTextState_CursorClamp"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorClamp"][1]["cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorClamp"][1]["funcname"] = "CursorClamp" -defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1088" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1149" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5315,30 +5677,12 @@ defs["ImGuiInputTextState_GetCursorPos"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetCursorPos"][1]["cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["defaults"] = {} defs["ImGuiInputTextState_GetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1091" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1152" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" defs["ImGuiInputTextState_GetCursorPos"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_GetCursorPos"]["()const"] = defs["ImGuiInputTextState_GetCursorPos"][1] -defs["ImGuiInputTextState_GetRedoAvailCount"] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["args"] = "(ImGuiInputTextState* self)" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"][1] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"][1]["name"] = "self" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsoriginal"] = "()" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["call_args"] = "()" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["defaults"] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["funcname"] = "GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1083" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["stname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_GetRedoAvailCount"]["()const"] = defs["ImGuiInputTextState_GetRedoAvailCount"][1] defs["ImGuiInputTextState_GetSelectionEnd"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5351,7 +5695,7 @@ defs["ImGuiInputTextState_GetSelectionEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionEnd"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["funcname"] = "GetSelectionEnd" -defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1093" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1154" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5369,30 +5713,12 @@ defs["ImGuiInputTextState_GetSelectionStart"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionStart"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionStart"][1]["funcname"] = "GetSelectionStart" -defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1092" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1153" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" defs["ImGuiInputTextState_GetSelectionStart"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_GetSelectionStart"]["()const"] = defs["ImGuiInputTextState_GetSelectionStart"][1] -defs["ImGuiInputTextState_GetUndoAvailCount"] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["args"] = "(ImGuiInputTextState* self)" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"][1] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"][1]["name"] = "self" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsoriginal"] = "()" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["call_args"] = "()" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["defaults"] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["funcname"] = "GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1082" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["stname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_GetUndoAvailCount"]["()const"] = defs["ImGuiInputTextState_GetUndoAvailCount"][1] defs["ImGuiInputTextState_HasSelection"] = {} defs["ImGuiInputTextState_HasSelection"][1] = {} defs["ImGuiInputTextState_HasSelection"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5405,7 +5731,7 @@ defs["ImGuiInputTextState_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_HasSelection"][1]["cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1089" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1150" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5413,22 +5739,40 @@ defs["ImGuiInputTextState_HasSelection"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_HasSelection"]["()const"] = defs["ImGuiInputTextState_HasSelection"][1] defs["ImGuiInputTextState_ImGuiInputTextState"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1] = {} -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["args"] = "(ImGuiContext* ctx)" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["args"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"] = {} -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"][1] = {} -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"][1]["name"] = "ctx" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"][1]["type"] = "ImGuiContext*" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsoriginal"] = "(ImGuiContext* ctx)" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["call_args"] = "(ctx)" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["call_args"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["constructor"] = true defs["ImGuiInputTextState_ImGuiInputTextState"][1]["defaults"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1]["funcname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1079" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1140" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "(ImGuiContext*)" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"]["(ImGuiContext*)"] = defs["ImGuiInputTextState_ImGuiInputTextState"][1] +defs["ImGuiInputTextState_ImGuiInputTextState"]["()"] = defs["ImGuiInputTextState_ImGuiInputTextState"][1] +defs["ImGuiInputTextState_OnCharPressed"] = {} +defs["ImGuiInputTextState_OnCharPressed"][1] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["args"] = "(ImGuiInputTextState* self,unsigned int c)" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][2] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][2]["name"] = "c" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][2]["type"] = "unsigned int" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsoriginal"] = "(unsigned int c)" +defs["ImGuiInputTextState_OnCharPressed"][1]["call_args"] = "(c)" +defs["ImGuiInputTextState_OnCharPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnCharPressed" +defs["ImGuiInputTextState_OnCharPressed"][1]["defaults"] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["funcname"] = "OnCharPressed" +defs["ImGuiInputTextState_OnCharPressed"][1]["location"] = "imgui_internal:1145" +defs["ImGuiInputTextState_OnCharPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnCharPressed" +defs["ImGuiInputTextState_OnCharPressed"][1]["ret"] = "void" +defs["ImGuiInputTextState_OnCharPressed"][1]["signature"] = "(unsigned int)" +defs["ImGuiInputTextState_OnCharPressed"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_OnCharPressed"]["(unsigned int)"] = defs["ImGuiInputTextState_OnCharPressed"][1] defs["ImGuiInputTextState_OnKeyPressed"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["args"] = "(ImGuiInputTextState* self,int key)" @@ -5444,12 +5788,66 @@ defs["ImGuiInputTextState_OnKeyPressed"][1]["call_args"] = "(key)" defs["ImGuiInputTextState_OnKeyPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["funcname"] = "OnKeyPressed" -defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1084" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1144" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" defs["ImGuiInputTextState_OnKeyPressed"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_OnKeyPressed"]["(int)"] = defs["ImGuiInputTextState_OnKeyPressed"][1] +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["funcname"] = "ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1163" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1] +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["funcname"] = "ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1164" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1] +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["funcname"] = "ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1162" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1] defs["ImGuiInputTextState_SelectAll"] = {} defs["ImGuiInputTextState_SelectAll"][1] = {} defs["ImGuiInputTextState_SelectAll"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5462,7 +5860,7 @@ defs["ImGuiInputTextState_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_SelectAll"][1]["cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1094" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1155" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5479,7 +5877,9 @@ defs["ImGuiInputTextState_destroy"][1]["call_args"] = "(self)" defs["ImGuiInputTextState_destroy"][1]["cimguiname"] = "ImGuiInputTextState_destroy" defs["ImGuiInputTextState_destroy"][1]["defaults"] = {} defs["ImGuiInputTextState_destroy"][1]["destructor"] = true +defs["ImGuiInputTextState_destroy"][1]["location"] = "imgui_internal:1141" defs["ImGuiInputTextState_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextState_destroy" +defs["ImGuiInputTextState_destroy"][1]["realdestructor"] = true defs["ImGuiInputTextState_destroy"][1]["ret"] = "void" defs["ImGuiInputTextState_destroy"][1]["signature"] = "(ImGuiInputTextState*)" defs["ImGuiInputTextState_destroy"][1]["stname"] = "ImGuiInputTextState" @@ -5494,7 +5894,7 @@ defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerDat defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" -defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1349" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1471" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" @@ -5525,7 +5925,7 @@ defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRout defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" -defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1325" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1447" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" @@ -5558,7 +5958,7 @@ defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" -defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1337" +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1459" defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" @@ -5574,7 +5974,7 @@ defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRo defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" -defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1336" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1458" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" @@ -5605,7 +6005,7 @@ defs["ImGuiLastItemData_ImGuiLastItemData"][1]["cimguiname"] = "ImGuiLastItemDat defs["ImGuiLastItemData_ImGuiLastItemData"][1]["constructor"] = true defs["ImGuiLastItemData_ImGuiLastItemData"][1]["defaults"] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1]["funcname"] = "ImGuiLastItemData" -defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1185" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1266" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5636,7 +6036,7 @@ defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListC defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" -defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1425" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1542" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -5656,7 +6056,7 @@ defs["ImGuiListClipperData_Reset"][1]["call_args"] = "(clipper)" defs["ImGuiListClipperData_Reset"][1]["cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["defaults"] = {} defs["ImGuiListClipperData_Reset"][1]["funcname"] = "Reset" -defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1426" +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1543" defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -5694,7 +6094,7 @@ defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRa defs["ImGuiListClipperRange_FromIndices"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromIndices"][1]["funcname"] = "FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1412" +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1529" defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -5722,7 +6122,7 @@ defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipper defs["ImGuiListClipperRange_FromPositions"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromPositions"][1]["funcname"] = "FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1413" +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1530" defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -5747,7 +6147,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2417" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2768" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -5765,36 +6165,12 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui:2418" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2769" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] -defs["ImGuiListClipper_ForceDisplayRangeByIndices"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["args"] = "(ImGuiListClipper* self,int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["name"] = "self" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["type"] = "ImGuiListClipper*" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["name"] = "item_min" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["name"] = "item_max" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsoriginal"] = "(int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["call_args"] = "(item_min,item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["defaults"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["funcname"] = "ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2422" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ov_cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ret"] = "void" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["signature"] = "(int,int)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["stname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"]["(int,int)"] = defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" @@ -5805,11 +6181,77 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2415" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2766" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"]["()"] = defs["ImGuiListClipper_ImGuiListClipper"][1] +defs["ImGuiListClipper_IncludeItemByIndex"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2774" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemByIndex"]["(int)"] = defs["ImGuiListClipper_IncludeItemByIndex"][1] +defs["ImGuiListClipper_IncludeItemsByIndex"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["name"] = "item_begin" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["name"] = "item_end" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsoriginal"] = "(int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2775" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemsByIndex"]["(int,int)"] = defs["ImGuiListClipper_IncludeItemsByIndex"][1] +defs["ImGuiListClipper_SeekCursorForItem"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["defaults"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["funcname"] = "SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2780" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ov_cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ret"] = "void" +defs["ImGuiListClipper_SeekCursorForItem"][1]["signature"] = "(int)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_SeekCursorForItem"]["(int)"] = defs["ImGuiListClipper_SeekCursorForItem"][1] defs["ImGuiListClipper_Step"] = {} defs["ImGuiListClipper_Step"][1] = {} defs["ImGuiListClipper_Step"][1]["args"] = "(ImGuiListClipper* self)" @@ -5822,7 +6264,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2419" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2770" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -5839,7 +6281,7 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true -defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2416" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2767" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -5861,7 +6303,7 @@ defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["call_args"] = "(update_offsets)" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["funcname"] = "CalcNextTotalWidth" -defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1056" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1094" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -5891,7 +6333,7 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w_icon,w_label,w_shortc defs["ImGuiMenuColumns_DeclColumns"][1]["cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_DeclColumns"][1]["funcname"] = "DeclColumns" -defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1055" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1093" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -5907,7 +6349,7 @@ defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["cimguiname"] = "ImGuiMenuColumns_I defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["constructor"] = true defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["funcname"] = "ImGuiMenuColumns" -defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1053" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1091" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -5930,7 +6372,7 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(spacing,window_reappearing)" defs["ImGuiMenuColumns_Update"][1]["cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["defaults"] = {} defs["ImGuiMenuColumns_Update"][1]["funcname"] = "Update" -defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1054" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1092" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -5952,37 +6394,104 @@ defs["ImGuiMenuColumns_destroy"][1]["ret"] = "void" defs["ImGuiMenuColumns_destroy"][1]["signature"] = "(ImGuiMenuColumns*)" defs["ImGuiMenuColumns_destroy"][1]["stname"] = "ImGuiMenuColumns" defs["ImGuiMenuColumns_destroy"]["(ImGuiMenuColumns*)"] = defs["ImGuiMenuColumns_destroy"][1] -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["args"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["argsT"] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["argsoriginal"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["call_args"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["cimguiname"] = "ImGuiMetricsConfig_ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["constructor"] = true -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["defaults"] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["funcname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["location"] = "imgui_internal:1854" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["ov_cimguiname"] = "ImGuiMetricsConfig_ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["signature"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["stname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"]["()"] = defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1] -defs["ImGuiMetricsConfig_destroy"] = {} -defs["ImGuiMetricsConfig_destroy"][1] = {} -defs["ImGuiMetricsConfig_destroy"][1]["args"] = "(ImGuiMetricsConfig* self)" -defs["ImGuiMetricsConfig_destroy"][1]["argsT"] = {} -defs["ImGuiMetricsConfig_destroy"][1]["argsT"][1] = {} -defs["ImGuiMetricsConfig_destroy"][1]["argsT"][1]["name"] = "self" -defs["ImGuiMetricsConfig_destroy"][1]["argsT"][1]["type"] = "ImGuiMetricsConfig*" -defs["ImGuiMetricsConfig_destroy"][1]["call_args"] = "(self)" -defs["ImGuiMetricsConfig_destroy"][1]["cimguiname"] = "ImGuiMetricsConfig_destroy" -defs["ImGuiMetricsConfig_destroy"][1]["defaults"] = {} -defs["ImGuiMetricsConfig_destroy"][1]["destructor"] = true -defs["ImGuiMetricsConfig_destroy"][1]["ov_cimguiname"] = "ImGuiMetricsConfig_destroy" -defs["ImGuiMetricsConfig_destroy"][1]["ret"] = "void" -defs["ImGuiMetricsConfig_destroy"][1]["signature"] = "(ImGuiMetricsConfig*)" -defs["ImGuiMetricsConfig_destroy"][1]["stname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_destroy"]["(ImGuiMetricsConfig*)"] = defs["ImGuiMetricsConfig_destroy"][1] +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["args"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["argsT"] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["call_args"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["cimguiname"] = "ImGuiMultiSelectState_ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["constructor"] = true +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["defaults"] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["funcname"] = "ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["location"] = "imgui_internal:1801" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["signature"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["stname"] = "ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"]["()"] = defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1] +defs["ImGuiMultiSelectState_destroy"] = {} +defs["ImGuiMultiSelectState_destroy"][1] = {} +defs["ImGuiMultiSelectState_destroy"][1]["args"] = "(ImGuiMultiSelectState* self)" +defs["ImGuiMultiSelectState_destroy"][1]["argsT"] = {} +defs["ImGuiMultiSelectState_destroy"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectState_destroy"][1]["argsT"][1]["type"] = "ImGuiMultiSelectState*" +defs["ImGuiMultiSelectState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiMultiSelectState_destroy"][1]["cimguiname"] = "ImGuiMultiSelectState_destroy" +defs["ImGuiMultiSelectState_destroy"][1]["defaults"] = {} +defs["ImGuiMultiSelectState_destroy"][1]["destructor"] = true +defs["ImGuiMultiSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_destroy" +defs["ImGuiMultiSelectState_destroy"][1]["ret"] = "void" +defs["ImGuiMultiSelectState_destroy"][1]["signature"] = "(ImGuiMultiSelectState*)" +defs["ImGuiMultiSelectState_destroy"][1]["stname"] = "ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_destroy"]["(ImGuiMultiSelectState*)"] = defs["ImGuiMultiSelectState_destroy"][1] +defs["ImGuiMultiSelectTempData_Clear"] = {} +defs["ImGuiMultiSelectTempData_Clear"][1] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["args"] = "(ImGuiMultiSelectTempData* self)" +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["ImGuiMultiSelectTempData_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectTempData_Clear"][1]["call_args"] = "()" +defs["ImGuiMultiSelectTempData_Clear"][1]["cimguiname"] = "ImGuiMultiSelectTempData_Clear" +defs["ImGuiMultiSelectTempData_Clear"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["funcname"] = "Clear" +defs["ImGuiMultiSelectTempData_Clear"][1]["location"] = "imgui_internal:1785" +defs["ImGuiMultiSelectTempData_Clear"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_Clear" +defs["ImGuiMultiSelectTempData_Clear"][1]["ret"] = "void" +defs["ImGuiMultiSelectTempData_Clear"][1]["signature"] = "()" +defs["ImGuiMultiSelectTempData_Clear"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_Clear"]["()"] = defs["ImGuiMultiSelectTempData_Clear"][1] +defs["ImGuiMultiSelectTempData_ClearIO"] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["args"] = "(ImGuiMultiSelectTempData* self)" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["call_args"] = "()" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["funcname"] = "ClearIO" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["location"] = "imgui_internal:1786" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["ret"] = "void" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["signature"] = "()" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ClearIO"]["()"] = defs["ImGuiMultiSelectTempData_ClearIO"][1] +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["args"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["call_args"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["cimguiname"] = "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["constructor"] = true +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["funcname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["location"] = "imgui_internal:1784" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["signature"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"]["()"] = defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1] +defs["ImGuiMultiSelectTempData_destroy"] = {} +defs["ImGuiMultiSelectTempData_destroy"][1] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["args"] = "(ImGuiMultiSelectTempData* self)" +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["ImGuiMultiSelectTempData_destroy"][1]["call_args"] = "(self)" +defs["ImGuiMultiSelectTempData_destroy"][1]["cimguiname"] = "ImGuiMultiSelectTempData_destroy" +defs["ImGuiMultiSelectTempData_destroy"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["destructor"] = true +defs["ImGuiMultiSelectTempData_destroy"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_destroy" +defs["ImGuiMultiSelectTempData_destroy"][1]["ret"] = "void" +defs["ImGuiMultiSelectTempData_destroy"][1]["signature"] = "(ImGuiMultiSelectTempData*)" +defs["ImGuiMultiSelectTempData_destroy"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_destroy"]["(ImGuiMultiSelectTempData*)"] = defs["ImGuiMultiSelectTempData_destroy"][1] defs["ImGuiNavItemData_Clear"] = {} defs["ImGuiNavItemData_Clear"][1] = {} defs["ImGuiNavItemData_Clear"][1]["args"] = "(ImGuiNavItemData* self)" @@ -5995,7 +6504,7 @@ defs["ImGuiNavItemData_Clear"][1]["call_args"] = "()" defs["ImGuiNavItemData_Clear"][1]["cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["defaults"] = {} defs["ImGuiNavItemData_Clear"][1]["funcname"] = "Clear" -defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1502" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1626" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -6011,7 +6520,7 @@ defs["ImGuiNavItemData_ImGuiNavItemData"][1]["cimguiname"] = "ImGuiNavItemData_I defs["ImGuiNavItemData_ImGuiNavItemData"][1]["constructor"] = true defs["ImGuiNavItemData_ImGuiNavItemData"][1]["defaults"] = {} defs["ImGuiNavItemData_ImGuiNavItemData"][1]["funcname"] = "ImGuiNavItemData" -defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1501" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1625" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -6044,7 +6553,7 @@ defs["ImGuiNextItemData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextItemData_ClearFlags"][1]["cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextItemData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1172" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1250" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -6060,7 +6569,7 @@ defs["ImGuiNextItemData_ImGuiNextItemData"][1]["cimguiname"] = "ImGuiNextItemDat defs["ImGuiNextItemData_ImGuiNextItemData"][1]["constructor"] = true defs["ImGuiNextItemData_ImGuiNextItemData"][1]["defaults"] = {} defs["ImGuiNextItemData_ImGuiNextItemData"][1]["funcname"] = "ImGuiNextItemData" -defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1171" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1249" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -6093,7 +6602,7 @@ defs["ImGuiNextWindowData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextWindowData_ClearFlags"][1]["cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextWindowData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1153" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1221" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -6109,7 +6618,7 @@ defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["cimguiname"] = "ImGuiNextWin defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["constructor"] = true defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["defaults"] = {} defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["funcname"] = "ImGuiNextWindowData" -defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1152" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1220" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -6140,7 +6649,7 @@ defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["cimguiname"] = "ImGuiOldColumn defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["constructor"] = true defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["defaults"] = {} defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["funcname"] = "ImGuiOldColumnData" -defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1537" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1705" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -6171,7 +6680,7 @@ defs["ImGuiOldColumns_ImGuiOldColumns"][1]["cimguiname"] = "ImGuiOldColumns_ImGu defs["ImGuiOldColumns_ImGuiOldColumns"][1]["constructor"] = true defs["ImGuiOldColumns_ImGuiOldColumns"][1]["defaults"] = {} defs["ImGuiOldColumns_ImGuiOldColumns"][1]["funcname"] = "ImGuiOldColumns" -defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1558" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1726" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6202,7 +6711,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2281" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2626" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -6235,7 +6744,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2235" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2604" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -6251,7 +6760,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2234" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2603" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -6271,7 +6780,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2236" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2605" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -6289,7 +6798,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2238" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2607" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -6307,7 +6816,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2237" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2606" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -6339,7 +6848,7 @@ defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGu defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" -defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3180" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3684" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" @@ -6370,7 +6879,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3200" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3787" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6401,7 +6910,7 @@ defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["constructor"] = true defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["defaults"] = {} defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["funcname"] = "ImGuiPlatformMonitor" -defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3190" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3777" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["signature"] = "()" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["stname"] = "ImGuiPlatformMonitor" @@ -6432,7 +6941,7 @@ defs["ImGuiPopupData_ImGuiPopupData"][1]["cimguiname"] = "ImGuiPopupData_ImGuiPo defs["ImGuiPopupData_ImGuiPopupData"][1]["constructor"] = true defs["ImGuiPopupData_ImGuiPopupData"][1]["defaults"] = {} defs["ImGuiPopupData_ImGuiPopupData"][1]["funcname"] = "ImGuiPopupData" -defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1109" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1346" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6466,7 +6975,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1225" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1319" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6482,7 +6991,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1226" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1320" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6504,6 +7013,240 @@ defs["ImGuiPtrOrIndex_destroy"][1]["ret"] = "void" defs["ImGuiPtrOrIndex_destroy"][1]["signature"] = "(ImGuiPtrOrIndex*)" defs["ImGuiPtrOrIndex_destroy"][1]["stname"] = "ImGuiPtrOrIndex" defs["ImGuiPtrOrIndex_destroy"]["(ImGuiPtrOrIndex*)"] = defs["ImGuiPtrOrIndex_destroy"][1] +defs["ImGuiSelectionBasicStorage_ApplyRequests"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2988" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] +defs["ImGuiSelectionBasicStorage_Clear"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["funcname"] = "Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2990" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Clear"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Clear"]["()"] = defs["ImGuiSelectionBasicStorage_Clear"][1] +defs["ImGuiSelectionBasicStorage_Contains"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsoriginal"] = "(ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["call_args"] = "(id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["funcname"] = "Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2989" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_Contains"][1]["signature"] = "(ImGuiID)const" +defs["ImGuiSelectionBasicStorage_Contains"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Contains"]["(ImGuiID)const"] = defs["ImGuiSelectionBasicStorage_Contains"][1] +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["args"] = "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["name"] = "opaque_it" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["type"] = "void**" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["name"] = "out_id" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["type"] = "ImGuiID*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsoriginal"] = "(void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["call_args"] = "(opaque_it,out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["funcname"] = "GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2993" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["signature"] = "(void**,ImGuiID*)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"]["(void**,ImGuiID*)"] = defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["args"] = "(ImGuiSelectionBasicStorage* self,int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["name"] = "idx" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsoriginal"] = "(int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["call_args"] = "(idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["funcname"] = "GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2994" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ret"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["signature"] = "(int)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"]["(int)"] = defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["constructor"] = true +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["funcname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2987" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"]["()"] = defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] +defs["ImGuiSelectionBasicStorage_SetItemSelected"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["name"] = "selected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["type"] = "bool" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsoriginal"] = "(ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["call_args"] = "(id,selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["funcname"] = "SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2992" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["signature"] = "(ImGuiID,bool)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_SetItemSelected"]["(ImGuiID,bool)"] = defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] +defs["ImGuiSelectionBasicStorage_Swap"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["name"] = "r" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["reftoptr"] = true +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsoriginal"] = "(ImGuiSelectionBasicStorage& r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["call_args"] = "(*r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["funcname"] = "Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2991" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Swap"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Swap"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_Swap"][1] +defs["ImGuiSelectionBasicStorage_destroy"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionBasicStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_destroy"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_destroy"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_destroy"][1] +defs["ImGuiSelectionExternalStorage_ApplyRequests"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:3007" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["constructor"] = true +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["funcname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:3006" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["signature"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"]["()"] = defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] +defs["ImGuiSelectionExternalStorage_destroy"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["args"] = "(ImGuiSelectionExternalStorage* self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionExternalStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_destroy"][1]["signature"] = "(ImGuiSelectionExternalStorage*)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_destroy"]["(ImGuiSelectionExternalStorage*)"] = defs["ImGuiSelectionExternalStorage_destroy"][1] defs["ImGuiSettingsHandler_ImGuiSettingsHandler"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["args"] = "()" @@ -6514,7 +7257,7 @@ defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["cimguiname"] = "ImGuiSetti defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["constructor"] = true defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["defaults"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["funcname"] = "ImGuiSettingsHandler" -defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1793" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:2046" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -6545,7 +7288,7 @@ defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["cimguiname"] = "ImGuiStackLe defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["constructor"] = true defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["defaults"] = {} defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["funcname"] = "ImGuiStackLevelInfo" -defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1872" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:2146" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -6566,24 +7309,27 @@ defs["ImGuiStackLevelInfo_destroy"][1]["ret"] = "void" defs["ImGuiStackLevelInfo_destroy"][1]["signature"] = "(ImGuiStackLevelInfo*)" defs["ImGuiStackLevelInfo_destroy"][1]["stname"] = "ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_destroy"]["(ImGuiStackLevelInfo*)"] = defs["ImGuiStackLevelInfo_destroy"][1] -defs["ImGuiStackSizes_CompareWithCurrentState"] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["args"] = "(ImGuiStackSizes* self)" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"][1] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"][1]["name"] = "self" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsoriginal"] = "()" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["call_args"] = "()" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["defaults"] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["funcname"] = "CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["location"] = "imgui_internal:1202" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ret"] = "void" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["signature"] = "()" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["stname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_CompareWithCurrentState"]["()"] = defs["ImGuiStackSizes_CompareWithCurrentState"][1] +defs["ImGuiStackSizes_CompareWithContextState"] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["args"] = "(ImGuiStackSizes* self,ImGuiContext* ctx)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][1] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][1]["name"] = "self" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][2] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][2]["name"] = "ctx" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][2]["type"] = "ImGuiContext*" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["call_args"] = "(ctx)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithContextState" +defs["ImGuiStackSizes_CompareWithContextState"][1]["defaults"] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["funcname"] = "CompareWithContextState" +defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1295" +defs["ImGuiStackSizes_CompareWithContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithContextState" +defs["ImGuiStackSizes_CompareWithContextState"][1]["ret"] = "void" +defs["ImGuiStackSizes_CompareWithContextState"][1]["signature"] = "(ImGuiContext*)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["stname"] = "ImGuiStackSizes" +defs["ImGuiStackSizes_CompareWithContextState"]["(ImGuiContext*)"] = defs["ImGuiStackSizes_CompareWithContextState"][1] defs["ImGuiStackSizes_ImGuiStackSizes"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["args"] = "()" @@ -6594,29 +7340,32 @@ defs["ImGuiStackSizes_ImGuiStackSizes"][1]["cimguiname"] = "ImGuiStackSizes_ImGu defs["ImGuiStackSizes_ImGuiStackSizes"][1]["constructor"] = true defs["ImGuiStackSizes_ImGuiStackSizes"][1]["defaults"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["funcname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1200" +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1293" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"]["()"] = defs["ImGuiStackSizes_ImGuiStackSizes"][1] -defs["ImGuiStackSizes_SetToCurrentState"] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["args"] = "(ImGuiStackSizes* self)" -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"][1] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"][1]["name"] = "self" -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsoriginal"] = "()" -defs["ImGuiStackSizes_SetToCurrentState"][1]["call_args"] = "()" -defs["ImGuiStackSizes_SetToCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["defaults"] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["funcname"] = "SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["location"] = "imgui_internal:1201" -defs["ImGuiStackSizes_SetToCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["ret"] = "void" -defs["ImGuiStackSizes_SetToCurrentState"][1]["signature"] = "()" -defs["ImGuiStackSizes_SetToCurrentState"][1]["stname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_SetToCurrentState"]["()"] = defs["ImGuiStackSizes_SetToCurrentState"][1] +defs["ImGuiStackSizes_SetToContextState"] = {} +defs["ImGuiStackSizes_SetToContextState"][1] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["args"] = "(ImGuiStackSizes* self,ImGuiContext* ctx)" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][1] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][1]["name"] = "self" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][2] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][2]["name"] = "ctx" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][2]["type"] = "ImGuiContext*" +defs["ImGuiStackSizes_SetToContextState"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["ImGuiStackSizes_SetToContextState"][1]["call_args"] = "(ctx)" +defs["ImGuiStackSizes_SetToContextState"][1]["cimguiname"] = "ImGuiStackSizes_SetToContextState" +defs["ImGuiStackSizes_SetToContextState"][1]["defaults"] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["funcname"] = "SetToContextState" +defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1294" +defs["ImGuiStackSizes_SetToContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToContextState" +defs["ImGuiStackSizes_SetToContextState"][1]["ret"] = "void" +defs["ImGuiStackSizes_SetToContextState"][1]["signature"] = "(ImGuiContext*)" +defs["ImGuiStackSizes_SetToContextState"][1]["stname"] = "ImGuiStackSizes" +defs["ImGuiStackSizes_SetToContextState"]["(ImGuiContext*)"] = defs["ImGuiStackSizes_SetToContextState"][1] defs["ImGuiStackSizes_destroy"] = {} defs["ImGuiStackSizes_destroy"][1] = {} defs["ImGuiStackSizes_destroy"][1]["args"] = "(ImGuiStackSizes* self)" @@ -6633,92 +7382,61 @@ defs["ImGuiStackSizes_destroy"][1]["ret"] = "void" defs["ImGuiStackSizes_destroy"][1]["signature"] = "(ImGuiStackSizes*)" defs["ImGuiStackSizes_destroy"][1]["stname"] = "ImGuiStackSizes" defs["ImGuiStackSizes_destroy"]["(ImGuiStackSizes*)"] = defs["ImGuiStackSizes_destroy"][1] -defs["ImGuiStackTool_ImGuiStackTool"] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1]["args"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["argsT"] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1]["argsoriginal"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["call_args"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["cimguiname"] = "ImGuiStackTool_ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["constructor"] = true -defs["ImGuiStackTool_ImGuiStackTool"][1]["defaults"] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1]["funcname"] = "ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["location"] = "imgui_internal:1885" -defs["ImGuiStackTool_ImGuiStackTool"][1]["ov_cimguiname"] = "ImGuiStackTool_ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["signature"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["stname"] = "ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"]["()"] = defs["ImGuiStackTool_ImGuiStackTool"][1] -defs["ImGuiStackTool_destroy"] = {} -defs["ImGuiStackTool_destroy"][1] = {} -defs["ImGuiStackTool_destroy"][1]["args"] = "(ImGuiStackTool* self)" -defs["ImGuiStackTool_destroy"][1]["argsT"] = {} -defs["ImGuiStackTool_destroy"][1]["argsT"][1] = {} -defs["ImGuiStackTool_destroy"][1]["argsT"][1]["name"] = "self" -defs["ImGuiStackTool_destroy"][1]["argsT"][1]["type"] = "ImGuiStackTool*" -defs["ImGuiStackTool_destroy"][1]["call_args"] = "(self)" -defs["ImGuiStackTool_destroy"][1]["cimguiname"] = "ImGuiStackTool_destroy" -defs["ImGuiStackTool_destroy"][1]["defaults"] = {} -defs["ImGuiStackTool_destroy"][1]["destructor"] = true -defs["ImGuiStackTool_destroy"][1]["ov_cimguiname"] = "ImGuiStackTool_destroy" -defs["ImGuiStackTool_destroy"][1]["ret"] = "void" -defs["ImGuiStackTool_destroy"][1]["signature"] = "(ImGuiStackTool*)" -defs["ImGuiStackTool_destroy"][1]["stname"] = "ImGuiStackTool" -defs["ImGuiStackTool_destroy"]["(ImGuiStackTool*)"] = defs["ImGuiStackTool_destroy"][1] defs["ImGuiStoragePair_ImGuiStoragePair"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val_i" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["type"] = "int" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val_i)" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2348" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2683" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val_f" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["type"] = "float" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val_f)" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2349" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2684" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val_p" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["type"] = "void*" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val_p)" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2350" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2685" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -6753,7 +7471,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2381" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2724" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -6771,7 +7489,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2358" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2704" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -6796,7 +7514,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2361" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2707" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -6821,7 +7539,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2373" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2719" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -6846,7 +7564,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2363" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2709" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -6871,7 +7589,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2374" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2720" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -6896,7 +7614,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2359" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2705" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -6921,7 +7639,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2372" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2718" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -6942,7 +7660,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2365" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2711" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -6967,7 +7685,7 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2375" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2721" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -6988,7 +7706,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2378" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2726" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -7012,7 +7730,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2362" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2708" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -7036,7 +7754,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2364" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2710" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -7060,7 +7778,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2360" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2706" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -7084,7 +7802,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2366" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2712" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -7106,7 +7824,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][1]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][1]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][1]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][1]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1007" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1043" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -7125,7 +7843,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][2]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][2]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][2]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][2]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1008" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1044" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -7144,7 +7862,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][3]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][3]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][3]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][3]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1009" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1045" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -7177,7 +7895,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1950" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2272" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -7197,7 +7915,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1951" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2273" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7219,48 +7937,6 @@ defs["ImGuiStyle_destroy"][1]["ret"] = "void" defs["ImGuiStyle_destroy"][1]["signature"] = "(ImGuiStyle*)" defs["ImGuiStyle_destroy"][1]["stname"] = "ImGuiStyle" defs["ImGuiStyle_destroy"]["(ImGuiStyle*)"] = defs["ImGuiStyle_destroy"][1] -defs["ImGuiTabBar_GetTabName"] = {} -defs["ImGuiTabBar_GetTabName"][1] = {} -defs["ImGuiTabBar_GetTabName"][1]["args"] = "(ImGuiTabBar* self,const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabName"][1]["argsT"] = {} -defs["ImGuiTabBar_GetTabName"][1]["argsT"][1] = {} -defs["ImGuiTabBar_GetTabName"][1]["argsT"][1]["name"] = "self" -defs["ImGuiTabBar_GetTabName"][1]["argsT"][1]["type"] = "ImGuiTabBar*" -defs["ImGuiTabBar_GetTabName"][1]["argsT"][2] = {} -defs["ImGuiTabBar_GetTabName"][1]["argsT"][2]["name"] = "tab" -defs["ImGuiTabBar_GetTabName"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" -defs["ImGuiTabBar_GetTabName"][1]["argsoriginal"] = "(const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabName"][1]["call_args"] = "(tab)" -defs["ImGuiTabBar_GetTabName"][1]["cimguiname"] = "ImGuiTabBar_GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["defaults"] = {} -defs["ImGuiTabBar_GetTabName"][1]["funcname"] = "GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:2661" -defs["ImGuiTabBar_GetTabName"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["ret"] = "const char*" -defs["ImGuiTabBar_GetTabName"][1]["signature"] = "(const ImGuiTabItem*)const" -defs["ImGuiTabBar_GetTabName"][1]["stname"] = "ImGuiTabBar" -defs["ImGuiTabBar_GetTabName"]["(const ImGuiTabItem*)const"] = defs["ImGuiTabBar_GetTabName"][1] -defs["ImGuiTabBar_GetTabOrder"] = {} -defs["ImGuiTabBar_GetTabOrder"][1] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["args"] = "(ImGuiTabBar* self,const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][1] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][1]["name"] = "self" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][2] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][2]["name"] = "tab" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" -defs["ImGuiTabBar_GetTabOrder"][1]["argsoriginal"] = "(const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabOrder"][1]["call_args"] = "(tab)" -defs["ImGuiTabBar_GetTabOrder"][1]["cimguiname"] = "ImGuiTabBar_GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["defaults"] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["funcname"] = "GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:2660" -defs["ImGuiTabBar_GetTabOrder"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["ret"] = "int" -defs["ImGuiTabBar_GetTabOrder"][1]["signature"] = "(const ImGuiTabItem*)const" -defs["ImGuiTabBar_GetTabOrder"][1]["stname"] = "ImGuiTabBar" -defs["ImGuiTabBar_GetTabOrder"]["(const ImGuiTabItem*)const"] = defs["ImGuiTabBar_GetTabOrder"][1] defs["ImGuiTabBar_ImGuiTabBar"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["args"] = "()" @@ -7271,7 +7947,7 @@ defs["ImGuiTabBar_ImGuiTabBar"][1]["cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["constructor"] = true defs["ImGuiTabBar_ImGuiTabBar"][1]["defaults"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["funcname"] = "ImGuiTabBar" -defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2659" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:3049" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7302,7 +7978,7 @@ defs["ImGuiTabItem_ImGuiTabItem"][1]["cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["constructor"] = true defs["ImGuiTabItem_ImGuiTabItem"][1]["defaults"] = {} defs["ImGuiTabItem_ImGuiTabItem"][1]["funcname"] = "ImGuiTabItem" -defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2621" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:3009" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7333,7 +8009,7 @@ defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["cimguiname"] = "Im defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["constructor"] = true defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["defaults"] = {} defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["funcname"] = "ImGuiTableColumnSettings" -defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2910" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:3317" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7364,7 +8040,7 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" -defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2249" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2095" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -7395,7 +8071,7 @@ defs["ImGuiTableColumn_ImGuiTableColumn"][1]["cimguiname"] = "ImGuiTableColumn_I defs["ImGuiTableColumn_ImGuiTableColumn"][1]["constructor"] = true defs["ImGuiTableColumn_ImGuiTableColumn"][1]["defaults"] = {} defs["ImGuiTableColumn_ImGuiTableColumn"][1]["funcname"] = "ImGuiTableColumn" -defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2730" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:3112" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -7426,7 +8102,7 @@ defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["cimguiname"] = "ImGuiT defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["constructor"] = true defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["defaults"] = {} defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["funcname"] = "ImGuiTableInstanceData" -defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2758" +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:3155" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -7459,7 +8135,7 @@ defs["ImGuiTableSettings_GetColumnSettings"][1]["call_args"] = "()" defs["ImGuiTableSettings_GetColumnSettings"][1]["cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_GetColumnSettings"][1]["funcname"] = "GetColumnSettings" -defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2933" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:3340" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -7475,7 +8151,7 @@ defs["ImGuiTableSettings_ImGuiTableSettings"][1]["cimguiname"] = "ImGuiTableSett defs["ImGuiTableSettings_ImGuiTableSettings"][1]["constructor"] = true defs["ImGuiTableSettings_ImGuiTableSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_ImGuiTableSettings"][1]["funcname"] = "ImGuiTableSettings" -defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2932" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:3339" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -7506,7 +8182,7 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" -defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2262" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2084" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -7537,7 +8213,7 @@ defs["ImGuiTableTempData_ImGuiTableTempData"][1]["cimguiname"] = "ImGuiTableTemp defs["ImGuiTableTempData_ImGuiTableTempData"][1]["constructor"] = true defs["ImGuiTableTempData_ImGuiTableTempData"][1]["defaults"] = {} defs["ImGuiTableTempData_ImGuiTableTempData"][1]["funcname"] = "ImGuiTableTempData" -defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2895" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:3302" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -7568,7 +8244,7 @@ defs["ImGuiTable_ImGuiTable"][1]["cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["constructor"] = true defs["ImGuiTable_ImGuiTable"][1]["defaults"] = {} defs["ImGuiTable_ImGuiTable"][1]["funcname"] = "ImGuiTable" -defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2871" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:3274" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -7584,7 +8260,7 @@ defs["ImGuiTable_destroy"][1]["call_args"] = "(self)" defs["ImGuiTable_destroy"][1]["cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["defaults"] = {} defs["ImGuiTable_destroy"][1]["destructor"] = true -defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2872" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:3275" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7601,7 +8277,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2319" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2664" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -7625,7 +8301,7 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2328" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2673" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -7650,7 +8326,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2329" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2674" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -7675,7 +8351,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2330" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2675" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -7693,7 +8369,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2321" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2666" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -7711,7 +8387,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2327" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2672" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -7729,7 +8405,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2325" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2670" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -7763,7 +8439,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2324" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2669" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -7781,7 +8457,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2322" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2667" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -7802,7 +8478,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2326" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2671" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -7820,7 +8496,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2323" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2668" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -7838,7 +8514,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2292" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2637" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -7856,7 +8532,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2293" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2638" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -7882,7 +8558,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2290" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2635" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -7902,7 +8578,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2289" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2634" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -7919,7 +8595,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2294" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2639" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -7944,7 +8620,7 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2291" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2636" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -7987,7 +8663,7 @@ defs["ImGuiTextIndex_append"][1]["call_args"] = "(base,old_size,new_size)" defs["ImGuiTextIndex_append"][1]["cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["defaults"] = {} defs["ImGuiTextIndex_append"][1]["funcname"] = "append" -defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:730" +defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:736" defs["ImGuiTextIndex_append"][1]["ov_cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["ret"] = "void" defs["ImGuiTextIndex_append"][1]["signature"] = "(const char*,int,int)" @@ -8005,7 +8681,7 @@ defs["ImGuiTextIndex_clear"][1]["call_args"] = "()" defs["ImGuiTextIndex_clear"][1]["cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["defaults"] = {} defs["ImGuiTextIndex_clear"][1]["funcname"] = "clear" -defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:726" +defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:732" defs["ImGuiTextIndex_clear"][1]["ov_cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["ret"] = "void" defs["ImGuiTextIndex_clear"][1]["signature"] = "()" @@ -8029,7 +8705,7 @@ defs["ImGuiTextIndex_get_line_begin"][1]["call_args"] = "(base,n)" defs["ImGuiTextIndex_get_line_begin"][1]["cimguiname"] = "ImGuiTextIndex_get_line_begin" defs["ImGuiTextIndex_get_line_begin"][1]["defaults"] = {} defs["ImGuiTextIndex_get_line_begin"][1]["funcname"] = "get_line_begin" -defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:728" +defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:734" defs["ImGuiTextIndex_get_line_begin"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_begin" defs["ImGuiTextIndex_get_line_begin"][1]["ret"] = "const char*" defs["ImGuiTextIndex_get_line_begin"][1]["signature"] = "(const char*,int)" @@ -8053,7 +8729,7 @@ defs["ImGuiTextIndex_get_line_end"][1]["call_args"] = "(base,n)" defs["ImGuiTextIndex_get_line_end"][1]["cimguiname"] = "ImGuiTextIndex_get_line_end" defs["ImGuiTextIndex_get_line_end"][1]["defaults"] = {} defs["ImGuiTextIndex_get_line_end"][1]["funcname"] = "get_line_end" -defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:729" +defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:735" defs["ImGuiTextIndex_get_line_end"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_end" defs["ImGuiTextIndex_get_line_end"][1]["ret"] = "const char*" defs["ImGuiTextIndex_get_line_end"][1]["signature"] = "(const char*,int)" @@ -8071,7 +8747,7 @@ defs["ImGuiTextIndex_size"][1]["call_args"] = "()" defs["ImGuiTextIndex_size"][1]["cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["defaults"] = {} defs["ImGuiTextIndex_size"][1]["funcname"] = "size" -defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:727" +defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:733" defs["ImGuiTextIndex_size"][1]["ov_cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["ret"] = "int" defs["ImGuiTextIndex_size"][1]["signature"] = "()" @@ -8087,7 +8763,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2302" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2647" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -8106,7 +8782,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2303" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2648" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -8140,7 +8816,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2304" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2649" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -8164,15 +8840,64 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui:2305" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2650" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" defs["ImGuiTextRange_split"][1]["stname"] = "ImGuiTextRange" defs["ImGuiTextRange_split"]["(char,ImVector_ImGuiTextRange*)const"] = defs["ImGuiTextRange_split"][1] +defs["ImGuiTypingSelectState_Clear"] = {} +defs["ImGuiTypingSelectState_Clear"][1] = {} +defs["ImGuiTypingSelectState_Clear"][1]["args"] = "(ImGuiTypingSelectState* self)" +defs["ImGuiTypingSelectState_Clear"][1]["argsT"] = {} +defs["ImGuiTypingSelectState_Clear"][1]["argsT"][1] = {} +defs["ImGuiTypingSelectState_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTypingSelectState_Clear"][1]["argsT"][1]["type"] = "ImGuiTypingSelectState*" +defs["ImGuiTypingSelectState_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiTypingSelectState_Clear"][1]["call_args"] = "()" +defs["ImGuiTypingSelectState_Clear"][1]["cimguiname"] = "ImGuiTypingSelectState_Clear" +defs["ImGuiTypingSelectState_Clear"][1]["defaults"] = {} +defs["ImGuiTypingSelectState_Clear"][1]["funcname"] = "Clear" +defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1670" +defs["ImGuiTypingSelectState_Clear"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_Clear" +defs["ImGuiTypingSelectState_Clear"][1]["ret"] = "void" +defs["ImGuiTypingSelectState_Clear"][1]["signature"] = "()" +defs["ImGuiTypingSelectState_Clear"][1]["stname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_Clear"]["()"] = defs["ImGuiTypingSelectState_Clear"][1] +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["args"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["argsT"] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["argsoriginal"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["call_args"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["constructor"] = true +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["defaults"] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["funcname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1669" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["signature"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["stname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"]["()"] = defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1] +defs["ImGuiTypingSelectState_destroy"] = {} +defs["ImGuiTypingSelectState_destroy"][1] = {} +defs["ImGuiTypingSelectState_destroy"][1]["args"] = "(ImGuiTypingSelectState* self)" +defs["ImGuiTypingSelectState_destroy"][1]["argsT"] = {} +defs["ImGuiTypingSelectState_destroy"][1]["argsT"][1] = {} +defs["ImGuiTypingSelectState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTypingSelectState_destroy"][1]["argsT"][1]["type"] = "ImGuiTypingSelectState*" +defs["ImGuiTypingSelectState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiTypingSelectState_destroy"][1]["cimguiname"] = "ImGuiTypingSelectState_destroy" +defs["ImGuiTypingSelectState_destroy"][1]["defaults"] = {} +defs["ImGuiTypingSelectState_destroy"][1]["destructor"] = true +defs["ImGuiTypingSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_destroy" +defs["ImGuiTypingSelectState_destroy"][1]["ret"] = "void" +defs["ImGuiTypingSelectState_destroy"][1]["signature"] = "(ImGuiTypingSelectState*)" +defs["ImGuiTypingSelectState_destroy"][1]["stname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_destroy"]["(ImGuiTypingSelectState*)"] = defs["ImGuiTypingSelectState_destroy"][1] defs["ImGuiViewportP_CalcWorkRectPos"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1] = {} -defs["ImGuiViewportP_CalcWorkRectPos"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][1] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][1]["name"] = "pOut" @@ -8181,14 +8906,14 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2]["name"] = "self" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2]["type"] = "ImGuiViewportP*" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3] = {} -defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["name"] = "inset_min" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["type"] = "const ImVec2" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsoriginal"] = "(const ImVec2& off_min)" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(off_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsoriginal"] = "(const ImVec2& inset_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["funcname"] = "CalcWorkRectPos" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1747" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1998" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -8197,7 +8922,7 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["stname"] = "ImGuiViewportP" defs["ImGuiViewportP_CalcWorkRectPos"]["(const ImVec2)const"] = defs["ImGuiViewportP_CalcWorkRectPos"][1] defs["ImGuiViewportP_CalcWorkRectSize"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][1] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][1]["name"] = "pOut" @@ -8206,17 +8931,17 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2]["name"] = "self" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2]["type"] = "ImGuiViewportP*" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["name"] = "inset_min" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["type"] = "const ImVec2" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["name"] = "off_max" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["name"] = "inset_max" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["type"] = "const ImVec2" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsoriginal"] = "(const ImVec2& off_min,const ImVec2& off_max)" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(off_min,off_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsoriginal"] = "(const ImVec2& inset_min,const ImVec2& inset_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(inset_min,inset_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["funcname"] = "CalcWorkRectSize" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1748" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1999" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -8235,7 +8960,7 @@ defs["ImGuiViewportP_ClearRequestFlags"][1]["call_args"] = "()" defs["ImGuiViewportP_ClearRequestFlags"][1]["cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["defaults"] = {} defs["ImGuiViewportP_ClearRequestFlags"][1]["funcname"] = "ClearRequestFlags" -defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1744" +defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1995" defs["ImGuiViewportP_ClearRequestFlags"][1]["ov_cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["ret"] = "void" defs["ImGuiViewportP_ClearRequestFlags"][1]["signature"] = "()" @@ -8256,7 +8981,7 @@ defs["ImGuiViewportP_GetBuildWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetBuildWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1]["funcname"] = "GetBuildWorkRect" -defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1754" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:2005" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -8278,7 +9003,7 @@ defs["ImGuiViewportP_GetMainRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetMainRect"][1]["cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetMainRect"][1]["funcname"] = "GetMainRect" -defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1752" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:2003" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8300,7 +9025,7 @@ defs["ImGuiViewportP_GetWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetWorkRect"][1]["funcname"] = "GetWorkRect" -defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1753" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:2004" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8317,7 +9042,7 @@ defs["ImGuiViewportP_ImGuiViewportP"][1]["cimguiname"] = "ImGuiViewportP_ImGuiVi defs["ImGuiViewportP_ImGuiViewportP"][1]["constructor"] = true defs["ImGuiViewportP_ImGuiViewportP"][1]["defaults"] = {} defs["ImGuiViewportP_ImGuiViewportP"][1]["funcname"] = "ImGuiViewportP" -defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1742" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1993" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -8334,7 +9059,7 @@ defs["ImGuiViewportP_UpdateWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_UpdateWorkRect"][1]["cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_UpdateWorkRect"][1]["funcname"] = "UpdateWorkRect" -defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1749" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:2000" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -8351,7 +9076,7 @@ defs["ImGuiViewportP_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewportP_destroy"][1]["cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["defaults"] = {} defs["ImGuiViewportP_destroy"][1]["destructor"] = true -defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1743" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1994" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -8373,7 +9098,7 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3068" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3627" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -8395,7 +9120,7 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" -defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3069" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3628" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -8412,7 +9137,7 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" -defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3064" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3623" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -8428,7 +9153,7 @@ defs["ImGuiViewport_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewport_destroy"][1]["cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["defaults"] = {} defs["ImGuiViewport_destroy"][1]["destructor"] = true -defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3065" +defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3624" defs["ImGuiViewport_destroy"][1]["ov_cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["realdestructor"] = true defs["ImGuiViewport_destroy"][1]["ret"] = "void" @@ -8445,7 +9170,7 @@ defs["ImGuiWindowClass_ImGuiWindowClass"][1]["cimguiname"] = "ImGuiWindowClass_I defs["ImGuiWindowClass_ImGuiWindowClass"][1]["constructor"] = true defs["ImGuiWindowClass_ImGuiWindowClass"][1]["defaults"] = {} defs["ImGuiWindowClass_ImGuiWindowClass"][1]["funcname"] = "ImGuiWindowClass" -defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2216" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2585" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["ov_cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["signature"] = "()" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["stname"] = "ImGuiWindowClass" @@ -8478,7 +9203,7 @@ defs["ImGuiWindowSettings_GetName"][1]["call_args"] = "()" defs["ImGuiWindowSettings_GetName"][1]["cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["defaults"] = {} defs["ImGuiWindowSettings_GetName"][1]["funcname"] = "GetName" -defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1778" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:2031" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -8494,7 +9219,7 @@ defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["cimguiname"] = "ImGuiWindowS defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["constructor"] = true defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["defaults"] = {} defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["funcname"] = "ImGuiWindowSettings" -defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1777" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:2030" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -8527,7 +9252,7 @@ defs["ImGuiWindow_CalcFontSize"][1]["call_args"] = "()" defs["ImGuiWindow_CalcFontSize"][1]["cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["defaults"] = {} defs["ImGuiWindow_CalcFontSize"][1]["funcname"] = "CalcFontSize" -defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2575" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2966" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -8552,7 +9277,7 @@ defs["ImGuiWindow_GetID"][1]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][1]["defaults"] = {} defs["ImGuiWindow_GetID"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetID"][1]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2568" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2958" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -8571,7 +9296,7 @@ defs["ImGuiWindow_GetID"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetID"][2]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][2]["defaults"] = {} defs["ImGuiWindow_GetID"][2]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2569" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2959" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -8590,7 +9315,7 @@ defs["ImGuiWindow_GetID"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetID"][3]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][3]["defaults"] = {} defs["ImGuiWindow_GetID"][3]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2570" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2960" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -8598,6 +9323,27 @@ defs["ImGuiWindow_GetID"][3]["stname"] = "ImGuiWindow" defs["ImGuiWindow_GetID"]["(const char*,const char*)"] = defs["ImGuiWindow_GetID"][1] defs["ImGuiWindow_GetID"]["(const void*)"] = defs["ImGuiWindow_GetID"][2] defs["ImGuiWindow_GetID"]["(int)"] = defs["ImGuiWindow_GetID"][3] +defs["ImGuiWindow_GetIDFromPos"] = {} +defs["ImGuiWindow_GetIDFromPos"][1] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["args"] = "(ImGuiWindow* self,const ImVec2 p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1]["name"] = "self" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2]["name"] = "p_abs" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImGuiWindow_GetIDFromPos"][1]["argsoriginal"] = "(const ImVec2& p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["call_args"] = "(p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["cimguiname"] = "ImGuiWindow_GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["defaults"] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["funcname"] = "GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["location"] = "imgui_internal:2961" +defs["ImGuiWindow_GetIDFromPos"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["ret"] = "ImGuiID" +defs["ImGuiWindow_GetIDFromPos"][1]["signature"] = "(const ImVec2)" +defs["ImGuiWindow_GetIDFromPos"][1]["stname"] = "ImGuiWindow" +defs["ImGuiWindow_GetIDFromPos"]["(const ImVec2)"] = defs["ImGuiWindow_GetIDFromPos"][1] defs["ImGuiWindow_GetIDFromRectangle"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["args"] = "(ImGuiWindow* self,const ImRect r_abs)" @@ -8613,7 +9359,7 @@ defs["ImGuiWindow_GetIDFromRectangle"][1]["call_args"] = "(r_abs)" defs["ImGuiWindow_GetIDFromRectangle"][1]["cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["defaults"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["funcname"] = "GetIDFromRectangle" -defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2571" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2962" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -8635,29 +9381,11 @@ defs["ImGuiWindow_ImGuiWindow"][1]["cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["constructor"] = true defs["ImGuiWindow_ImGuiWindow"][1]["defaults"] = {} defs["ImGuiWindow_ImGuiWindow"][1]["funcname"] = "ImGuiWindow" -defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2564" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2954" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"]["(ImGuiContext*,const char*)"] = defs["ImGuiWindow_ImGuiWindow"][1] -defs["ImGuiWindow_MenuBarHeight"] = {} -defs["ImGuiWindow_MenuBarHeight"][1] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["args"] = "(ImGuiWindow* self)" -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"][1] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"][1]["name"] = "self" -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["ImGuiWindow_MenuBarHeight"][1]["argsoriginal"] = "()" -defs["ImGuiWindow_MenuBarHeight"][1]["call_args"] = "()" -defs["ImGuiWindow_MenuBarHeight"][1]["cimguiname"] = "ImGuiWindow_MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["defaults"] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["funcname"] = "MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:2578" -defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" -defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" -defs["ImGuiWindow_MenuBarHeight"][1]["stname"] = "ImGuiWindow" -defs["ImGuiWindow_MenuBarHeight"]["()const"] = defs["ImGuiWindow_MenuBarHeight"][1] defs["ImGuiWindow_MenuBarRect"] = {} defs["ImGuiWindow_MenuBarRect"][1] = {} defs["ImGuiWindow_MenuBarRect"][1]["args"] = "(ImRect *pOut,ImGuiWindow* self)" @@ -8673,7 +9401,7 @@ defs["ImGuiWindow_MenuBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarRect"][1]["cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarRect"][1]["funcname"] = "MenuBarRect" -defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2579" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2968" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -8695,31 +9423,13 @@ defs["ImGuiWindow_Rect"][1]["call_args"] = "()" defs["ImGuiWindow_Rect"][1]["cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["defaults"] = {} defs["ImGuiWindow_Rect"][1]["funcname"] = "Rect" -defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2574" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2965" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" defs["ImGuiWindow_Rect"][1]["signature"] = "()const" defs["ImGuiWindow_Rect"][1]["stname"] = "ImGuiWindow" defs["ImGuiWindow_Rect"]["()const"] = defs["ImGuiWindow_Rect"][1] -defs["ImGuiWindow_TitleBarHeight"] = {} -defs["ImGuiWindow_TitleBarHeight"][1] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["args"] = "(ImGuiWindow* self)" -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"][1] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"][1]["name"] = "self" -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["ImGuiWindow_TitleBarHeight"][1]["argsoriginal"] = "()" -defs["ImGuiWindow_TitleBarHeight"][1]["call_args"] = "()" -defs["ImGuiWindow_TitleBarHeight"][1]["cimguiname"] = "ImGuiWindow_TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["defaults"] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["funcname"] = "TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:2576" -defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" -defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" -defs["ImGuiWindow_TitleBarHeight"][1]["stname"] = "ImGuiWindow" -defs["ImGuiWindow_TitleBarHeight"]["()const"] = defs["ImGuiWindow_TitleBarHeight"][1] defs["ImGuiWindow_TitleBarRect"] = {} defs["ImGuiWindow_TitleBarRect"][1] = {} defs["ImGuiWindow_TitleBarRect"][1]["args"] = "(ImRect *pOut,ImGuiWindow* self)" @@ -8735,7 +9445,7 @@ defs["ImGuiWindow_TitleBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarRect"][1]["cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarRect"][1]["funcname"] = "TitleBarRect" -defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2577" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2967" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -8753,7 +9463,7 @@ defs["ImGuiWindow_destroy"][1]["call_args"] = "(self)" defs["ImGuiWindow_destroy"][1]["cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["defaults"] = {} defs["ImGuiWindow_destroy"][1]["destructor"] = true -defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2566" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2956" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -8772,7 +9482,7 @@ defs["ImPool_Add"][1]["call_args"] = "()" defs["ImPool_Add"][1]["cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["defaults"] = {} defs["ImPool_Add"][1]["funcname"] = "Add" -defs["ImPool_Add"][1]["location"] = "imgui_internal:679" +defs["ImPool_Add"][1]["location"] = "imgui_internal:689" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -8791,7 +9501,7 @@ defs["ImPool_Clear"][1]["call_args"] = "()" defs["ImPool_Clear"][1]["cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["defaults"] = {} defs["ImPool_Clear"][1]["funcname"] = "Clear" -defs["ImPool_Clear"][1]["location"] = "imgui_internal:678" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:688" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -8813,7 +9523,7 @@ defs["ImPool_Contains"][1]["call_args"] = "(p)" defs["ImPool_Contains"][1]["cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["defaults"] = {} defs["ImPool_Contains"][1]["funcname"] = "Contains" -defs["ImPool_Contains"][1]["location"] = "imgui_internal:677" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:687" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -8832,7 +9542,7 @@ defs["ImPool_GetAliveCount"][1]["call_args"] = "()" defs["ImPool_GetAliveCount"][1]["cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["defaults"] = {} defs["ImPool_GetAliveCount"][1]["funcname"] = "GetAliveCount" -defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:686" +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:696" defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -8851,7 +9561,7 @@ defs["ImPool_GetBufSize"][1]["call_args"] = "()" defs["ImPool_GetBufSize"][1]["cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["defaults"] = {} defs["ImPool_GetBufSize"][1]["funcname"] = "GetBufSize" -defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:687" +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:697" defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -8873,7 +9583,7 @@ defs["ImPool_GetByIndex"][1]["call_args"] = "(n)" defs["ImPool_GetByIndex"][1]["cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["defaults"] = {} defs["ImPool_GetByIndex"][1]["funcname"] = "GetByIndex" -defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:674" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:684" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -8895,7 +9605,7 @@ defs["ImPool_GetByKey"][1]["call_args"] = "(key)" defs["ImPool_GetByKey"][1]["cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["defaults"] = {} defs["ImPool_GetByKey"][1]["funcname"] = "GetByKey" -defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:673" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:683" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -8917,7 +9627,7 @@ defs["ImPool_GetIndex"][1]["call_args"] = "(p)" defs["ImPool_GetIndex"][1]["cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["defaults"] = {} defs["ImPool_GetIndex"][1]["funcname"] = "GetIndex" -defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:675" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:685" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -8936,7 +9646,7 @@ defs["ImPool_GetMapSize"][1]["call_args"] = "()" defs["ImPool_GetMapSize"][1]["cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["defaults"] = {} defs["ImPool_GetMapSize"][1]["funcname"] = "GetMapSize" -defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:688" +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:698" defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -8958,7 +9668,7 @@ defs["ImPool_GetOrAddByKey"][1]["call_args"] = "(key)" defs["ImPool_GetOrAddByKey"][1]["cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["defaults"] = {} defs["ImPool_GetOrAddByKey"][1]["funcname"] = "GetOrAddByKey" -defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:676" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:686" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -8975,7 +9685,7 @@ defs["ImPool_ImPool"][1]["cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["constructor"] = true defs["ImPool_ImPool"][1]["defaults"] = {} defs["ImPool_ImPool"][1]["funcname"] = "ImPool" -defs["ImPool_ImPool"][1]["location"] = "imgui_internal:671" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:681" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -8999,7 +9709,7 @@ defs["ImPool_Remove"][1]["call_args"] = "(key,p)" defs["ImPool_Remove"][1]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][1]["defaults"] = {} defs["ImPool_Remove"][1]["funcname"] = "Remove" -defs["ImPool_Remove"][1]["location"] = "imgui_internal:680" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:690" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -9022,7 +9732,7 @@ defs["ImPool_Remove"][2]["call_args"] = "(key,idx)" defs["ImPool_Remove"][2]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][2]["defaults"] = {} defs["ImPool_Remove"][2]["funcname"] = "Remove" -defs["ImPool_Remove"][2]["location"] = "imgui_internal:681" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:691" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -9045,7 +9755,7 @@ defs["ImPool_Reserve"][1]["call_args"] = "(capacity)" defs["ImPool_Reserve"][1]["cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["defaults"] = {} defs["ImPool_Reserve"][1]["funcname"] = "Reserve" -defs["ImPool_Reserve"][1]["location"] = "imgui_internal:682" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:692" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -9067,7 +9777,7 @@ defs["ImPool_TryGetMapData"][1]["call_args"] = "(n)" defs["ImPool_TryGetMapData"][1]["cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["defaults"] = {} defs["ImPool_TryGetMapData"][1]["funcname"] = "TryGetMapData" -defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:689" +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:699" defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -9085,7 +9795,7 @@ defs["ImPool_destroy"][1]["call_args"] = "(self)" defs["ImPool_destroy"][1]["cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["defaults"] = {} defs["ImPool_destroy"][1]["destructor"] = true -defs["ImPool_destroy"][1]["location"] = "imgui_internal:672" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:682" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -9108,7 +9818,7 @@ defs["ImRect_Add"][1]["call_args"] = "(p)" defs["ImRect_Add"][1]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][1]["defaults"] = {} defs["ImRect_Add"][1]["funcname"] = "Add" -defs["ImRect_Add"][1]["location"] = "imgui_internal:548" +defs["ImRect_Add"][1]["location"] = "imgui_internal:552" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -9127,7 +9837,7 @@ defs["ImRect_Add"][2]["call_args"] = "(r)" defs["ImRect_Add"][2]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][2]["defaults"] = {} defs["ImRect_Add"][2]["funcname"] = "Add" -defs["ImRect_Add"][2]["location"] = "imgui_internal:549" +defs["ImRect_Add"][2]["location"] = "imgui_internal:553" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -9149,7 +9859,7 @@ defs["ImRect_ClipWith"][1]["call_args"] = "(r)" defs["ImRect_ClipWith"][1]["cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["defaults"] = {} defs["ImRect_ClipWith"][1]["funcname"] = "ClipWith" -defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:555" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:559" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -9170,7 +9880,7 @@ defs["ImRect_ClipWithFull"][1]["call_args"] = "(r)" defs["ImRect_ClipWithFull"][1]["cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["defaults"] = {} defs["ImRect_ClipWithFull"][1]["funcname"] = "ClipWithFull" -defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:556" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:560" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -9191,7 +9901,7 @@ defs["ImRect_Contains"][1]["call_args"] = "(p)" defs["ImRect_Contains"][1]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][1]["defaults"] = {} defs["ImRect_Contains"][1]["funcname"] = "Contains" -defs["ImRect_Contains"][1]["location"] = "imgui_internal:545" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:548" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -9210,13 +9920,37 @@ defs["ImRect_Contains"][2]["call_args"] = "(r)" defs["ImRect_Contains"][2]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][2]["defaults"] = {} defs["ImRect_Contains"][2]["funcname"] = "Contains" -defs["ImRect_Contains"][2]["location"] = "imgui_internal:546" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:549" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" defs["ImRect_Contains"][2]["stname"] = "ImRect" defs["ImRect_Contains"]["(const ImRect)const"] = defs["ImRect_Contains"][2] defs["ImRect_Contains"]["(const ImVec2)const"] = defs["ImRect_Contains"][1] +defs["ImRect_ContainsWithPad"] = {} +defs["ImRect_ContainsWithPad"][1] = {} +defs["ImRect_ContainsWithPad"][1]["args"] = "(ImRect* self,const ImVec2 p,const ImVec2 pad)" +defs["ImRect_ContainsWithPad"][1]["argsT"] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][1] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][1]["name"] = "self" +defs["ImRect_ContainsWithPad"][1]["argsT"][1]["type"] = "ImRect*" +defs["ImRect_ContainsWithPad"][1]["argsT"][2] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][2]["name"] = "p" +defs["ImRect_ContainsWithPad"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImRect_ContainsWithPad"][1]["argsT"][3] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][3]["name"] = "pad" +defs["ImRect_ContainsWithPad"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImRect_ContainsWithPad"][1]["argsoriginal"] = "(const ImVec2& p,const ImVec2& pad)" +defs["ImRect_ContainsWithPad"][1]["call_args"] = "(p,pad)" +defs["ImRect_ContainsWithPad"][1]["cimguiname"] = "ImRect_ContainsWithPad" +defs["ImRect_ContainsWithPad"][1]["defaults"] = {} +defs["ImRect_ContainsWithPad"][1]["funcname"] = "ContainsWithPad" +defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:550" +defs["ImRect_ContainsWithPad"][1]["ov_cimguiname"] = "ImRect_ContainsWithPad" +defs["ImRect_ContainsWithPad"][1]["ret"] = "bool" +defs["ImRect_ContainsWithPad"][1]["signature"] = "(const ImVec2,const ImVec2)const" +defs["ImRect_ContainsWithPad"][1]["stname"] = "ImRect" +defs["ImRect_ContainsWithPad"]["(const ImVec2,const ImVec2)const"] = defs["ImRect_ContainsWithPad"][1] defs["ImRect_Expand"] = {} defs["ImRect_Expand"][1] = {} defs["ImRect_Expand"][1]["args"] = "(ImRect* self,const float amount)" @@ -9232,7 +9966,7 @@ defs["ImRect_Expand"][1]["call_args"] = "(amount)" defs["ImRect_Expand"][1]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][1]["defaults"] = {} defs["ImRect_Expand"][1]["funcname"] = "Expand" -defs["ImRect_Expand"][1]["location"] = "imgui_internal:550" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:554" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -9251,7 +9985,7 @@ defs["ImRect_Expand"][2]["call_args"] = "(amount)" defs["ImRect_Expand"][2]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][2]["defaults"] = {} defs["ImRect_Expand"][2]["funcname"] = "Expand" -defs["ImRect_Expand"][2]["location"] = "imgui_internal:551" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:555" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -9270,7 +10004,7 @@ defs["ImRect_Floor"][1]["call_args"] = "()" defs["ImRect_Floor"][1]["cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["defaults"] = {} defs["ImRect_Floor"][1]["funcname"] = "Floor" -defs["ImRect_Floor"][1]["location"] = "imgui_internal:557" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:561" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -9288,7 +10022,7 @@ defs["ImRect_GetArea"][1]["call_args"] = "()" defs["ImRect_GetArea"][1]["cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["defaults"] = {} defs["ImRect_GetArea"][1]["funcname"] = "GetArea" -defs["ImRect_GetArea"][1]["location"] = "imgui_internal:540" +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:543" defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -9309,7 +10043,7 @@ defs["ImRect_GetBL"][1]["call_args"] = "()" defs["ImRect_GetBL"][1]["cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["defaults"] = {} defs["ImRect_GetBL"][1]["funcname"] = "GetBL" -defs["ImRect_GetBL"][1]["location"] = "imgui_internal:543" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:546" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -9331,7 +10065,7 @@ defs["ImRect_GetBR"][1]["call_args"] = "()" defs["ImRect_GetBR"][1]["cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["defaults"] = {} defs["ImRect_GetBR"][1]["funcname"] = "GetBR" -defs["ImRect_GetBR"][1]["location"] = "imgui_internal:544" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:547" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -9353,7 +10087,7 @@ defs["ImRect_GetCenter"][1]["call_args"] = "()" defs["ImRect_GetCenter"][1]["cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["defaults"] = {} defs["ImRect_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:536" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:539" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -9372,7 +10106,7 @@ defs["ImRect_GetHeight"][1]["call_args"] = "()" defs["ImRect_GetHeight"][1]["cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["defaults"] = {} defs["ImRect_GetHeight"][1]["funcname"] = "GetHeight" -defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:539" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:542" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -9393,7 +10127,7 @@ defs["ImRect_GetSize"][1]["call_args"] = "()" defs["ImRect_GetSize"][1]["cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["defaults"] = {} defs["ImRect_GetSize"][1]["funcname"] = "GetSize" -defs["ImRect_GetSize"][1]["location"] = "imgui_internal:537" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:540" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -9415,7 +10149,7 @@ defs["ImRect_GetTL"][1]["call_args"] = "()" defs["ImRect_GetTL"][1]["cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["defaults"] = {} defs["ImRect_GetTL"][1]["funcname"] = "GetTL" -defs["ImRect_GetTL"][1]["location"] = "imgui_internal:541" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:544" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -9437,7 +10171,7 @@ defs["ImRect_GetTR"][1]["call_args"] = "()" defs["ImRect_GetTR"][1]["cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["defaults"] = {} defs["ImRect_GetTR"][1]["funcname"] = "GetTR" -defs["ImRect_GetTR"][1]["location"] = "imgui_internal:542" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:545" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -9456,7 +10190,7 @@ defs["ImRect_GetWidth"][1]["call_args"] = "()" defs["ImRect_GetWidth"][1]["cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["defaults"] = {} defs["ImRect_GetWidth"][1]["funcname"] = "GetWidth" -defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:538" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:541" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -9472,7 +10206,7 @@ defs["ImRect_ImRect"][1]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][1]["constructor"] = true defs["ImRect_ImRect"][1]["defaults"] = {} defs["ImRect_ImRect"][1]["funcname"] = "ImRect" -defs["ImRect_ImRect"][1]["location"] = "imgui_internal:531" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:534" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -9491,7 +10225,7 @@ defs["ImRect_ImRect"][2]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][2]["constructor"] = true defs["ImRect_ImRect"][2]["defaults"] = {} defs["ImRect_ImRect"][2]["funcname"] = "ImRect" -defs["ImRect_ImRect"][2]["location"] = "imgui_internal:532" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:535" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -9507,7 +10241,7 @@ defs["ImRect_ImRect"][3]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][3]["constructor"] = true defs["ImRect_ImRect"][3]["defaults"] = {} defs["ImRect_ImRect"][3]["funcname"] = "ImRect" -defs["ImRect_ImRect"][3]["location"] = "imgui_internal:533" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:536" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -9532,7 +10266,7 @@ defs["ImRect_ImRect"][4]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][4]["constructor"] = true defs["ImRect_ImRect"][4]["defaults"] = {} defs["ImRect_ImRect"][4]["funcname"] = "ImRect" -defs["ImRect_ImRect"][4]["location"] = "imgui_internal:534" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:537" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -9552,7 +10286,7 @@ defs["ImRect_IsInverted"][1]["call_args"] = "()" defs["ImRect_IsInverted"][1]["cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["defaults"] = {} defs["ImRect_IsInverted"][1]["funcname"] = "IsInverted" -defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:558" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:562" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -9573,7 +10307,7 @@ defs["ImRect_Overlaps"][1]["call_args"] = "(r)" defs["ImRect_Overlaps"][1]["cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["defaults"] = {} defs["ImRect_Overlaps"][1]["funcname"] = "Overlaps" -defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:547" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:551" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -9594,7 +10328,7 @@ defs["ImRect_ToVec4"][1]["call_args"] = "()" defs["ImRect_ToVec4"][1]["cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["defaults"] = {} defs["ImRect_ToVec4"][1]["funcname"] = "ToVec4" -defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:559" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:563" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -9616,7 +10350,7 @@ defs["ImRect_Translate"][1]["call_args"] = "(d)" defs["ImRect_Translate"][1]["cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["defaults"] = {} defs["ImRect_Translate"][1]["funcname"] = "Translate" -defs["ImRect_Translate"][1]["location"] = "imgui_internal:552" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:556" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -9637,7 +10371,7 @@ defs["ImRect_TranslateX"][1]["call_args"] = "(dx)" defs["ImRect_TranslateX"][1]["cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["defaults"] = {} defs["ImRect_TranslateX"][1]["funcname"] = "TranslateX" -defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:553" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:557" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -9658,7 +10392,7 @@ defs["ImRect_TranslateY"][1]["call_args"] = "(dy)" defs["ImRect_TranslateY"][1]["cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["defaults"] = {} defs["ImRect_TranslateY"][1]["funcname"] = "TranslateY" -defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:554" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:558" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -9692,7 +10426,7 @@ defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["call_args"] = "()" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["defaults"] = {} defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["funcname"] = "GetArenaSizeInBytes" -defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:651" +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:661" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -9714,7 +10448,7 @@ defs["ImSpanAllocator_GetSpanPtrBegin"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrBegin"][1]["funcname"] = "GetSpanPtrBegin" -defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:653" +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:663" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -9736,7 +10470,7 @@ defs["ImSpanAllocator_GetSpanPtrEnd"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrEnd"][1]["funcname"] = "GetSpanPtrEnd" -defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:654" +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:664" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -9753,7 +10487,7 @@ defs["ImSpanAllocator_ImSpanAllocator"][1]["cimguiname"] = "ImSpanAllocator_ImSp defs["ImSpanAllocator_ImSpanAllocator"][1]["constructor"] = true defs["ImSpanAllocator_ImSpanAllocator"][1]["defaults"] = {} defs["ImSpanAllocator_ImSpanAllocator"][1]["funcname"] = "ImSpanAllocator" -defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:649" +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:659" defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -9781,7 +10515,7 @@ defs["ImSpanAllocator_Reserve"][1]["cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["defaults"] = {} defs["ImSpanAllocator_Reserve"][1]["defaults"]["a"] = "4" defs["ImSpanAllocator_Reserve"][1]["funcname"] = "Reserve" -defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:650" +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:660" defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -9803,7 +10537,7 @@ defs["ImSpanAllocator_SetArenaBasePtr"][1]["call_args"] = "(base_ptr)" defs["ImSpanAllocator_SetArenaBasePtr"][1]["cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["defaults"] = {} defs["ImSpanAllocator_SetArenaBasePtr"][1]["funcname"] = "SetArenaBasePtr" -defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:652" +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:662" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -9837,7 +10571,7 @@ defs["ImSpan_ImSpan"][1]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][1]["constructor"] = true defs["ImSpan_ImSpan"][1]["defaults"] = {} defs["ImSpan_ImSpan"][1]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:617" +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:627" defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -9857,7 +10591,7 @@ defs["ImSpan_ImSpan"][2]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][2]["constructor"] = true defs["ImSpan_ImSpan"][2]["defaults"] = {} defs["ImSpan_ImSpan"][2]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:618" +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:628" defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -9877,7 +10611,7 @@ defs["ImSpan_ImSpan"][3]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][3]["constructor"] = true defs["ImSpan_ImSpan"][3]["defaults"] = {} defs["ImSpan_ImSpan"][3]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:619" +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:629" defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -9897,7 +10631,7 @@ defs["ImSpan_begin"][1]["call_args"] = "()" defs["ImSpan_begin"][1]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][1]["defaults"] = {} defs["ImSpan_begin"][1]["funcname"] = "begin" -defs["ImSpan_begin"][1]["location"] = "imgui_internal:628" +defs["ImSpan_begin"][1]["location"] = "imgui_internal:638" defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -9914,7 +10648,7 @@ defs["ImSpan_begin"][2]["call_args"] = "()" defs["ImSpan_begin"][2]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][2]["defaults"] = {} defs["ImSpan_begin"][2]["funcname"] = "begin" -defs["ImSpan_begin"][2]["location"] = "imgui_internal:629" +defs["ImSpan_begin"][2]["location"] = "imgui_internal:639" defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -9951,7 +10685,7 @@ defs["ImSpan_end"][1]["call_args"] = "()" defs["ImSpan_end"][1]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][1]["defaults"] = {} defs["ImSpan_end"][1]["funcname"] = "end" -defs["ImSpan_end"][1]["location"] = "imgui_internal:630" +defs["ImSpan_end"][1]["location"] = "imgui_internal:640" defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -9968,7 +10702,7 @@ defs["ImSpan_end"][2]["call_args"] = "()" defs["ImSpan_end"][2]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][2]["defaults"] = {} defs["ImSpan_end"][2]["funcname"] = "end" -defs["ImSpan_end"][2]["location"] = "imgui_internal:631" +defs["ImSpan_end"][2]["location"] = "imgui_internal:641" defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -9991,7 +10725,7 @@ defs["ImSpan_index_from_ptr"][1]["call_args"] = "(it)" defs["ImSpan_index_from_ptr"][1]["cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["defaults"] = {} defs["ImSpan_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:634" +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:644" defs["ImSpan_index_from_ptr"][1]["ov_cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["ret"] = "int" defs["ImSpan_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -10016,7 +10750,7 @@ defs["ImSpan_set"][1]["call_args"] = "(data,size)" defs["ImSpan_set"][1]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][1]["defaults"] = {} defs["ImSpan_set"][1]["funcname"] = "set" -defs["ImSpan_set"][1]["location"] = "imgui_internal:621" +defs["ImSpan_set"][1]["location"] = "imgui_internal:631" defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -10039,7 +10773,7 @@ defs["ImSpan_set"][2]["call_args"] = "(data,data_end)" defs["ImSpan_set"][2]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][2]["defaults"] = {} defs["ImSpan_set"][2]["funcname"] = "set" -defs["ImSpan_set"][2]["location"] = "imgui_internal:622" +defs["ImSpan_set"][2]["location"] = "imgui_internal:632" defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -10059,7 +10793,7 @@ defs["ImSpan_size"][1]["call_args"] = "()" defs["ImSpan_size"][1]["cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["defaults"] = {} defs["ImSpan_size"][1]["funcname"] = "size" -defs["ImSpan_size"][1]["location"] = "imgui_internal:623" +defs["ImSpan_size"][1]["location"] = "imgui_internal:633" defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -10078,7 +10812,7 @@ defs["ImSpan_size_in_bytes"][1]["call_args"] = "()" defs["ImSpan_size_in_bytes"][1]["cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["defaults"] = {} defs["ImSpan_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:624" +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:634" defs["ImSpan_size_in_bytes"][1]["ov_cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["ret"] = "int" defs["ImSpan_size_in_bytes"][1]["signature"] = "()const" @@ -10095,7 +10829,7 @@ defs["ImVec1_ImVec1"][1]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][1]["constructor"] = true defs["ImVec1_ImVec1"][1]["defaults"] = {} defs["ImVec1_ImVec1"][1]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:511" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:514" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -10111,7 +10845,7 @@ defs["ImVec1_ImVec1"][2]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][2]["constructor"] = true defs["ImVec1_ImVec1"][2]["defaults"] = {} defs["ImVec1_ImVec1"][2]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:512" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:515" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -10143,7 +10877,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:262" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:296" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -10162,7 +10896,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:263" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:297" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -10194,7 +10928,7 @@ defs["ImVec2ih_ImVec2ih"][1]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][1]["constructor"] = true defs["ImVec2ih_ImVec2ih"][1]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][1]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:519" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:522" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -10213,7 +10947,7 @@ defs["ImVec2ih_ImVec2ih"][2]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][2]["constructor"] = true defs["ImVec2ih_ImVec2ih"][2]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][2]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:520" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:523" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -10229,7 +10963,7 @@ defs["ImVec2ih_ImVec2ih"][3]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][3]["constructor"] = true defs["ImVec2ih_ImVec2ih"][3]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][3]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:521" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:524" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -10262,7 +10996,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:275" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:309" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -10287,7 +11021,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:276" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:310" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -10319,7 +11053,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui:1847" +defs["ImVector_ImVector"][1]["location"] = "imgui:2152" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10336,7 +11070,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui:1848" +defs["ImVector_ImVector"][2]["location"] = "imgui:2153" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -10358,7 +11092,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui:1874" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2179" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -10377,7 +11111,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui:1870" +defs["ImVector_back"][1]["location"] = "imgui:2175" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -10395,7 +11129,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui:1871" +defs["ImVector_back"][2]["location"] = "imgui:2176" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -10416,7 +11150,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui:1864" +defs["ImVector_begin"][1]["location"] = "imgui:2169" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -10433,7 +11167,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui:1865" +defs["ImVector_begin"][2]["location"] = "imgui:2170" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -10453,7 +11187,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui:1860" +defs["ImVector_capacity"][1]["location"] = "imgui:2165" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -10472,7 +11206,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui:1852" +defs["ImVector_clear"][1]["location"] = "imgui:2157" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -10491,7 +11225,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:1853" +defs["ImVector_clear_delete"][1]["location"] = "imgui:2158" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -10510,7 +11244,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:1854" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2159" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -10532,7 +11266,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui:1889" +defs["ImVector_contains"][1]["location"] = "imgui:2194" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -10550,7 +11284,7 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true -defs["ImVector_destroy"][1]["location"] = "imgui:1850" +defs["ImVector_destroy"][1]["location"] = "imgui:2155" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -10570,7 +11304,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui:1856" +defs["ImVector_empty"][1]["location"] = "imgui:2161" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -10589,7 +11323,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui:1866" +defs["ImVector_end"][1]["location"] = "imgui:2171" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -10606,7 +11340,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui:1867" +defs["ImVector_end"][2]["location"] = "imgui:2172" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -10629,7 +11363,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui:1885" +defs["ImVector_erase"][1]["location"] = "imgui:2190" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -10652,7 +11386,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui:1886" +defs["ImVector_erase"][2]["location"] = "imgui:2191" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -10675,7 +11409,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1887" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2192" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -10697,7 +11431,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui:1890" +defs["ImVector_find"][1]["location"] = "imgui:2195" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -10717,7 +11451,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui:1891" +defs["ImVector_find"][2]["location"] = "imgui:2196" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -10740,7 +11474,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui:1892" +defs["ImVector_find_erase"][1]["location"] = "imgui:2198" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -10762,13 +11496,35 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1893" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2199" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" defs["ImVector_find_erase_unsorted"][1]["stname"] = "ImVector" defs["ImVector_find_erase_unsorted"][1]["templated"] = true defs["ImVector_find_erase_unsorted"]["(const T)"] = defs["ImVector_find_erase_unsorted"][1] +defs["ImVector_find_index"] = {} +defs["ImVector_find_index"][1] = {} +defs["ImVector_find_index"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_find_index"][1]["argsT"] = {} +defs["ImVector_find_index"][1]["argsT"][1] = {} +defs["ImVector_find_index"][1]["argsT"][1]["name"] = "self" +defs["ImVector_find_index"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_find_index"][1]["argsT"][2] = {} +defs["ImVector_find_index"][1]["argsT"][2]["name"] = "v" +defs["ImVector_find_index"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_find_index"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_find_index"][1]["call_args"] = "(v)" +defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["defaults"] = {} +defs["ImVector_find_index"][1]["funcname"] = "find_index" +defs["ImVector_find_index"][1]["location"] = "imgui:2197" +defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["ret"] = "int" +defs["ImVector_find_index"][1]["signature"] = "(const T)const" +defs["ImVector_find_index"][1]["stname"] = "ImVector" +defs["ImVector_find_index"][1]["templated"] = true +defs["ImVector_find_index"]["(const T)const"] = defs["ImVector_find_index"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} defs["ImVector_front"][1]["args"] = "(ImVector* self)" @@ -10781,7 +11537,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui:1868" +defs["ImVector_front"][1]["location"] = "imgui:2173" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -10799,7 +11555,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui:1869" +defs["ImVector_front"][2]["location"] = "imgui:2174" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -10823,7 +11579,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1894" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2200" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -10848,7 +11604,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:1888" +defs["ImVector_insert"][1]["location"] = "imgui:2193" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -10867,7 +11623,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:1859" +defs["ImVector_max_size"][1]["location"] = "imgui:2164" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -10886,7 +11642,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui:1883" +defs["ImVector_pop_back"][1]["location"] = "imgui:2188" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -10908,7 +11664,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui:1882" +defs["ImVector_push_back"][1]["location"] = "imgui:2187" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -10930,7 +11686,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui:1884" +defs["ImVector_push_front"][1]["location"] = "imgui:2189" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -10952,7 +11708,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui:1878" +defs["ImVector_reserve"][1]["location"] = "imgui:2183" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -10974,7 +11730,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:1879" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2184" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -10996,7 +11752,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui:1875" +defs["ImVector_resize"][1]["location"] = "imgui:2180" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -11019,7 +11775,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui:1876" +defs["ImVector_resize"][2]["location"] = "imgui:2181" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -11042,7 +11798,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui:1877" +defs["ImVector_shrink"][1]["location"] = "imgui:2182" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -11061,7 +11817,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui:1857" +defs["ImVector_size"][1]["location"] = "imgui:2162" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -11080,7 +11836,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1858" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2163" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -11103,7 +11859,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui:1872" +defs["ImVector_swap"][1]["location"] = "imgui:2177" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -11126,32 +11882,32 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui:841" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:911" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" defs["igAcceptDragDropPayload"][1]["signature"] = "(const char*,ImGuiDragDropFlags)" defs["igAcceptDragDropPayload"][1]["stname"] = "" defs["igAcceptDragDropPayload"]["(const char*,ImGuiDragDropFlags)"] = defs["igAcceptDragDropPayload"][1] -defs["igActivateItem"] = {} -defs["igActivateItem"][1] = {} -defs["igActivateItem"][1]["args"] = "(ImGuiID id)" -defs["igActivateItem"][1]["argsT"] = {} -defs["igActivateItem"][1]["argsT"][1] = {} -defs["igActivateItem"][1]["argsT"][1]["name"] = "id" -defs["igActivateItem"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igActivateItem"][1]["argsoriginal"] = "(ImGuiID id)" -defs["igActivateItem"][1]["call_args"] = "(id)" -defs["igActivateItem"][1]["cimguiname"] = "igActivateItem" -defs["igActivateItem"][1]["defaults"] = {} -defs["igActivateItem"][1]["funcname"] = "ActivateItem" -defs["igActivateItem"][1]["location"] = "imgui_internal:3109" -defs["igActivateItem"][1]["namespace"] = "ImGui" -defs["igActivateItem"][1]["ov_cimguiname"] = "igActivateItem" -defs["igActivateItem"][1]["ret"] = "void" -defs["igActivateItem"][1]["signature"] = "(ImGuiID)" -defs["igActivateItem"][1]["stname"] = "" -defs["igActivateItem"]["(ImGuiID)"] = defs["igActivateItem"][1] +defs["igActivateItemByID"] = {} +defs["igActivateItemByID"][1] = {} +defs["igActivateItemByID"][1]["args"] = "(ImGuiID id)" +defs["igActivateItemByID"][1]["argsT"] = {} +defs["igActivateItemByID"][1]["argsT"][1] = {} +defs["igActivateItemByID"][1]["argsT"][1]["name"] = "id" +defs["igActivateItemByID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igActivateItemByID"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igActivateItemByID"][1]["call_args"] = "(id)" +defs["igActivateItemByID"][1]["cimguiname"] = "igActivateItemByID" +defs["igActivateItemByID"][1]["defaults"] = {} +defs["igActivateItemByID"][1]["funcname"] = "ActivateItemByID" +defs["igActivateItemByID"][1]["location"] = "imgui_internal:3549" +defs["igActivateItemByID"][1]["namespace"] = "ImGui" +defs["igActivateItemByID"][1]["ov_cimguiname"] = "igActivateItemByID" +defs["igActivateItemByID"][1]["ret"] = "void" +defs["igActivateItemByID"][1]["signature"] = "(ImGuiID)" +defs["igActivateItemByID"][1]["stname"] = "" +defs["igActivateItemByID"]["(ImGuiID)"] = defs["igActivateItemByID"][1] defs["igAddContextHook"] = {} defs["igAddContextHook"][1] = {} defs["igAddContextHook"][1]["args"] = "(ImGuiContext* context,const ImGuiContextHook* hook)" @@ -11167,13 +11923,38 @@ defs["igAddContextHook"][1]["call_args"] = "(context,hook)" defs["igAddContextHook"][1]["cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["defaults"] = {} defs["igAddContextHook"][1]["funcname"] = "AddContextHook" -defs["igAddContextHook"][1]["location"] = "imgui_internal:2993" +defs["igAddContextHook"][1]["location"] = "imgui_internal:3410" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" defs["igAddContextHook"][1]["signature"] = "(ImGuiContext*,const ImGuiContextHook*)" defs["igAddContextHook"][1]["stname"] = "" defs["igAddContextHook"]["(ImGuiContext*,const ImGuiContextHook*)"] = defs["igAddContextHook"][1] +defs["igAddDrawListToDrawDataEx"] = {} +defs["igAddDrawListToDrawDataEx"][1] = {} +defs["igAddDrawListToDrawDataEx"][1]["args"] = "(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list)" +defs["igAddDrawListToDrawDataEx"][1]["argsT"] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][1] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][1]["name"] = "draw_data" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][1]["type"] = "ImDrawData*" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][2] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][2]["name"] = "out_list" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][2]["type"] = "ImVector_ImDrawListPtr*" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][3] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][3]["name"] = "draw_list" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][3]["type"] = "ImDrawList*" +defs["igAddDrawListToDrawDataEx"][1]["argsoriginal"] = "(ImDrawData* draw_data,ImVector* out_list,ImDrawList* draw_list)" +defs["igAddDrawListToDrawDataEx"][1]["call_args"] = "(draw_data,out_list,draw_list)" +defs["igAddDrawListToDrawDataEx"][1]["cimguiname"] = "igAddDrawListToDrawDataEx" +defs["igAddDrawListToDrawDataEx"][1]["defaults"] = {} +defs["igAddDrawListToDrawDataEx"][1]["funcname"] = "AddDrawListToDrawDataEx" +defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3394" +defs["igAddDrawListToDrawDataEx"][1]["namespace"] = "ImGui" +defs["igAddDrawListToDrawDataEx"][1]["ov_cimguiname"] = "igAddDrawListToDrawDataEx" +defs["igAddDrawListToDrawDataEx"][1]["ret"] = "void" +defs["igAddDrawListToDrawDataEx"][1]["signature"] = "(ImDrawData*,ImVector_ImDrawListPtr*,ImDrawList*)" +defs["igAddDrawListToDrawDataEx"][1]["stname"] = "" +defs["igAddDrawListToDrawDataEx"]["(ImDrawData*,ImVector_ImDrawListPtr*,ImDrawList*)"] = defs["igAddDrawListToDrawDataEx"][1] defs["igAddSettingsHandler"] = {} defs["igAddSettingsHandler"][1] = {} defs["igAddSettingsHandler"][1]["args"] = "(const ImGuiSettingsHandler* handler)" @@ -11186,7 +11967,7 @@ defs["igAddSettingsHandler"][1]["call_args"] = "(handler)" defs["igAddSettingsHandler"][1]["cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["defaults"] = {} defs["igAddSettingsHandler"][1]["funcname"] = "AddSettingsHandler" -defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3013" +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3427" defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -11202,7 +11983,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:465" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:508" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -11224,7 +12005,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:512" +defs["igArrowButton"][1]["location"] = "imgui:557" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -11253,7 +12034,7 @@ defs["igArrowButtonEx"][1]["cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["defaults"] = {} defs["igArrowButtonEx"][1]["defaults"]["flags"] = "0" defs["igArrowButtonEx"][1]["funcname"] = "ArrowButtonEx" -defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3370" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3846" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -11280,16 +12061,44 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:336" +defs["igBegin"][1]["location"] = "imgui:371" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" defs["igBegin"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" defs["igBegin"][1]["stname"] = "" defs["igBegin"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBegin"][1] +defs["igBeginBoxSelect"] = {} +defs["igBeginBoxSelect"][1] = {} +defs["igBeginBoxSelect"][1]["args"] = "(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)" +defs["igBeginBoxSelect"][1]["argsT"] = {} +defs["igBeginBoxSelect"][1]["argsT"][1] = {} +defs["igBeginBoxSelect"][1]["argsT"][1]["name"] = "scope_rect" +defs["igBeginBoxSelect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igBeginBoxSelect"][1]["argsT"][2] = {} +defs["igBeginBoxSelect"][1]["argsT"][2]["name"] = "window" +defs["igBeginBoxSelect"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igBeginBoxSelect"][1]["argsT"][3] = {} +defs["igBeginBoxSelect"][1]["argsT"][3]["name"] = "box_select_id" +defs["igBeginBoxSelect"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igBeginBoxSelect"][1]["argsT"][4] = {} +defs["igBeginBoxSelect"][1]["argsT"][4]["name"] = "ms_flags" +defs["igBeginBoxSelect"][1]["argsT"][4]["type"] = "ImGuiMultiSelectFlags" +defs["igBeginBoxSelect"][1]["argsoriginal"] = "(const ImRect& scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)" +defs["igBeginBoxSelect"][1]["call_args"] = "(scope_rect,window,box_select_id,ms_flags)" +defs["igBeginBoxSelect"][1]["cimguiname"] = "igBeginBoxSelect" +defs["igBeginBoxSelect"][1]["defaults"] = {} +defs["igBeginBoxSelect"][1]["funcname"] = "BeginBoxSelect" +defs["igBeginBoxSelect"][1]["location"] = "imgui_internal:3717" +defs["igBeginBoxSelect"][1]["namespace"] = "ImGui" +defs["igBeginBoxSelect"][1]["ov_cimguiname"] = "igBeginBoxSelect" +defs["igBeginBoxSelect"][1]["ret"] = "bool" +defs["igBeginBoxSelect"][1]["signature"] = "(const ImRect,ImGuiWindow*,ImGuiID,ImGuiMultiSelectFlags)" +defs["igBeginBoxSelect"][1]["stname"] = "" +defs["igBeginBoxSelect"]["(const ImRect,ImGuiWindow*,ImGuiID,ImGuiMultiSelectFlags)"] = defs["igBeginBoxSelect"][1] defs["igBeginChild"] = {} defs["igBeginChild"][1] = {} -defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][1]["argsT"] = {} defs["igBeginChild"][1]["argsT"][1] = {} defs["igBeginChild"][1]["argsT"][1]["name"] = "str_id" @@ -11298,27 +12107,27 @@ defs["igBeginChild"][1]["argsT"][2] = {} defs["igBeginChild"][1]["argsT"][2]["name"] = "size" defs["igBeginChild"][1]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][1]["argsT"][3] = {} -defs["igBeginChild"][1]["argsT"][3]["name"] = "border" -defs["igBeginChild"][1]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][1]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][1]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][1]["argsT"][4] = {} -defs["igBeginChild"][1]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][1]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][1]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][1]["call_args"] = "(str_id,size,border,flags)" +defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][1]["call_args"] = "(str_id,size,child_flags,window_flags)" defs["igBeginChild"][1]["cimguiname"] = "igBeginChild" defs["igBeginChild"][1]["defaults"] = {} -defs["igBeginChild"][1]["defaults"]["border"] = "false" -defs["igBeginChild"][1]["defaults"]["flags"] = "0" +defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:347" +defs["igBeginChild"][1]["location"] = "imgui:392" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" -defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][1]["stname"] = "" defs["igBeginChild"][2] = {} -defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][2]["argsT"] = {} defs["igBeginChild"][2]["argsT"][1] = {} defs["igBeginChild"][2]["argsT"][1]["name"] = "id" @@ -11327,30 +12136,30 @@ defs["igBeginChild"][2]["argsT"][2] = {} defs["igBeginChild"][2]["argsT"][2]["name"] = "size" defs["igBeginChild"][2]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][2]["argsT"][3] = {} -defs["igBeginChild"][2]["argsT"][3]["name"] = "border" -defs["igBeginChild"][2]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][2]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][2]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][2]["argsT"][4] = {} -defs["igBeginChild"][2]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][2]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][2]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][2]["call_args"] = "(id,size,border,flags)" +defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][2]["call_args"] = "(id,size,child_flags,window_flags)" defs["igBeginChild"][2]["cimguiname"] = "igBeginChild" defs["igBeginChild"][2]["defaults"] = {} -defs["igBeginChild"][2]["defaults"]["border"] = "false" -defs["igBeginChild"][2]["defaults"]["flags"] = "0" +defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:348" +defs["igBeginChild"][2]["location"] = "imgui:393" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" -defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][2]["stname"] = "" -defs["igBeginChild"]["(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][2] -defs["igBeginChild"]["(const char*,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][1] +defs["igBeginChild"]["(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][2] +defs["igBeginChild"]["(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][1] defs["igBeginChildEx"] = {} defs["igBeginChildEx"][1] = {} -defs["igBeginChildEx"][1]["args"] = "(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags)" +defs["igBeginChildEx"][1]["args"] = "(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChildEx"][1]["argsT"] = {} defs["igBeginChildEx"][1]["argsT"][1] = {} defs["igBeginChildEx"][1]["argsT"][1]["name"] = "name" @@ -11362,49 +12171,23 @@ defs["igBeginChildEx"][1]["argsT"][3] = {} defs["igBeginChildEx"][1]["argsT"][3]["name"] = "size_arg" defs["igBeginChildEx"][1]["argsT"][3]["type"] = "const ImVec2" defs["igBeginChildEx"][1]["argsT"][4] = {} -defs["igBeginChildEx"][1]["argsT"][4]["name"] = "border" -defs["igBeginChildEx"][1]["argsT"][4]["type"] = "bool" +defs["igBeginChildEx"][1]["argsT"][4]["name"] = "child_flags" +defs["igBeginChildEx"][1]["argsT"][4]["type"] = "ImGuiChildFlags" defs["igBeginChildEx"][1]["argsT"][5] = {} -defs["igBeginChildEx"][1]["argsT"][5]["name"] = "flags" +defs["igBeginChildEx"][1]["argsT"][5]["name"] = "window_flags" defs["igBeginChildEx"][1]["argsT"][5]["type"] = "ImGuiWindowFlags" -defs["igBeginChildEx"][1]["argsoriginal"] = "(const char* name,ImGuiID id,const ImVec2& size_arg,bool border,ImGuiWindowFlags flags)" -defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,border,flags)" +defs["igBeginChildEx"][1]["argsoriginal"] = "(const char* name,ImGuiID id,const ImVec2& size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" +defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,child_flags,window_flags)" defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:3075" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3496" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" -defs["igBeginChildEx"][1]["signature"] = "(const char*,ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChildEx"][1]["signature"] = "(const char*,ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChildEx"][1]["stname"] = "" -defs["igBeginChildEx"]["(const char*,ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChildEx"][1] -defs["igBeginChildFrame"] = {} -defs["igBeginChildFrame"][1] = {} -defs["igBeginChildFrame"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)" -defs["igBeginChildFrame"][1]["argsT"] = {} -defs["igBeginChildFrame"][1]["argsT"][1] = {} -defs["igBeginChildFrame"][1]["argsT"][1]["name"] = "id" -defs["igBeginChildFrame"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igBeginChildFrame"][1]["argsT"][2] = {} -defs["igBeginChildFrame"][1]["argsT"][2]["name"] = "size" -defs["igBeginChildFrame"][1]["argsT"][2]["type"] = "const ImVec2" -defs["igBeginChildFrame"][1]["argsT"][3] = {} -defs["igBeginChildFrame"][1]["argsT"][3]["name"] = "flags" -defs["igBeginChildFrame"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginChildFrame"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)" -defs["igBeginChildFrame"][1]["call_args"] = "(id,size,flags)" -defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["defaults"] = {} -defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" -defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui:905" -defs["igBeginChildFrame"][1]["namespace"] = "ImGui" -defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["ret"] = "bool" -defs["igBeginChildFrame"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiWindowFlags)" -defs["igBeginChildFrame"][1]["stname"] = "" -defs["igBeginChildFrame"]["(ImGuiID,const ImVec2,ImGuiWindowFlags)"] = defs["igBeginChildFrame"][1] +defs["igBeginChildEx"]["(const char*,ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChildEx"][1] defs["igBeginColumns"] = {} defs["igBeginColumns"][1] = {} defs["igBeginColumns"][1]["args"] = "(const char* str_id,int count,ImGuiOldColumnFlags flags)" @@ -11424,7 +12207,7 @@ defs["igBeginColumns"][1]["cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["defaults"] = {} defs["igBeginColumns"][1]["defaults"]["flags"] = "0" defs["igBeginColumns"][1]["funcname"] = "BeginColumns" -defs["igBeginColumns"][1]["location"] = "imgui_internal:3263" +defs["igBeginColumns"][1]["location"] = "imgui_internal:3730" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -11450,7 +12233,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:529" +defs["igBeginCombo"][1]["location"] = "imgui:578" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -11475,7 +12258,7 @@ defs["igBeginComboPopup"][1]["call_args"] = "(popup_id,bb,flags)" defs["igBeginComboPopup"][1]["cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["defaults"] = {} defs["igBeginComboPopup"][1]["funcname"] = "BeginComboPopup" -defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3095" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3522" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -11491,7 +12274,7 @@ defs["igBeginComboPreview"][1]["call_args"] = "()" defs["igBeginComboPreview"][1]["cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["defaults"] = {} defs["igBeginComboPreview"][1]["funcname"] = "BeginComboPreview" -defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3096" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3523" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -11511,13 +12294,29 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:849" +defs["igBeginDisabled"][1]["location"] = "imgui:920" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" defs["igBeginDisabled"][1]["signature"] = "(bool)" defs["igBeginDisabled"][1]["stname"] = "" defs["igBeginDisabled"]["(bool)"] = defs["igBeginDisabled"][1] +defs["igBeginDisabledOverrideReenable"] = {} +defs["igBeginDisabledOverrideReenable"][1] = {} +defs["igBeginDisabledOverrideReenable"][1]["args"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["argsT"] = {} +defs["igBeginDisabledOverrideReenable"][1]["argsoriginal"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["call_args"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["cimguiname"] = "igBeginDisabledOverrideReenable" +defs["igBeginDisabledOverrideReenable"][1]["defaults"] = {} +defs["igBeginDisabledOverrideReenable"][1]["funcname"] = "BeginDisabledOverrideReenable" +defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3486" +defs["igBeginDisabledOverrideReenable"][1]["namespace"] = "ImGui" +defs["igBeginDisabledOverrideReenable"][1]["ov_cimguiname"] = "igBeginDisabledOverrideReenable" +defs["igBeginDisabledOverrideReenable"][1]["ret"] = "void" +defs["igBeginDisabledOverrideReenable"][1]["signature"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["stname"] = "" +defs["igBeginDisabledOverrideReenable"]["()"] = defs["igBeginDisabledOverrideReenable"][1] defs["igBeginDockableDragDropSource"] = {} defs["igBeginDockableDragDropSource"][1] = {} defs["igBeginDockableDragDropSource"][1]["args"] = "(ImGuiWindow* window)" @@ -11530,7 +12329,7 @@ defs["igBeginDockableDragDropSource"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropSource"][1]["cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["defaults"] = {} defs["igBeginDockableDragDropSource"][1]["funcname"] = "BeginDockableDragDropSource" -defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3214" +defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3663" defs["igBeginDockableDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropSource"][1]["ov_cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["ret"] = "void" @@ -11549,7 +12348,7 @@ defs["igBeginDockableDragDropTarget"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropTarget"][1]["cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["defaults"] = {} defs["igBeginDockableDragDropTarget"][1]["funcname"] = "BeginDockableDragDropTarget" -defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3215" +defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3664" defs["igBeginDockableDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropTarget"][1]["ov_cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["ret"] = "void" @@ -11571,7 +12370,7 @@ defs["igBeginDocked"][1]["call_args"] = "(window,p_open)" defs["igBeginDocked"][1]["cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["defaults"] = {} defs["igBeginDocked"][1]["funcname"] = "BeginDocked" -defs["igBeginDocked"][1]["location"] = "imgui_internal:3213" +defs["igBeginDocked"][1]["location"] = "imgui_internal:3662" defs["igBeginDocked"][1]["namespace"] = "ImGui" defs["igBeginDocked"][1]["ov_cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["ret"] = "void" @@ -11591,7 +12390,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui:837" +defs["igBeginDragDropSource"][1]["location"] = "imgui:907" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -11607,7 +12406,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui:840" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:910" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -11629,7 +12428,7 @@ defs["igBeginDragDropTargetCustom"][1]["call_args"] = "(bb,id)" defs["igBeginDragDropTargetCustom"][1]["cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["defaults"] = {} defs["igBeginDragDropTargetCustom"][1]["funcname"] = "BeginDragDropTargetCustom" -defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3256" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3705" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -11645,13 +12444,29 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:454" +defs["igBeginGroup"][1]["location"] = "imgui:506" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" defs["igBeginGroup"][1]["signature"] = "()" defs["igBeginGroup"][1]["stname"] = "" defs["igBeginGroup"]["()"] = defs["igBeginGroup"][1] +defs["igBeginItemTooltip"] = {} +defs["igBeginItemTooltip"][1] = {} +defs["igBeginItemTooltip"][1]["args"] = "()" +defs["igBeginItemTooltip"][1]["argsT"] = {} +defs["igBeginItemTooltip"][1]["argsoriginal"] = "()" +defs["igBeginItemTooltip"][1]["call_args"] = "()" +defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["defaults"] = {} +defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" +defs["igBeginItemTooltip"][1]["location"] = "imgui:749" +defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" +defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["ret"] = "bool" +defs["igBeginItemTooltip"][1]["signature"] = "()" +defs["igBeginItemTooltip"][1]["stname"] = "" +defs["igBeginItemTooltip"]["()"] = defs["igBeginItemTooltip"][1] defs["igBeginListBox"] = {} defs["igBeginListBox"][1] = {} defs["igBeginListBox"][1]["args"] = "(const char* label,const ImVec2 size)" @@ -11668,7 +12483,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:641" +defs["igBeginListBox"][1]["location"] = "imgui:703" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -11684,7 +12499,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:667" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:729" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -11707,7 +12522,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:669" +defs["igBeginMenu"][1]["location"] = "imgui:731" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -11723,7 +12538,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:665" +defs["igBeginMenuBar"][1]["location"] = "imgui:727" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -11749,13 +12564,40 @@ defs["igBeginMenuEx"][1]["cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["defaults"] = {} defs["igBeginMenuEx"][1]["defaults"]["enabled"] = "true" defs["igBeginMenuEx"][1]["funcname"] = "BeginMenuEx" -defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3091" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3518" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" defs["igBeginMenuEx"][1]["signature"] = "(const char*,const char*,bool)" defs["igBeginMenuEx"][1]["stname"] = "" defs["igBeginMenuEx"]["(const char*,const char*,bool)"] = defs["igBeginMenuEx"][1] +defs["igBeginMultiSelect"] = {} +defs["igBeginMultiSelect"][1] = {} +defs["igBeginMultiSelect"][1]["args"] = "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)" +defs["igBeginMultiSelect"][1]["argsT"] = {} +defs["igBeginMultiSelect"][1]["argsT"][1] = {} +defs["igBeginMultiSelect"][1]["argsT"][1]["name"] = "flags" +defs["igBeginMultiSelect"][1]["argsT"][1]["type"] = "ImGuiMultiSelectFlags" +defs["igBeginMultiSelect"][1]["argsT"][2] = {} +defs["igBeginMultiSelect"][1]["argsT"][2]["name"] = "selection_size" +defs["igBeginMultiSelect"][1]["argsT"][2]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsT"][3] = {} +defs["igBeginMultiSelect"][1]["argsT"][3]["name"] = "items_count" +defs["igBeginMultiSelect"][1]["argsT"][3]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsoriginal"] = "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)" +defs["igBeginMultiSelect"][1]["call_args"] = "(flags,selection_size,items_count)" +defs["igBeginMultiSelect"][1]["cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["defaults"] = {} +defs["igBeginMultiSelect"][1]["defaults"]["items_count"] = "-1" +defs["igBeginMultiSelect"][1]["defaults"]["selection_size"] = "-1" +defs["igBeginMultiSelect"][1]["funcname"] = "BeginMultiSelect" +defs["igBeginMultiSelect"][1]["location"] = "imgui:692" +defs["igBeginMultiSelect"][1]["namespace"] = "ImGui" +defs["igBeginMultiSelect"][1]["ov_cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igBeginMultiSelect"][1]["signature"] = "(ImGuiMultiSelectFlags,int,int)" +defs["igBeginMultiSelect"][1]["stname"] = "" +defs["igBeginMultiSelect"]["(ImGuiMultiSelectFlags,int,int)"] = defs["igBeginMultiSelect"][1] defs["igBeginPopup"] = {} defs["igBeginPopup"][1] = {} defs["igBeginPopup"][1]["args"] = "(const char* str_id,ImGuiWindowFlags flags)" @@ -11772,7 +12614,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:693" +defs["igBeginPopup"][1]["location"] = "imgui:763" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -11796,7 +12638,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:715" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:785" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -11820,7 +12662,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:717" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:787" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -11844,7 +12686,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:716" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:786" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -11853,20 +12695,20 @@ defs["igBeginPopupContextWindow"][1]["stname"] = "" defs["igBeginPopupContextWindow"]["(const char*,ImGuiPopupFlags)"] = defs["igBeginPopupContextWindow"][1] defs["igBeginPopupEx"] = {} defs["igBeginPopupEx"][1] = {} -defs["igBeginPopupEx"][1]["args"] = "(ImGuiID id,ImGuiWindowFlags extra_flags)" +defs["igBeginPopupEx"][1]["args"] = "(ImGuiID id,ImGuiWindowFlags extra_window_flags)" defs["igBeginPopupEx"][1]["argsT"] = {} defs["igBeginPopupEx"][1]["argsT"][1] = {} defs["igBeginPopupEx"][1]["argsT"][1]["name"] = "id" defs["igBeginPopupEx"][1]["argsT"][1]["type"] = "ImGuiID" defs["igBeginPopupEx"][1]["argsT"][2] = {} -defs["igBeginPopupEx"][1]["argsT"][2]["name"] = "extra_flags" +defs["igBeginPopupEx"][1]["argsT"][2]["name"] = "extra_window_flags" defs["igBeginPopupEx"][1]["argsT"][2]["type"] = "ImGuiWindowFlags" -defs["igBeginPopupEx"][1]["argsoriginal"] = "(ImGuiID id,ImGuiWindowFlags extra_flags)" -defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_flags)" +defs["igBeginPopupEx"][1]["argsoriginal"] = "(ImGuiID id,ImGuiWindowFlags extra_window_flags)" +defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_window_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" -defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3081" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3499" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -11893,7 +12735,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:694" +defs["igBeginPopupModal"][1]["location"] = "imgui:764" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -11916,7 +12758,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:795" +defs["igBeginTabBar"][1]["location"] = "imgui:865" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -11925,7 +12767,7 @@ defs["igBeginTabBar"][1]["stname"] = "" defs["igBeginTabBar"]["(const char*,ImGuiTabBarFlags)"] = defs["igBeginTabBar"][1] defs["igBeginTabBarEx"] = {} defs["igBeginTabBarEx"][1] = {} -defs["igBeginTabBarEx"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)" +defs["igBeginTabBarEx"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags)" defs["igBeginTabBarEx"][1]["argsT"] = {} defs["igBeginTabBarEx"][1]["argsT"][1] = {} defs["igBeginTabBarEx"][1]["argsT"][1]["name"] = "tab_bar" @@ -11936,21 +12778,18 @@ defs["igBeginTabBarEx"][1]["argsT"][2]["type"] = "const ImRect" defs["igBeginTabBarEx"][1]["argsT"][3] = {} defs["igBeginTabBarEx"][1]["argsT"][3]["name"] = "flags" defs["igBeginTabBarEx"][1]["argsT"][3]["type"] = "ImGuiTabBarFlags" -defs["igBeginTabBarEx"][1]["argsT"][4] = {} -defs["igBeginTabBarEx"][1]["argsT"][4]["name"] = "dock_node" -defs["igBeginTabBarEx"][1]["argsT"][4]["type"] = "ImGuiDockNode*" -defs["igBeginTabBarEx"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)" -defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags,dock_node)" +defs["igBeginTabBarEx"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags)" +defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3327" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3798" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" -defs["igBeginTabBarEx"][1]["signature"] = "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags,ImGuiDockNode*)" +defs["igBeginTabBarEx"][1]["signature"] = "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags)" defs["igBeginTabBarEx"][1]["stname"] = "" -defs["igBeginTabBarEx"]["(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags,ImGuiDockNode*)"] = defs["igBeginTabBarEx"][1] +defs["igBeginTabBarEx"]["(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags)"] = defs["igBeginTabBarEx"][1] defs["igBeginTabItem"] = {} defs["igBeginTabItem"][1] = {} defs["igBeginTabItem"][1]["args"] = "(const char* label,bool* p_open,ImGuiTabItemFlags flags)" @@ -11971,7 +12810,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:797" +defs["igBeginTabItem"][1]["location"] = "imgui:867" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -11980,13 +12819,13 @@ defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTable"] = {} defs["igBeginTable"][1] = {} -defs["igBeginTable"][1]["args"] = "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" +defs["igBeginTable"][1]["args"] = "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" defs["igBeginTable"][1]["argsT"] = {} defs["igBeginTable"][1]["argsT"][1] = {} defs["igBeginTable"][1]["argsT"][1]["name"] = "str_id" defs["igBeginTable"][1]["argsT"][1]["type"] = "const char*" defs["igBeginTable"][1]["argsT"][2] = {} -defs["igBeginTable"][1]["argsT"][2]["name"] = "column" +defs["igBeginTable"][1]["argsT"][2]["name"] = "columns" defs["igBeginTable"][1]["argsT"][2]["type"] = "int" defs["igBeginTable"][1]["argsT"][3] = {} defs["igBeginTable"][1]["argsT"][3]["name"] = "flags" @@ -11997,15 +12836,15 @@ defs["igBeginTable"][1]["argsT"][4]["type"] = "const ImVec2" defs["igBeginTable"][1]["argsT"][5] = {} defs["igBeginTable"][1]["argsT"][5]["name"] = "inner_width" defs["igBeginTable"][1]["argsT"][5]["type"] = "float" -defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" -defs["igBeginTable"][1]["call_args"] = "(str_id,column,flags,outer_size,inner_width)" +defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" +defs["igBeginTable"][1]["call_args"] = "(str_id,columns,flags,outer_size,inner_width)" defs["igBeginTable"][1]["cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["defaults"] = {} defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:748" +defs["igBeginTable"][1]["location"] = "imgui:816" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -12042,7 +12881,7 @@ defs["igBeginTableEx"][1]["defaults"]["flags"] = "0" defs["igBeginTableEx"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTableEx"][1]["defaults"]["outer_size"] = "ImVec2(0,0)" defs["igBeginTableEx"][1]["funcname"] = "BeginTableEx" -defs["igBeginTableEx"][1]["location"] = "imgui_internal:3285" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3754" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -12058,10 +12897,10 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:676" +defs["igBeginTooltip"][1]["location"] = "imgui:740" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" -defs["igBeginTooltip"][1]["ret"] = "void" +defs["igBeginTooltip"][1]["ret"] = "bool" defs["igBeginTooltip"][1]["signature"] = "()" defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] @@ -12080,13 +12919,29 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(tooltip_flags,extra_window_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3082" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3513" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" -defs["igBeginTooltipEx"][1]["ret"] = "void" +defs["igBeginTooltipEx"][1]["ret"] = "bool" defs["igBeginTooltipEx"][1]["signature"] = "(ImGuiTooltipFlags,ImGuiWindowFlags)" defs["igBeginTooltipEx"][1]["stname"] = "" defs["igBeginTooltipEx"]["(ImGuiTooltipFlags,ImGuiWindowFlags)"] = defs["igBeginTooltipEx"][1] +defs["igBeginTooltipHidden"] = {} +defs["igBeginTooltipHidden"][1] = {} +defs["igBeginTooltipHidden"][1]["args"] = "()" +defs["igBeginTooltipHidden"][1]["argsT"] = {} +defs["igBeginTooltipHidden"][1]["argsoriginal"] = "()" +defs["igBeginTooltipHidden"][1]["call_args"] = "()" +defs["igBeginTooltipHidden"][1]["cimguiname"] = "igBeginTooltipHidden" +defs["igBeginTooltipHidden"][1]["defaults"] = {} +defs["igBeginTooltipHidden"][1]["funcname"] = "BeginTooltipHidden" +defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3514" +defs["igBeginTooltipHidden"][1]["namespace"] = "ImGui" +defs["igBeginTooltipHidden"][1]["ov_cimguiname"] = "igBeginTooltipHidden" +defs["igBeginTooltipHidden"][1]["ret"] = "bool" +defs["igBeginTooltipHidden"][1]["signature"] = "()" +defs["igBeginTooltipHidden"][1]["stname"] = "" +defs["igBeginTooltipHidden"]["()"] = defs["igBeginTooltipHidden"][1] defs["igBeginViewportSideBar"] = {} defs["igBeginViewportSideBar"][1] = {} defs["igBeginViewportSideBar"][1]["args"] = "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)" @@ -12111,7 +12966,7 @@ defs["igBeginViewportSideBar"][1]["call_args"] = "(name,viewport,dir,size,window defs["igBeginViewportSideBar"][1]["cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["defaults"] = {} defs["igBeginViewportSideBar"][1]["funcname"] = "BeginViewportSideBar" -defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3090" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3517" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -12130,7 +12985,7 @@ defs["igBringWindowToDisplayBack"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayBack"][1]["cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["defaults"] = {} defs["igBringWindowToDisplayBack"][1]["funcname"] = "BringWindowToDisplayBack" -defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:2970" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3382" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -12152,7 +13007,7 @@ defs["igBringWindowToDisplayBehind"][1]["call_args"] = "(window,above_window)" defs["igBringWindowToDisplayBehind"][1]["cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["defaults"] = {} defs["igBringWindowToDisplayBehind"][1]["funcname"] = "BringWindowToDisplayBehind" -defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:2971" +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3383" defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -12171,7 +13026,7 @@ defs["igBringWindowToDisplayFront"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayFront"][1]["cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["defaults"] = {} defs["igBringWindowToDisplayFront"][1]["funcname"] = "BringWindowToDisplayFront" -defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:2969" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3381" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -12190,7 +13045,7 @@ defs["igBringWindowToFocusFront"][1]["call_args"] = "(window)" defs["igBringWindowToFocusFront"][1]["cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["defaults"] = {} defs["igBringWindowToFocusFront"][1]["funcname"] = "BringWindowToFocusFront" -defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:2968" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3380" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -12206,7 +13061,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:519" +defs["igBullet"][1]["location"] = "imgui:564" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -12229,7 +13084,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:503" +defs["igBulletText"][1]["location"] = "imgui:547" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -12251,7 +13106,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:504" +defs["igBulletTextV"][1]["location"] = "imgui:548" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -12274,7 +13129,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:509" +defs["igButton"][1]["location"] = "imgui:554" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -12306,7 +13161,7 @@ defs["igButtonBehavior"][1]["cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["defaults"] = {} defs["igButtonBehavior"][1]["defaults"]["flags"] = "0" defs["igButtonBehavior"][1]["funcname"] = "ButtonBehavior" -defs["igButtonBehavior"][1]["location"] = "imgui_internal:3387" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3864" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -12333,7 +13188,7 @@ defs["igButtonEx"][1]["defaults"] = {} defs["igButtonEx"][1]["defaults"]["flags"] = "0" defs["igButtonEx"][1]["defaults"]["size_arg"] = "ImVec2(0,0)" defs["igButtonEx"][1]["funcname"] = "ButtonEx" -defs["igButtonEx"][1]["location"] = "imgui_internal:3369" +defs["igButtonEx"][1]["location"] = "imgui_internal:3845" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -12361,7 +13216,7 @@ defs["igCalcItemSize"][1]["call_args"] = "(size,default_w,default_h)" defs["igCalcItemSize"][1]["cimguiname"] = "igCalcItemSize" defs["igCalcItemSize"][1]["defaults"] = {} defs["igCalcItemSize"][1]["funcname"] = "CalcItemSize" -defs["igCalcItemSize"][1]["location"] = "imgui_internal:3057" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3479" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -12378,7 +13233,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:426" +defs["igCalcItemWidth"][1]["location"] = "imgui:463" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -12403,7 +13258,7 @@ defs["igCalcRoundingFlagsForRectInRect"][1]["call_args"] = "(r_in,r_outer,thresh defs["igCalcRoundingFlagsForRectInRect"][1]["cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["defaults"] = {} defs["igCalcRoundingFlagsForRectInRect"][1]["funcname"] = "CalcRoundingFlagsForRectInRect" -defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3365" +defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3841" defs["igCalcRoundingFlagsForRectInRect"][1]["namespace"] = "ImGui" defs["igCalcRoundingFlagsForRectInRect"][1]["ov_cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["ret"] = "ImDrawFlags" @@ -12437,7 +13292,7 @@ defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui:909" +defs["igCalcTextSize"][1]["location"] = "imgui:978" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -12466,7 +13321,7 @@ defs["igCalcTypematicRepeatAmount"][1]["call_args"] = "(t0,t1,repeat_delay,repea defs["igCalcTypematicRepeatAmount"][1]["cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["defaults"] = {} defs["igCalcTypematicRepeatAmount"][1]["funcname"] = "CalcTypematicRepeatAmount" -defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3140" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3578" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -12488,7 +13343,7 @@ defs["igCalcWindowNextAutoFitSize"][1]["call_args"] = "(window)" defs["igCalcWindowNextAutoFitSize"][1]["cimguiname"] = "igCalcWindowNextAutoFitSize" defs["igCalcWindowNextAutoFitSize"][1]["defaults"] = {} defs["igCalcWindowNextAutoFitSize"][1]["funcname"] = "CalcWindowNextAutoFitSize" -defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2953" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:3361" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -12511,7 +13366,7 @@ defs["igCalcWrapWidthForPos"][1]["call_args"] = "(pos,wrap_pos_x)" defs["igCalcWrapWidthForPos"][1]["cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["defaults"] = {} defs["igCalcWrapWidthForPos"][1]["funcname"] = "CalcWrapWidthForPos" -defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3058" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3480" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -12533,7 +13388,7 @@ defs["igCallContextHooks"][1]["call_args"] = "(context,type)" defs["igCallContextHooks"][1]["cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["defaults"] = {} defs["igCallContextHooks"][1]["funcname"] = "CallContextHooks" -defs["igCallContextHooks"][1]["location"] = "imgui_internal:2995" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:3412" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -12555,7 +13410,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:513" +defs["igCheckbox"][1]["location"] = "imgui:558" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -12580,7 +13435,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:514" +defs["igCheckboxFlags"][1]["location"] = "imgui:559" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -12603,7 +13458,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:515" +defs["igCheckboxFlags"][2]["location"] = "imgui:560" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -12626,7 +13481,7 @@ defs["igCheckboxFlags"][3]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][3]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][3]["defaults"] = {} defs["igCheckboxFlags"][3]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3373" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3850" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -12649,7 +13504,7 @@ defs["igCheckboxFlags"][4]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][4]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][4]["defaults"] = {} defs["igCheckboxFlags"][4]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3374" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3851" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -12668,7 +13523,7 @@ defs["igClearActiveID"][1]["call_args"] = "()" defs["igClearActiveID"][1]["cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["defaults"] = {} defs["igClearActiveID"][1]["funcname"] = "ClearActiveID" -defs["igClearActiveID"][1]["location"] = "imgui_internal:3042" +defs["igClearActiveID"][1]["location"] = "imgui_internal:3462" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -12684,7 +13539,7 @@ defs["igClearDragDrop"][1]["call_args"] = "()" defs["igClearDragDrop"][1]["cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["defaults"] = {} defs["igClearDragDrop"][1]["funcname"] = "ClearDragDrop" -defs["igClearDragDrop"][1]["location"] = "imgui_internal:3257" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3706" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -12700,13 +13555,32 @@ defs["igClearIniSettings"][1]["call_args"] = "()" defs["igClearIniSettings"][1]["cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["defaults"] = {} defs["igClearIniSettings"][1]["funcname"] = "ClearIniSettings" -defs["igClearIniSettings"][1]["location"] = "imgui_internal:3009" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:3426" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" defs["igClearIniSettings"][1]["signature"] = "()" defs["igClearIniSettings"][1]["stname"] = "" defs["igClearIniSettings"]["()"] = defs["igClearIniSettings"][1] +defs["igClearWindowSettings"] = {} +defs["igClearWindowSettings"][1] = {} +defs["igClearWindowSettings"][1]["args"] = "(const char* name)" +defs["igClearWindowSettings"][1]["argsT"] = {} +defs["igClearWindowSettings"][1]["argsT"][1] = {} +defs["igClearWindowSettings"][1]["argsT"][1]["name"] = "name" +defs["igClearWindowSettings"][1]["argsT"][1]["type"] = "const char*" +defs["igClearWindowSettings"][1]["argsoriginal"] = "(const char* name)" +defs["igClearWindowSettings"][1]["call_args"] = "(name)" +defs["igClearWindowSettings"][1]["cimguiname"] = "igClearWindowSettings" +defs["igClearWindowSettings"][1]["defaults"] = {} +defs["igClearWindowSettings"][1]["funcname"] = "ClearWindowSettings" +defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3435" +defs["igClearWindowSettings"][1]["namespace"] = "ImGui" +defs["igClearWindowSettings"][1]["ov_cimguiname"] = "igClearWindowSettings" +defs["igClearWindowSettings"][1]["ret"] = "void" +defs["igClearWindowSettings"][1]["signature"] = "(const char*)" +defs["igClearWindowSettings"][1]["stname"] = "" +defs["igClearWindowSettings"]["(const char*)"] = defs["igClearWindowSettings"][1] defs["igCloseButton"] = {} defs["igCloseButton"][1] = {} defs["igCloseButton"][1]["args"] = "(ImGuiID id,const ImVec2 pos)" @@ -12722,7 +13596,7 @@ defs["igCloseButton"][1]["call_args"] = "(id,pos)" defs["igCloseButton"][1]["cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["defaults"] = {} defs["igCloseButton"][1]["funcname"] = "CloseButton" -defs["igCloseButton"][1]["location"] = "imgui_internal:3377" +defs["igCloseButton"][1]["location"] = "imgui_internal:3854" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -12738,7 +13612,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:708" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:778" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -12760,7 +13634,7 @@ defs["igClosePopupToLevel"][1]["call_args"] = "(remaining,restore_focus_to_windo defs["igClosePopupToLevel"][1]["cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["defaults"] = {} defs["igClosePopupToLevel"][1]["funcname"] = "ClosePopupToLevel" -defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3077" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3501" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -12776,7 +13650,7 @@ defs["igClosePopupsExceptModals"][1]["call_args"] = "()" defs["igClosePopupsExceptModals"][1]["cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["defaults"] = {} defs["igClosePopupsExceptModals"][1]["funcname"] = "ClosePopupsExceptModals" -defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3079" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3503" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -12798,7 +13672,7 @@ defs["igClosePopupsOverWindow"][1]["call_args"] = "(ref_window,restore_focus_to_ defs["igClosePopupsOverWindow"][1]["cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["defaults"] = {} defs["igClosePopupsOverWindow"][1]["funcname"] = "ClosePopupsOverWindow" -defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3078" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3502" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -12823,7 +13697,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos,dock_node)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "imgui_internal:3378" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3855" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -12846,7 +13720,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:625" +defs["igCollapsingHeader"][1]["location"] = "imgui:674" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -12870,7 +13744,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:626" +defs["igCollapsingHeader"][2]["location"] = "imgui:675" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -12901,7 +13775,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:606" +defs["igColorButton"][1]["location"] = "imgui:655" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -12920,7 +13794,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:913" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:982" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -12957,7 +13831,7 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:915" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:984" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -12994,7 +13868,7 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:914" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:983" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -13016,7 +13890,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:912" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:981" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -13043,7 +13917,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:602" +defs["igColorEdit3"][1]["location"] = "imgui:651" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -13069,7 +13943,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:603" +defs["igColorEdit4"][1]["location"] = "imgui:652" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -13091,7 +13965,7 @@ defs["igColorEditOptionsPopup"][1]["call_args"] = "(col,flags)" defs["igColorEditOptionsPopup"][1]["cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["defaults"] = {} defs["igColorEditOptionsPopup"][1]["funcname"] = "ColorEditOptionsPopup" -defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3423" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3905" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -13117,7 +13991,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:604" +defs["igColorPicker3"][1]["location"] = "imgui:653" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -13147,7 +14021,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:605" +defs["igColorPicker4"][1]["location"] = "imgui:654" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -13169,7 +14043,7 @@ defs["igColorPickerOptionsPopup"][1]["call_args"] = "(ref_col,flags)" defs["igColorPickerOptionsPopup"][1]["cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["defaults"] = {} defs["igColorPickerOptionsPopup"][1]["funcname"] = "ColorPickerOptionsPopup" -defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3424" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3906" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -13194,7 +14068,7 @@ defs["igColorTooltip"][1]["call_args"] = "(text,col,flags)" defs["igColorTooltip"][1]["cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["defaults"] = {} defs["igColorTooltip"][1]["funcname"] = "ColorTooltip" -defs["igColorTooltip"][1]["location"] = "imgui_internal:3422" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3904" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -13203,7 +14077,7 @@ defs["igColorTooltip"][1]["stname"] = "" defs["igColorTooltip"]["(const char*,const float*,ImGuiColorEditFlags)"] = defs["igColorTooltip"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} -defs["igColumns"][1]["args"] = "(int count,const char* id,bool border)" +defs["igColumns"][1]["args"] = "(int count,const char* id,bool borders)" defs["igColumns"][1]["argsT"] = {} defs["igColumns"][1]["argsT"][1] = {} defs["igColumns"][1]["argsT"][1]["name"] = "count" @@ -13212,17 +14086,17 @@ defs["igColumns"][1]["argsT"][2] = {} defs["igColumns"][1]["argsT"][2]["name"] = "id" defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} -defs["igColumns"][1]["argsT"][3]["name"] = "border" +defs["igColumns"][1]["argsT"][3]["name"] = "borders" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" -defs["igColumns"][1]["call_args"] = "(count,id,border)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool borders=true)" +defs["igColumns"][1]["call_args"] = "(count,id,borders)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} -defs["igColumns"][1]["defaults"]["border"] = "true" +defs["igColumns"][1]["defaults"]["borders"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:784" +defs["igColumns"][1]["location"] = "imgui:854" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -13254,7 +14128,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:531" +defs["igCombo"][1]["location"] = "imgui:580" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -13281,14 +14155,14 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:532" +defs["igCombo"][2]["location"] = "imgui:581" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" defs["igCombo"][2]["signature"] = "(const char*,int*,const char*,int)" defs["igCombo"][2]["stname"] = "" defs["igCombo"][3] = {} -defs["igCombo"][3]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)" +defs["igCombo"][3]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)" defs["igCombo"][3]["argsT"] = {} defs["igCombo"][3]["argsT"][1] = {} defs["igCombo"][3]["argsT"][1]["name"] = "label" @@ -13297,12 +14171,12 @@ defs["igCombo"][3]["argsT"][2] = {} defs["igCombo"][3]["argsT"][2]["name"] = "current_item" defs["igCombo"][3]["argsT"][2]["type"] = "int*" defs["igCombo"][3]["argsT"][3] = {} -defs["igCombo"][3]["argsT"][3]["name"] = "items_getter" -defs["igCombo"][3]["argsT"][3]["ret"] = "bool" -defs["igCombo"][3]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igCombo"][3]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igCombo"][3]["argsT"][3]["name"] = "getter" +defs["igCombo"][3]["argsT"][3]["ret"] = "const char*" +defs["igCombo"][3]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igCombo"][3]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igCombo"][3]["argsT"][4] = {} -defs["igCombo"][3]["argsT"][4]["name"] = "data" +defs["igCombo"][3]["argsT"][4]["name"] = "user_data" defs["igCombo"][3]["argsT"][4]["type"] = "void*" defs["igCombo"][3]["argsT"][5] = {} defs["igCombo"][3]["argsT"][5]["name"] = "items_count" @@ -13310,40 +14184,21 @@ defs["igCombo"][3]["argsT"][5]["type"] = "int" defs["igCombo"][3]["argsT"][6] = {} defs["igCombo"][3]["argsT"][6]["name"] = "popup_max_height_in_items" defs["igCombo"][3]["argsT"][6]["type"] = "int" -defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)" -defs["igCombo"][3]["call_args"] = "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)" +defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)" +defs["igCombo"][3]["call_args"] = "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)" defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:533" +defs["igCombo"][3]["location"] = "imgui:582" defs["igCombo"][3]["namespace"] = "ImGui" -defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnBoolPtr" +defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" -defs["igCombo"][3]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igCombo"][3]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igCombo"][3]["stname"] = "" -defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] +defs["igCombo"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] -defs["igConvertShortcutMod"] = {} -defs["igConvertShortcutMod"][1] = {} -defs["igConvertShortcutMod"][1]["args"] = "(ImGuiKeyChord key_chord)" -defs["igConvertShortcutMod"][1]["argsT"] = {} -defs["igConvertShortcutMod"][1]["argsT"][1] = {} -defs["igConvertShortcutMod"][1]["argsT"][1]["name"] = "key_chord" -defs["igConvertShortcutMod"][1]["argsT"][1]["type"] = "ImGuiKeyChord" -defs["igConvertShortcutMod"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" -defs["igConvertShortcutMod"][1]["call_args"] = "(key_chord)" -defs["igConvertShortcutMod"][1]["cimguiname"] = "igConvertShortcutMod" -defs["igConvertShortcutMod"][1]["defaults"] = {} -defs["igConvertShortcutMod"][1]["funcname"] = "ConvertShortcutMod" -defs["igConvertShortcutMod"][1]["location"] = "imgui_internal:3122" -defs["igConvertShortcutMod"][1]["namespace"] = "ImGui" -defs["igConvertShortcutMod"][1]["ov_cimguiname"] = "igConvertShortcutMod" -defs["igConvertShortcutMod"][1]["ret"] = "ImGuiKeyChord" -defs["igConvertShortcutMod"][1]["signature"] = "(ImGuiKeyChord)" -defs["igConvertShortcutMod"][1]["stname"] = "" -defs["igConvertShortcutMod"]["(ImGuiKeyChord)"] = defs["igConvertShortcutMod"][1] defs["igConvertSingleModFlagToKey"] = {} defs["igConvertSingleModFlagToKey"][1] = {} defs["igConvertSingleModFlagToKey"][1]["args"] = "(ImGuiKey key)" @@ -13356,7 +14211,7 @@ defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(key)" defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" -defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3123" +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3562" defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" @@ -13376,7 +14231,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:294" +defs["igCreateContext"][1]["location"] = "imgui:328" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -13395,7 +14250,7 @@ defs["igCreateNewWindowSettings"][1]["call_args"] = "(name)" defs["igCreateNewWindowSettings"][1]["cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["defaults"] = {} defs["igCreateNewWindowSettings"][1]["funcname"] = "CreateNewWindowSettings" -defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3010" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3432" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -13404,7 +14259,7 @@ defs["igCreateNewWindowSettings"][1]["stname"] = "" defs["igCreateNewWindowSettings"]["(const char*)"] = defs["igCreateNewWindowSettings"][1] defs["igDataTypeApplyFromText"] = {} defs["igDataTypeApplyFromText"][1] = {} -defs["igDataTypeApplyFromText"][1]["args"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)" +defs["igDataTypeApplyFromText"][1]["args"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty)" defs["igDataTypeApplyFromText"][1]["argsT"] = {} defs["igDataTypeApplyFromText"][1]["argsT"][1] = {} defs["igDataTypeApplyFromText"][1]["argsT"][1]["name"] = "buf" @@ -13418,18 +14273,22 @@ defs["igDataTypeApplyFromText"][1]["argsT"][3]["type"] = "void*" defs["igDataTypeApplyFromText"][1]["argsT"][4] = {} defs["igDataTypeApplyFromText"][1]["argsT"][4]["name"] = "format" defs["igDataTypeApplyFromText"][1]["argsT"][4]["type"] = "const char*" -defs["igDataTypeApplyFromText"][1]["argsoriginal"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)" -defs["igDataTypeApplyFromText"][1]["call_args"] = "(buf,data_type,p_data,format)" +defs["igDataTypeApplyFromText"][1]["argsT"][5] = {} +defs["igDataTypeApplyFromText"][1]["argsT"][5]["name"] = "p_data_when_empty" +defs["igDataTypeApplyFromText"][1]["argsT"][5]["type"] = "void*" +defs["igDataTypeApplyFromText"][1]["argsoriginal"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty=((void*)0))" +defs["igDataTypeApplyFromText"][1]["call_args"] = "(buf,data_type,p_data,format,p_data_when_empty)" defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} +defs["igDataTypeApplyFromText"][1]["defaults"]["p_data_when_empty"] = "NULL" defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" -defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3410" +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3890" defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" -defs["igDataTypeApplyFromText"][1]["signature"] = "(const char*,ImGuiDataType,void*,const char*)" +defs["igDataTypeApplyFromText"][1]["signature"] = "(const char*,ImGuiDataType,void*,const char*,void*)" defs["igDataTypeApplyFromText"][1]["stname"] = "" -defs["igDataTypeApplyFromText"]["(const char*,ImGuiDataType,void*,const char*)"] = defs["igDataTypeApplyFromText"][1] +defs["igDataTypeApplyFromText"]["(const char*,ImGuiDataType,void*,const char*,void*)"] = defs["igDataTypeApplyFromText"][1] defs["igDataTypeApplyOp"] = {} defs["igDataTypeApplyOp"][1] = {} defs["igDataTypeApplyOp"][1]["args"] = "(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2)" @@ -13454,7 +14313,7 @@ defs["igDataTypeApplyOp"][1]["call_args"] = "(data_type,op,output,arg_1,arg_2)" defs["igDataTypeApplyOp"][1]["cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["defaults"] = {} defs["igDataTypeApplyOp"][1]["funcname"] = "DataTypeApplyOp" -defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3409" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3889" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -13482,7 +14341,7 @@ defs["igDataTypeClamp"][1]["call_args"] = "(data_type,p_data,p_min,p_max)" defs["igDataTypeClamp"][1]["cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["defaults"] = {} defs["igDataTypeClamp"][1]["funcname"] = "DataTypeClamp" -defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3412" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3892" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -13507,7 +14366,7 @@ defs["igDataTypeCompare"][1]["call_args"] = "(data_type,arg_1,arg_2)" defs["igDataTypeCompare"][1]["cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["defaults"] = {} defs["igDataTypeCompare"][1]["funcname"] = "DataTypeCompare" -defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3411" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3891" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -13538,7 +14397,7 @@ defs["igDataTypeFormatString"][1]["call_args"] = "(buf,buf_size,data_type,p_data defs["igDataTypeFormatString"][1]["cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["defaults"] = {} defs["igDataTypeFormatString"][1]["funcname"] = "DataTypeFormatString" -defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3408" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3888" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -13557,13 +14416,101 @@ defs["igDataTypeGetInfo"][1]["call_args"] = "(data_type)" defs["igDataTypeGetInfo"][1]["cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["defaults"] = {} defs["igDataTypeGetInfo"][1]["funcname"] = "DataTypeGetInfo" -defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3407" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3887" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" defs["igDataTypeGetInfo"][1]["signature"] = "(ImGuiDataType)" defs["igDataTypeGetInfo"][1]["stname"] = "" defs["igDataTypeGetInfo"]["(ImGuiDataType)"] = defs["igDataTypeGetInfo"][1] +defs["igDebugAllocHook"] = {} +defs["igDebugAllocHook"][1] = {} +defs["igDebugAllocHook"][1]["args"] = "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)" +defs["igDebugAllocHook"][1]["argsT"] = {} +defs["igDebugAllocHook"][1]["argsT"][1] = {} +defs["igDebugAllocHook"][1]["argsT"][1]["name"] = "info" +defs["igDebugAllocHook"][1]["argsT"][1]["type"] = "ImGuiDebugAllocInfo*" +defs["igDebugAllocHook"][1]["argsT"][2] = {} +defs["igDebugAllocHook"][1]["argsT"][2]["name"] = "frame_count" +defs["igDebugAllocHook"][1]["argsT"][2]["type"] = "int" +defs["igDebugAllocHook"][1]["argsT"][3] = {} +defs["igDebugAllocHook"][1]["argsT"][3]["name"] = "ptr" +defs["igDebugAllocHook"][1]["argsT"][3]["type"] = "void*" +defs["igDebugAllocHook"][1]["argsT"][4] = {} +defs["igDebugAllocHook"][1]["argsT"][4]["name"] = "size" +defs["igDebugAllocHook"][1]["argsT"][4]["type"] = "size_t" +defs["igDebugAllocHook"][1]["argsoriginal"] = "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)" +defs["igDebugAllocHook"][1]["call_args"] = "(info,frame_count,ptr,size)" +defs["igDebugAllocHook"][1]["cimguiname"] = "igDebugAllocHook" +defs["igDebugAllocHook"][1]["defaults"] = {} +defs["igDebugAllocHook"][1]["funcname"] = "DebugAllocHook" +defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3922" +defs["igDebugAllocHook"][1]["namespace"] = "ImGui" +defs["igDebugAllocHook"][1]["ov_cimguiname"] = "igDebugAllocHook" +defs["igDebugAllocHook"][1]["ret"] = "void" +defs["igDebugAllocHook"][1]["signature"] = "(ImGuiDebugAllocInfo*,int,void*,size_t)" +defs["igDebugAllocHook"][1]["stname"] = "" +defs["igDebugAllocHook"]["(ImGuiDebugAllocInfo*,int,void*,size_t)"] = defs["igDebugAllocHook"][1] +defs["igDebugBreakButton"] = {} +defs["igDebugBreakButton"][1] = {} +defs["igDebugBreakButton"][1]["args"] = "(const char* label,const char* description_of_location)" +defs["igDebugBreakButton"][1]["argsT"] = {} +defs["igDebugBreakButton"][1]["argsT"][1] = {} +defs["igDebugBreakButton"][1]["argsT"][1]["name"] = "label" +defs["igDebugBreakButton"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugBreakButton"][1]["argsT"][2] = {} +defs["igDebugBreakButton"][1]["argsT"][2]["name"] = "description_of_location" +defs["igDebugBreakButton"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugBreakButton"][1]["argsoriginal"] = "(const char* label,const char* description_of_location)" +defs["igDebugBreakButton"][1]["call_args"] = "(label,description_of_location)" +defs["igDebugBreakButton"][1]["cimguiname"] = "igDebugBreakButton" +defs["igDebugBreakButton"][1]["defaults"] = {} +defs["igDebugBreakButton"][1]["funcname"] = "DebugBreakButton" +defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3934" +defs["igDebugBreakButton"][1]["namespace"] = "ImGui" +defs["igDebugBreakButton"][1]["ov_cimguiname"] = "igDebugBreakButton" +defs["igDebugBreakButton"][1]["ret"] = "bool" +defs["igDebugBreakButton"][1]["signature"] = "(const char*,const char*)" +defs["igDebugBreakButton"][1]["stname"] = "" +defs["igDebugBreakButton"]["(const char*,const char*)"] = defs["igDebugBreakButton"][1] +defs["igDebugBreakButtonTooltip"] = {} +defs["igDebugBreakButtonTooltip"][1] = {} +defs["igDebugBreakButtonTooltip"][1]["args"] = "(bool keyboard_only,const char* description_of_location)" +defs["igDebugBreakButtonTooltip"][1]["argsT"] = {} +defs["igDebugBreakButtonTooltip"][1]["argsT"][1] = {} +defs["igDebugBreakButtonTooltip"][1]["argsT"][1]["name"] = "keyboard_only" +defs["igDebugBreakButtonTooltip"][1]["argsT"][1]["type"] = "bool" +defs["igDebugBreakButtonTooltip"][1]["argsT"][2] = {} +defs["igDebugBreakButtonTooltip"][1]["argsT"][2]["name"] = "description_of_location" +defs["igDebugBreakButtonTooltip"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugBreakButtonTooltip"][1]["argsoriginal"] = "(bool keyboard_only,const char* description_of_location)" +defs["igDebugBreakButtonTooltip"][1]["call_args"] = "(keyboard_only,description_of_location)" +defs["igDebugBreakButtonTooltip"][1]["cimguiname"] = "igDebugBreakButtonTooltip" +defs["igDebugBreakButtonTooltip"][1]["defaults"] = {} +defs["igDebugBreakButtonTooltip"][1]["funcname"] = "DebugBreakButtonTooltip" +defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3935" +defs["igDebugBreakButtonTooltip"][1]["namespace"] = "ImGui" +defs["igDebugBreakButtonTooltip"][1]["ov_cimguiname"] = "igDebugBreakButtonTooltip" +defs["igDebugBreakButtonTooltip"][1]["ret"] = "void" +defs["igDebugBreakButtonTooltip"][1]["signature"] = "(bool,const char*)" +defs["igDebugBreakButtonTooltip"][1]["stname"] = "" +defs["igDebugBreakButtonTooltip"]["(bool,const char*)"] = defs["igDebugBreakButtonTooltip"][1] +defs["igDebugBreakClearData"] = {} +defs["igDebugBreakClearData"][1] = {} +defs["igDebugBreakClearData"][1]["args"] = "()" +defs["igDebugBreakClearData"][1]["argsT"] = {} +defs["igDebugBreakClearData"][1]["argsoriginal"] = "()" +defs["igDebugBreakClearData"][1]["call_args"] = "()" +defs["igDebugBreakClearData"][1]["cimguiname"] = "igDebugBreakClearData" +defs["igDebugBreakClearData"][1]["defaults"] = {} +defs["igDebugBreakClearData"][1]["funcname"] = "DebugBreakClearData" +defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3933" +defs["igDebugBreakClearData"][1]["namespace"] = "ImGui" +defs["igDebugBreakClearData"][1]["ov_cimguiname"] = "igDebugBreakClearData" +defs["igDebugBreakClearData"][1]["ret"] = "void" +defs["igDebugBreakClearData"][1]["signature"] = "()" +defs["igDebugBreakClearData"][1]["stname"] = "" +defs["igDebugBreakClearData"]["()"] = defs["igDebugBreakClearData"][1] defs["igDebugCheckVersionAndDataLayout"] = {} defs["igDebugCheckVersionAndDataLayout"][1] = {} defs["igDebugCheckVersionAndDataLayout"][1]["args"] = "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)" @@ -13594,13 +14541,33 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:966" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1065" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" defs["igDebugCheckVersionAndDataLayout"][1]["signature"] = "(const char*,size_t,size_t,size_t,size_t,size_t,size_t)" defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "" defs["igDebugCheckVersionAndDataLayout"]["(const char*,size_t,size_t,size_t,size_t,size_t,size_t)"] = defs["igDebugCheckVersionAndDataLayout"][1] +defs["igDebugDrawCursorPos"] = {} +defs["igDebugDrawCursorPos"][1] = {} +defs["igDebugDrawCursorPos"][1]["args"] = "(ImU32 col)" +defs["igDebugDrawCursorPos"][1]["argsT"] = {} +defs["igDebugDrawCursorPos"][1]["argsT"][1] = {} +defs["igDebugDrawCursorPos"][1]["argsT"][1]["name"] = "col" +defs["igDebugDrawCursorPos"][1]["argsT"][1]["type"] = "ImU32" +defs["igDebugDrawCursorPos"][1]["argsoriginal"] = "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))" +defs["igDebugDrawCursorPos"][1]["call_args"] = "(col)" +defs["igDebugDrawCursorPos"][1]["cimguiname"] = "igDebugDrawCursorPos" +defs["igDebugDrawCursorPos"][1]["defaults"] = {} +defs["igDebugDrawCursorPos"][1]["defaults"]["col"] = "4278190335" +defs["igDebugDrawCursorPos"][1]["funcname"] = "DebugDrawCursorPos" +defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3926" +defs["igDebugDrawCursorPos"][1]["namespace"] = "ImGui" +defs["igDebugDrawCursorPos"][1]["ov_cimguiname"] = "igDebugDrawCursorPos" +defs["igDebugDrawCursorPos"][1]["ret"] = "void" +defs["igDebugDrawCursorPos"][1]["signature"] = "(ImU32)" +defs["igDebugDrawCursorPos"][1]["stname"] = "" +defs["igDebugDrawCursorPos"]["(ImU32)"] = defs["igDebugDrawCursorPos"][1] defs["igDebugDrawItemRect"] = {} defs["igDebugDrawItemRect"][1] = {} defs["igDebugDrawItemRect"][1]["args"] = "(ImU32 col)" @@ -13614,13 +14581,52 @@ defs["igDebugDrawItemRect"][1]["cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["defaults"] = {} defs["igDebugDrawItemRect"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawItemRect"][1]["funcname"] = "DebugDrawItemRect" -defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3449" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3928" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" defs["igDebugDrawItemRect"][1]["signature"] = "(ImU32)" defs["igDebugDrawItemRect"][1]["stname"] = "" defs["igDebugDrawItemRect"]["(ImU32)"] = defs["igDebugDrawItemRect"][1] +defs["igDebugDrawLineExtents"] = {} +defs["igDebugDrawLineExtents"][1] = {} +defs["igDebugDrawLineExtents"][1]["args"] = "(ImU32 col)" +defs["igDebugDrawLineExtents"][1]["argsT"] = {} +defs["igDebugDrawLineExtents"][1]["argsT"][1] = {} +defs["igDebugDrawLineExtents"][1]["argsT"][1]["name"] = "col" +defs["igDebugDrawLineExtents"][1]["argsT"][1]["type"] = "ImU32" +defs["igDebugDrawLineExtents"][1]["argsoriginal"] = "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))" +defs["igDebugDrawLineExtents"][1]["call_args"] = "(col)" +defs["igDebugDrawLineExtents"][1]["cimguiname"] = "igDebugDrawLineExtents" +defs["igDebugDrawLineExtents"][1]["defaults"] = {} +defs["igDebugDrawLineExtents"][1]["defaults"]["col"] = "4278190335" +defs["igDebugDrawLineExtents"][1]["funcname"] = "DebugDrawLineExtents" +defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3927" +defs["igDebugDrawLineExtents"][1]["namespace"] = "ImGui" +defs["igDebugDrawLineExtents"][1]["ov_cimguiname"] = "igDebugDrawLineExtents" +defs["igDebugDrawLineExtents"][1]["ret"] = "void" +defs["igDebugDrawLineExtents"][1]["signature"] = "(ImU32)" +defs["igDebugDrawLineExtents"][1]["stname"] = "" +defs["igDebugDrawLineExtents"]["(ImU32)"] = defs["igDebugDrawLineExtents"][1] +defs["igDebugFlashStyleColor"] = {} +defs["igDebugFlashStyleColor"][1] = {} +defs["igDebugFlashStyleColor"][1]["args"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["argsT"] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1]["name"] = "idx" +defs["igDebugFlashStyleColor"][1]["argsT"][1]["type"] = "ImGuiCol" +defs["igDebugFlashStyleColor"][1]["argsoriginal"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" +defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["defaults"] = {} +defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1063" +defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" +defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["ret"] = "void" +defs["igDebugFlashStyleColor"][1]["signature"] = "(ImGuiCol)" +defs["igDebugFlashStyleColor"][1]["stname"] = "" +defs["igDebugFlashStyleColor"]["(ImGuiCol)"] = defs["igDebugFlashStyleColor"][1] defs["igDebugHookIdInfo"] = {} defs["igDebugHookIdInfo"][1] = {} defs["igDebugHookIdInfo"][1]["args"] = "(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end)" @@ -13642,7 +14648,7 @@ defs["igDebugHookIdInfo"][1]["call_args"] = "(id,data_type,data_id,data_id_end)" defs["igDebugHookIdInfo"][1]["cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["defaults"] = {} defs["igDebugHookIdInfo"][1]["funcname"] = "DebugHookIdInfo" -defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3452" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3937" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -13661,7 +14667,7 @@ defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["defaults"] = {} defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" -defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3446" +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3930" defs["igDebugLocateItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["ret"] = "void" @@ -13680,7 +14686,7 @@ defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["defaults"] = {} defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" -defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3447" +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3931" defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["ret"] = "void" @@ -13696,7 +14702,7 @@ defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" -defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3448" +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3932" defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" @@ -13719,7 +14725,7 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" -defs["igDebugLog"][1]["location"] = "imgui_internal:3439" +defs["igDebugLog"][1]["location"] = "imgui:1067" defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -13741,7 +14747,7 @@ defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["defaults"] = {} defs["igDebugLogV"][1]["funcname"] = "DebugLogV" -defs["igDebugLogV"][1]["location"] = "imgui_internal:3440" +defs["igDebugLogV"][1]["location"] = "imgui:1068" defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -13760,7 +14766,7 @@ defs["igDebugNodeColumns"][1]["call_args"] = "(columns)" defs["igDebugNodeColumns"][1]["cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["defaults"] = {} defs["igDebugNodeColumns"][1]["funcname"] = "DebugNodeColumns" -defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3453" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3938" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -13782,7 +14788,7 @@ defs["igDebugNodeDockNode"][1]["call_args"] = "(node,label)" defs["igDebugNodeDockNode"][1]["cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["defaults"] = {} defs["igDebugNodeDockNode"][1]["funcname"] = "DebugNodeDockNode" -defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3454" +defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3939" defs["igDebugNodeDockNode"][1]["namespace"] = "ImGui" defs["igDebugNodeDockNode"][1]["ov_cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["ret"] = "void" @@ -13813,7 +14819,7 @@ defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["call_args"] = "(out_draw_li defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["defaults"] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["funcname"] = "DebugNodeDrawCmdShowMeshAndBoundingBox" -defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3456" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3941" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -13841,7 +14847,7 @@ defs["igDebugNodeDrawList"][1]["call_args"] = "(window,viewport,draw_list,label) defs["igDebugNodeDrawList"][1]["cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["defaults"] = {} defs["igDebugNodeDrawList"][1]["funcname"] = "DebugNodeDrawList" -defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3455" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3940" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -13860,7 +14866,7 @@ defs["igDebugNodeFont"][1]["call_args"] = "(font)" defs["igDebugNodeFont"][1]["cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["defaults"] = {} defs["igDebugNodeFont"][1]["funcname"] = "DebugNodeFont" -defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3457" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3942" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -13882,7 +14888,7 @@ defs["igDebugNodeFontGlyph"][1]["call_args"] = "(font,glyph)" defs["igDebugNodeFontGlyph"][1]["cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["defaults"] = {} defs["igDebugNodeFontGlyph"][1]["funcname"] = "DebugNodeFontGlyph" -defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3458" +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3943" defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -13901,13 +14907,57 @@ defs["igDebugNodeInputTextState"][1]["call_args"] = "(state)" defs["igDebugNodeInputTextState"][1]["cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["defaults"] = {} defs["igDebugNodeInputTextState"][1]["funcname"] = "DebugNodeInputTextState" -defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3463" +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3948" defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" defs["igDebugNodeInputTextState"][1]["signature"] = "(ImGuiInputTextState*)" defs["igDebugNodeInputTextState"][1]["stname"] = "" defs["igDebugNodeInputTextState"]["(ImGuiInputTextState*)"] = defs["igDebugNodeInputTextState"][1] +defs["igDebugNodeMultiSelectState"] = {} +defs["igDebugNodeMultiSelectState"][1] = {} +defs["igDebugNodeMultiSelectState"][1]["args"] = "(ImGuiMultiSelectState* state)" +defs["igDebugNodeMultiSelectState"][1]["argsT"] = {} +defs["igDebugNodeMultiSelectState"][1]["argsT"][1] = {} +defs["igDebugNodeMultiSelectState"][1]["argsT"][1]["name"] = "state" +defs["igDebugNodeMultiSelectState"][1]["argsT"][1]["type"] = "ImGuiMultiSelectState*" +defs["igDebugNodeMultiSelectState"][1]["argsoriginal"] = "(ImGuiMultiSelectState* state)" +defs["igDebugNodeMultiSelectState"][1]["call_args"] = "(state)" +defs["igDebugNodeMultiSelectState"][1]["cimguiname"] = "igDebugNodeMultiSelectState" +defs["igDebugNodeMultiSelectState"][1]["defaults"] = {} +defs["igDebugNodeMultiSelectState"][1]["funcname"] = "DebugNodeMultiSelectState" +defs["igDebugNodeMultiSelectState"][1]["location"] = "imgui_internal:3950" +defs["igDebugNodeMultiSelectState"][1]["namespace"] = "ImGui" +defs["igDebugNodeMultiSelectState"][1]["ov_cimguiname"] = "igDebugNodeMultiSelectState" +defs["igDebugNodeMultiSelectState"][1]["ret"] = "void" +defs["igDebugNodeMultiSelectState"][1]["signature"] = "(ImGuiMultiSelectState*)" +defs["igDebugNodeMultiSelectState"][1]["stname"] = "" +defs["igDebugNodeMultiSelectState"]["(ImGuiMultiSelectState*)"] = defs["igDebugNodeMultiSelectState"][1] +defs["igDebugNodePlatformMonitor"] = {} +defs["igDebugNodePlatformMonitor"][1] = {} +defs["igDebugNodePlatformMonitor"][1]["args"] = "(ImGuiPlatformMonitor* monitor,const char* label,int idx)" +defs["igDebugNodePlatformMonitor"][1]["argsT"] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][1] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][1]["name"] = "monitor" +defs["igDebugNodePlatformMonitor"][1]["argsT"][1]["type"] = "ImGuiPlatformMonitor*" +defs["igDebugNodePlatformMonitor"][1]["argsT"][2] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][2]["name"] = "label" +defs["igDebugNodePlatformMonitor"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugNodePlatformMonitor"][1]["argsT"][3] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][3]["name"] = "idx" +defs["igDebugNodePlatformMonitor"][1]["argsT"][3]["type"] = "int" +defs["igDebugNodePlatformMonitor"][1]["argsoriginal"] = "(ImGuiPlatformMonitor* monitor,const char* label,int idx)" +defs["igDebugNodePlatformMonitor"][1]["call_args"] = "(monitor,label,idx)" +defs["igDebugNodePlatformMonitor"][1]["cimguiname"] = "igDebugNodePlatformMonitor" +defs["igDebugNodePlatformMonitor"][1]["defaults"] = {} +defs["igDebugNodePlatformMonitor"][1]["funcname"] = "DebugNodePlatformMonitor" +defs["igDebugNodePlatformMonitor"][1]["location"] = "imgui_internal:3956" +defs["igDebugNodePlatformMonitor"][1]["namespace"] = "ImGui" +defs["igDebugNodePlatformMonitor"][1]["ov_cimguiname"] = "igDebugNodePlatformMonitor" +defs["igDebugNodePlatformMonitor"][1]["ret"] = "void" +defs["igDebugNodePlatformMonitor"][1]["signature"] = "(ImGuiPlatformMonitor*,const char*,int)" +defs["igDebugNodePlatformMonitor"][1]["stname"] = "" +defs["igDebugNodePlatformMonitor"]["(ImGuiPlatformMonitor*,const char*,int)"] = defs["igDebugNodePlatformMonitor"][1] defs["igDebugNodeStorage"] = {} defs["igDebugNodeStorage"][1] = {} defs["igDebugNodeStorage"][1]["args"] = "(ImGuiStorage* storage,const char* label)" @@ -13923,7 +14973,7 @@ defs["igDebugNodeStorage"][1]["call_args"] = "(storage,label)" defs["igDebugNodeStorage"][1]["cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["defaults"] = {} defs["igDebugNodeStorage"][1]["funcname"] = "DebugNodeStorage" -defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3459" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3944" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -13945,7 +14995,7 @@ defs["igDebugNodeTabBar"][1]["call_args"] = "(tab_bar,label)" defs["igDebugNodeTabBar"][1]["cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["defaults"] = {} defs["igDebugNodeTabBar"][1]["funcname"] = "DebugNodeTabBar" -defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3460" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3945" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -13964,7 +15014,7 @@ defs["igDebugNodeTable"][1]["call_args"] = "(table)" defs["igDebugNodeTable"][1]["cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["defaults"] = {} defs["igDebugNodeTable"][1]["funcname"] = "DebugNodeTable" -defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3461" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3946" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -13983,13 +15033,32 @@ defs["igDebugNodeTableSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeTableSettings"][1]["cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["defaults"] = {} defs["igDebugNodeTableSettings"][1]["funcname"] = "DebugNodeTableSettings" -defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3462" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3947" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" defs["igDebugNodeTableSettings"][1]["signature"] = "(ImGuiTableSettings*)" defs["igDebugNodeTableSettings"][1]["stname"] = "" defs["igDebugNodeTableSettings"]["(ImGuiTableSettings*)"] = defs["igDebugNodeTableSettings"][1] +defs["igDebugNodeTypingSelectState"] = {} +defs["igDebugNodeTypingSelectState"][1] = {} +defs["igDebugNodeTypingSelectState"][1]["args"] = "(ImGuiTypingSelectState* state)" +defs["igDebugNodeTypingSelectState"][1]["argsT"] = {} +defs["igDebugNodeTypingSelectState"][1]["argsT"][1] = {} +defs["igDebugNodeTypingSelectState"][1]["argsT"][1]["name"] = "state" +defs["igDebugNodeTypingSelectState"][1]["argsT"][1]["type"] = "ImGuiTypingSelectState*" +defs["igDebugNodeTypingSelectState"][1]["argsoriginal"] = "(ImGuiTypingSelectState* state)" +defs["igDebugNodeTypingSelectState"][1]["call_args"] = "(state)" +defs["igDebugNodeTypingSelectState"][1]["cimguiname"] = "igDebugNodeTypingSelectState" +defs["igDebugNodeTypingSelectState"][1]["defaults"] = {} +defs["igDebugNodeTypingSelectState"][1]["funcname"] = "DebugNodeTypingSelectState" +defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3949" +defs["igDebugNodeTypingSelectState"][1]["namespace"] = "ImGui" +defs["igDebugNodeTypingSelectState"][1]["ov_cimguiname"] = "igDebugNodeTypingSelectState" +defs["igDebugNodeTypingSelectState"][1]["ret"] = "void" +defs["igDebugNodeTypingSelectState"][1]["signature"] = "(ImGuiTypingSelectState*)" +defs["igDebugNodeTypingSelectState"][1]["stname"] = "" +defs["igDebugNodeTypingSelectState"]["(ImGuiTypingSelectState*)"] = defs["igDebugNodeTypingSelectState"][1] defs["igDebugNodeViewport"] = {} defs["igDebugNodeViewport"][1] = {} defs["igDebugNodeViewport"][1]["args"] = "(ImGuiViewportP* viewport)" @@ -14002,7 +15071,7 @@ defs["igDebugNodeViewport"][1]["call_args"] = "(viewport)" defs["igDebugNodeViewport"][1]["cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["defaults"] = {} defs["igDebugNodeViewport"][1]["funcname"] = "DebugNodeViewport" -defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3468" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3955" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -14024,7 +15093,7 @@ defs["igDebugNodeWindow"][1]["call_args"] = "(window,label)" defs["igDebugNodeWindow"][1]["cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["defaults"] = {} defs["igDebugNodeWindow"][1]["funcname"] = "DebugNodeWindow" -defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3464" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3951" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -14043,7 +15112,7 @@ defs["igDebugNodeWindowSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeWindowSettings"][1]["cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["defaults"] = {} defs["igDebugNodeWindowSettings"][1]["funcname"] = "DebugNodeWindowSettings" -defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3465" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3952" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -14065,7 +15134,7 @@ defs["igDebugNodeWindowsList"][1]["call_args"] = "(windows,label)" defs["igDebugNodeWindowsList"][1]["cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["defaults"] = {} defs["igDebugNodeWindowsList"][1]["funcname"] = "DebugNodeWindowsList" -defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3466" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3953" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -14090,7 +15159,7 @@ defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,win defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" -defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3467" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3954" defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -14109,7 +15178,7 @@ defs["igDebugRenderKeyboardPreview"][1]["call_args"] = "(draw_list)" defs["igDebugRenderKeyboardPreview"][1]["cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["defaults"] = {} defs["igDebugRenderKeyboardPreview"][1]["funcname"] = "DebugRenderKeyboardPreview" -defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3469" +defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3957" defs["igDebugRenderKeyboardPreview"][1]["namespace"] = "ImGui" defs["igDebugRenderKeyboardPreview"][1]["ov_cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["ret"] = "void" @@ -14134,7 +15203,7 @@ defs["igDebugRenderViewportThumbnail"][1]["call_args"] = "(draw_list,viewport,bb defs["igDebugRenderViewportThumbnail"][1]["cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["defaults"] = {} defs["igDebugRenderViewportThumbnail"][1]["funcname"] = "DebugRenderViewportThumbnail" -defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3470" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3958" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -14150,7 +15219,7 @@ defs["igDebugStartItemPicker"][1]["call_args"] = "()" defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["defaults"] = {} defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" -defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:3450" +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1064" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -14169,13 +15238,35 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:965" +defs["igDebugTextEncoding"][1]["location"] = "imgui:1062" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" defs["igDebugTextEncoding"][1]["signature"] = "(const char*)" defs["igDebugTextEncoding"][1]["stname"] = "" defs["igDebugTextEncoding"]["(const char*)"] = defs["igDebugTextEncoding"][1] +defs["igDebugTextUnformattedWithLocateItem"] = {} +defs["igDebugTextUnformattedWithLocateItem"][1] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["args"] = "(const char* line_begin,const char* line_end)" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][1] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][1]["name"] = "line_begin" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][2] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][2]["name"] = "line_end" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsoriginal"] = "(const char* line_begin,const char* line_end)" +defs["igDebugTextUnformattedWithLocateItem"][1]["call_args"] = "(line_begin,line_end)" +defs["igDebugTextUnformattedWithLocateItem"][1]["cimguiname"] = "igDebugTextUnformattedWithLocateItem" +defs["igDebugTextUnformattedWithLocateItem"][1]["defaults"] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["funcname"] = "DebugTextUnformattedWithLocateItem" +defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3929" +defs["igDebugTextUnformattedWithLocateItem"][1]["namespace"] = "ImGui" +defs["igDebugTextUnformattedWithLocateItem"][1]["ov_cimguiname"] = "igDebugTextUnformattedWithLocateItem" +defs["igDebugTextUnformattedWithLocateItem"][1]["ret"] = "void" +defs["igDebugTextUnformattedWithLocateItem"][1]["signature"] = "(const char*,const char*)" +defs["igDebugTextUnformattedWithLocateItem"][1]["stname"] = "" +defs["igDebugTextUnformattedWithLocateItem"]["(const char*,const char*)"] = defs["igDebugTextUnformattedWithLocateItem"][1] defs["igDestroyContext"] = {} defs["igDestroyContext"][1] = {} defs["igDestroyContext"][1]["args"] = "(ImGuiContext* ctx)" @@ -14189,7 +15280,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:295" +defs["igDestroyContext"][1]["location"] = "imgui:329" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -14208,7 +15299,7 @@ defs["igDestroyPlatformWindow"][1]["call_args"] = "(viewport)" defs["igDestroyPlatformWindow"][1]["cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["defaults"] = {} defs["igDestroyPlatformWindow"][1]["funcname"] = "DestroyPlatformWindow" -defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3000" +defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3417" defs["igDestroyPlatformWindow"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindow"][1]["ov_cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["ret"] = "void" @@ -14224,7 +15315,7 @@ defs["igDestroyPlatformWindows"][1]["call_args"] = "()" defs["igDestroyPlatformWindows"][1]["cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["defaults"] = {} defs["igDestroyPlatformWindows"][1]["funcname"] = "DestroyPlatformWindows" -defs["igDestroyPlatformWindows"][1]["location"] = "imgui:983" +defs["igDestroyPlatformWindows"][1]["location"] = "imgui:1085" defs["igDestroyPlatformWindows"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindows"][1]["ov_cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["ret"] = "void" @@ -14248,7 +15339,7 @@ defs["igDockBuilderAddNode"][1]["defaults"] = {} defs["igDockBuilderAddNode"][1]["defaults"]["flags"] = "0" defs["igDockBuilderAddNode"][1]["defaults"]["node_id"] = "0" defs["igDockBuilderAddNode"][1]["funcname"] = "DockBuilderAddNode" -defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3230" +defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3679" defs["igDockBuilderAddNode"][1]["namespace"] = "ImGui" defs["igDockBuilderAddNode"][1]["ov_cimguiname"] = "igDockBuilderAddNode" defs["igDockBuilderAddNode"][1]["ret"] = "ImGuiID" @@ -14273,7 +15364,7 @@ defs["igDockBuilderCopyDockSpace"][1]["call_args"] = "(src_dockspace_id,dst_dock defs["igDockBuilderCopyDockSpace"][1]["cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["defaults"] = {} defs["igDockBuilderCopyDockSpace"][1]["funcname"] = "DockBuilderCopyDockSpace" -defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3237" +defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3686" defs["igDockBuilderCopyDockSpace"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyDockSpace"][1]["ov_cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["ret"] = "void" @@ -14298,7 +15389,7 @@ defs["igDockBuilderCopyNode"][1]["call_args"] = "(src_node_id,dst_node_id,out_no defs["igDockBuilderCopyNode"][1]["cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["defaults"] = {} defs["igDockBuilderCopyNode"][1]["funcname"] = "DockBuilderCopyNode" -defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3238" +defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3687" defs["igDockBuilderCopyNode"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyNode"][1]["ov_cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["ret"] = "void" @@ -14320,7 +15411,7 @@ defs["igDockBuilderCopyWindowSettings"][1]["call_args"] = "(src_name,dst_name)" defs["igDockBuilderCopyWindowSettings"][1]["cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["defaults"] = {} defs["igDockBuilderCopyWindowSettings"][1]["funcname"] = "DockBuilderCopyWindowSettings" -defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3239" +defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3688" defs["igDockBuilderCopyWindowSettings"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyWindowSettings"][1]["ov_cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["ret"] = "void" @@ -14342,7 +15433,7 @@ defs["igDockBuilderDockWindow"][1]["call_args"] = "(window_name,node_id)" defs["igDockBuilderDockWindow"][1]["cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["defaults"] = {} defs["igDockBuilderDockWindow"][1]["funcname"] = "DockBuilderDockWindow" -defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3227" +defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3676" defs["igDockBuilderDockWindow"][1]["namespace"] = "ImGui" defs["igDockBuilderDockWindow"][1]["ov_cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["ret"] = "void" @@ -14361,7 +15452,7 @@ defs["igDockBuilderFinish"][1]["call_args"] = "(node_id)" defs["igDockBuilderFinish"][1]["cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["defaults"] = {} defs["igDockBuilderFinish"][1]["funcname"] = "DockBuilderFinish" -defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3240" +defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3689" defs["igDockBuilderFinish"][1]["namespace"] = "ImGui" defs["igDockBuilderFinish"][1]["ov_cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["ret"] = "void" @@ -14380,7 +15471,7 @@ defs["igDockBuilderGetCentralNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetCentralNode"][1]["cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["defaults"] = {} defs["igDockBuilderGetCentralNode"][1]["funcname"] = "DockBuilderGetCentralNode" -defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3229" +defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3678" defs["igDockBuilderGetCentralNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetCentralNode"][1]["ov_cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["ret"] = "ImGuiDockNode*" @@ -14399,7 +15490,7 @@ defs["igDockBuilderGetNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetNode"][1]["cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["defaults"] = {} defs["igDockBuilderGetNode"][1]["funcname"] = "DockBuilderGetNode" -defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3228" +defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3677" defs["igDockBuilderGetNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetNode"][1]["ov_cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["ret"] = "ImGuiDockNode*" @@ -14418,7 +15509,7 @@ defs["igDockBuilderRemoveNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNode"][1]["cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["defaults"] = {} defs["igDockBuilderRemoveNode"][1]["funcname"] = "DockBuilderRemoveNode" -defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3231" +defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3680" defs["igDockBuilderRemoveNode"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNode"][1]["ov_cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["ret"] = "void" @@ -14437,7 +15528,7 @@ defs["igDockBuilderRemoveNodeChildNodes"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNodeChildNodes"][1]["cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeChildNodes"][1]["funcname"] = "DockBuilderRemoveNodeChildNodes" -defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3233" +defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3682" defs["igDockBuilderRemoveNodeChildNodes"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeChildNodes"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["ret"] = "void" @@ -14460,7 +15551,7 @@ defs["igDockBuilderRemoveNodeDockedWindows"][1]["cimguiname"] = "igDockBuilderRe defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"]["clear_settings_refs"] = "true" defs["igDockBuilderRemoveNodeDockedWindows"][1]["funcname"] = "DockBuilderRemoveNodeDockedWindows" -defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3232" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3681" defs["igDockBuilderRemoveNodeDockedWindows"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ret"] = "void" @@ -14482,7 +15573,7 @@ defs["igDockBuilderSetNodePos"][1]["call_args"] = "(node_id,pos)" defs["igDockBuilderSetNodePos"][1]["cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["defaults"] = {} defs["igDockBuilderSetNodePos"][1]["funcname"] = "DockBuilderSetNodePos" -defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3234" +defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3683" defs["igDockBuilderSetNodePos"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodePos"][1]["ov_cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["ret"] = "void" @@ -14504,7 +15595,7 @@ defs["igDockBuilderSetNodeSize"][1]["call_args"] = "(node_id,size)" defs["igDockBuilderSetNodeSize"][1]["cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["defaults"] = {} defs["igDockBuilderSetNodeSize"][1]["funcname"] = "DockBuilderSetNodeSize" -defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3235" +defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3684" defs["igDockBuilderSetNodeSize"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodeSize"][1]["ov_cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["ret"] = "void" @@ -14535,7 +15626,7 @@ defs["igDockBuilderSplitNode"][1]["call_args"] = "(node_id,split_dir,size_ratio_ defs["igDockBuilderSplitNode"][1]["cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["defaults"] = {} defs["igDockBuilderSplitNode"][1]["funcname"] = "DockBuilderSplitNode" -defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3236" +defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3685" defs["igDockBuilderSplitNode"][1]["namespace"] = "ImGui" defs["igDockBuilderSplitNode"][1]["ov_cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["ret"] = "ImGuiID" @@ -14572,7 +15663,7 @@ defs["igDockContextCalcDropPosForDocking"][1]["call_args"] = "(target,target_nod defs["igDockContextCalcDropPosForDocking"][1]["cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["defaults"] = {} defs["igDockContextCalcDropPosForDocking"][1]["funcname"] = "DockContextCalcDropPosForDocking" -defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3203" +defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3651" defs["igDockContextCalcDropPosForDocking"][1]["namespace"] = "ImGui" defs["igDockContextCalcDropPosForDocking"][1]["ov_cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["ret"] = "bool" @@ -14597,7 +15688,7 @@ defs["igDockContextClearNodes"][1]["call_args"] = "(ctx,root_id,clear_settings_r defs["igDockContextClearNodes"][1]["cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["defaults"] = {} defs["igDockContextClearNodes"][1]["funcname"] = "DockContextClearNodes" -defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3194" +defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3640" defs["igDockContextClearNodes"][1]["namespace"] = "ImGui" defs["igDockContextClearNodes"][1]["ov_cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["ret"] = "void" @@ -14616,7 +15707,7 @@ defs["igDockContextEndFrame"][1]["call_args"] = "(ctx)" defs["igDockContextEndFrame"][1]["cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["defaults"] = {} defs["igDockContextEndFrame"][1]["funcname"] = "DockContextEndFrame" -defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3198" +defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3644" defs["igDockContextEndFrame"][1]["namespace"] = "ImGui" defs["igDockContextEndFrame"][1]["ov_cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["ret"] = "void" @@ -14638,7 +15729,7 @@ defs["igDockContextFindNodeByID"][1]["call_args"] = "(ctx,id)" defs["igDockContextFindNodeByID"][1]["cimguiname"] = "igDockContextFindNodeByID" defs["igDockContextFindNodeByID"][1]["defaults"] = {} defs["igDockContextFindNodeByID"][1]["funcname"] = "DockContextFindNodeByID" -defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3204" +defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3652" defs["igDockContextFindNodeByID"][1]["namespace"] = "ImGui" defs["igDockContextFindNodeByID"][1]["ov_cimguiname"] = "igDockContextFindNodeByID" defs["igDockContextFindNodeByID"][1]["ret"] = "ImGuiDockNode*" @@ -14657,7 +15748,7 @@ defs["igDockContextGenNodeID"][1]["call_args"] = "(ctx)" defs["igDockContextGenNodeID"][1]["cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["defaults"] = {} defs["igDockContextGenNodeID"][1]["funcname"] = "DockContextGenNodeID" -defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3199" +defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3645" defs["igDockContextGenNodeID"][1]["namespace"] = "ImGui" defs["igDockContextGenNodeID"][1]["ov_cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["ret"] = "ImGuiID" @@ -14676,7 +15767,7 @@ defs["igDockContextInitialize"][1]["call_args"] = "(ctx)" defs["igDockContextInitialize"][1]["cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["defaults"] = {} defs["igDockContextInitialize"][1]["funcname"] = "DockContextInitialize" -defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3192" +defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3638" defs["igDockContextInitialize"][1]["namespace"] = "ImGui" defs["igDockContextInitialize"][1]["ov_cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["ret"] = "void" @@ -14695,7 +15786,7 @@ defs["igDockContextNewFrameUpdateDocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateDocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateDocking"][1]["funcname"] = "DockContextNewFrameUpdateDocking" -defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3197" +defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3643" defs["igDockContextNewFrameUpdateDocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateDocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["ret"] = "void" @@ -14714,13 +15805,61 @@ defs["igDockContextNewFrameUpdateUndocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateUndocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateUndocking"][1]["funcname"] = "DockContextNewFrameUpdateUndocking" -defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3196" +defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3642" defs["igDockContextNewFrameUpdateUndocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateUndocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["ret"] = "void" defs["igDockContextNewFrameUpdateUndocking"][1]["signature"] = "(ImGuiContext*)" defs["igDockContextNewFrameUpdateUndocking"][1]["stname"] = "" defs["igDockContextNewFrameUpdateUndocking"]["(ImGuiContext*)"] = defs["igDockContextNewFrameUpdateUndocking"][1] +defs["igDockContextProcessUndockNode"] = {} +defs["igDockContextProcessUndockNode"][1] = {} +defs["igDockContextProcessUndockNode"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextProcessUndockNode"][1]["argsT"] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][1] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextProcessUndockNode"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextProcessUndockNode"][1]["argsT"][2] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][2]["name"] = "node" +defs["igDockContextProcessUndockNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockContextProcessUndockNode"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextProcessUndockNode"][1]["call_args"] = "(ctx,node)" +defs["igDockContextProcessUndockNode"][1]["cimguiname"] = "igDockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["defaults"] = {} +defs["igDockContextProcessUndockNode"][1]["funcname"] = "DockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["location"] = "imgui_internal:3650" +defs["igDockContextProcessUndockNode"][1]["namespace"] = "ImGui" +defs["igDockContextProcessUndockNode"][1]["ov_cimguiname"] = "igDockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["ret"] = "void" +defs["igDockContextProcessUndockNode"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*)" +defs["igDockContextProcessUndockNode"][1]["stname"] = "" +defs["igDockContextProcessUndockNode"]["(ImGuiContext*,ImGuiDockNode*)"] = defs["igDockContextProcessUndockNode"][1] +defs["igDockContextProcessUndockWindow"] = {} +defs["igDockContextProcessUndockWindow"][1] = {} +defs["igDockContextProcessUndockWindow"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref)" +defs["igDockContextProcessUndockWindow"][1]["argsT"] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][1] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextProcessUndockWindow"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextProcessUndockWindow"][1]["argsT"][2] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][2]["name"] = "window" +defs["igDockContextProcessUndockWindow"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igDockContextProcessUndockWindow"][1]["argsT"][3] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][3]["name"] = "clear_persistent_docking_ref" +defs["igDockContextProcessUndockWindow"][1]["argsT"][3]["type"] = "bool" +defs["igDockContextProcessUndockWindow"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref=true)" +defs["igDockContextProcessUndockWindow"][1]["call_args"] = "(ctx,window,clear_persistent_docking_ref)" +defs["igDockContextProcessUndockWindow"][1]["cimguiname"] = "igDockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["defaults"] = {} +defs["igDockContextProcessUndockWindow"][1]["defaults"]["clear_persistent_docking_ref"] = "true" +defs["igDockContextProcessUndockWindow"][1]["funcname"] = "DockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["location"] = "imgui_internal:3649" +defs["igDockContextProcessUndockWindow"][1]["namespace"] = "ImGui" +defs["igDockContextProcessUndockWindow"][1]["ov_cimguiname"] = "igDockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["ret"] = "void" +defs["igDockContextProcessUndockWindow"][1]["signature"] = "(ImGuiContext*,ImGuiWindow*,bool)" +defs["igDockContextProcessUndockWindow"][1]["stname"] = "" +defs["igDockContextProcessUndockWindow"]["(ImGuiContext*,ImGuiWindow*,bool)"] = defs["igDockContextProcessUndockWindow"][1] defs["igDockContextQueueDock"] = {} defs["igDockContextQueueDock"][1] = {} defs["igDockContextQueueDock"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)" @@ -14751,7 +15890,7 @@ defs["igDockContextQueueDock"][1]["call_args"] = "(ctx,target,target_node,payloa defs["igDockContextQueueDock"][1]["cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["defaults"] = {} defs["igDockContextQueueDock"][1]["funcname"] = "DockContextQueueDock" -defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3200" +defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3646" defs["igDockContextQueueDock"][1]["namespace"] = "ImGui" defs["igDockContextQueueDock"][1]["ov_cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["ret"] = "void" @@ -14773,7 +15912,7 @@ defs["igDockContextQueueUndockNode"][1]["call_args"] = "(ctx,node)" defs["igDockContextQueueUndockNode"][1]["cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["defaults"] = {} defs["igDockContextQueueUndockNode"][1]["funcname"] = "DockContextQueueUndockNode" -defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3202" +defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3648" defs["igDockContextQueueUndockNode"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockNode"][1]["ov_cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["ret"] = "void" @@ -14795,7 +15934,7 @@ defs["igDockContextQueueUndockWindow"][1]["call_args"] = "(ctx,window)" defs["igDockContextQueueUndockWindow"][1]["cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["defaults"] = {} defs["igDockContextQueueUndockWindow"][1]["funcname"] = "DockContextQueueUndockWindow" -defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3201" +defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3647" defs["igDockContextQueueUndockWindow"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockWindow"][1]["ov_cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["ret"] = "void" @@ -14814,7 +15953,7 @@ defs["igDockContextRebuildNodes"][1]["call_args"] = "(ctx)" defs["igDockContextRebuildNodes"][1]["cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["defaults"] = {} defs["igDockContextRebuildNodes"][1]["funcname"] = "DockContextRebuildNodes" -defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3195" +defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3641" defs["igDockContextRebuildNodes"][1]["namespace"] = "ImGui" defs["igDockContextRebuildNodes"][1]["ov_cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["ret"] = "void" @@ -14833,7 +15972,7 @@ defs["igDockContextShutdown"][1]["call_args"] = "(ctx)" defs["igDockContextShutdown"][1]["cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["defaults"] = {} defs["igDockContextShutdown"][1]["funcname"] = "DockContextShutdown" -defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3193" +defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3639" defs["igDockContextShutdown"][1]["namespace"] = "ImGui" defs["igDockContextShutdown"][1]["ov_cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["ret"] = "void" @@ -14852,7 +15991,7 @@ defs["igDockNodeBeginAmendTabBar"][1]["call_args"] = "(node)" defs["igDockNodeBeginAmendTabBar"][1]["cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["defaults"] = {} defs["igDockNodeBeginAmendTabBar"][1]["funcname"] = "DockNodeBeginAmendTabBar" -defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3205" +defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3654" defs["igDockNodeBeginAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeBeginAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["ret"] = "bool" @@ -14868,7 +16007,7 @@ defs["igDockNodeEndAmendTabBar"][1]["call_args"] = "()" defs["igDockNodeEndAmendTabBar"][1]["cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["defaults"] = {} defs["igDockNodeEndAmendTabBar"][1]["funcname"] = "DockNodeEndAmendTabBar" -defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3206" +defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3655" defs["igDockNodeEndAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeEndAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["ret"] = "void" @@ -14887,7 +16026,7 @@ defs["igDockNodeGetDepth"][1]["call_args"] = "(node)" defs["igDockNodeGetDepth"][1]["cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["defaults"] = {} defs["igDockNodeGetDepth"][1]["funcname"] = "DockNodeGetDepth" -defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3209" +defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3658" defs["igDockNodeGetDepth"][1]["namespace"] = "ImGui" defs["igDockNodeGetDepth"][1]["ov_cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["ret"] = "int" @@ -14906,7 +16045,7 @@ defs["igDockNodeGetRootNode"][1]["call_args"] = "(node)" defs["igDockNodeGetRootNode"][1]["cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["defaults"] = {} defs["igDockNodeGetRootNode"][1]["funcname"] = "DockNodeGetRootNode" -defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3207" +defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3656" defs["igDockNodeGetRootNode"][1]["namespace"] = "ImGui" defs["igDockNodeGetRootNode"][1]["ov_cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["ret"] = "ImGuiDockNode*" @@ -14925,7 +16064,7 @@ defs["igDockNodeGetWindowMenuButtonId"][1]["call_args"] = "(node)" defs["igDockNodeGetWindowMenuButtonId"][1]["cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["defaults"] = {} defs["igDockNodeGetWindowMenuButtonId"][1]["funcname"] = "DockNodeGetWindowMenuButtonId" -defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3210" +defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3659" defs["igDockNodeGetWindowMenuButtonId"][1]["namespace"] = "ImGui" defs["igDockNodeGetWindowMenuButtonId"][1]["ov_cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["ret"] = "ImGuiID" @@ -14947,19 +16086,44 @@ defs["igDockNodeIsInHierarchyOf"][1]["call_args"] = "(node,parent)" defs["igDockNodeIsInHierarchyOf"][1]["cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["defaults"] = {} defs["igDockNodeIsInHierarchyOf"][1]["funcname"] = "DockNodeIsInHierarchyOf" -defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3208" +defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3657" defs["igDockNodeIsInHierarchyOf"][1]["namespace"] = "ImGui" defs["igDockNodeIsInHierarchyOf"][1]["ov_cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["ret"] = "bool" defs["igDockNodeIsInHierarchyOf"][1]["signature"] = "(ImGuiDockNode*,ImGuiDockNode*)" defs["igDockNodeIsInHierarchyOf"][1]["stname"] = "" defs["igDockNodeIsInHierarchyOf"]["(ImGuiDockNode*,ImGuiDockNode*)"] = defs["igDockNodeIsInHierarchyOf"][1] +defs["igDockNodeWindowMenuHandler_Default"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1]["name"] = "ctx" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2]["name"] = "node" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3]["name"] = "tab_bar" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3]["type"] = "ImGuiTabBar*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["call_args"] = "(ctx,node,tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["cimguiname"] = "igDockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["defaults"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["funcname"] = "DockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["location"] = "imgui_internal:3653" +defs["igDockNodeWindowMenuHandler_Default"][1]["namespace"] = "ImGui" +defs["igDockNodeWindowMenuHandler_Default"][1]["ov_cimguiname"] = "igDockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["ret"] = "void" +defs["igDockNodeWindowMenuHandler_Default"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)" +defs["igDockNodeWindowMenuHandler_Default"][1]["stname"] = "" +defs["igDockNodeWindowMenuHandler_Default"]["(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)"] = defs["igDockNodeWindowMenuHandler_Default"][1] defs["igDockSpace"] = {} defs["igDockSpace"][1] = {} -defs["igDockSpace"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" +defs["igDockSpace"][1]["args"] = "(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" defs["igDockSpace"][1]["argsT"] = {} defs["igDockSpace"][1]["argsT"][1] = {} -defs["igDockSpace"][1]["argsT"][1]["name"] = "id" +defs["igDockSpace"][1]["argsT"][1]["name"] = "dockspace_id" defs["igDockSpace"][1]["argsT"][1]["type"] = "ImGuiID" defs["igDockSpace"][1]["argsT"][2] = {} defs["igDockSpace"][1]["argsT"][2]["name"] = "size" @@ -14970,15 +16134,15 @@ defs["igDockSpace"][1]["argsT"][3]["type"] = "ImGuiDockNodeFlags" defs["igDockSpace"][1]["argsT"][4] = {} defs["igDockSpace"][1]["argsT"][4]["name"] = "window_class" defs["igDockSpace"][1]["argsT"][4]["type"] = "const ImGuiWindowClass*" -defs["igDockSpace"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" -defs["igDockSpace"][1]["call_args"] = "(id,size,flags,window_class)" +defs["igDockSpace"][1]["argsoriginal"] = "(ImGuiID dockspace_id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" +defs["igDockSpace"][1]["call_args"] = "(dockspace_id,size,flags,window_class)" defs["igDockSpace"][1]["cimguiname"] = "igDockSpace" defs["igDockSpace"][1]["defaults"] = {} defs["igDockSpace"][1]["defaults"]["flags"] = "0" defs["igDockSpace"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igDockSpace"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpace"][1]["funcname"] = "DockSpace" -defs["igDockSpace"][1]["location"] = "imgui:815" +defs["igDockSpace"][1]["location"] = "imgui:885" defs["igDockSpace"][1]["namespace"] = "ImGui" defs["igDockSpace"][1]["ov_cimguiname"] = "igDockSpace" defs["igDockSpace"][1]["ret"] = "ImGuiID" @@ -14987,32 +16151,36 @@ defs["igDockSpace"][1]["stname"] = "" defs["igDockSpace"]["(ImGuiID,const ImVec2,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpace"][1] defs["igDockSpaceOverViewport"] = {} defs["igDockSpaceOverViewport"][1] = {} -defs["igDockSpaceOverViewport"][1]["args"] = "(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" +defs["igDockSpaceOverViewport"][1]["args"] = "(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" defs["igDockSpaceOverViewport"][1]["argsT"] = {} defs["igDockSpaceOverViewport"][1]["argsT"][1] = {} -defs["igDockSpaceOverViewport"][1]["argsT"][1]["name"] = "viewport" -defs["igDockSpaceOverViewport"][1]["argsT"][1]["type"] = "const ImGuiViewport*" +defs["igDockSpaceOverViewport"][1]["argsT"][1]["name"] = "dockspace_id" +defs["igDockSpaceOverViewport"][1]["argsT"][1]["type"] = "ImGuiID" defs["igDockSpaceOverViewport"][1]["argsT"][2] = {} -defs["igDockSpaceOverViewport"][1]["argsT"][2]["name"] = "flags" -defs["igDockSpaceOverViewport"][1]["argsT"][2]["type"] = "ImGuiDockNodeFlags" +defs["igDockSpaceOverViewport"][1]["argsT"][2]["name"] = "viewport" +defs["igDockSpaceOverViewport"][1]["argsT"][2]["type"] = "const ImGuiViewport*" defs["igDockSpaceOverViewport"][1]["argsT"][3] = {} -defs["igDockSpaceOverViewport"][1]["argsT"][3]["name"] = "window_class" -defs["igDockSpaceOverViewport"][1]["argsT"][3]["type"] = "const ImGuiWindowClass*" -defs["igDockSpaceOverViewport"][1]["argsoriginal"] = "(const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" -defs["igDockSpaceOverViewport"][1]["call_args"] = "(viewport,flags,window_class)" +defs["igDockSpaceOverViewport"][1]["argsT"][3]["name"] = "flags" +defs["igDockSpaceOverViewport"][1]["argsT"][3]["type"] = "ImGuiDockNodeFlags" +defs["igDockSpaceOverViewport"][1]["argsT"][4] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][4]["name"] = "window_class" +defs["igDockSpaceOverViewport"][1]["argsT"][4]["type"] = "const ImGuiWindowClass*" +defs["igDockSpaceOverViewport"][1]["argsoriginal"] = "(ImGuiID dockspace_id=0,const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" +defs["igDockSpaceOverViewport"][1]["call_args"] = "(dockspace_id,viewport,flags,window_class)" defs["igDockSpaceOverViewport"][1]["cimguiname"] = "igDockSpaceOverViewport" defs["igDockSpaceOverViewport"][1]["defaults"] = {} +defs["igDockSpaceOverViewport"][1]["defaults"]["dockspace_id"] = "0" defs["igDockSpaceOverViewport"][1]["defaults"]["flags"] = "0" defs["igDockSpaceOverViewport"][1]["defaults"]["viewport"] = "NULL" defs["igDockSpaceOverViewport"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpaceOverViewport"][1]["funcname"] = "DockSpaceOverViewport" -defs["igDockSpaceOverViewport"][1]["location"] = "imgui:816" +defs["igDockSpaceOverViewport"][1]["location"] = "imgui:886" defs["igDockSpaceOverViewport"][1]["namespace"] = "ImGui" defs["igDockSpaceOverViewport"][1]["ov_cimguiname"] = "igDockSpaceOverViewport" defs["igDockSpaceOverViewport"][1]["ret"] = "ImGuiID" -defs["igDockSpaceOverViewport"][1]["signature"] = "(const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)" +defs["igDockSpaceOverViewport"][1]["signature"] = "(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)" defs["igDockSpaceOverViewport"][1]["stname"] = "" -defs["igDockSpaceOverViewport"]["(const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpaceOverViewport"][1] +defs["igDockSpaceOverViewport"]["(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpaceOverViewport"][1] defs["igDragBehavior"] = {} defs["igDragBehavior"][1] = {} defs["igDragBehavior"][1]["args"] = "(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags)" @@ -15046,7 +16214,7 @@ defs["igDragBehavior"][1]["call_args"] = "(id,data_type,p_v,v_speed,p_min,p_max, defs["igDragBehavior"][1]["cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["defaults"] = {} defs["igDragBehavior"][1]["funcname"] = "DragBehavior" -defs["igDragBehavior"][1]["location"] = "imgui_internal:3388" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3865" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -15088,7 +16256,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:547" +defs["igDragFloat"][1]["location"] = "imgui:596" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -15130,7 +16298,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:548" +defs["igDragFloat2"][1]["location"] = "imgui:597" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -15172,7 +16340,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:549" +defs["igDragFloat3"][1]["location"] = "imgui:598" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -15214,7 +16382,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:550" +defs["igDragFloat4"][1]["location"] = "imgui:599" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -15263,7 +16431,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:551" +defs["igDragFloatRange2"][1]["location"] = "imgui:600" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -15305,7 +16473,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:552" +defs["igDragInt"][1]["location"] = "imgui:601" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -15347,7 +16515,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:553" +defs["igDragInt2"][1]["location"] = "imgui:602" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -15389,7 +16557,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:554" +defs["igDragInt3"][1]["location"] = "imgui:603" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -15431,7 +16599,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:555" +defs["igDragInt4"][1]["location"] = "imgui:604" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -15480,7 +16648,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:556" +defs["igDragIntRange2"][1]["location"] = "imgui:605" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -15525,7 +16693,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:557" +defs["igDragScalar"][1]["location"] = "imgui:606" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -15573,7 +16741,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:558" +defs["igDragScalarN"][1]["location"] = "imgui:607" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -15592,7 +16760,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:451" +defs["igDummy"][1]["location"] = "imgui:503" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -15608,13 +16776,35 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:337" +defs["igEnd"][1]["location"] = "imgui:372" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" defs["igEnd"][1]["signature"] = "()" defs["igEnd"][1]["stname"] = "" defs["igEnd"]["()"] = defs["igEnd"][1] +defs["igEndBoxSelect"] = {} +defs["igEndBoxSelect"][1] = {} +defs["igEndBoxSelect"][1]["args"] = "(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags)" +defs["igEndBoxSelect"][1]["argsT"] = {} +defs["igEndBoxSelect"][1]["argsT"][1] = {} +defs["igEndBoxSelect"][1]["argsT"][1]["name"] = "scope_rect" +defs["igEndBoxSelect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igEndBoxSelect"][1]["argsT"][2] = {} +defs["igEndBoxSelect"][1]["argsT"][2]["name"] = "ms_flags" +defs["igEndBoxSelect"][1]["argsT"][2]["type"] = "ImGuiMultiSelectFlags" +defs["igEndBoxSelect"][1]["argsoriginal"] = "(const ImRect& scope_rect,ImGuiMultiSelectFlags ms_flags)" +defs["igEndBoxSelect"][1]["call_args"] = "(scope_rect,ms_flags)" +defs["igEndBoxSelect"][1]["cimguiname"] = "igEndBoxSelect" +defs["igEndBoxSelect"][1]["defaults"] = {} +defs["igEndBoxSelect"][1]["funcname"] = "EndBoxSelect" +defs["igEndBoxSelect"][1]["location"] = "imgui_internal:3718" +defs["igEndBoxSelect"][1]["namespace"] = "ImGui" +defs["igEndBoxSelect"][1]["ov_cimguiname"] = "igEndBoxSelect" +defs["igEndBoxSelect"][1]["ret"] = "void" +defs["igEndBoxSelect"][1]["signature"] = "(const ImRect,ImGuiMultiSelectFlags)" +defs["igEndBoxSelect"][1]["stname"] = "" +defs["igEndBoxSelect"]["(const ImRect,ImGuiMultiSelectFlags)"] = defs["igEndBoxSelect"][1] defs["igEndChild"] = {} defs["igEndChild"][1] = {} defs["igEndChild"][1]["args"] = "()" @@ -15624,29 +16814,13 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:349" +defs["igEndChild"][1]["location"] = "imgui:394" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" defs["igEndChild"][1]["signature"] = "()" defs["igEndChild"][1]["stname"] = "" defs["igEndChild"]["()"] = defs["igEndChild"][1] -defs["igEndChildFrame"] = {} -defs["igEndChildFrame"][1] = {} -defs["igEndChildFrame"][1]["args"] = "()" -defs["igEndChildFrame"][1]["argsT"] = {} -defs["igEndChildFrame"][1]["argsoriginal"] = "()" -defs["igEndChildFrame"][1]["call_args"] = "()" -defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["defaults"] = {} -defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui:906" -defs["igEndChildFrame"][1]["namespace"] = "ImGui" -defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["ret"] = "void" -defs["igEndChildFrame"][1]["signature"] = "()" -defs["igEndChildFrame"][1]["stname"] = "" -defs["igEndChildFrame"]["()"] = defs["igEndChildFrame"][1] defs["igEndColumns"] = {} defs["igEndColumns"][1] = {} defs["igEndColumns"][1]["args"] = "()" @@ -15656,7 +16830,7 @@ defs["igEndColumns"][1]["call_args"] = "()" defs["igEndColumns"][1]["cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["defaults"] = {} defs["igEndColumns"][1]["funcname"] = "EndColumns" -defs["igEndColumns"][1]["location"] = "imgui_internal:3264" +defs["igEndColumns"][1]["location"] = "imgui_internal:3731" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -15672,7 +16846,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:530" +defs["igEndCombo"][1]["location"] = "imgui:579" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -15688,7 +16862,7 @@ defs["igEndComboPreview"][1]["call_args"] = "()" defs["igEndComboPreview"][1]["cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["defaults"] = {} defs["igEndComboPreview"][1]["funcname"] = "EndComboPreview" -defs["igEndComboPreview"][1]["location"] = "imgui_internal:3097" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3524" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -15704,13 +16878,29 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:850" +defs["igEndDisabled"][1]["location"] = "imgui:921" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" defs["igEndDisabled"][1]["signature"] = "()" defs["igEndDisabled"][1]["stname"] = "" defs["igEndDisabled"]["()"] = defs["igEndDisabled"][1] +defs["igEndDisabledOverrideReenable"] = {} +defs["igEndDisabledOverrideReenable"][1] = {} +defs["igEndDisabledOverrideReenable"][1]["args"] = "()" +defs["igEndDisabledOverrideReenable"][1]["argsT"] = {} +defs["igEndDisabledOverrideReenable"][1]["argsoriginal"] = "()" +defs["igEndDisabledOverrideReenable"][1]["call_args"] = "()" +defs["igEndDisabledOverrideReenable"][1]["cimguiname"] = "igEndDisabledOverrideReenable" +defs["igEndDisabledOverrideReenable"][1]["defaults"] = {} +defs["igEndDisabledOverrideReenable"][1]["funcname"] = "EndDisabledOverrideReenable" +defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3487" +defs["igEndDisabledOverrideReenable"][1]["namespace"] = "ImGui" +defs["igEndDisabledOverrideReenable"][1]["ov_cimguiname"] = "igEndDisabledOverrideReenable" +defs["igEndDisabledOverrideReenable"][1]["ret"] = "void" +defs["igEndDisabledOverrideReenable"][1]["signature"] = "()" +defs["igEndDisabledOverrideReenable"][1]["stname"] = "" +defs["igEndDisabledOverrideReenable"]["()"] = defs["igEndDisabledOverrideReenable"][1] defs["igEndDragDropSource"] = {} defs["igEndDragDropSource"][1] = {} defs["igEndDragDropSource"][1]["args"] = "()" @@ -15720,7 +16910,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui:839" +defs["igEndDragDropSource"][1]["location"] = "imgui:909" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -15736,7 +16926,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui:842" +defs["igEndDragDropTarget"][1]["location"] = "imgui:912" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -15752,7 +16942,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:303" +defs["igEndFrame"][1]["location"] = "imgui:338" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -15768,7 +16958,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:455" +defs["igEndGroup"][1]["location"] = "imgui:507" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -15784,7 +16974,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:642" +defs["igEndListBox"][1]["location"] = "imgui:704" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -15800,7 +16990,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:668" +defs["igEndMainMenuBar"][1]["location"] = "imgui:730" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -15816,7 +17006,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:670" +defs["igEndMenu"][1]["location"] = "imgui:732" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -15832,13 +17022,29 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:666" +defs["igEndMenuBar"][1]["location"] = "imgui:728" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" defs["igEndMenuBar"][1]["signature"] = "()" defs["igEndMenuBar"][1]["stname"] = "" defs["igEndMenuBar"]["()"] = defs["igEndMenuBar"][1] +defs["igEndMultiSelect"] = {} +defs["igEndMultiSelect"][1] = {} +defs["igEndMultiSelect"][1]["args"] = "()" +defs["igEndMultiSelect"][1]["argsT"] = {} +defs["igEndMultiSelect"][1]["argsoriginal"] = "()" +defs["igEndMultiSelect"][1]["call_args"] = "()" +defs["igEndMultiSelect"][1]["cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["defaults"] = {} +defs["igEndMultiSelect"][1]["funcname"] = "EndMultiSelect" +defs["igEndMultiSelect"][1]["location"] = "imgui:693" +defs["igEndMultiSelect"][1]["namespace"] = "ImGui" +defs["igEndMultiSelect"][1]["ov_cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igEndMultiSelect"][1]["signature"] = "()" +defs["igEndMultiSelect"][1]["stname"] = "" +defs["igEndMultiSelect"]["()"] = defs["igEndMultiSelect"][1] defs["igEndPopup"] = {} defs["igEndPopup"][1] = {} defs["igEndPopup"][1]["args"] = "()" @@ -15848,7 +17054,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:695" +defs["igEndPopup"][1]["location"] = "imgui:765" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -15864,7 +17070,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:796" +defs["igEndTabBar"][1]["location"] = "imgui:866" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -15880,7 +17086,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:798" +defs["igEndTabItem"][1]["location"] = "imgui:868" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -15896,7 +17102,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:749" +defs["igEndTable"][1]["location"] = "imgui:817" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -15912,7 +17118,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:677" +defs["igEndTooltip"][1]["location"] = "imgui:741" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -15935,7 +17141,7 @@ defs["igErrorCheckEndFrameRecover"][1]["cimguiname"] = "igErrorCheckEndFrameReco defs["igErrorCheckEndFrameRecover"][1]["defaults"] = {} defs["igErrorCheckEndFrameRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndFrameRecover"][1]["funcname"] = "ErrorCheckEndFrameRecover" -defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3443" +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3923" defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -15958,7 +17164,7 @@ defs["igErrorCheckEndWindowRecover"][1]["cimguiname"] = "igErrorCheckEndWindowRe defs["igErrorCheckEndWindowRecover"][1]["defaults"] = {} defs["igErrorCheckEndWindowRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndWindowRecover"][1]["funcname"] = "ErrorCheckEndWindowRecover" -defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3444" +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3924" defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" @@ -15974,7 +17180,7 @@ defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" -defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3445" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3925" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" @@ -15996,7 +17202,7 @@ defs["igFindBestWindowPosForPopup"][1]["call_args"] = "(window)" defs["igFindBestWindowPosForPopup"][1]["cimguiname"] = "igFindBestWindowPosForPopup" defs["igFindBestWindowPosForPopup"][1]["defaults"] = {} defs["igFindBestWindowPosForPopup"][1]["funcname"] = "FindBestWindowPosForPopup" -defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3086" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3509" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -16034,7 +17240,7 @@ defs["igFindBestWindowPosForPopupEx"][1]["call_args"] = "(ref_pos,size,last_dir, defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosForPopupEx" defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" -defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3087" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3510" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -16042,6 +17248,25 @@ defs["igFindBestWindowPosForPopupEx"][1]["ret"] = "void" defs["igFindBestWindowPosForPopupEx"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)" defs["igFindBestWindowPosForPopupEx"][1]["stname"] = "" defs["igFindBestWindowPosForPopupEx"]["(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)"] = defs["igFindBestWindowPosForPopupEx"][1] +defs["igFindBlockingModal"] = {} +defs["igFindBlockingModal"][1] = {} +defs["igFindBlockingModal"][1]["args"] = "(ImGuiWindow* window)" +defs["igFindBlockingModal"][1]["argsT"] = {} +defs["igFindBlockingModal"][1]["argsT"][1] = {} +defs["igFindBlockingModal"][1]["argsT"][1]["name"] = "window" +defs["igFindBlockingModal"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igFindBlockingModal"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igFindBlockingModal"][1]["call_args"] = "(window)" +defs["igFindBlockingModal"][1]["cimguiname"] = "igFindBlockingModal" +defs["igFindBlockingModal"][1]["defaults"] = {} +defs["igFindBlockingModal"][1]["funcname"] = "FindBlockingModal" +defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3508" +defs["igFindBlockingModal"][1]["namespace"] = "ImGui" +defs["igFindBlockingModal"][1]["ov_cimguiname"] = "igFindBlockingModal" +defs["igFindBlockingModal"][1]["ret"] = "ImGuiWindow*" +defs["igFindBlockingModal"][1]["signature"] = "(ImGuiWindow*)" +defs["igFindBlockingModal"][1]["stname"] = "" +defs["igFindBlockingModal"]["(ImGuiWindow*)"] = defs["igFindBlockingModal"][1] defs["igFindBottomMostVisibleWindowWithinBeginStack"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["args"] = "(ImGuiWindow* window)" @@ -16054,7 +17279,7 @@ defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["call_args"] = "(window defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["defaults"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["funcname"] = "FindBottomMostVisibleWindowWithinBeginStack" -defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:2973" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3385" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" @@ -16073,13 +17298,41 @@ defs["igFindHoveredViewportFromPlatformWindowStack"][1]["call_args"] = "(mouse_p defs["igFindHoveredViewportFromPlatformWindowStack"][1]["cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["defaults"] = {} defs["igFindHoveredViewportFromPlatformWindowStack"][1]["funcname"] = "FindHoveredViewportFromPlatformWindowStack" -defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3004" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3421" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["namespace"] = "ImGui" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ov_cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ret"] = "ImGuiViewportP*" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["signature"] = "(const ImVec2)" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["stname"] = "" defs["igFindHoveredViewportFromPlatformWindowStack"]["(const ImVec2)"] = defs["igFindHoveredViewportFromPlatformWindowStack"][1] +defs["igFindHoveredWindowEx"] = {} +defs["igFindHoveredWindowEx"][1] = {} +defs["igFindHoveredWindowEx"][1]["args"] = "(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)" +defs["igFindHoveredWindowEx"][1]["argsT"] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][1] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][1]["name"] = "pos" +defs["igFindHoveredWindowEx"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igFindHoveredWindowEx"][1]["argsT"][2] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][2]["name"] = "find_first_and_in_any_viewport" +defs["igFindHoveredWindowEx"][1]["argsT"][2]["type"] = "bool" +defs["igFindHoveredWindowEx"][1]["argsT"][3] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][3]["name"] = "out_hovered_window" +defs["igFindHoveredWindowEx"][1]["argsT"][3]["type"] = "ImGuiWindow**" +defs["igFindHoveredWindowEx"][1]["argsT"][4] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][4]["name"] = "out_hovered_window_under_moving_window" +defs["igFindHoveredWindowEx"][1]["argsT"][4]["type"] = "ImGuiWindow**" +defs["igFindHoveredWindowEx"][1]["argsoriginal"] = "(const ImVec2& pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)" +defs["igFindHoveredWindowEx"][1]["call_args"] = "(pos,find_first_and_in_any_viewport,out_hovered_window,out_hovered_window_under_moving_window)" +defs["igFindHoveredWindowEx"][1]["cimguiname"] = "igFindHoveredWindowEx" +defs["igFindHoveredWindowEx"][1]["defaults"] = {} +defs["igFindHoveredWindowEx"][1]["funcname"] = "FindHoveredWindowEx" +defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3403" +defs["igFindHoveredWindowEx"][1]["namespace"] = "ImGui" +defs["igFindHoveredWindowEx"][1]["ov_cimguiname"] = "igFindHoveredWindowEx" +defs["igFindHoveredWindowEx"][1]["ret"] = "void" +defs["igFindHoveredWindowEx"][1]["signature"] = "(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)" +defs["igFindHoveredWindowEx"][1]["stname"] = "" +defs["igFindHoveredWindowEx"]["(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)"] = defs["igFindHoveredWindowEx"][1] defs["igFindOrCreateColumns"] = {} defs["igFindOrCreateColumns"][1] = {} defs["igFindOrCreateColumns"][1]["args"] = "(ImGuiWindow* window,ImGuiID id)" @@ -16095,32 +17348,13 @@ defs["igFindOrCreateColumns"][1]["call_args"] = "(window,id)" defs["igFindOrCreateColumns"][1]["cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["defaults"] = {} defs["igFindOrCreateColumns"][1]["funcname"] = "FindOrCreateColumns" -defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3269" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3736" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" defs["igFindOrCreateColumns"][1]["signature"] = "(ImGuiWindow*,ImGuiID)" defs["igFindOrCreateColumns"][1]["stname"] = "" defs["igFindOrCreateColumns"]["(ImGuiWindow*,ImGuiID)"] = defs["igFindOrCreateColumns"][1] -defs["igFindOrCreateWindowSettings"] = {} -defs["igFindOrCreateWindowSettings"][1] = {} -defs["igFindOrCreateWindowSettings"][1]["args"] = "(const char* name)" -defs["igFindOrCreateWindowSettings"][1]["argsT"] = {} -defs["igFindOrCreateWindowSettings"][1]["argsT"][1] = {} -defs["igFindOrCreateWindowSettings"][1]["argsT"][1]["name"] = "name" -defs["igFindOrCreateWindowSettings"][1]["argsT"][1]["type"] = "const char*" -defs["igFindOrCreateWindowSettings"][1]["argsoriginal"] = "(const char* name)" -defs["igFindOrCreateWindowSettings"][1]["call_args"] = "(name)" -defs["igFindOrCreateWindowSettings"][1]["cimguiname"] = "igFindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["defaults"] = {} -defs["igFindOrCreateWindowSettings"][1]["funcname"] = "FindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:3012" -defs["igFindOrCreateWindowSettings"][1]["namespace"] = "ImGui" -defs["igFindOrCreateWindowSettings"][1]["ov_cimguiname"] = "igFindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" -defs["igFindOrCreateWindowSettings"][1]["signature"] = "(const char*)" -defs["igFindOrCreateWindowSettings"][1]["stname"] = "" -defs["igFindOrCreateWindowSettings"]["(const char*)"] = defs["igFindOrCreateWindowSettings"][1] defs["igFindRenderedTextEnd"] = {} defs["igFindRenderedTextEnd"][1] = {} defs["igFindRenderedTextEnd"][1]["args"] = "(const char* text,const char* text_end)" @@ -16137,7 +17371,7 @@ defs["igFindRenderedTextEnd"][1]["cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["defaults"] = {} defs["igFindRenderedTextEnd"][1]["defaults"]["text_end"] = "NULL" defs["igFindRenderedTextEnd"][1]["funcname"] = "FindRenderedTextEnd" -defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3354" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3830" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -16156,7 +17390,7 @@ defs["igFindSettingsHandler"][1]["call_args"] = "(type_name)" defs["igFindSettingsHandler"][1]["cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["defaults"] = {} defs["igFindSettingsHandler"][1]["funcname"] = "FindSettingsHandler" -defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3015" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3429" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -16175,7 +17409,7 @@ defs["igFindViewportByID"][1]["call_args"] = "(id)" defs["igFindViewportByID"][1]["cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["defaults"] = {} defs["igFindViewportByID"][1]["funcname"] = "FindViewportByID" -defs["igFindViewportByID"][1]["location"] = "imgui:984" +defs["igFindViewportByID"][1]["location"] = "imgui:1086" defs["igFindViewportByID"][1]["namespace"] = "ImGui" defs["igFindViewportByID"][1]["ov_cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["ret"] = "ImGuiViewport*" @@ -16194,7 +17428,7 @@ defs["igFindViewportByPlatformHandle"][1]["call_args"] = "(platform_handle)" defs["igFindViewportByPlatformHandle"][1]["cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["defaults"] = {} defs["igFindViewportByPlatformHandle"][1]["funcname"] = "FindViewportByPlatformHandle" -defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:985" +defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:1087" defs["igFindViewportByPlatformHandle"][1]["namespace"] = "ImGui" defs["igFindViewportByPlatformHandle"][1]["ov_cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["ret"] = "ImGuiViewport*" @@ -16213,7 +17447,7 @@ defs["igFindWindowByID"][1]["call_args"] = "(id)" defs["igFindWindowByID"][1]["cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["defaults"] = {} defs["igFindWindowByID"][1]["funcname"] = "FindWindowByID" -defs["igFindWindowByID"][1]["location"] = "imgui_internal:2950" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:3357" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -16232,7 +17466,7 @@ defs["igFindWindowByName"][1]["call_args"] = "(name)" defs["igFindWindowByName"][1]["cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["defaults"] = {} defs["igFindWindowByName"][1]["funcname"] = "FindWindowByName" -defs["igFindWindowByName"][1]["location"] = "imgui_internal:2951" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:3358" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -16251,35 +17485,89 @@ defs["igFindWindowDisplayIndex"][1]["call_args"] = "(window)" defs["igFindWindowDisplayIndex"][1]["cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["defaults"] = {} defs["igFindWindowDisplayIndex"][1]["funcname"] = "FindWindowDisplayIndex" -defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:2972" +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3384" defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" defs["igFindWindowDisplayIndex"][1]["signature"] = "(ImGuiWindow*)" defs["igFindWindowDisplayIndex"][1]["stname"] = "" defs["igFindWindowDisplayIndex"]["(ImGuiWindow*)"] = defs["igFindWindowDisplayIndex"][1] -defs["igFindWindowSettings"] = {} -defs["igFindWindowSettings"][1] = {} -defs["igFindWindowSettings"][1]["args"] = "(ImGuiID id)" -defs["igFindWindowSettings"][1]["argsT"] = {} -defs["igFindWindowSettings"][1]["argsT"][1] = {} -defs["igFindWindowSettings"][1]["argsT"][1]["name"] = "id" -defs["igFindWindowSettings"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igFindWindowSettings"][1]["argsoriginal"] = "(ImGuiID id)" -defs["igFindWindowSettings"][1]["call_args"] = "(id)" -defs["igFindWindowSettings"][1]["cimguiname"] = "igFindWindowSettings" -defs["igFindWindowSettings"][1]["defaults"] = {} -defs["igFindWindowSettings"][1]["funcname"] = "FindWindowSettings" -defs["igFindWindowSettings"][1]["location"] = "imgui_internal:3011" -defs["igFindWindowSettings"][1]["namespace"] = "ImGui" -defs["igFindWindowSettings"][1]["ov_cimguiname"] = "igFindWindowSettings" -defs["igFindWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" -defs["igFindWindowSettings"][1]["signature"] = "(ImGuiID)" -defs["igFindWindowSettings"][1]["stname"] = "" -defs["igFindWindowSettings"]["(ImGuiID)"] = defs["igFindWindowSettings"][1] +defs["igFindWindowSettingsByID"] = {} +defs["igFindWindowSettingsByID"][1] = {} +defs["igFindWindowSettingsByID"][1]["args"] = "(ImGuiID id)" +defs["igFindWindowSettingsByID"][1]["argsT"] = {} +defs["igFindWindowSettingsByID"][1]["argsT"][1] = {} +defs["igFindWindowSettingsByID"][1]["argsT"][1]["name"] = "id" +defs["igFindWindowSettingsByID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igFindWindowSettingsByID"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igFindWindowSettingsByID"][1]["call_args"] = "(id)" +defs["igFindWindowSettingsByID"][1]["cimguiname"] = "igFindWindowSettingsByID" +defs["igFindWindowSettingsByID"][1]["defaults"] = {} +defs["igFindWindowSettingsByID"][1]["funcname"] = "FindWindowSettingsByID" +defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3433" +defs["igFindWindowSettingsByID"][1]["namespace"] = "ImGui" +defs["igFindWindowSettingsByID"][1]["ov_cimguiname"] = "igFindWindowSettingsByID" +defs["igFindWindowSettingsByID"][1]["ret"] = "ImGuiWindowSettings*" +defs["igFindWindowSettingsByID"][1]["signature"] = "(ImGuiID)" +defs["igFindWindowSettingsByID"][1]["stname"] = "" +defs["igFindWindowSettingsByID"]["(ImGuiID)"] = defs["igFindWindowSettingsByID"][1] +defs["igFindWindowSettingsByWindow"] = {} +defs["igFindWindowSettingsByWindow"][1] = {} +defs["igFindWindowSettingsByWindow"][1]["args"] = "(ImGuiWindow* window)" +defs["igFindWindowSettingsByWindow"][1]["argsT"] = {} +defs["igFindWindowSettingsByWindow"][1]["argsT"][1] = {} +defs["igFindWindowSettingsByWindow"][1]["argsT"][1]["name"] = "window" +defs["igFindWindowSettingsByWindow"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igFindWindowSettingsByWindow"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igFindWindowSettingsByWindow"][1]["call_args"] = "(window)" +defs["igFindWindowSettingsByWindow"][1]["cimguiname"] = "igFindWindowSettingsByWindow" +defs["igFindWindowSettingsByWindow"][1]["defaults"] = {} +defs["igFindWindowSettingsByWindow"][1]["funcname"] = "FindWindowSettingsByWindow" +defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3434" +defs["igFindWindowSettingsByWindow"][1]["namespace"] = "ImGui" +defs["igFindWindowSettingsByWindow"][1]["ov_cimguiname"] = "igFindWindowSettingsByWindow" +defs["igFindWindowSettingsByWindow"][1]["ret"] = "ImGuiWindowSettings*" +defs["igFindWindowSettingsByWindow"][1]["signature"] = "(ImGuiWindow*)" +defs["igFindWindowSettingsByWindow"][1]["stname"] = "" +defs["igFindWindowSettingsByWindow"]["(ImGuiWindow*)"] = defs["igFindWindowSettingsByWindow"][1] +defs["igFixupKeyChord"] = {} +defs["igFixupKeyChord"][1] = {} +defs["igFixupKeyChord"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igFixupKeyChord"][1]["argsT"] = {} +defs["igFixupKeyChord"][1]["argsT"][1] = {} +defs["igFixupKeyChord"][1]["argsT"][1]["name"] = "key_chord" +defs["igFixupKeyChord"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igFixupKeyChord"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igFixupKeyChord"][1]["call_args"] = "(key_chord)" +defs["igFixupKeyChord"][1]["cimguiname"] = "igFixupKeyChord" +defs["igFixupKeyChord"][1]["defaults"] = {} +defs["igFixupKeyChord"][1]["funcname"] = "FixupKeyChord" +defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3561" +defs["igFixupKeyChord"][1]["namespace"] = "ImGui" +defs["igFixupKeyChord"][1]["ov_cimguiname"] = "igFixupKeyChord" +defs["igFixupKeyChord"][1]["ret"] = "ImGuiKeyChord" +defs["igFixupKeyChord"][1]["signature"] = "(ImGuiKeyChord)" +defs["igFixupKeyChord"][1]["stname"] = "" +defs["igFixupKeyChord"]["(ImGuiKeyChord)"] = defs["igFixupKeyChord"][1] +defs["igFocusItem"] = {} +defs["igFocusItem"][1] = {} +defs["igFocusItem"][1]["args"] = "()" +defs["igFocusItem"][1]["argsT"] = {} +defs["igFocusItem"][1]["argsoriginal"] = "()" +defs["igFocusItem"][1]["call_args"] = "()" +defs["igFocusItem"][1]["cimguiname"] = "igFocusItem" +defs["igFocusItem"][1]["defaults"] = {} +defs["igFocusItem"][1]["funcname"] = "FocusItem" +defs["igFocusItem"][1]["location"] = "imgui_internal:3548" +defs["igFocusItem"][1]["namespace"] = "ImGui" +defs["igFocusItem"][1]["ov_cimguiname"] = "igFocusItem" +defs["igFocusItem"][1]["ret"] = "void" +defs["igFocusItem"][1]["signature"] = "()" +defs["igFocusItem"][1]["stname"] = "" +defs["igFocusItem"]["()"] = defs["igFocusItem"][1] defs["igFocusTopMostWindowUnderOne"] = {} defs["igFocusTopMostWindowUnderOne"][1] = {} -defs["igFocusTopMostWindowUnderOne"][1]["args"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)" +defs["igFocusTopMostWindowUnderOne"][1]["args"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)" defs["igFocusTopMostWindowUnderOne"][1]["argsT"] = {} defs["igFocusTopMostWindowUnderOne"][1]["argsT"][1] = {} defs["igFocusTopMostWindowUnderOne"][1]["argsT"][1]["name"] = "under_this_window" @@ -16287,37 +17575,47 @@ defs["igFocusTopMostWindowUnderOne"][1]["argsT"][1]["type"] = "ImGuiWindow*" defs["igFocusTopMostWindowUnderOne"][1]["argsT"][2] = {} defs["igFocusTopMostWindowUnderOne"][1]["argsT"][2]["name"] = "ignore_window" defs["igFocusTopMostWindowUnderOne"][1]["argsT"][2]["type"] = "ImGuiWindow*" -defs["igFocusTopMostWindowUnderOne"][1]["argsoriginal"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)" -defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignore_window)" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][3] = {} +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][3]["name"] = "filter_viewport" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][3]["type"] = "ImGuiViewport*" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][4] = {} +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][4]["name"] = "flags" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][4]["type"] = "ImGuiFocusRequestFlags" +defs["igFocusTopMostWindowUnderOne"][1]["argsoriginal"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)" +defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignore_window,filter_viewport,flags)" defs["igFocusTopMostWindowUnderOne"][1]["cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["defaults"] = {} defs["igFocusTopMostWindowUnderOne"][1]["funcname"] = "FocusTopMostWindowUnderOne" -defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:2967" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3379" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" -defs["igFocusTopMostWindowUnderOne"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igFocusTopMostWindowUnderOne"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*,ImGuiViewport*,ImGuiFocusRequestFlags)" defs["igFocusTopMostWindowUnderOne"][1]["stname"] = "" -defs["igFocusTopMostWindowUnderOne"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igFocusTopMostWindowUnderOne"][1] +defs["igFocusTopMostWindowUnderOne"]["(ImGuiWindow*,ImGuiWindow*,ImGuiViewport*,ImGuiFocusRequestFlags)"] = defs["igFocusTopMostWindowUnderOne"][1] defs["igFocusWindow"] = {} defs["igFocusWindow"][1] = {} -defs["igFocusWindow"][1]["args"] = "(ImGuiWindow* window)" +defs["igFocusWindow"][1]["args"] = "(ImGuiWindow* window,ImGuiFocusRequestFlags flags)" defs["igFocusWindow"][1]["argsT"] = {} defs["igFocusWindow"][1]["argsT"][1] = {} defs["igFocusWindow"][1]["argsT"][1]["name"] = "window" defs["igFocusWindow"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["igFocusWindow"][1]["argsoriginal"] = "(ImGuiWindow* window)" -defs["igFocusWindow"][1]["call_args"] = "(window)" +defs["igFocusWindow"][1]["argsT"][2] = {} +defs["igFocusWindow"][1]["argsT"][2]["name"] = "flags" +defs["igFocusWindow"][1]["argsT"][2]["type"] = "ImGuiFocusRequestFlags" +defs["igFocusWindow"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiFocusRequestFlags flags=0)" +defs["igFocusWindow"][1]["call_args"] = "(window,flags)" defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} +defs["igFocusWindow"][1]["defaults"]["flags"] = "0" defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:2966" +defs["igFocusWindow"][1]["location"] = "imgui_internal:3378" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" -defs["igFocusWindow"][1]["signature"] = "(ImGuiWindow*)" +defs["igFocusWindow"][1]["signature"] = "(ImGuiWindow*,ImGuiFocusRequestFlags)" defs["igFocusWindow"][1]["stname"] = "" -defs["igFocusWindow"]["(ImGuiWindow*)"] = defs["igFocusWindow"][1] +defs["igFocusWindow"]["(ImGuiWindow*,ImGuiFocusRequestFlags)"] = defs["igFocusWindow"][1] defs["igGcAwakeTransientWindowBuffers"] = {} defs["igGcAwakeTransientWindowBuffers"][1] = {} defs["igGcAwakeTransientWindowBuffers"][1]["args"] = "(ImGuiWindow* window)" @@ -16330,7 +17628,7 @@ defs["igGcAwakeTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcAwakeTransientWindowBuffers"][1]["cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["defaults"] = {} defs["igGcAwakeTransientWindowBuffers"][1]["funcname"] = "GcAwakeTransientWindowBuffers" -defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3436" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3919" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -16346,7 +17644,7 @@ defs["igGcCompactTransientMiscBuffers"][1]["call_args"] = "()" defs["igGcCompactTransientMiscBuffers"][1]["cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["defaults"] = {} defs["igGcCompactTransientMiscBuffers"][1]["funcname"] = "GcCompactTransientMiscBuffers" -defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3434" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3917" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -16365,7 +17663,7 @@ defs["igGcCompactTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcCompactTransientWindowBuffers"][1]["cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["defaults"] = {} defs["igGcCompactTransientWindowBuffers"][1]["funcname"] = "GcCompactTransientWindowBuffers" -defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3435" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3918" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -16381,7 +17679,7 @@ defs["igGetActiveID"][1]["call_args"] = "()" defs["igGetActiveID"][1]["cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["defaults"] = {} defs["igGetActiveID"][1]["funcname"] = "GetActiveID" -defs["igGetActiveID"][1]["location"] = "imgui_internal:3038" +defs["igGetActiveID"][1]["location"] = "imgui_internal:3458" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -16406,7 +17704,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:973" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1076" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -16415,38 +17713,43 @@ defs["igGetAllocatorFunctions"][1]["stname"] = "" defs["igGetAllocatorFunctions"]["(ImGuiMemAllocFunc*,ImGuiMemFreeFunc*,void**)"] = defs["igGetAllocatorFunctions"][1] defs["igGetBackgroundDrawList"] = {} defs["igGetBackgroundDrawList"][1] = {} -defs["igGetBackgroundDrawList"][1]["args"] = "()" +defs["igGetBackgroundDrawList"][1]["args"] = "(ImGuiViewport* viewport)" defs["igGetBackgroundDrawList"][1]["argsT"] = {} -defs["igGetBackgroundDrawList"][1]["argsoriginal"] = "()" -defs["igGetBackgroundDrawList"][1]["call_args"] = "()" +defs["igGetBackgroundDrawList"][1]["argsT"][1] = {} +defs["igGetBackgroundDrawList"][1]["argsT"][1]["name"] = "viewport" +defs["igGetBackgroundDrawList"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetBackgroundDrawList"][1]["argsoriginal"] = "(ImGuiViewport* viewport=((void*)0))" +defs["igGetBackgroundDrawList"][1]["call_args"] = "(viewport)" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} +defs["igGetBackgroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui:891" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:964" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" -defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList_Nil" +defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" -defs["igGetBackgroundDrawList"][1]["signature"] = "()" +defs["igGetBackgroundDrawList"][1]["signature"] = "(ImGuiViewport*)" defs["igGetBackgroundDrawList"][1]["stname"] = "" -defs["igGetBackgroundDrawList"][2] = {} -defs["igGetBackgroundDrawList"][2]["args"] = "(ImGuiViewport* viewport)" -defs["igGetBackgroundDrawList"][2]["argsT"] = {} -defs["igGetBackgroundDrawList"][2]["argsT"][1] = {} -defs["igGetBackgroundDrawList"][2]["argsT"][1]["name"] = "viewport" -defs["igGetBackgroundDrawList"][2]["argsT"][1]["type"] = "ImGuiViewport*" -defs["igGetBackgroundDrawList"][2]["argsoriginal"] = "(ImGuiViewport* viewport)" -defs["igGetBackgroundDrawList"][2]["call_args"] = "(viewport)" -defs["igGetBackgroundDrawList"][2]["cimguiname"] = "igGetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["defaults"] = {} -defs["igGetBackgroundDrawList"][2]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["location"] = "imgui:893" -defs["igGetBackgroundDrawList"][2]["namespace"] = "ImGui" -defs["igGetBackgroundDrawList"][2]["ov_cimguiname"] = "igGetBackgroundDrawList_ViewportPtr" -defs["igGetBackgroundDrawList"][2]["ret"] = "ImDrawList*" -defs["igGetBackgroundDrawList"][2]["signature"] = "(ImGuiViewport*)" -defs["igGetBackgroundDrawList"][2]["stname"] = "" -defs["igGetBackgroundDrawList"]["()"] = defs["igGetBackgroundDrawList"][1] -defs["igGetBackgroundDrawList"]["(ImGuiViewport*)"] = defs["igGetBackgroundDrawList"][2] +defs["igGetBackgroundDrawList"]["(ImGuiViewport*)"] = defs["igGetBackgroundDrawList"][1] +defs["igGetBoxSelectState"] = {} +defs["igGetBoxSelectState"][1] = {} +defs["igGetBoxSelectState"][1]["args"] = "(ImGuiID id)" +defs["igGetBoxSelectState"][1]["argsT"] = {} +defs["igGetBoxSelectState"][1]["argsT"][1] = {} +defs["igGetBoxSelectState"][1]["argsT"][1]["name"] = "id" +defs["igGetBoxSelectState"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igGetBoxSelectState"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igGetBoxSelectState"][1]["call_args"] = "(id)" +defs["igGetBoxSelectState"][1]["cimguiname"] = "igGetBoxSelectState" +defs["igGetBoxSelectState"][1]["defaults"] = {} +defs["igGetBoxSelectState"][1]["funcname"] = "GetBoxSelectState" +defs["igGetBoxSelectState"][1]["location"] = "imgui_internal:3725" +defs["igGetBoxSelectState"][1]["namespace"] = "ImGui" +defs["igGetBoxSelectState"][1]["ov_cimguiname"] = "igGetBoxSelectState" +defs["igGetBoxSelectState"][1]["ret"] = "ImGuiBoxSelectState*" +defs["igGetBoxSelectState"][1]["signature"] = "(ImGuiID)" +defs["igGetBoxSelectState"][1]["stname"] = "" +defs["igGetBoxSelectState"]["(ImGuiID)"] = defs["igGetBoxSelectState"][1] defs["igGetClipboardText"] = {} defs["igGetClipboardText"][1] = {} defs["igGetClipboardText"][1]["args"] = "()" @@ -16456,7 +17759,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui:952" +defs["igGetClipboardText"][1]["location"] = "imgui:1048" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -16479,7 +17782,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:435" +defs["igGetColorU32"][1]["location"] = "imgui:472" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -16496,31 +17799,35 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:436" +defs["igGetColorU32"][2]["location"] = "imgui:473" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" defs["igGetColorU32"][2]["signature"] = "(const ImVec4)" defs["igGetColorU32"][2]["stname"] = "" defs["igGetColorU32"][3] = {} -defs["igGetColorU32"][3]["args"] = "(ImU32 col)" +defs["igGetColorU32"][3]["args"] = "(ImU32 col,float alpha_mul)" defs["igGetColorU32"][3]["argsT"] = {} defs["igGetColorU32"][3]["argsT"][1] = {} defs["igGetColorU32"][3]["argsT"][1]["name"] = "col" defs["igGetColorU32"][3]["argsT"][1]["type"] = "ImU32" -defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col)" -defs["igGetColorU32"][3]["call_args"] = "(col)" +defs["igGetColorU32"][3]["argsT"][2] = {} +defs["igGetColorU32"][3]["argsT"][2]["name"] = "alpha_mul" +defs["igGetColorU32"][3]["argsT"][2]["type"] = "float" +defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col,float alpha_mul=1.0f)" +defs["igGetColorU32"][3]["call_args"] = "(col,alpha_mul)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} +defs["igGetColorU32"][3]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:437" +defs["igGetColorU32"][3]["location"] = "imgui:474" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" -defs["igGetColorU32"][3]["signature"] = "(ImU32)" +defs["igGetColorU32"][3]["signature"] = "(ImU32,float)" defs["igGetColorU32"][3]["stname"] = "" defs["igGetColorU32"]["(ImGuiCol,float)"] = defs["igGetColorU32"][1] -defs["igGetColorU32"]["(ImU32)"] = defs["igGetColorU32"][3] +defs["igGetColorU32"]["(ImU32,float)"] = defs["igGetColorU32"][3] defs["igGetColorU32"]["(const ImVec4)"] = defs["igGetColorU32"][2] defs["igGetColumnIndex"] = {} defs["igGetColumnIndex"][1] = {} @@ -16531,7 +17838,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:786" +defs["igGetColumnIndex"][1]["location"] = "imgui:856" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -16553,7 +17860,7 @@ defs["igGetColumnNormFromOffset"][1]["call_args"] = "(columns,offset)" defs["igGetColumnNormFromOffset"][1]["cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["defaults"] = {} defs["igGetColumnNormFromOffset"][1]["funcname"] = "GetColumnNormFromOffset" -defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3271" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3738" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -16573,7 +17880,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:789" +defs["igGetColumnOffset"][1]["location"] = "imgui:859" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -16595,7 +17902,7 @@ defs["igGetColumnOffsetFromNorm"][1]["call_args"] = "(columns,offset_norm)" defs["igGetColumnOffsetFromNorm"][1]["cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["defaults"] = {} defs["igGetColumnOffsetFromNorm"][1]["funcname"] = "GetColumnOffsetFromNorm" -defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3270" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3737" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -16615,7 +17922,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:787" +defs["igGetColumnWidth"][1]["location"] = "imgui:857" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -16631,7 +17938,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:791" +defs["igGetColumnsCount"][1]["location"] = "imgui:861" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -16653,7 +17960,7 @@ defs["igGetColumnsID"][1]["call_args"] = "(str_id,count)" defs["igGetColumnsID"][1]["cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["defaults"] = {} defs["igGetColumnsID"][1]["funcname"] = "GetColumnsID" -defs["igGetColumnsID"][1]["location"] = "imgui_internal:3268" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3735" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -16672,7 +17979,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:389" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:489" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -16680,46 +17987,6 @@ defs["igGetContentRegionAvail"][1]["ret"] = "void" defs["igGetContentRegionAvail"][1]["signature"] = "()" defs["igGetContentRegionAvail"][1]["stname"] = "" defs["igGetContentRegionAvail"]["()"] = defs["igGetContentRegionAvail"][1] -defs["igGetContentRegionMax"] = {} -defs["igGetContentRegionMax"][1] = {} -defs["igGetContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetContentRegionMax"][1]["argsT"] = {} -defs["igGetContentRegionMax"][1]["argsT"][1] = {} -defs["igGetContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetContentRegionMax"][1]["call_args"] = "()" -defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["defaults"] = {} -defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui:390" -defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["ret"] = "void" -defs["igGetContentRegionMax"][1]["signature"] = "()" -defs["igGetContentRegionMax"][1]["stname"] = "" -defs["igGetContentRegionMax"]["()"] = defs["igGetContentRegionMax"][1] -defs["igGetContentRegionMaxAbs"] = {} -defs["igGetContentRegionMaxAbs"][1] = {} -defs["igGetContentRegionMaxAbs"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetContentRegionMaxAbs"][1]["argsT"] = {} -defs["igGetContentRegionMaxAbs"][1]["argsT"][1] = {} -defs["igGetContentRegionMaxAbs"][1]["argsT"][1]["name"] = "pOut" -defs["igGetContentRegionMaxAbs"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetContentRegionMaxAbs"][1]["argsoriginal"] = "()" -defs["igGetContentRegionMaxAbs"][1]["call_args"] = "()" -defs["igGetContentRegionMaxAbs"][1]["cimguiname"] = "igGetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["defaults"] = {} -defs["igGetContentRegionMaxAbs"][1]["funcname"] = "GetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:3061" -defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" -defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 -defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["ret"] = "void" -defs["igGetContentRegionMaxAbs"][1]["signature"] = "()" -defs["igGetContentRegionMaxAbs"][1]["stname"] = "" -defs["igGetContentRegionMaxAbs"]["()"] = defs["igGetContentRegionMaxAbs"][1] defs["igGetCurrentContext"] = {} defs["igGetCurrentContext"][1] = {} defs["igGetCurrentContext"][1]["args"] = "()" @@ -16729,7 +17996,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:296" +defs["igGetCurrentContext"][1]["location"] = "imgui:330" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -16745,13 +18012,29 @@ defs["igGetCurrentFocusScope"][1]["call_args"] = "()" defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["defaults"] = {} defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" -defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3252" +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3701" defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" defs["igGetCurrentFocusScope"][1]["signature"] = "()" defs["igGetCurrentFocusScope"][1]["stname"] = "" defs["igGetCurrentFocusScope"]["()"] = defs["igGetCurrentFocusScope"][1] +defs["igGetCurrentTabBar"] = {} +defs["igGetCurrentTabBar"][1] = {} +defs["igGetCurrentTabBar"][1]["args"] = "()" +defs["igGetCurrentTabBar"][1]["argsT"] = {} +defs["igGetCurrentTabBar"][1]["argsoriginal"] = "()" +defs["igGetCurrentTabBar"][1]["call_args"] = "()" +defs["igGetCurrentTabBar"][1]["cimguiname"] = "igGetCurrentTabBar" +defs["igGetCurrentTabBar"][1]["defaults"] = {} +defs["igGetCurrentTabBar"][1]["funcname"] = "GetCurrentTabBar" +defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3797" +defs["igGetCurrentTabBar"][1]["namespace"] = "ImGui" +defs["igGetCurrentTabBar"][1]["ov_cimguiname"] = "igGetCurrentTabBar" +defs["igGetCurrentTabBar"][1]["ret"] = "ImGuiTabBar*" +defs["igGetCurrentTabBar"][1]["signature"] = "()" +defs["igGetCurrentTabBar"][1]["stname"] = "" +defs["igGetCurrentTabBar"]["()"] = defs["igGetCurrentTabBar"][1] defs["igGetCurrentTable"] = {} defs["igGetCurrentTable"][1] = {} defs["igGetCurrentTable"][1]["args"] = "()" @@ -16761,7 +18044,7 @@ defs["igGetCurrentTable"][1]["call_args"] = "()" defs["igGetCurrentTable"][1]["cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["defaults"] = {} defs["igGetCurrentTable"][1]["funcname"] = "GetCurrentTable" -defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3283" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3752" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -16777,7 +18060,7 @@ defs["igGetCurrentWindow"][1]["call_args"] = "()" defs["igGetCurrentWindow"][1]["cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["defaults"] = {} defs["igGetCurrentWindow"][1]["funcname"] = "GetCurrentWindow" -defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:2949" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:3356" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -16793,7 +18076,7 @@ defs["igGetCurrentWindowRead"][1]["call_args"] = "()" defs["igGetCurrentWindowRead"][1]["cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["defaults"] = {} defs["igGetCurrentWindowRead"][1]["funcname"] = "GetCurrentWindowRead" -defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:2948" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:3355" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -16812,7 +18095,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:456" +defs["igGetCursorPos"][1]["location"] = "imgui:490" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -16829,7 +18112,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:457" +defs["igGetCursorPosX"][1]["location"] = "imgui:491" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -16845,7 +18128,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:458" +defs["igGetCursorPosY"][1]["location"] = "imgui:492" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -16864,7 +18147,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:463" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:487" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -16884,7 +18167,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:462" +defs["igGetCursorStartPos"][1]["location"] = "imgui:496" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -16901,7 +18184,7 @@ defs["igGetDefaultFont"][1]["call_args"] = "()" defs["igGetDefaultFont"][1]["cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["defaults"] = {} defs["igGetDefaultFont"][1]["funcname"] = "GetDefaultFont" -defs["igGetDefaultFont"][1]["location"] = "imgui_internal:2977" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3392" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -16917,7 +18200,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui:843" +defs["igGetDragDropPayload"][1]["location"] = "imgui:913" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -16933,7 +18216,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:305" +defs["igGetDrawData"][1]["location"] = "imgui:340" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -16949,7 +18232,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui:901" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:972" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -16965,7 +18248,7 @@ defs["igGetFocusID"][1]["call_args"] = "()" defs["igGetFocusID"][1]["cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["defaults"] = {} defs["igGetFocusID"][1]["funcname"] = "GetFocusID" -defs["igGetFocusID"][1]["location"] = "imgui_internal:3039" +defs["igGetFocusID"][1]["location"] = "imgui_internal:3459" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -16981,7 +18264,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:432" +defs["igGetFont"][1]["location"] = "imgui:469" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -16997,7 +18280,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:433" +defs["igGetFontSize"][1]["location"] = "imgui:470" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -17016,7 +18299,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:434" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:471" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -17026,56 +18309,42 @@ defs["igGetFontTexUvWhitePixel"][1]["stname"] = "" defs["igGetFontTexUvWhitePixel"]["()"] = defs["igGetFontTexUvWhitePixel"][1] defs["igGetForegroundDrawList"] = {} defs["igGetForegroundDrawList"][1] = {} -defs["igGetForegroundDrawList"][1]["args"] = "()" +defs["igGetForegroundDrawList"][1]["args"] = "(ImGuiViewport* viewport)" defs["igGetForegroundDrawList"][1]["argsT"] = {} -defs["igGetForegroundDrawList"][1]["argsoriginal"] = "()" -defs["igGetForegroundDrawList"][1]["call_args"] = "()" +defs["igGetForegroundDrawList"][1]["argsT"][1] = {} +defs["igGetForegroundDrawList"][1]["argsT"][1]["name"] = "viewport" +defs["igGetForegroundDrawList"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetForegroundDrawList"][1]["argsoriginal"] = "(ImGuiViewport* viewport=((void*)0))" +defs["igGetForegroundDrawList"][1]["call_args"] = "(viewport)" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} +defs["igGetForegroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui:892" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:965" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_Nil" +defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][1]["signature"] = "()" +defs["igGetForegroundDrawList"][1]["signature"] = "(ImGuiViewport*)" defs["igGetForegroundDrawList"][1]["stname"] = "" defs["igGetForegroundDrawList"][2] = {} -defs["igGetForegroundDrawList"][2]["args"] = "(ImGuiViewport* viewport)" +defs["igGetForegroundDrawList"][2]["args"] = "(ImGuiWindow* window)" defs["igGetForegroundDrawList"][2]["argsT"] = {} defs["igGetForegroundDrawList"][2]["argsT"][1] = {} -defs["igGetForegroundDrawList"][2]["argsT"][1]["name"] = "viewport" -defs["igGetForegroundDrawList"][2]["argsT"][1]["type"] = "ImGuiViewport*" -defs["igGetForegroundDrawList"][2]["argsoriginal"] = "(ImGuiViewport* viewport)" -defs["igGetForegroundDrawList"][2]["call_args"] = "(viewport)" +defs["igGetForegroundDrawList"][2]["argsT"][1]["name"] = "window" +defs["igGetForegroundDrawList"][2]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igGetForegroundDrawList"][2]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "imgui:894" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3393" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" +defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][2]["signature"] = "(ImGuiViewport*)" +defs["igGetForegroundDrawList"][2]["signature"] = "(ImGuiWindow*)" defs["igGetForegroundDrawList"][2]["stname"] = "" -defs["igGetForegroundDrawList"][3] = {} -defs["igGetForegroundDrawList"][3]["args"] = "(ImGuiWindow* window)" -defs["igGetForegroundDrawList"][3]["argsT"] = {} -defs["igGetForegroundDrawList"][3]["argsT"][1] = {} -defs["igGetForegroundDrawList"][3]["argsT"][1]["name"] = "window" -defs["igGetForegroundDrawList"][3]["argsT"][1]["type"] = "ImGuiWindow*" -defs["igGetForegroundDrawList"][3]["argsoriginal"] = "(ImGuiWindow* window)" -defs["igGetForegroundDrawList"][3]["call_args"] = "(window)" -defs["igGetForegroundDrawList"][3]["cimguiname"] = "igGetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["defaults"] = {} -defs["igGetForegroundDrawList"][3]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2978" -defs["igGetForegroundDrawList"][3]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][3]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" -defs["igGetForegroundDrawList"][3]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][3]["signature"] = "(ImGuiWindow*)" -defs["igGetForegroundDrawList"][3]["stname"] = "" -defs["igGetForegroundDrawList"]["()"] = defs["igGetForegroundDrawList"][1] -defs["igGetForegroundDrawList"]["(ImGuiViewport*)"] = defs["igGetForegroundDrawList"][2] -defs["igGetForegroundDrawList"]["(ImGuiWindow*)"] = defs["igGetForegroundDrawList"][3] +defs["igGetForegroundDrawList"]["(ImGuiViewport*)"] = defs["igGetForegroundDrawList"][1] +defs["igGetForegroundDrawList"]["(ImGuiWindow*)"] = defs["igGetForegroundDrawList"][2] defs["igGetFrameCount"] = {} defs["igGetFrameCount"][1] = {} defs["igGetFrameCount"][1]["args"] = "()" @@ -17085,7 +18354,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui:900" +defs["igGetFrameCount"][1]["location"] = "imgui:971" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -17101,7 +18370,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:468" +defs["igGetFrameHeight"][1]["location"] = "imgui:511" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -17117,7 +18386,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:469" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:512" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -17133,7 +18402,7 @@ defs["igGetHoveredID"][1]["call_args"] = "()" defs["igGetHoveredID"][1]["cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["defaults"] = {} defs["igGetHoveredID"][1]["funcname"] = "GetHoveredID" -defs["igGetHoveredID"][1]["location"] = "imgui_internal:3043" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:3463" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -17152,7 +18421,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:487" +defs["igGetID"][1]["location"] = "imgui:530" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -17172,7 +18441,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:488" +defs["igGetID"][2]["location"] = "imgui:531" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -17189,15 +18458,33 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:489" +defs["igGetID"][3]["location"] = "imgui:532" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" defs["igGetID"][3]["signature"] = "(const void*)" defs["igGetID"][3]["stname"] = "" +defs["igGetID"][4] = {} +defs["igGetID"][4]["args"] = "(int int_id)" +defs["igGetID"][4]["argsT"] = {} +defs["igGetID"][4]["argsT"][1] = {} +defs["igGetID"][4]["argsT"][1]["name"] = "int_id" +defs["igGetID"][4]["argsT"][1]["type"] = "int" +defs["igGetID"][4]["argsoriginal"] = "(int int_id)" +defs["igGetID"][4]["call_args"] = "(int_id)" +defs["igGetID"][4]["cimguiname"] = "igGetID" +defs["igGetID"][4]["defaults"] = {} +defs["igGetID"][4]["funcname"] = "GetID" +defs["igGetID"][4]["location"] = "imgui:533" +defs["igGetID"][4]["namespace"] = "ImGui" +defs["igGetID"][4]["ov_cimguiname"] = "igGetID_Int" +defs["igGetID"][4]["ret"] = "ImGuiID" +defs["igGetID"][4]["signature"] = "(int)" +defs["igGetID"][4]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] +defs["igGetID"]["(int)"] = defs["igGetID"][4] defs["igGetIDWithSeed"] = {} defs["igGetIDWithSeed"][1] = {} defs["igGetIDWithSeed"][1]["args"] = "(const char* str_id_begin,const char* str_id_end,ImGuiID seed)" @@ -17216,13 +18503,34 @@ defs["igGetIDWithSeed"][1]["call_args"] = "(str_id_begin,str_id_end,seed)" defs["igGetIDWithSeed"][1]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["defaults"] = {} defs["igGetIDWithSeed"][1]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3048" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3468" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" -defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed" +defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed_Str" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" defs["igGetIDWithSeed"][1]["signature"] = "(const char*,const char*,ImGuiID)" defs["igGetIDWithSeed"][1]["stname"] = "" +defs["igGetIDWithSeed"][2] = {} +defs["igGetIDWithSeed"][2]["args"] = "(int n,ImGuiID seed)" +defs["igGetIDWithSeed"][2]["argsT"] = {} +defs["igGetIDWithSeed"][2]["argsT"][1] = {} +defs["igGetIDWithSeed"][2]["argsT"][1]["name"] = "n" +defs["igGetIDWithSeed"][2]["argsT"][1]["type"] = "int" +defs["igGetIDWithSeed"][2]["argsT"][2] = {} +defs["igGetIDWithSeed"][2]["argsT"][2]["name"] = "seed" +defs["igGetIDWithSeed"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igGetIDWithSeed"][2]["argsoriginal"] = "(int n,ImGuiID seed)" +defs["igGetIDWithSeed"][2]["call_args"] = "(n,seed)" +defs["igGetIDWithSeed"][2]["cimguiname"] = "igGetIDWithSeed" +defs["igGetIDWithSeed"][2]["defaults"] = {} +defs["igGetIDWithSeed"][2]["funcname"] = "GetIDWithSeed" +defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3469" +defs["igGetIDWithSeed"][2]["namespace"] = "ImGui" +defs["igGetIDWithSeed"][2]["ov_cimguiname"] = "igGetIDWithSeed_Int" +defs["igGetIDWithSeed"][2]["ret"] = "ImGuiID" +defs["igGetIDWithSeed"][2]["signature"] = "(int,ImGuiID)" +defs["igGetIDWithSeed"][2]["stname"] = "" defs["igGetIDWithSeed"]["(const char*,const char*,ImGuiID)"] = defs["igGetIDWithSeed"][1] +defs["igGetIDWithSeed"]["(int,ImGuiID)"] = defs["igGetIDWithSeed"][2] defs["igGetIO"] = {} defs["igGetIO"][1] = {} defs["igGetIO"][1]["args"] = "()" @@ -17232,7 +18540,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:300" +defs["igGetIO"][1]["location"] = "imgui:334" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -17252,7 +18560,7 @@ defs["igGetInputTextState"][1]["call_args"] = "(id)" defs["igGetInputTextState"][1]["cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["defaults"] = {} defs["igGetInputTextState"][1]["funcname"] = "GetInputTextState" -defs["igGetInputTextState"][1]["location"] = "imgui_internal:3419" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3900" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -17268,7 +18576,7 @@ defs["igGetItemFlags"][1]["call_args"] = "()" defs["igGetItemFlags"][1]["cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["defaults"] = {} defs["igGetItemFlags"][1]["funcname"] = "GetItemFlags" -defs["igGetItemFlags"][1]["location"] = "imgui_internal:3037" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:3457" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -17284,7 +18592,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "imgui:878" +defs["igGetItemID"][1]["location"] = "imgui:952" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -17303,7 +18611,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui:880" +defs["igGetItemRectMax"][1]["location"] = "imgui:954" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -17323,7 +18631,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui:879" +defs["igGetItemRectMin"][1]["location"] = "imgui:953" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -17343,7 +18651,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui:881" +defs["igGetItemRectSize"][1]["location"] = "imgui:955" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -17360,7 +18668,7 @@ defs["igGetItemStatusFlags"][1]["call_args"] = "()" defs["igGetItemStatusFlags"][1]["cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["defaults"] = {} defs["igGetItemStatusFlags"][1]["funcname"] = "GetItemStatusFlags" -defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3036" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3456" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -17369,67 +18677,63 @@ defs["igGetItemStatusFlags"][1]["stname"] = "" defs["igGetItemStatusFlags"]["()"] = defs["igGetItemStatusFlags"][1] defs["igGetKeyChordName"] = {} defs["igGetKeyChordName"][1] = {} -defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" +defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord)" defs["igGetKeyChordName"][1]["argsT"] = {} defs["igGetKeyChordName"][1]["argsT"][1] = {} defs["igGetKeyChordName"][1]["argsT"][1]["name"] = "key_chord" defs["igGetKeyChordName"][1]["argsT"][1]["type"] = "ImGuiKeyChord" -defs["igGetKeyChordName"][1]["argsT"][2] = {} -defs["igGetKeyChordName"][1]["argsT"][2]["name"] = "out_buf" -defs["igGetKeyChordName"][1]["argsT"][2]["type"] = "char*" -defs["igGetKeyChordName"][1]["argsT"][3] = {} -defs["igGetKeyChordName"][1]["argsT"][3]["name"] = "out_buf_size" -defs["igGetKeyChordName"][1]["argsT"][3]["type"] = "int" -defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" -defs["igGetKeyChordName"][1]["call_args"] = "(key_chord,out_buf,out_buf_size)" +defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igGetKeyChordName"][1]["call_args"] = "(key_chord)" defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["defaults"] = {} defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" -defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3135" +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3573" defs["igGetKeyChordName"][1]["namespace"] = "ImGui" defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" -defs["igGetKeyChordName"][1]["ret"] = "void" -defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord,char*,int)" +defs["igGetKeyChordName"][1]["ret"] = "const char*" +defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord)" defs["igGetKeyChordName"][1]["stname"] = "" -defs["igGetKeyChordName"]["(ImGuiKeyChord,char*,int)"] = defs["igGetKeyChordName"][1] +defs["igGetKeyChordName"]["(ImGuiKeyChord)"] = defs["igGetKeyChordName"][1] defs["igGetKeyData"] = {} defs["igGetKeyData"][1] = {} -defs["igGetKeyData"][1]["args"] = "(ImGuiKey key)" +defs["igGetKeyData"][1]["args"] = "(ImGuiContext* ctx,ImGuiKey key)" defs["igGetKeyData"][1]["argsT"] = {} defs["igGetKeyData"][1]["argsT"][1] = {} -defs["igGetKeyData"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyData"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyData"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyData"][1]["call_args"] = "(key)" +defs["igGetKeyData"][1]["argsT"][1]["name"] = "ctx" +defs["igGetKeyData"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igGetKeyData"][1]["argsT"][2] = {} +defs["igGetKeyData"][1]["argsT"][2]["name"] = "key" +defs["igGetKeyData"][1]["argsT"][2]["type"] = "ImGuiKey" +defs["igGetKeyData"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiKey key)" +defs["igGetKeyData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" -defs["igGetKeyData"][1]["location"] = "imgui_internal:3134" +defs["igGetKeyData"][1]["location"] = "imgui_internal:3571" defs["igGetKeyData"][1]["namespace"] = "ImGui" -defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData" +defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData_ContextPtr" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" -defs["igGetKeyData"][1]["signature"] = "(ImGuiKey)" +defs["igGetKeyData"][1]["signature"] = "(ImGuiContext*,ImGuiKey)" defs["igGetKeyData"][1]["stname"] = "" -defs["igGetKeyData"]["(ImGuiKey)"] = defs["igGetKeyData"][1] -defs["igGetKeyIndex"] = {} -defs["igGetKeyIndex"][1] = {} -defs["igGetKeyIndex"][1]["args"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["argsT"] = {} -defs["igGetKeyIndex"][1]["argsT"][1] = {} -defs["igGetKeyIndex"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyIndex"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["call_args"] = "(key)" -defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["defaults"] = {} -defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:3212" -defs["igGetKeyIndex"][1]["namespace"] = "ImGui" -defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["ret"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" -defs["igGetKeyIndex"][1]["stname"] = "" -defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] +defs["igGetKeyData"][2] = {} +defs["igGetKeyData"][2]["args"] = "(ImGuiKey key)" +defs["igGetKeyData"][2]["argsT"] = {} +defs["igGetKeyData"][2]["argsT"][1] = {} +defs["igGetKeyData"][2]["argsT"][1]["name"] = "key" +defs["igGetKeyData"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igGetKeyData"][2]["argsoriginal"] = "(ImGuiKey key)" +defs["igGetKeyData"][2]["call_args"] = "(key)" +defs["igGetKeyData"][2]["cimguiname"] = "igGetKeyData" +defs["igGetKeyData"][2]["defaults"] = {} +defs["igGetKeyData"][2]["funcname"] = "GetKeyData" +defs["igGetKeyData"][2]["location"] = "imgui_internal:3572" +defs["igGetKeyData"][2]["namespace"] = "ImGui" +defs["igGetKeyData"][2]["ov_cimguiname"] = "igGetKeyData_Key" +defs["igGetKeyData"][2]["ret"] = "ImGuiKeyData*" +defs["igGetKeyData"][2]["signature"] = "(ImGuiKey)" +defs["igGetKeyData"][2]["stname"] = "" +defs["igGetKeyData"]["(ImGuiContext*,ImGuiKey)"] = defs["igGetKeyData"][1] +defs["igGetKeyData"]["(ImGuiKey)"] = defs["igGetKeyData"][2] defs["igGetKeyMagnitude2d"] = {} defs["igGetKeyMagnitude2d"][1] = {} defs["igGetKeyMagnitude2d"][1]["args"] = "(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)" @@ -17454,7 +18758,7 @@ defs["igGetKeyMagnitude2d"][1]["call_args"] = "(key_left,key_right,key_up,key_do defs["igGetKeyMagnitude2d"][1]["cimguiname"] = "igGetKeyMagnitude2d" defs["igGetKeyMagnitude2d"][1]["defaults"] = {} defs["igGetKeyMagnitude2d"][1]["funcname"] = "GetKeyMagnitude2d" -defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3138" +defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3576" defs["igGetKeyMagnitude2d"][1]["namespace"] = "ImGui" defs["igGetKeyMagnitude2d"][1]["nonUDT"] = 1 defs["igGetKeyMagnitude2d"][1]["ov_cimguiname"] = "igGetKeyMagnitude2d" @@ -17474,7 +18778,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:926" +defs["igGetKeyName"][1]["location"] = "imgui:996" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -17493,7 +18797,7 @@ defs["igGetKeyOwner"][1]["call_args"] = "(key)" defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["defaults"] = {} defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" -defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3156" +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3595" defs["igGetKeyOwner"][1]["namespace"] = "ImGui" defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" @@ -17502,23 +18806,26 @@ defs["igGetKeyOwner"][1]["stname"] = "" defs["igGetKeyOwner"]["(ImGuiKey)"] = defs["igGetKeyOwner"][1] defs["igGetKeyOwnerData"] = {} defs["igGetKeyOwnerData"][1] = {} -defs["igGetKeyOwnerData"][1]["args"] = "(ImGuiKey key)" +defs["igGetKeyOwnerData"][1]["args"] = "(ImGuiContext* ctx,ImGuiKey key)" defs["igGetKeyOwnerData"][1]["argsT"] = {} defs["igGetKeyOwnerData"][1]["argsT"][1] = {} -defs["igGetKeyOwnerData"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyOwnerData"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyOwnerData"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyOwnerData"][1]["call_args"] = "(key)" +defs["igGetKeyOwnerData"][1]["argsT"][1]["name"] = "ctx" +defs["igGetKeyOwnerData"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igGetKeyOwnerData"][1]["argsT"][2] = {} +defs["igGetKeyOwnerData"][1]["argsT"][2]["name"] = "key" +defs["igGetKeyOwnerData"][1]["argsT"][2]["type"] = "ImGuiKey" +defs["igGetKeyOwnerData"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiKey key)" +defs["igGetKeyOwnerData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["defaults"] = {} defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" -defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3160" +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3600" defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" -defs["igGetKeyOwnerData"][1]["signature"] = "(ImGuiKey)" +defs["igGetKeyOwnerData"][1]["signature"] = "(ImGuiContext*,ImGuiKey)" defs["igGetKeyOwnerData"][1]["stname"] = "" -defs["igGetKeyOwnerData"]["(ImGuiKey)"] = defs["igGetKeyOwnerData"][1] +defs["igGetKeyOwnerData"]["(ImGuiContext*,ImGuiKey)"] = defs["igGetKeyOwnerData"][1] defs["igGetKeyPressedAmount"] = {} defs["igGetKeyPressedAmount"][1] = {} defs["igGetKeyPressedAmount"][1]["args"] = "(ImGuiKey key,float repeat_delay,float rate)" @@ -17537,7 +18844,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:925" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:995" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -17553,7 +18860,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:888" +defs["igGetMainViewport"][1]["location"] = "imgui:961" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -17572,7 +18879,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:937" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1033" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -17588,7 +18895,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui:946" +defs["igGetMouseCursor"][1]["location"] = "imgui:1042" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -17615,7 +18922,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui:944" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1040" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -17635,7 +18942,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui:941" +defs["igGetMousePos"][1]["location"] = "imgui:1037" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -17655,7 +18962,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:942" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1038" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -17663,6 +18970,25 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] +defs["igGetMultiSelectState"] = {} +defs["igGetMultiSelectState"][1] = {} +defs["igGetMultiSelectState"][1]["args"] = "(ImGuiID id)" +defs["igGetMultiSelectState"][1]["argsT"] = {} +defs["igGetMultiSelectState"][1]["argsT"][1] = {} +defs["igGetMultiSelectState"][1]["argsT"][1]["name"] = "id" +defs["igGetMultiSelectState"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igGetMultiSelectState"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igGetMultiSelectState"][1]["call_args"] = "(id)" +defs["igGetMultiSelectState"][1]["cimguiname"] = "igGetMultiSelectState" +defs["igGetMultiSelectState"][1]["defaults"] = {} +defs["igGetMultiSelectState"][1]["funcname"] = "GetMultiSelectState" +defs["igGetMultiSelectState"][1]["location"] = "imgui_internal:3726" +defs["igGetMultiSelectState"][1]["namespace"] = "ImGui" +defs["igGetMultiSelectState"][1]["ov_cimguiname"] = "igGetMultiSelectState" +defs["igGetMultiSelectState"][1]["ret"] = "ImGuiMultiSelectState*" +defs["igGetMultiSelectState"][1]["signature"] = "(ImGuiID)" +defs["igGetMultiSelectState"][1]["stname"] = "" +defs["igGetMultiSelectState"]["(ImGuiID)"] = defs["igGetMultiSelectState"][1] defs["igGetNavTweakPressedAmount"] = {} defs["igGetNavTweakPressedAmount"][1] = {} defs["igGetNavTweakPressedAmount"][1]["args"] = "(ImGuiAxis axis)" @@ -17675,7 +19001,7 @@ defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" -defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3139" +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3577" defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" @@ -17691,7 +19017,7 @@ defs["igGetPlatformIO"][1]["call_args"] = "()" defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["defaults"] = {} defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" -defs["igGetPlatformIO"][1]["location"] = "imgui:980" +defs["igGetPlatformIO"][1]["location"] = "imgui:335" defs["igGetPlatformIO"][1]["namespace"] = "ImGui" defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" @@ -17714,7 +19040,7 @@ defs["igGetPopupAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetPopupAllowedExtentRect"][1]["cimguiname"] = "igGetPopupAllowedExtentRect" defs["igGetPopupAllowedExtentRect"][1]["defaults"] = {} defs["igGetPopupAllowedExtentRect"][1]["funcname"] = "GetPopupAllowedExtentRect" -defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3083" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3505" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -17731,7 +19057,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:401" +defs["igGetScrollMaxX"][1]["location"] = "imgui:438" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -17747,7 +19073,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:402" +defs["igGetScrollMaxY"][1]["location"] = "imgui:439" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -17763,7 +19089,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:397" +defs["igGetScrollX"][1]["location"] = "imgui:434" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -17779,7 +19105,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:398" +defs["igGetScrollY"][1]["location"] = "imgui:435" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -17798,7 +19124,7 @@ defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["defaults"] = {} defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" -defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3188" +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3634" defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" @@ -17814,7 +19140,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui:904" +defs["igGetStateStorage"][1]["location"] = "imgui:975" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -17830,7 +19156,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:301" +defs["igGetStyle"][1]["location"] = "imgui:336" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -17850,7 +19176,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui:902" +defs["igGetStyleColorName"][1]["location"] = "imgui:973" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -17869,7 +19195,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:438" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:475" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -17877,6 +19203,25 @@ defs["igGetStyleColorVec4"][1]["retref"] = "&" defs["igGetStyleColorVec4"][1]["signature"] = "(ImGuiCol)" defs["igGetStyleColorVec4"][1]["stname"] = "" defs["igGetStyleColorVec4"]["(ImGuiCol)"] = defs["igGetStyleColorVec4"][1] +defs["igGetStyleVarInfo"] = {} +defs["igGetStyleVarInfo"][1] = {} +defs["igGetStyleVarInfo"][1]["args"] = "(ImGuiStyleVar idx)" +defs["igGetStyleVarInfo"][1]["argsT"] = {} +defs["igGetStyleVarInfo"][1]["argsT"][1] = {} +defs["igGetStyleVarInfo"][1]["argsT"][1]["name"] = "idx" +defs["igGetStyleVarInfo"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igGetStyleVarInfo"][1]["argsoriginal"] = "(ImGuiStyleVar idx)" +defs["igGetStyleVarInfo"][1]["call_args"] = "(idx)" +defs["igGetStyleVarInfo"][1]["cimguiname"] = "igGetStyleVarInfo" +defs["igGetStyleVarInfo"][1]["defaults"] = {} +defs["igGetStyleVarInfo"][1]["funcname"] = "GetStyleVarInfo" +defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3485" +defs["igGetStyleVarInfo"][1]["namespace"] = "ImGui" +defs["igGetStyleVarInfo"][1]["ov_cimguiname"] = "igGetStyleVarInfo" +defs["igGetStyleVarInfo"][1]["ret"] = "const ImGuiDataVarInfo*" +defs["igGetStyleVarInfo"][1]["signature"] = "(ImGuiStyleVar)" +defs["igGetStyleVarInfo"][1]["stname"] = "" +defs["igGetStyleVarInfo"]["(ImGuiStyleVar)"] = defs["igGetStyleVarInfo"][1] defs["igGetTextLineHeight"] = {} defs["igGetTextLineHeight"][1] = {} defs["igGetTextLineHeight"][1]["args"] = "()" @@ -17886,7 +19231,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:466" +defs["igGetTextLineHeight"][1]["location"] = "imgui:509" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -17902,7 +19247,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:467" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:510" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -17918,7 +19263,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui:899" +defs["igGetTime"][1]["location"] = "imgui:970" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -17934,7 +19279,7 @@ defs["igGetTopMostAndVisiblePopupModal"][1]["call_args"] = "()" defs["igGetTopMostAndVisiblePopupModal"][1]["cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["defaults"] = {} defs["igGetTopMostAndVisiblePopupModal"][1]["funcname"] = "GetTopMostAndVisiblePopupModal" -defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3085" +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3507" defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17950,7 +19295,7 @@ defs["igGetTopMostPopupModal"][1]["call_args"] = "()" defs["igGetTopMostPopupModal"][1]["cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["defaults"] = {} defs["igGetTopMostPopupModal"][1]["funcname"] = "GetTopMostPopupModal" -defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3084" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3506" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17966,7 +19311,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:624" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:673" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -17991,13 +19336,33 @@ defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_r defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["defaults"] = {} defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" -defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3141" +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3579" defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["ret"] = "void" defs["igGetTypematicRepeatRate"][1]["signature"] = "(ImGuiInputFlags,float*,float*)" defs["igGetTypematicRepeatRate"][1]["stname"] = "" defs["igGetTypematicRepeatRate"]["(ImGuiInputFlags,float*,float*)"] = defs["igGetTypematicRepeatRate"][1] +defs["igGetTypingSelectRequest"] = {} +defs["igGetTypingSelectRequest"][1] = {} +defs["igGetTypingSelectRequest"][1]["args"] = "(ImGuiTypingSelectFlags flags)" +defs["igGetTypingSelectRequest"][1]["argsT"] = {} +defs["igGetTypingSelectRequest"][1]["argsT"][1] = {} +defs["igGetTypingSelectRequest"][1]["argsT"][1]["name"] = "flags" +defs["igGetTypingSelectRequest"][1]["argsT"][1]["type"] = "ImGuiTypingSelectFlags" +defs["igGetTypingSelectRequest"][1]["argsoriginal"] = "(ImGuiTypingSelectFlags flags=ImGuiTypingSelectFlags_None)" +defs["igGetTypingSelectRequest"][1]["call_args"] = "(flags)" +defs["igGetTypingSelectRequest"][1]["cimguiname"] = "igGetTypingSelectRequest" +defs["igGetTypingSelectRequest"][1]["defaults"] = {} +defs["igGetTypingSelectRequest"][1]["defaults"]["flags"] = "ImGuiTypingSelectFlags_None" +defs["igGetTypingSelectRequest"][1]["funcname"] = "GetTypingSelectRequest" +defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3711" +defs["igGetTypingSelectRequest"][1]["namespace"] = "ImGui" +defs["igGetTypingSelectRequest"][1]["ov_cimguiname"] = "igGetTypingSelectRequest" +defs["igGetTypingSelectRequest"][1]["ret"] = "ImGuiTypingSelectRequest*" +defs["igGetTypingSelectRequest"][1]["signature"] = "(ImGuiTypingSelectFlags)" +defs["igGetTypingSelectRequest"][1]["stname"] = "" +defs["igGetTypingSelectRequest"]["(ImGuiTypingSelectFlags)"] = defs["igGetTypingSelectRequest"][1] defs["igGetVersion"] = {} defs["igGetVersion"][1] = {} defs["igGetVersion"][1]["args"] = "()" @@ -18007,7 +19372,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:317" +defs["igGetVersion"][1]["location"] = "imgui:352" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -18026,7 +19391,7 @@ defs["igGetViewportPlatformMonitor"][1]["call_args"] = "(viewport)" defs["igGetViewportPlatformMonitor"][1]["cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["defaults"] = {} defs["igGetViewportPlatformMonitor"][1]["funcname"] = "GetViewportPlatformMonitor" -defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3003" +defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3420" defs["igGetViewportPlatformMonitor"][1]["namespace"] = "ImGui" defs["igGetViewportPlatformMonitor"][1]["ov_cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["ret"] = "const ImGuiPlatformMonitor*" @@ -18045,53 +19410,13 @@ defs["igGetWindowAlwaysWantOwnTabBar"][1]["call_args"] = "(window)" defs["igGetWindowAlwaysWantOwnTabBar"][1]["cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["defaults"] = {} defs["igGetWindowAlwaysWantOwnTabBar"][1]["funcname"] = "GetWindowAlwaysWantOwnTabBar" -defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3212" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3661" defs["igGetWindowAlwaysWantOwnTabBar"][1]["namespace"] = "ImGui" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ov_cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ret"] = "bool" defs["igGetWindowAlwaysWantOwnTabBar"][1]["signature"] = "(ImGuiWindow*)" defs["igGetWindowAlwaysWantOwnTabBar"][1]["stname"] = "" defs["igGetWindowAlwaysWantOwnTabBar"]["(ImGuiWindow*)"] = defs["igGetWindowAlwaysWantOwnTabBar"][1] -defs["igGetWindowContentRegionMax"] = {} -defs["igGetWindowContentRegionMax"][1] = {} -defs["igGetWindowContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMax"][1]["argsT"] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["defaults"] = {} -defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:392" -defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["ret"] = "void" -defs["igGetWindowContentRegionMax"][1]["signature"] = "()" -defs["igGetWindowContentRegionMax"][1]["stname"] = "" -defs["igGetWindowContentRegionMax"]["()"] = defs["igGetWindowContentRegionMax"][1] -defs["igGetWindowContentRegionMin"] = {} -defs["igGetWindowContentRegionMin"][1] = {} -defs["igGetWindowContentRegionMin"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMin"][1]["argsT"] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMin"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["defaults"] = {} -defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:391" -defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["ret"] = "void" -defs["igGetWindowContentRegionMin"][1]["signature"] = "()" -defs["igGetWindowContentRegionMin"][1]["stname"] = "" -defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] defs["igGetWindowDockID"] = {} defs["igGetWindowDockID"][1] = {} defs["igGetWindowDockID"][1]["args"] = "()" @@ -18101,7 +19426,7 @@ defs["igGetWindowDockID"][1]["call_args"] = "()" defs["igGetWindowDockID"][1]["cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["defaults"] = {} defs["igGetWindowDockID"][1]["funcname"] = "GetWindowDockID" -defs["igGetWindowDockID"][1]["location"] = "imgui:819" +defs["igGetWindowDockID"][1]["location"] = "imgui:889" defs["igGetWindowDockID"][1]["namespace"] = "ImGui" defs["igGetWindowDockID"][1]["ov_cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["ret"] = "ImGuiID" @@ -18117,7 +19442,7 @@ defs["igGetWindowDockNode"][1]["call_args"] = "()" defs["igGetWindowDockNode"][1]["cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["defaults"] = {} defs["igGetWindowDockNode"][1]["funcname"] = "GetWindowDockNode" -defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3211" +defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3660" defs["igGetWindowDockNode"][1]["namespace"] = "ImGui" defs["igGetWindowDockNode"][1]["ov_cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["ret"] = "ImGuiDockNode*" @@ -18133,7 +19458,7 @@ defs["igGetWindowDpiScale"][1]["call_args"] = "()" defs["igGetWindowDpiScale"][1]["cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["defaults"] = {} defs["igGetWindowDpiScale"][1]["funcname"] = "GetWindowDpiScale" -defs["igGetWindowDpiScale"][1]["location"] = "imgui:358" +defs["igGetWindowDpiScale"][1]["location"] = "imgui:403" defs["igGetWindowDpiScale"][1]["namespace"] = "ImGui" defs["igGetWindowDpiScale"][1]["ov_cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["ret"] = "float" @@ -18149,7 +19474,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:357" +defs["igGetWindowDrawList"][1]["location"] = "imgui:402" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -18165,7 +19490,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:362" +defs["igGetWindowHeight"][1]["location"] = "imgui:407" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -18184,7 +19509,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:359" +defs["igGetWindowPos"][1]["location"] = "imgui:404" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -18207,7 +19532,7 @@ defs["igGetWindowResizeBorderID"][1]["call_args"] = "(window,dir)" defs["igGetWindowResizeBorderID"][1]["cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["defaults"] = {} defs["igGetWindowResizeBorderID"][1]["funcname"] = "GetWindowResizeBorderID" -defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3384" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3861" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -18229,7 +19554,7 @@ defs["igGetWindowResizeCornerID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeCornerID"][1]["cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["defaults"] = {} defs["igGetWindowResizeCornerID"][1]["funcname"] = "GetWindowResizeCornerID" -defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3383" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3860" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -18251,7 +19576,7 @@ defs["igGetWindowScrollbarID"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarID"][1]["cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["defaults"] = {} defs["igGetWindowScrollbarID"][1]["funcname"] = "GetWindowScrollbarID" -defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3382" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3859" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -18276,7 +19601,7 @@ defs["igGetWindowScrollbarRect"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarRect"][1]["cimguiname"] = "igGetWindowScrollbarRect" defs["igGetWindowScrollbarRect"][1]["defaults"] = {} defs["igGetWindowScrollbarRect"][1]["funcname"] = "GetWindowScrollbarRect" -defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3381" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3858" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -18296,7 +19621,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:360" +defs["igGetWindowSize"][1]["location"] = "imgui:405" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -18313,7 +19638,7 @@ defs["igGetWindowViewport"][1]["call_args"] = "()" defs["igGetWindowViewport"][1]["cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["defaults"] = {} defs["igGetWindowViewport"][1]["funcname"] = "GetWindowViewport" -defs["igGetWindowViewport"][1]["location"] = "imgui:363" +defs["igGetWindowViewport"][1]["location"] = "imgui:408" defs["igGetWindowViewport"][1]["namespace"] = "ImGui" defs["igGetWindowViewport"][1]["ov_cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["ret"] = "ImGuiViewport*" @@ -18329,7 +19654,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:361" +defs["igGetWindowWidth"][1]["location"] = "imgui:406" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -18348,7 +19673,7 @@ defs["igImAbs"][1]["call_args"] = "(x)" defs["igImAbs"][1]["cimguiname"] = "igImAbs" defs["igImAbs"][1]["defaults"] = {} defs["igImAbs"][1]["funcname"] = "ImAbs" -defs["igImAbs"][1]["location"] = "imgui_internal:448" +defs["igImAbs"][1]["location"] = "imgui_internal:450" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -18364,7 +19689,7 @@ defs["igImAbs"][2]["call_args"] = "(x)" defs["igImAbs"][2]["cimguiname"] = "igImAbs" defs["igImAbs"][2]["defaults"] = {} defs["igImAbs"][2]["funcname"] = "ImAbs" -defs["igImAbs"][2]["location"] = "imgui_internal:449" +defs["igImAbs"][2]["location"] = "imgui_internal:451" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -18380,7 +19705,7 @@ defs["igImAbs"][3]["call_args"] = "(x)" defs["igImAbs"][3]["cimguiname"] = "igImAbs" defs["igImAbs"][3]["defaults"] = {} defs["igImAbs"][3]["funcname"] = "ImAbs" -defs["igImAbs"][3]["location"] = "imgui_internal:450" +defs["igImAbs"][3]["location"] = "imgui_internal:452" defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -18403,7 +19728,7 @@ defs["igImAlphaBlendColors"][1]["call_args"] = "(col_a,col_b)" defs["igImAlphaBlendColors"][1]["cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["defaults"] = {} defs["igImAlphaBlendColors"][1]["funcname"] = "ImAlphaBlendColors" -defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:338" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:361" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -18436,7 +19761,7 @@ defs["igImBezierCubicCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCubicCalc"][1]["cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["defaults"] = {} defs["igImBezierCubicCalc"][1]["funcname"] = "ImBezierCubicCalc" -defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:494" +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:497" defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -18473,7 +19798,7 @@ defs["igImBezierCubicClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segmen defs["igImBezierCubicClosestPoint"][1]["cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["defaults"] = {} defs["igImBezierCubicClosestPoint"][1]["funcname"] = "ImBezierCubicClosestPoint" -defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:495" +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:498" defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -18510,7 +19835,7 @@ defs["igImBezierCubicClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,t defs["igImBezierCubicClosestPointCasteljau"][1]["cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierCubicClosestPointCasteljau"][1]["funcname"] = "ImBezierCubicClosestPointCasteljau" -defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:496" +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:499" defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -18541,13 +19866,34 @@ defs["igImBezierQuadraticCalc"][1]["call_args"] = "(p1,p2,p3,t)" defs["igImBezierQuadraticCalc"][1]["cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["defaults"] = {} defs["igImBezierQuadraticCalc"][1]["funcname"] = "ImBezierQuadraticCalc" -defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:497" +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:500" defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" defs["igImBezierQuadraticCalc"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,float)" defs["igImBezierQuadraticCalc"][1]["stname"] = "" defs["igImBezierQuadraticCalc"]["(const ImVec2,const ImVec2,const ImVec2,float)"] = defs["igImBezierQuadraticCalc"][1] +defs["igImBitArrayClearAllBits"] = {} +defs["igImBitArrayClearAllBits"][1] = {} +defs["igImBitArrayClearAllBits"][1]["args"] = "(ImU32* arr,int bitcount)" +defs["igImBitArrayClearAllBits"][1]["argsT"] = {} +defs["igImBitArrayClearAllBits"][1]["argsT"][1] = {} +defs["igImBitArrayClearAllBits"][1]["argsT"][1]["name"] = "arr" +defs["igImBitArrayClearAllBits"][1]["argsT"][1]["type"] = "ImU32*" +defs["igImBitArrayClearAllBits"][1]["argsT"][2] = {} +defs["igImBitArrayClearAllBits"][1]["argsT"][2]["name"] = "bitcount" +defs["igImBitArrayClearAllBits"][1]["argsT"][2]["type"] = "int" +defs["igImBitArrayClearAllBits"][1]["argsoriginal"] = "(ImU32* arr,int bitcount)" +defs["igImBitArrayClearAllBits"][1]["call_args"] = "(arr,bitcount)" +defs["igImBitArrayClearAllBits"][1]["cimguiname"] = "igImBitArrayClearAllBits" +defs["igImBitArrayClearAllBits"][1]["defaults"] = {} +defs["igImBitArrayClearAllBits"][1]["funcname"] = "ImBitArrayClearAllBits" +defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:570" +defs["igImBitArrayClearAllBits"][1]["ov_cimguiname"] = "igImBitArrayClearAllBits" +defs["igImBitArrayClearAllBits"][1]["ret"] = "void" +defs["igImBitArrayClearAllBits"][1]["signature"] = "(ImU32*,int)" +defs["igImBitArrayClearAllBits"][1]["stname"] = "" +defs["igImBitArrayClearAllBits"]["(ImU32*,int)"] = defs["igImBitArrayClearAllBits"][1] defs["igImBitArrayClearBit"] = {} defs["igImBitArrayClearBit"][1] = {} defs["igImBitArrayClearBit"][1]["args"] = "(ImU32* arr,int n)" @@ -18563,12 +19909,30 @@ defs["igImBitArrayClearBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayClearBit"][1]["cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["defaults"] = {} defs["igImBitArrayClearBit"][1]["funcname"] = "ImBitArrayClearBit" -defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:565" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:572" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" defs["igImBitArrayClearBit"][1]["stname"] = "" defs["igImBitArrayClearBit"]["(ImU32*,int)"] = defs["igImBitArrayClearBit"][1] +defs["igImBitArrayGetStorageSizeInBytes"] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["args"] = "(int bitcount)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"][1] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"][1]["name"] = "bitcount" +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"][1]["type"] = "int" +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsoriginal"] = "(int bitcount)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["call_args"] = "(bitcount)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["cimguiname"] = "igImBitArrayGetStorageSizeInBytes" +defs["igImBitArrayGetStorageSizeInBytes"][1]["defaults"] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["funcname"] = "ImBitArrayGetStorageSizeInBytes" +defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:569" +defs["igImBitArrayGetStorageSizeInBytes"][1]["ov_cimguiname"] = "igImBitArrayGetStorageSizeInBytes" +defs["igImBitArrayGetStorageSizeInBytes"][1]["ret"] = "size_t" +defs["igImBitArrayGetStorageSizeInBytes"][1]["signature"] = "(int)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["stname"] = "" +defs["igImBitArrayGetStorageSizeInBytes"]["(int)"] = defs["igImBitArrayGetStorageSizeInBytes"][1] defs["igImBitArraySetBit"] = {} defs["igImBitArraySetBit"][1] = {} defs["igImBitArraySetBit"][1]["args"] = "(ImU32* arr,int n)" @@ -18584,7 +19948,7 @@ defs["igImBitArraySetBit"][1]["call_args"] = "(arr,n)" defs["igImBitArraySetBit"][1]["cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["defaults"] = {} defs["igImBitArraySetBit"][1]["funcname"] = "ImBitArraySetBit" -defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:566" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:573" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -18608,7 +19972,7 @@ defs["igImBitArraySetBitRange"][1]["call_args"] = "(arr,n,n2)" defs["igImBitArraySetBitRange"][1]["cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["defaults"] = {} defs["igImBitArraySetBitRange"][1]["funcname"] = "ImBitArraySetBitRange" -defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:567" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:574" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -18629,7 +19993,7 @@ defs["igImBitArrayTestBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayTestBit"][1]["cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["defaults"] = {} defs["igImBitArrayTestBit"][1]["funcname"] = "ImBitArrayTestBit" -defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:564" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:571" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -18647,7 +20011,7 @@ defs["igImCharIsBlankA"][1]["call_args"] = "(c)" defs["igImCharIsBlankA"][1]["cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["defaults"] = {} defs["igImCharIsBlankA"][1]["funcname"] = "ImCharIsBlankA" -defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:360" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:383" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -18665,15 +20029,33 @@ defs["igImCharIsBlankW"][1]["call_args"] = "(c)" defs["igImCharIsBlankW"][1]["cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["defaults"] = {} defs["igImCharIsBlankW"][1]["funcname"] = "ImCharIsBlankW" -defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:361" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:384" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" defs["igImCharIsBlankW"][1]["stname"] = "" defs["igImCharIsBlankW"]["(unsigned int)"] = defs["igImCharIsBlankW"][1] +defs["igImCharIsXdigitA"] = {} +defs["igImCharIsXdigitA"][1] = {} +defs["igImCharIsXdigitA"][1]["args"] = "(char c)" +defs["igImCharIsXdigitA"][1]["argsT"] = {} +defs["igImCharIsXdigitA"][1]["argsT"][1] = {} +defs["igImCharIsXdigitA"][1]["argsT"][1]["name"] = "c" +defs["igImCharIsXdigitA"][1]["argsT"][1]["type"] = "char" +defs["igImCharIsXdigitA"][1]["argsoriginal"] = "(char c)" +defs["igImCharIsXdigitA"][1]["call_args"] = "(c)" +defs["igImCharIsXdigitA"][1]["cimguiname"] = "igImCharIsXdigitA" +defs["igImCharIsXdigitA"][1]["defaults"] = {} +defs["igImCharIsXdigitA"][1]["funcname"] = "ImCharIsXdigitA" +defs["igImCharIsXdigitA"][1]["location"] = "imgui_internal:385" +defs["igImCharIsXdigitA"][1]["ov_cimguiname"] = "igImCharIsXdigitA" +defs["igImCharIsXdigitA"][1]["ret"] = "bool" +defs["igImCharIsXdigitA"][1]["signature"] = "(char)" +defs["igImCharIsXdigitA"][1]["stname"] = "" +defs["igImCharIsXdigitA"]["(char)"] = defs["igImCharIsXdigitA"][1] defs["igImClamp"] = {} defs["igImClamp"][1] = {} -defs["igImClamp"][1]["args"] = "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx)" +defs["igImClamp"][1]["args"] = "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx)" defs["igImClamp"][1]["argsT"] = {} defs["igImClamp"][1]["argsT"][1] = {} defs["igImClamp"][1]["argsT"][1]["name"] = "pOut" @@ -18686,19 +20068,19 @@ defs["igImClamp"][1]["argsT"][3]["name"] = "mn" defs["igImClamp"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImClamp"][1]["argsT"][4] = {} defs["igImClamp"][1]["argsT"][4]["name"] = "mx" -defs["igImClamp"][1]["argsT"][4]["type"] = "ImVec2" -defs["igImClamp"][1]["argsoriginal"] = "(const ImVec2& v,const ImVec2& mn,ImVec2 mx)" +defs["igImClamp"][1]["argsT"][4]["type"] = "const ImVec2" +defs["igImClamp"][1]["argsoriginal"] = "(const ImVec2& v,const ImVec2&mn,const ImVec2&mx)" defs["igImClamp"][1]["call_args"] = "(v,mn,mx)" defs["igImClamp"][1]["cimguiname"] = "igImClamp" defs["igImClamp"][1]["defaults"] = {} defs["igImClamp"][1]["funcname"] = "ImClamp" -defs["igImClamp"][1]["location"] = "imgui_internal:472" +defs["igImClamp"][1]["location"] = "imgui_internal:474" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" -defs["igImClamp"][1]["signature"] = "(const ImVec2,const ImVec2,ImVec2)" +defs["igImClamp"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" defs["igImClamp"][1]["stname"] = "" -defs["igImClamp"]["(const ImVec2,const ImVec2,ImVec2)"] = defs["igImClamp"][1] +defs["igImClamp"]["(const ImVec2,const ImVec2,const ImVec2)"] = defs["igImClamp"][1] defs["igImDot"] = {} defs["igImDot"][1] = {} defs["igImDot"][1]["args"] = "(const ImVec2 a,const ImVec2 b)" @@ -18714,7 +20096,7 @@ defs["igImDot"][1]["call_args"] = "(a,b)" defs["igImDot"][1]["cimguiname"] = "igImDot" defs["igImDot"][1]["defaults"] = {} defs["igImDot"][1]["funcname"] = "ImDot" -defs["igImDot"][1]["location"] = "imgui_internal:485" +defs["igImDot"][1]["location"] = "imgui_internal:487" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -18738,7 +20120,7 @@ defs["igImExponentialMovingAverage"][1]["call_args"] = "(avg,sample,n)" defs["igImExponentialMovingAverage"][1]["cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["defaults"] = {} defs["igImExponentialMovingAverage"][1]["funcname"] = "ImExponentialMovingAverage" -defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:490" +defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:493" defs["igImExponentialMovingAverage"][1]["ov_cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["ret"] = "float" defs["igImExponentialMovingAverage"][1]["signature"] = "(float,float,int)" @@ -18756,7 +20138,7 @@ defs["igImFileClose"][1]["call_args"] = "(file)" defs["igImFileClose"][1]["cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["defaults"] = {} defs["igImFileClose"][1]["funcname"] = "ImFileClose" -defs["igImFileClose"][1]["location"] = "imgui_internal:421" +defs["igImFileClose"][1]["location"] = "imgui_internal:424" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -18774,7 +20156,7 @@ defs["igImFileGetSize"][1]["call_args"] = "(file)" defs["igImFileGetSize"][1]["cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["defaults"] = {} defs["igImFileGetSize"][1]["funcname"] = "ImFileGetSize" -defs["igImFileGetSize"][1]["location"] = "imgui_internal:422" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:425" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -18803,7 +20185,7 @@ defs["igImFileLoadToMemory"][1]["defaults"] = {} defs["igImFileLoadToMemory"][1]["defaults"]["out_file_size"] = "NULL" defs["igImFileLoadToMemory"][1]["defaults"]["padding_bytes"] = "0" defs["igImFileLoadToMemory"][1]["funcname"] = "ImFileLoadToMemory" -defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:428" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:431" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -18824,7 +20206,7 @@ defs["igImFileOpen"][1]["call_args"] = "(filename,mode)" defs["igImFileOpen"][1]["cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["defaults"] = {} defs["igImFileOpen"][1]["funcname"] = "ImFileOpen" -defs["igImFileOpen"][1]["location"] = "imgui_internal:420" +defs["igImFileOpen"][1]["location"] = "imgui_internal:423" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -18851,7 +20233,7 @@ defs["igImFileRead"][1]["call_args"] = "(data,size,count,file)" defs["igImFileRead"][1]["cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["defaults"] = {} defs["igImFileRead"][1]["funcname"] = "ImFileRead" -defs["igImFileRead"][1]["location"] = "imgui_internal:423" +defs["igImFileRead"][1]["location"] = "imgui_internal:426" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -18878,7 +20260,7 @@ defs["igImFileWrite"][1]["call_args"] = "(data,size,count,file)" defs["igImFileWrite"][1]["cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["defaults"] = {} defs["igImFileWrite"][1]["funcname"] = "ImFileWrite" -defs["igImFileWrite"][1]["location"] = "imgui_internal:424" +defs["igImFileWrite"][1]["location"] = "imgui_internal:427" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -18896,7 +20278,7 @@ defs["igImFloor"][1]["call_args"] = "(f)" defs["igImFloor"][1]["cimguiname"] = "igImFloor" defs["igImFloor"][1]["defaults"] = {} defs["igImFloor"][1]["funcname"] = "ImFloor" -defs["igImFloor"][1]["location"] = "imgui_internal:480" +defs["igImFloor"][1]["location"] = "imgui_internal:484" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -18915,7 +20297,7 @@ defs["igImFloor"][2]["call_args"] = "(v)" defs["igImFloor"][2]["cimguiname"] = "igImFloor" defs["igImFloor"][2]["defaults"] = {} defs["igImFloor"][2]["funcname"] = "ImFloor" -defs["igImFloor"][2]["location"] = "imgui_internal:482" +defs["igImFloor"][2]["location"] = "imgui_internal:485" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -18923,45 +20305,6 @@ defs["igImFloor"][2]["signature"] = "(const ImVec2)" defs["igImFloor"][2]["stname"] = "" defs["igImFloor"]["(const ImVec2)"] = defs["igImFloor"][2] defs["igImFloor"]["(float)"] = defs["igImFloor"][1] -defs["igImFloorSigned"] = {} -defs["igImFloorSigned"][1] = {} -defs["igImFloorSigned"][1]["args"] = "(float f)" -defs["igImFloorSigned"][1]["argsT"] = {} -defs["igImFloorSigned"][1]["argsT"][1] = {} -defs["igImFloorSigned"][1]["argsT"][1]["name"] = "f" -defs["igImFloorSigned"][1]["argsT"][1]["type"] = "float" -defs["igImFloorSigned"][1]["argsoriginal"] = "(float f)" -defs["igImFloorSigned"][1]["call_args"] = "(f)" -defs["igImFloorSigned"][1]["cimguiname"] = "igImFloorSigned" -defs["igImFloorSigned"][1]["defaults"] = {} -defs["igImFloorSigned"][1]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][1]["location"] = "imgui_internal:481" -defs["igImFloorSigned"][1]["ov_cimguiname"] = "igImFloorSigned_Float" -defs["igImFloorSigned"][1]["ret"] = "float" -defs["igImFloorSigned"][1]["signature"] = "(float)" -defs["igImFloorSigned"][1]["stname"] = "" -defs["igImFloorSigned"][2] = {} -defs["igImFloorSigned"][2]["args"] = "(ImVec2 *pOut,const ImVec2 v)" -defs["igImFloorSigned"][2]["argsT"] = {} -defs["igImFloorSigned"][2]["argsT"][1] = {} -defs["igImFloorSigned"][2]["argsT"][1]["name"] = "pOut" -defs["igImFloorSigned"][2]["argsT"][1]["type"] = "ImVec2*" -defs["igImFloorSigned"][2]["argsT"][2] = {} -defs["igImFloorSigned"][2]["argsT"][2]["name"] = "v" -defs["igImFloorSigned"][2]["argsT"][2]["type"] = "const ImVec2" -defs["igImFloorSigned"][2]["argsoriginal"] = "(const ImVec2& v)" -defs["igImFloorSigned"][2]["call_args"] = "(v)" -defs["igImFloorSigned"][2]["cimguiname"] = "igImFloorSigned" -defs["igImFloorSigned"][2]["defaults"] = {} -defs["igImFloorSigned"][2]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][2]["location"] = "imgui_internal:483" -defs["igImFloorSigned"][2]["nonUDT"] = 1 -defs["igImFloorSigned"][2]["ov_cimguiname"] = "igImFloorSigned_Vec2" -defs["igImFloorSigned"][2]["ret"] = "void" -defs["igImFloorSigned"][2]["signature"] = "(const ImVec2)" -defs["igImFloorSigned"][2]["stname"] = "" -defs["igImFloorSigned"]["(const ImVec2)"] = defs["igImFloorSigned"][2] -defs["igImFloorSigned"]["(float)"] = defs["igImFloorSigned"][1] defs["igImFontAtlasBuildFinish"] = {} defs["igImFontAtlasBuildFinish"][1] = {} defs["igImFontAtlasBuildFinish"][1]["args"] = "(ImFontAtlas* atlas)" @@ -18974,7 +20317,7 @@ defs["igImFontAtlasBuildFinish"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildFinish"][1]["cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["defaults"] = {} defs["igImFontAtlasBuildFinish"][1]["funcname"] = "ImFontAtlasBuildFinish" -defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3509" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3996" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -18992,7 +20335,7 @@ defs["igImFontAtlasBuildInit"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildInit"][1]["cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["defaults"] = {} defs["igImFontAtlasBuildInit"][1]["funcname"] = "ImFontAtlasBuildInit" -defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3506" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3993" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -19013,7 +20356,7 @@ defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["call_args"] = "(out_table, defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["funcname"] = "ImFontAtlasBuildMultiplyCalcLookupTable" -defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3512" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3999" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -19049,7 +20392,7 @@ defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["call_args"] = "(table,pixels,x, defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["funcname"] = "ImFontAtlasBuildMultiplyRectAlpha8" -defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3513" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:4000" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["signature"] = "(const unsigned char[256],unsigned char*,int,int,int,int,int)" @@ -19070,7 +20413,7 @@ defs["igImFontAtlasBuildPackCustomRects"][1]["call_args"] = "(atlas,stbrp_contex defs["igImFontAtlasBuildPackCustomRects"][1]["cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["defaults"] = {} defs["igImFontAtlasBuildPackCustomRects"][1]["funcname"] = "ImFontAtlasBuildPackCustomRects" -defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3508" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3995" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -19109,7 +20452,7 @@ defs["igImFontAtlasBuildRender32bppRectFromString"][1]["call_args"] = "(atlas,x, defs["igImFontAtlasBuildRender32bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender32bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender32bppRectFromString" -defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3511" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3998" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)" @@ -19148,7 +20491,7 @@ defs["igImFontAtlasBuildRender8bppRectFromString"][1]["call_args"] = "(atlas,x,y defs["igImFontAtlasBuildRender8bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender8bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender8bppRectFromString" -defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3510" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3997" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -19178,12 +20521,30 @@ defs["igImFontAtlasBuildSetupFont"][1]["call_args"] = "(atlas,font,font_config,a defs["igImFontAtlasBuildSetupFont"][1]["cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["defaults"] = {} defs["igImFontAtlasBuildSetupFont"][1]["funcname"] = "ImFontAtlasBuildSetupFont" -defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3507" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3994" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" defs["igImFontAtlasBuildSetupFont"][1]["stname"] = "" defs["igImFontAtlasBuildSetupFont"]["(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)"] = defs["igImFontAtlasBuildSetupFont"][1] +defs["igImFontAtlasUpdateConfigDataPointers"] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["args"] = "(ImFontAtlas* atlas)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"][1] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"][1]["name"] = "atlas" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"][1]["type"] = "ImFontAtlas*" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsoriginal"] = "(ImFontAtlas* atlas)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["call_args"] = "(atlas)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["defaults"] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["funcname"] = "ImFontAtlasUpdateConfigDataPointers" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3992" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["ov_cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["ret"] = "void" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["signature"] = "(ImFontAtlas*)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["stname"] = "" +defs["igImFontAtlasUpdateConfigDataPointers"]["(ImFontAtlas*)"] = defs["igImFontAtlasUpdateConfigDataPointers"][1] defs["igImFormatString"] = {} defs["igImFormatString"][1] = {} defs["igImFormatString"][1]["args"] = "(char* buf,size_t buf_size,const char* fmt,...)" @@ -19206,7 +20567,7 @@ defs["igImFormatString"][1]["cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["defaults"] = {} defs["igImFormatString"][1]["funcname"] = "ImFormatString" defs["igImFormatString"][1]["isvararg"] = "...)" -defs["igImFormatString"][1]["location"] = "imgui_internal:365" +defs["igImFormatString"][1]["location"] = "imgui_internal:389" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -19234,7 +20595,7 @@ defs["igImFormatStringToTempBuffer"][1]["cimguiname"] = "igImFormatStringToTempB defs["igImFormatStringToTempBuffer"][1]["defaults"] = {} defs["igImFormatStringToTempBuffer"][1]["funcname"] = "ImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["isvararg"] = "...)" -defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:367" +defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:391" defs["igImFormatStringToTempBuffer"][1]["ov_cimguiname"] = "igImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["ret"] = "void" defs["igImFormatStringToTempBuffer"][1]["signature"] = "(const char**,const char**,const char*,...)" @@ -19261,7 +20622,7 @@ defs["igImFormatStringToTempBufferV"][1]["call_args"] = "(out_buf,out_buf_end,fm defs["igImFormatStringToTempBufferV"][1]["cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["defaults"] = {} defs["igImFormatStringToTempBufferV"][1]["funcname"] = "ImFormatStringToTempBufferV" -defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:368" +defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:392" defs["igImFormatStringToTempBufferV"][1]["ov_cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["ret"] = "void" defs["igImFormatStringToTempBufferV"][1]["signature"] = "(const char**,const char**,const char*,va_list)" @@ -19288,36 +20649,15 @@ defs["igImFormatStringV"][1]["call_args"] = "(buf,buf_size,fmt,args)" defs["igImFormatStringV"][1]["cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["defaults"] = {} defs["igImFormatStringV"][1]["funcname"] = "ImFormatStringV" -defs["igImFormatStringV"][1]["location"] = "imgui_internal:366" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:390" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" defs["igImFormatStringV"][1]["stname"] = "" defs["igImFormatStringV"]["(char*,size_t,const char*,va_list)"] = defs["igImFormatStringV"][1] -defs["igImGetDirQuadrantFromDelta"] = {} -defs["igImGetDirQuadrantFromDelta"][1] = {} -defs["igImGetDirQuadrantFromDelta"][1]["args"] = "(float dx,float dy)" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"] = {} -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][1] = {} -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][1]["name"] = "dx" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][1]["type"] = "float" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][2] = {} -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][2]["name"] = "dy" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][2]["type"] = "float" -defs["igImGetDirQuadrantFromDelta"][1]["argsoriginal"] = "(float dx,float dy)" -defs["igImGetDirQuadrantFromDelta"][1]["call_args"] = "(dx,dy)" -defs["igImGetDirQuadrantFromDelta"][1]["cimguiname"] = "igImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["defaults"] = {} -defs["igImGetDirQuadrantFromDelta"][1]["funcname"] = "ImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:503" -defs["igImGetDirQuadrantFromDelta"][1]["ov_cimguiname"] = "igImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["ret"] = "ImGuiDir" -defs["igImGetDirQuadrantFromDelta"][1]["signature"] = "(float,float)" -defs["igImGetDirQuadrantFromDelta"][1]["stname"] = "" -defs["igImGetDirQuadrantFromDelta"]["(float,float)"] = defs["igImGetDirQuadrantFromDelta"][1] defs["igImHashData"] = {} defs["igImHashData"][1] = {} -defs["igImHashData"][1]["args"] = "(const void* data,size_t data_size,ImU32 seed)" +defs["igImHashData"][1]["args"] = "(const void* data,size_t data_size,ImGuiID seed)" defs["igImHashData"][1]["argsT"] = {} defs["igImHashData"][1]["argsT"][1] = {} defs["igImHashData"][1]["argsT"][1]["name"] = "data" @@ -19327,22 +20667,22 @@ defs["igImHashData"][1]["argsT"][2]["name"] = "data_size" defs["igImHashData"][1]["argsT"][2]["type"] = "size_t" defs["igImHashData"][1]["argsT"][3] = {} defs["igImHashData"][1]["argsT"][3]["name"] = "seed" -defs["igImHashData"][1]["argsT"][3]["type"] = "ImU32" -defs["igImHashData"][1]["argsoriginal"] = "(const void* data,size_t data_size,ImU32 seed=0)" +defs["igImHashData"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImHashData"][1]["argsoriginal"] = "(const void* data,size_t data_size,ImGuiID seed=0)" defs["igImHashData"][1]["call_args"] = "(data,data_size,seed)" defs["igImHashData"][1]["cimguiname"] = "igImHashData" defs["igImHashData"][1]["defaults"] = {} defs["igImHashData"][1]["defaults"]["seed"] = "0" defs["igImHashData"][1]["funcname"] = "ImHashData" -defs["igImHashData"][1]["location"] = "imgui_internal:329" +defs["igImHashData"][1]["location"] = "imgui_internal:352" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" -defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImU32)" +defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImGuiID)" defs["igImHashData"][1]["stname"] = "" -defs["igImHashData"]["(const void*,size_t,ImU32)"] = defs["igImHashData"][1] +defs["igImHashData"]["(const void*,size_t,ImGuiID)"] = defs["igImHashData"][1] defs["igImHashStr"] = {} defs["igImHashStr"][1] = {} -defs["igImHashStr"][1]["args"] = "(const char* data,size_t data_size,ImU32 seed)" +defs["igImHashStr"][1]["args"] = "(const char* data,size_t data_size,ImGuiID seed)" defs["igImHashStr"][1]["argsT"] = {} defs["igImHashStr"][1]["argsT"][1] = {} defs["igImHashStr"][1]["argsT"][1]["name"] = "data" @@ -19352,20 +20692,20 @@ defs["igImHashStr"][1]["argsT"][2]["name"] = "data_size" defs["igImHashStr"][1]["argsT"][2]["type"] = "size_t" defs["igImHashStr"][1]["argsT"][3] = {} defs["igImHashStr"][1]["argsT"][3]["name"] = "seed" -defs["igImHashStr"][1]["argsT"][3]["type"] = "ImU32" -defs["igImHashStr"][1]["argsoriginal"] = "(const char* data,size_t data_size=0,ImU32 seed=0)" +defs["igImHashStr"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImHashStr"][1]["argsoriginal"] = "(const char* data,size_t data_size=0,ImGuiID seed=0)" defs["igImHashStr"][1]["call_args"] = "(data,data_size,seed)" defs["igImHashStr"][1]["cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["defaults"] = {} defs["igImHashStr"][1]["defaults"]["data_size"] = "0" defs["igImHashStr"][1]["defaults"]["seed"] = "0" defs["igImHashStr"][1]["funcname"] = "ImHashStr" -defs["igImHashStr"][1]["location"] = "imgui_internal:330" +defs["igImHashStr"][1]["location"] = "imgui_internal:353" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" -defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImU32)" +defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImGuiID)" defs["igImHashStr"][1]["stname"] = "" -defs["igImHashStr"]["(const char*,size_t,ImU32)"] = defs["igImHashStr"][1] +defs["igImHashStr"]["(const char*,size_t,ImGuiID)"] = defs["igImHashStr"][1] defs["igImInvLength"] = {} defs["igImInvLength"][1] = {} defs["igImInvLength"][1]["args"] = "(const ImVec2 lhs,float fail_value)" @@ -19381,7 +20721,7 @@ defs["igImInvLength"][1]["call_args"] = "(lhs,fail_value)" defs["igImInvLength"][1]["cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["defaults"] = {} defs["igImInvLength"][1]["funcname"] = "ImInvLength" -defs["igImInvLength"][1]["location"] = "imgui_internal:479" +defs["igImInvLength"][1]["location"] = "imgui_internal:481" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -19399,7 +20739,7 @@ defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["call_args"] = "(f)" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["defaults"] = {} defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["funcname"] = "ImIsFloatAboveGuaranteedIntegerPrecision" -defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:489" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:492" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" @@ -19417,7 +20757,7 @@ defs["igImIsPowerOfTwo"][1]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][1]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["defaults"] = {} defs["igImIsPowerOfTwo"][1]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:341" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:364" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -19433,7 +20773,7 @@ defs["igImIsPowerOfTwo"][2]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][2]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][2]["defaults"] = {} defs["igImIsPowerOfTwo"][2]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:342" +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:365" defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -19452,7 +20792,7 @@ defs["igImLengthSqr"][1]["call_args"] = "(lhs)" defs["igImLengthSqr"][1]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][1]["defaults"] = {} defs["igImLengthSqr"][1]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][1]["location"] = "imgui_internal:477" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:479" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -19468,7 +20808,7 @@ defs["igImLengthSqr"][2]["call_args"] = "(lhs)" defs["igImLengthSqr"][2]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][2]["defaults"] = {} defs["igImLengthSqr"][2]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][2]["location"] = "imgui_internal:478" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:480" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -19496,7 +20836,7 @@ defs["igImLerp"][1]["call_args"] = "(a,b,t)" defs["igImLerp"][1]["cimguiname"] = "igImLerp" defs["igImLerp"][1]["defaults"] = {} defs["igImLerp"][1]["funcname"] = "ImLerp" -defs["igImLerp"][1]["location"] = "imgui_internal:473" +defs["igImLerp"][1]["location"] = "imgui_internal:475" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -19522,7 +20862,7 @@ defs["igImLerp"][2]["call_args"] = "(a,b,t)" defs["igImLerp"][2]["cimguiname"] = "igImLerp" defs["igImLerp"][2]["defaults"] = {} defs["igImLerp"][2]["funcname"] = "ImLerp" -defs["igImLerp"][2]["location"] = "imgui_internal:474" +defs["igImLerp"][2]["location"] = "imgui_internal:476" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -19548,7 +20888,7 @@ defs["igImLerp"][3]["call_args"] = "(a,b,t)" defs["igImLerp"][3]["cimguiname"] = "igImLerp" defs["igImLerp"][3]["defaults"] = {} defs["igImLerp"][3]["funcname"] = "ImLerp" -defs["igImLerp"][3]["location"] = "imgui_internal:475" +defs["igImLerp"][3]["location"] = "imgui_internal:477" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -19578,13 +20918,43 @@ defs["igImLineClosestPoint"][1]["call_args"] = "(a,b,p)" defs["igImLineClosestPoint"][1]["cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["defaults"] = {} defs["igImLineClosestPoint"][1]["funcname"] = "ImLineClosestPoint" -defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:498" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:501" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" defs["igImLineClosestPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" defs["igImLineClosestPoint"][1]["stname"] = "" defs["igImLineClosestPoint"]["(const ImVec2,const ImVec2,const ImVec2)"] = defs["igImLineClosestPoint"][1] +defs["igImLinearRemapClamp"] = {} +defs["igImLinearRemapClamp"][1] = {} +defs["igImLinearRemapClamp"][1]["args"] = "(float s0,float s1,float d0,float d1,float x)" +defs["igImLinearRemapClamp"][1]["argsT"] = {} +defs["igImLinearRemapClamp"][1]["argsT"][1] = {} +defs["igImLinearRemapClamp"][1]["argsT"][1]["name"] = "s0" +defs["igImLinearRemapClamp"][1]["argsT"][1]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][2] = {} +defs["igImLinearRemapClamp"][1]["argsT"][2]["name"] = "s1" +defs["igImLinearRemapClamp"][1]["argsT"][2]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][3] = {} +defs["igImLinearRemapClamp"][1]["argsT"][3]["name"] = "d0" +defs["igImLinearRemapClamp"][1]["argsT"][3]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][4] = {} +defs["igImLinearRemapClamp"][1]["argsT"][4]["name"] = "d1" +defs["igImLinearRemapClamp"][1]["argsT"][4]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][5] = {} +defs["igImLinearRemapClamp"][1]["argsT"][5]["name"] = "x" +defs["igImLinearRemapClamp"][1]["argsT"][5]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsoriginal"] = "(float s0,float s1,float d0,float d1,float x)" +defs["igImLinearRemapClamp"][1]["call_args"] = "(s0,s1,d0,d1,x)" +defs["igImLinearRemapClamp"][1]["cimguiname"] = "igImLinearRemapClamp" +defs["igImLinearRemapClamp"][1]["defaults"] = {} +defs["igImLinearRemapClamp"][1]["funcname"] = "ImLinearRemapClamp" +defs["igImLinearRemapClamp"][1]["location"] = "imgui_internal:490" +defs["igImLinearRemapClamp"][1]["ov_cimguiname"] = "igImLinearRemapClamp" +defs["igImLinearRemapClamp"][1]["ret"] = "float" +defs["igImLinearRemapClamp"][1]["signature"] = "(float,float,float,float,float)" +defs["igImLinearRemapClamp"][1]["stname"] = "" +defs["igImLinearRemapClamp"]["(float,float,float,float,float)"] = defs["igImLinearRemapClamp"][1] defs["igImLinearSweep"] = {} defs["igImLinearSweep"][1] = {} defs["igImLinearSweep"][1]["args"] = "(float current,float target,float speed)" @@ -19603,7 +20973,7 @@ defs["igImLinearSweep"][1]["call_args"] = "(current,target,speed)" defs["igImLinearSweep"][1]["cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["defaults"] = {} defs["igImLinearSweep"][1]["funcname"] = "ImLinearSweep" -defs["igImLinearSweep"][1]["location"] = "imgui_internal:487" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:489" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -19621,7 +20991,7 @@ defs["igImLog"][1]["call_args"] = "(x)" defs["igImLog"][1]["cimguiname"] = "igImLog" defs["igImLog"][1]["defaults"] = {} defs["igImLog"][1]["funcname"] = "ImLog" -defs["igImLog"][1]["location"] = "imgui_internal:446" +defs["igImLog"][1]["location"] = "imgui_internal:448" defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -19637,13 +21007,37 @@ defs["igImLog"][2]["call_args"] = "(x)" defs["igImLog"][2]["cimguiname"] = "igImLog" defs["igImLog"][2]["defaults"] = {} defs["igImLog"][2]["funcname"] = "ImLog" -defs["igImLog"][2]["location"] = "imgui_internal:447" +defs["igImLog"][2]["location"] = "imgui_internal:449" defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" defs["igImLog"][2]["stname"] = "" defs["igImLog"]["(double)"] = defs["igImLog"][2] defs["igImLog"]["(float)"] = defs["igImLog"][1] +defs["igImLowerBound"] = {} +defs["igImLowerBound"][1] = {} +defs["igImLowerBound"][1]["args"] = "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)" +defs["igImLowerBound"][1]["argsT"] = {} +defs["igImLowerBound"][1]["argsT"][1] = {} +defs["igImLowerBound"][1]["argsT"][1]["name"] = "in_begin" +defs["igImLowerBound"][1]["argsT"][1]["type"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["argsT"][2] = {} +defs["igImLowerBound"][1]["argsT"][2]["name"] = "in_end" +defs["igImLowerBound"][1]["argsT"][2]["type"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["argsT"][3] = {} +defs["igImLowerBound"][1]["argsT"][3]["name"] = "key" +defs["igImLowerBound"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImLowerBound"][1]["argsoriginal"] = "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)" +defs["igImLowerBound"][1]["call_args"] = "(in_begin,in_end,key)" +defs["igImLowerBound"][1]["cimguiname"] = "igImLowerBound" +defs["igImLowerBound"][1]["defaults"] = {} +defs["igImLowerBound"][1]["funcname"] = "ImLowerBound" +defs["igImLowerBound"][1]["location"] = "imgui_internal:740" +defs["igImLowerBound"][1]["ov_cimguiname"] = "igImLowerBound" +defs["igImLowerBound"][1]["ret"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["signature"] = "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)" +defs["igImLowerBound"][1]["stname"] = "" +defs["igImLowerBound"]["(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)"] = defs["igImLowerBound"][1] defs["igImMax"] = {} defs["igImMax"][1] = {} defs["igImMax"][1]["args"] = "(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs)" @@ -19662,7 +21056,7 @@ defs["igImMax"][1]["call_args"] = "(lhs,rhs)" defs["igImMax"][1]["cimguiname"] = "igImMax" defs["igImMax"][1]["defaults"] = {} defs["igImMax"][1]["funcname"] = "ImMax" -defs["igImMax"][1]["location"] = "imgui_internal:471" +defs["igImMax"][1]["location"] = "imgui_internal:473" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -19687,7 +21081,7 @@ defs["igImMin"][1]["call_args"] = "(lhs,rhs)" defs["igImMin"][1]["cimguiname"] = "igImMin" defs["igImMin"][1]["defaults"] = {} defs["igImMin"][1]["funcname"] = "ImMin" -defs["igImMin"][1]["location"] = "imgui_internal:470" +defs["igImMin"][1]["location"] = "imgui_internal:472" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -19709,7 +21103,7 @@ defs["igImModPositive"][1]["call_args"] = "(a,b)" defs["igImModPositive"][1]["cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["defaults"] = {} defs["igImModPositive"][1]["funcname"] = "ImModPositive" -defs["igImModPositive"][1]["location"] = "imgui_internal:484" +defs["igImModPositive"][1]["location"] = "imgui_internal:486" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -19733,7 +21127,7 @@ defs["igImMul"][1]["call_args"] = "(lhs,rhs)" defs["igImMul"][1]["cimguiname"] = "igImMul" defs["igImMul"][1]["defaults"] = {} defs["igImMul"][1]["funcname"] = "ImMul" -defs["igImMul"][1]["location"] = "imgui_internal:488" +defs["igImMul"][1]["location"] = "imgui_internal:491" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -19752,7 +21146,7 @@ defs["igImParseFormatFindEnd"][1]["call_args"] = "(format)" defs["igImParseFormatFindEnd"][1]["cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["defaults"] = {} defs["igImParseFormatFindEnd"][1]["funcname"] = "ImParseFormatFindEnd" -defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:370" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:394" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -19770,7 +21164,7 @@ defs["igImParseFormatFindStart"][1]["call_args"] = "(format)" defs["igImParseFormatFindStart"][1]["cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["defaults"] = {} defs["igImParseFormatFindStart"][1]["funcname"] = "ImParseFormatFindStart" -defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:369" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:393" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -19791,7 +21185,7 @@ defs["igImParseFormatPrecision"][1]["call_args"] = "(format,default_value)" defs["igImParseFormatPrecision"][1]["cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["defaults"] = {} defs["igImParseFormatPrecision"][1]["funcname"] = "ImParseFormatPrecision" -defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:374" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:398" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -19815,7 +21209,7 @@ defs["igImParseFormatSanitizeForPrinting"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForPrinting"][1]["cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["defaults"] = {} defs["igImParseFormatSanitizeForPrinting"][1]["funcname"] = "ImParseFormatSanitizeForPrinting" -defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:372" +defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:396" defs["igImParseFormatSanitizeForPrinting"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["ret"] = "void" defs["igImParseFormatSanitizeForPrinting"][1]["signature"] = "(const char*,char*,size_t)" @@ -19839,7 +21233,7 @@ defs["igImParseFormatSanitizeForScanning"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForScanning"][1]["cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["defaults"] = {} defs["igImParseFormatSanitizeForScanning"][1]["funcname"] = "ImParseFormatSanitizeForScanning" -defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:373" +defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:397" defs["igImParseFormatSanitizeForScanning"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["ret"] = "const char*" defs["igImParseFormatSanitizeForScanning"][1]["signature"] = "(const char*,char*,size_t)" @@ -19863,7 +21257,7 @@ defs["igImParseFormatTrimDecorations"][1]["call_args"] = "(format,buf,buf_size)" defs["igImParseFormatTrimDecorations"][1]["cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["defaults"] = {} defs["igImParseFormatTrimDecorations"][1]["funcname"] = "ImParseFormatTrimDecorations" -defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:371" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:395" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -19884,7 +21278,7 @@ defs["igImPow"][1]["call_args"] = "(x,y)" defs["igImPow"][1]["cimguiname"] = "igImPow" defs["igImPow"][1]["defaults"] = {} defs["igImPow"][1]["funcname"] = "ImPow" -defs["igImPow"][1]["location"] = "imgui_internal:444" +defs["igImPow"][1]["location"] = "imgui_internal:446" defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -19903,7 +21297,7 @@ defs["igImPow"][2]["call_args"] = "(x,y)" defs["igImPow"][2]["cimguiname"] = "igImPow" defs["igImPow"][2]["defaults"] = {} defs["igImPow"][2]["funcname"] = "ImPow" -defs["igImPow"][2]["location"] = "imgui_internal:445" +defs["igImPow"][2]["location"] = "imgui_internal:447" defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -19933,7 +21327,7 @@ defs["igImQsort"][1]["call_args"] = "(base,count,size_of_element,compare_func)" defs["igImQsort"][1]["cimguiname"] = "igImQsort" defs["igImQsort"][1]["defaults"] = {} defs["igImQsort"][1]["funcname"] = "ImQsort" -defs["igImQsort"][1]["location"] = "imgui_internal:334" +defs["igImQsort"][1]["location"] = "imgui_internal:357" defs["igImQsort"][1]["ov_cimguiname"] = "igImQsort" defs["igImQsort"][1]["ret"] = "void" defs["igImQsort"][1]["signature"] = "(void*,size_t,size_t,int(*)(void const*,void const*))" @@ -19960,7 +21354,7 @@ defs["igImRotate"][1]["call_args"] = "(v,cos_a,sin_a)" defs["igImRotate"][1]["cimguiname"] = "igImRotate" defs["igImRotate"][1]["defaults"] = {} defs["igImRotate"][1]["funcname"] = "ImRotate" -defs["igImRotate"][1]["location"] = "imgui_internal:486" +defs["igImRotate"][1]["location"] = "imgui_internal:488" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -19979,7 +21373,7 @@ defs["igImRsqrt"][1]["call_args"] = "(x)" defs["igImRsqrt"][1]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][1]["defaults"] = {} defs["igImRsqrt"][1]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][1]["location"] = "imgui_internal:454" +defs["igImRsqrt"][1]["location"] = "imgui_internal:458" defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -19995,7 +21389,7 @@ defs["igImRsqrt"][2]["call_args"] = "(x)" defs["igImRsqrt"][2]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][2]["defaults"] = {} defs["igImRsqrt"][2]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][2]["location"] = "imgui_internal:458" +defs["igImRsqrt"][2]["location"] = "imgui_internal:460" defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -20014,7 +21408,7 @@ defs["igImSaturate"][1]["call_args"] = "(f)" defs["igImSaturate"][1]["cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["defaults"] = {} defs["igImSaturate"][1]["funcname"] = "ImSaturate" -defs["igImSaturate"][1]["location"] = "imgui_internal:476" +defs["igImSaturate"][1]["location"] = "imgui_internal:478" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -20032,7 +21426,7 @@ defs["igImSign"][1]["call_args"] = "(x)" defs["igImSign"][1]["cimguiname"] = "igImSign" defs["igImSign"][1]["defaults"] = {} defs["igImSign"][1]["funcname"] = "ImSign" -defs["igImSign"][1]["location"] = "imgui_internal:451" +defs["igImSign"][1]["location"] = "imgui_internal:453" defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -20048,7 +21442,7 @@ defs["igImSign"][2]["call_args"] = "(x)" defs["igImSign"][2]["cimguiname"] = "igImSign" defs["igImSign"][2]["defaults"] = {} defs["igImSign"][2]["funcname"] = "ImSign" -defs["igImSign"][2]["location"] = "imgui_internal:452" +defs["igImSign"][2]["location"] = "imgui_internal:454" defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -20067,7 +21461,7 @@ defs["igImStrSkipBlank"][1]["call_args"] = "(str)" defs["igImStrSkipBlank"][1]["cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["defaults"] = {} defs["igImStrSkipBlank"][1]["funcname"] = "ImStrSkipBlank" -defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:357" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:378" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -20085,33 +21479,33 @@ defs["igImStrTrimBlanks"][1]["call_args"] = "(str)" defs["igImStrTrimBlanks"][1]["cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["defaults"] = {} defs["igImStrTrimBlanks"][1]["funcname"] = "ImStrTrimBlanks" -defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:356" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:377" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" defs["igImStrTrimBlanks"][1]["stname"] = "" defs["igImStrTrimBlanks"]["(char*)"] = defs["igImStrTrimBlanks"][1] -defs["igImStrbolW"] = {} -defs["igImStrbolW"][1] = {} -defs["igImStrbolW"][1]["args"] = "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)" -defs["igImStrbolW"][1]["argsT"] = {} -defs["igImStrbolW"][1]["argsT"][1] = {} -defs["igImStrbolW"][1]["argsT"][1]["name"] = "buf_mid_line" -defs["igImStrbolW"][1]["argsT"][1]["type"] = "const ImWchar*" -defs["igImStrbolW"][1]["argsT"][2] = {} -defs["igImStrbolW"][1]["argsT"][2]["name"] = "buf_begin" -defs["igImStrbolW"][1]["argsT"][2]["type"] = "const ImWchar*" -defs["igImStrbolW"][1]["argsoriginal"] = "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)" -defs["igImStrbolW"][1]["call_args"] = "(buf_mid_line,buf_begin)" -defs["igImStrbolW"][1]["cimguiname"] = "igImStrbolW" -defs["igImStrbolW"][1]["defaults"] = {} -defs["igImStrbolW"][1]["funcname"] = "ImStrbolW" -defs["igImStrbolW"][1]["location"] = "imgui_internal:354" -defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" -defs["igImStrbolW"][1]["ret"] = "const ImWchar*" -defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" -defs["igImStrbolW"][1]["stname"] = "" -defs["igImStrbolW"]["(const ImWchar*,const ImWchar*)"] = defs["igImStrbolW"][1] +defs["igImStrbol"] = {} +defs["igImStrbol"][1] = {} +defs["igImStrbol"][1]["args"] = "(const char* buf_mid_line,const char* buf_begin)" +defs["igImStrbol"][1]["argsT"] = {} +defs["igImStrbol"][1]["argsT"][1] = {} +defs["igImStrbol"][1]["argsT"][1]["name"] = "buf_mid_line" +defs["igImStrbol"][1]["argsT"][1]["type"] = "const char*" +defs["igImStrbol"][1]["argsT"][2] = {} +defs["igImStrbol"][1]["argsT"][2]["name"] = "buf_begin" +defs["igImStrbol"][1]["argsT"][2]["type"] = "const char*" +defs["igImStrbol"][1]["argsoriginal"] = "(const char* buf_mid_line,const char* buf_begin)" +defs["igImStrbol"][1]["call_args"] = "(buf_mid_line,buf_begin)" +defs["igImStrbol"][1]["cimguiname"] = "igImStrbol" +defs["igImStrbol"][1]["defaults"] = {} +defs["igImStrbol"][1]["funcname"] = "ImStrbol" +defs["igImStrbol"][1]["location"] = "imgui_internal:380" +defs["igImStrbol"][1]["ov_cimguiname"] = "igImStrbol" +defs["igImStrbol"][1]["ret"] = "const char*" +defs["igImStrbol"][1]["signature"] = "(const char*,const char*)" +defs["igImStrbol"][1]["stname"] = "" +defs["igImStrbol"]["(const char*,const char*)"] = defs["igImStrbol"][1] defs["igImStrchrRange"] = {} defs["igImStrchrRange"][1] = {} defs["igImStrchrRange"][1]["args"] = "(const char* str_begin,const char* str_end,char c)" @@ -20130,7 +21524,7 @@ defs["igImStrchrRange"][1]["call_args"] = "(str_begin,str_end,c)" defs["igImStrchrRange"][1]["cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["defaults"] = {} defs["igImStrchrRange"][1]["funcname"] = "ImStrchrRange" -defs["igImStrchrRange"][1]["location"] = "imgui_internal:351" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:374" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -20148,7 +21542,7 @@ defs["igImStrdup"][1]["call_args"] = "(str)" defs["igImStrdup"][1]["cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["defaults"] = {} defs["igImStrdup"][1]["funcname"] = "ImStrdup" -defs["igImStrdup"][1]["location"] = "imgui_internal:349" +defs["igImStrdup"][1]["location"] = "imgui_internal:372" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -20172,7 +21566,7 @@ defs["igImStrdupcpy"][1]["call_args"] = "(dst,p_dst_size,str)" defs["igImStrdupcpy"][1]["cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["defaults"] = {} defs["igImStrdupcpy"][1]["funcname"] = "ImStrdupcpy" -defs["igImStrdupcpy"][1]["location"] = "imgui_internal:350" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:373" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -20193,7 +21587,7 @@ defs["igImStreolRange"][1]["call_args"] = "(str,str_end)" defs["igImStreolRange"][1]["cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["defaults"] = {} defs["igImStreolRange"][1]["funcname"] = "ImStreolRange" -defs["igImStreolRange"][1]["location"] = "imgui_internal:353" +defs["igImStreolRange"][1]["location"] = "imgui_internal:375" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -20214,7 +21608,7 @@ defs["igImStricmp"][1]["call_args"] = "(str1,str2)" defs["igImStricmp"][1]["cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["defaults"] = {} defs["igImStricmp"][1]["funcname"] = "ImStricmp" -defs["igImStricmp"][1]["location"] = "imgui_internal:346" +defs["igImStricmp"][1]["location"] = "imgui_internal:369" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -20241,7 +21635,7 @@ defs["igImStristr"][1]["call_args"] = "(haystack,haystack_end,needle,needle_end) defs["igImStristr"][1]["cimguiname"] = "igImStristr" defs["igImStristr"][1]["defaults"] = {} defs["igImStristr"][1]["funcname"] = "ImStristr" -defs["igImStristr"][1]["location"] = "imgui_internal:355" +defs["igImStristr"][1]["location"] = "imgui_internal:376" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -20259,7 +21653,7 @@ defs["igImStrlenW"][1]["call_args"] = "(str)" defs["igImStrlenW"][1]["cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["defaults"] = {} defs["igImStrlenW"][1]["funcname"] = "ImStrlenW" -defs["igImStrlenW"][1]["location"] = "imgui_internal:352" +defs["igImStrlenW"][1]["location"] = "imgui_internal:379" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -20283,7 +21677,7 @@ defs["igImStrncpy"][1]["call_args"] = "(dst,src,count)" defs["igImStrncpy"][1]["cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["defaults"] = {} defs["igImStrncpy"][1]["funcname"] = "ImStrncpy" -defs["igImStrncpy"][1]["location"] = "imgui_internal:348" +defs["igImStrncpy"][1]["location"] = "imgui_internal:371" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -20307,7 +21701,7 @@ defs["igImStrnicmp"][1]["call_args"] = "(str1,str2,count)" defs["igImStrnicmp"][1]["cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["defaults"] = {} defs["igImStrnicmp"][1]["funcname"] = "ImStrnicmp" -defs["igImStrnicmp"][1]["location"] = "imgui_internal:347" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:370" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -20331,7 +21725,7 @@ defs["igImTextCharFromUtf8"][1]["call_args"] = "(out_char,in_text,in_text_end)" defs["igImTextCharFromUtf8"][1]["cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["defaults"] = {} defs["igImTextCharFromUtf8"][1]["funcname"] = "ImTextCharFromUtf8" -defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:379" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:403" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -20352,7 +21746,7 @@ defs["igImTextCharToUtf8"][1]["call_args"] = "(out_buf,c)" defs["igImTextCharToUtf8"][1]["cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["defaults"] = {} defs["igImTextCharToUtf8"][1]["funcname"] = "ImTextCharToUtf8" -defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:377" +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:401" defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -20373,12 +21767,33 @@ defs["igImTextCountCharsFromUtf8"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountCharsFromUtf8"][1]["cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["defaults"] = {} defs["igImTextCountCharsFromUtf8"][1]["funcname"] = "ImTextCountCharsFromUtf8" -defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:381" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:405" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" defs["igImTextCountCharsFromUtf8"][1]["stname"] = "" defs["igImTextCountCharsFromUtf8"]["(const char*,const char*)"] = defs["igImTextCountCharsFromUtf8"][1] +defs["igImTextCountLines"] = {} +defs["igImTextCountLines"][1] = {} +defs["igImTextCountLines"][1]["args"] = "(const char* in_text,const char* in_text_end)" +defs["igImTextCountLines"][1]["argsT"] = {} +defs["igImTextCountLines"][1]["argsT"][1] = {} +defs["igImTextCountLines"][1]["argsT"][1]["name"] = "in_text" +defs["igImTextCountLines"][1]["argsT"][1]["type"] = "const char*" +defs["igImTextCountLines"][1]["argsT"][2] = {} +defs["igImTextCountLines"][1]["argsT"][2]["name"] = "in_text_end" +defs["igImTextCountLines"][1]["argsT"][2]["type"] = "const char*" +defs["igImTextCountLines"][1]["argsoriginal"] = "(const char* in_text,const char* in_text_end)" +defs["igImTextCountLines"][1]["call_args"] = "(in_text,in_text_end)" +defs["igImTextCountLines"][1]["cimguiname"] = "igImTextCountLines" +defs["igImTextCountLines"][1]["defaults"] = {} +defs["igImTextCountLines"][1]["funcname"] = "ImTextCountLines" +defs["igImTextCountLines"][1]["location"] = "imgui_internal:409" +defs["igImTextCountLines"][1]["ov_cimguiname"] = "igImTextCountLines" +defs["igImTextCountLines"][1]["ret"] = "int" +defs["igImTextCountLines"][1]["signature"] = "(const char*,const char*)" +defs["igImTextCountLines"][1]["stname"] = "" +defs["igImTextCountLines"]["(const char*,const char*)"] = defs["igImTextCountLines"][1] defs["igImTextCountUtf8BytesFromChar"] = {} defs["igImTextCountUtf8BytesFromChar"][1] = {} defs["igImTextCountUtf8BytesFromChar"][1]["args"] = "(const char* in_text,const char* in_text_end)" @@ -20394,7 +21809,7 @@ defs["igImTextCountUtf8BytesFromChar"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromChar"][1]["cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromChar"][1]["funcname"] = "ImTextCountUtf8BytesFromChar" -defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:382" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:406" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -20415,12 +21830,33 @@ defs["igImTextCountUtf8BytesFromStr"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromStr"][1]["cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromStr"][1]["funcname"] = "ImTextCountUtf8BytesFromStr" -defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:383" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:407" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" defs["igImTextCountUtf8BytesFromStr"][1]["stname"] = "" defs["igImTextCountUtf8BytesFromStr"]["(const ImWchar*,const ImWchar*)"] = defs["igImTextCountUtf8BytesFromStr"][1] +defs["igImTextFindPreviousUtf8Codepoint"] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["args"] = "(const char* in_text_start,const char* in_text_curr)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][1] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][1]["name"] = "in_text_start" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][1]["type"] = "const char*" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][2] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][2]["name"] = "in_text_curr" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][2]["type"] = "const char*" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsoriginal"] = "(const char* in_text_start,const char* in_text_curr)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["call_args"] = "(in_text_start,in_text_curr)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["cimguiname"] = "igImTextFindPreviousUtf8Codepoint" +defs["igImTextFindPreviousUtf8Codepoint"][1]["defaults"] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["funcname"] = "ImTextFindPreviousUtf8Codepoint" +defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:408" +defs["igImTextFindPreviousUtf8Codepoint"][1]["ov_cimguiname"] = "igImTextFindPreviousUtf8Codepoint" +defs["igImTextFindPreviousUtf8Codepoint"][1]["ret"] = "const char*" +defs["igImTextFindPreviousUtf8Codepoint"][1]["signature"] = "(const char*,const char*)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["stname"] = "" +defs["igImTextFindPreviousUtf8Codepoint"]["(const char*,const char*)"] = defs["igImTextFindPreviousUtf8Codepoint"][1] defs["igImTextStrFromUtf8"] = {} defs["igImTextStrFromUtf8"][1] = {} defs["igImTextStrFromUtf8"][1]["args"] = "(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining)" @@ -20446,7 +21882,7 @@ defs["igImTextStrFromUtf8"][1]["cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["defaults"] = {} defs["igImTextStrFromUtf8"][1]["defaults"]["in_remaining"] = "NULL" defs["igImTextStrFromUtf8"][1]["funcname"] = "ImTextStrFromUtf8" -defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:380" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:404" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -20473,7 +21909,7 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(out_buf,out_buf_size,in_text,in_te defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:378" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:402" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -20491,7 +21927,7 @@ defs["igImToUpper"][1]["call_args"] = "(c)" defs["igImToUpper"][1]["cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["defaults"] = {} defs["igImToUpper"][1]["funcname"] = "ImToUpper" -defs["igImToUpper"][1]["location"] = "imgui_internal:359" +defs["igImToUpper"][1]["location"] = "imgui_internal:382" defs["igImToUpper"][1]["ov_cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["ret"] = "char" defs["igImToUpper"][1]["signature"] = "(char)" @@ -20515,7 +21951,7 @@ defs["igImTriangleArea"][1]["call_args"] = "(a,b,c)" defs["igImTriangleArea"][1]["cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["defaults"] = {} defs["igImTriangleArea"][1]["funcname"] = "ImTriangleArea" -defs["igImTriangleArea"][1]["location"] = "imgui_internal:502" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:505" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -20554,7 +21990,7 @@ defs["igImTriangleBarycentricCoords"][1]["call_args"] = "(a,b,c,p,*out_u,*out_v, defs["igImTriangleBarycentricCoords"][1]["cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["defaults"] = {} defs["igImTriangleBarycentricCoords"][1]["funcname"] = "ImTriangleBarycentricCoords" -defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:501" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:504" defs["igImTriangleBarycentricCoords"][1]["ov_cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["ret"] = "void" defs["igImTriangleBarycentricCoords"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)" @@ -20584,7 +22020,7 @@ defs["igImTriangleClosestPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleClosestPoint"][1]["cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["defaults"] = {} defs["igImTriangleClosestPoint"][1]["funcname"] = "ImTriangleClosestPoint" -defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:500" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:503" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -20612,12 +22048,75 @@ defs["igImTriangleContainsPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleContainsPoint"][1]["cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["defaults"] = {} defs["igImTriangleContainsPoint"][1]["funcname"] = "ImTriangleContainsPoint" -defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:499" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:502" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" defs["igImTriangleContainsPoint"][1]["stname"] = "" defs["igImTriangleContainsPoint"]["(const ImVec2,const ImVec2,const ImVec2,const ImVec2)"] = defs["igImTriangleContainsPoint"][1] +defs["igImTriangleIsClockwise"] = {} +defs["igImTriangleIsClockwise"][1] = {} +defs["igImTriangleIsClockwise"][1]["args"] = "(const ImVec2 a,const ImVec2 b,const ImVec2 c)" +defs["igImTriangleIsClockwise"][1]["argsT"] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][1] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][1]["name"] = "a" +defs["igImTriangleIsClockwise"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igImTriangleIsClockwise"][1]["argsT"][2] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][2]["name"] = "b" +defs["igImTriangleIsClockwise"][1]["argsT"][2]["type"] = "const ImVec2" +defs["igImTriangleIsClockwise"][1]["argsT"][3] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][3]["name"] = "c" +defs["igImTriangleIsClockwise"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igImTriangleIsClockwise"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c)" +defs["igImTriangleIsClockwise"][1]["call_args"] = "(a,b,c)" +defs["igImTriangleIsClockwise"][1]["cimguiname"] = "igImTriangleIsClockwise" +defs["igImTriangleIsClockwise"][1]["defaults"] = {} +defs["igImTriangleIsClockwise"][1]["funcname"] = "ImTriangleIsClockwise" +defs["igImTriangleIsClockwise"][1]["location"] = "imgui_internal:506" +defs["igImTriangleIsClockwise"][1]["ov_cimguiname"] = "igImTriangleIsClockwise" +defs["igImTriangleIsClockwise"][1]["ret"] = "bool" +defs["igImTriangleIsClockwise"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" +defs["igImTriangleIsClockwise"][1]["stname"] = "" +defs["igImTriangleIsClockwise"]["(const ImVec2,const ImVec2,const ImVec2)"] = defs["igImTriangleIsClockwise"][1] +defs["igImTrunc"] = {} +defs["igImTrunc"][1] = {} +defs["igImTrunc"][1]["args"] = "(float f)" +defs["igImTrunc"][1]["argsT"] = {} +defs["igImTrunc"][1]["argsT"][1] = {} +defs["igImTrunc"][1]["argsT"][1]["name"] = "f" +defs["igImTrunc"][1]["argsT"][1]["type"] = "float" +defs["igImTrunc"][1]["argsoriginal"] = "(float f)" +defs["igImTrunc"][1]["call_args"] = "(f)" +defs["igImTrunc"][1]["cimguiname"] = "igImTrunc" +defs["igImTrunc"][1]["defaults"] = {} +defs["igImTrunc"][1]["funcname"] = "ImTrunc" +defs["igImTrunc"][1]["location"] = "imgui_internal:482" +defs["igImTrunc"][1]["ov_cimguiname"] = "igImTrunc_Float" +defs["igImTrunc"][1]["ret"] = "float" +defs["igImTrunc"][1]["signature"] = "(float)" +defs["igImTrunc"][1]["stname"] = "" +defs["igImTrunc"][2] = {} +defs["igImTrunc"][2]["args"] = "(ImVec2 *pOut,const ImVec2 v)" +defs["igImTrunc"][2]["argsT"] = {} +defs["igImTrunc"][2]["argsT"][1] = {} +defs["igImTrunc"][2]["argsT"][1]["name"] = "pOut" +defs["igImTrunc"][2]["argsT"][1]["type"] = "ImVec2*" +defs["igImTrunc"][2]["argsT"][2] = {} +defs["igImTrunc"][2]["argsT"][2]["name"] = "v" +defs["igImTrunc"][2]["argsT"][2]["type"] = "const ImVec2" +defs["igImTrunc"][2]["argsoriginal"] = "(const ImVec2& v)" +defs["igImTrunc"][2]["call_args"] = "(v)" +defs["igImTrunc"][2]["cimguiname"] = "igImTrunc" +defs["igImTrunc"][2]["defaults"] = {} +defs["igImTrunc"][2]["funcname"] = "ImTrunc" +defs["igImTrunc"][2]["location"] = "imgui_internal:483" +defs["igImTrunc"][2]["nonUDT"] = 1 +defs["igImTrunc"][2]["ov_cimguiname"] = "igImTrunc_Vec2" +defs["igImTrunc"][2]["ret"] = "void" +defs["igImTrunc"][2]["signature"] = "(const ImVec2)" +defs["igImTrunc"][2]["stname"] = "" +defs["igImTrunc"]["(const ImVec2)"] = defs["igImTrunc"][2] +defs["igImTrunc"]["(float)"] = defs["igImTrunc"][1] defs["igImUpperPowerOfTwo"] = {} defs["igImUpperPowerOfTwo"][1] = {} defs["igImUpperPowerOfTwo"][1]["args"] = "(int v)" @@ -20630,7 +22129,7 @@ defs["igImUpperPowerOfTwo"][1]["call_args"] = "(v)" defs["igImUpperPowerOfTwo"][1]["cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["defaults"] = {} defs["igImUpperPowerOfTwo"][1]["funcname"] = "ImUpperPowerOfTwo" -defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:343" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:366" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -20638,13 +22137,13 @@ defs["igImUpperPowerOfTwo"][1]["stname"] = "" defs["igImUpperPowerOfTwo"]["(int)"] = defs["igImUpperPowerOfTwo"][1] defs["igImage"] = {} defs["igImage"][1] = {} -defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" +defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" defs["igImage"][1]["argsT"] = {} defs["igImage"][1]["argsT"][1] = {} defs["igImage"][1]["argsT"][1]["name"] = "user_texture_id" defs["igImage"][1]["argsT"][1]["type"] = "ImTextureID" defs["igImage"][1]["argsT"][2] = {} -defs["igImage"][1]["argsT"][2]["name"] = "size" +defs["igImage"][1]["argsT"][2]["name"] = "image_size" defs["igImage"][1]["argsT"][2]["type"] = "const ImVec2" defs["igImage"][1]["argsT"][3] = {} defs["igImage"][1]["argsT"][3]["name"] = "uv0" @@ -20658,8 +22157,8 @@ defs["igImage"][1]["argsT"][5]["type"] = "const ImVec4" defs["igImage"][1]["argsT"][6] = {} defs["igImage"][1]["argsT"][6]["name"] = "border_col" defs["igImage"][1]["argsT"][6]["type"] = "const ImVec4" -defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" -defs["igImage"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,tint_col,border_col)" +defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" +defs["igImage"][1]["call_args"] = "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)" defs["igImage"][1]["cimguiname"] = "igImage" defs["igImage"][1]["defaults"] = {} defs["igImage"][1]["defaults"]["border_col"] = "ImVec4(0,0,0,0)" @@ -20667,7 +22166,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:523" +defs["igImage"][1]["location"] = "imgui:572" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -20676,7 +22175,7 @@ defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} -defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" defs["igImageButton"][1]["argsT"] = {} defs["igImageButton"][1]["argsT"][1] = {} defs["igImageButton"][1]["argsT"][1]["name"] = "str_id" @@ -20685,7 +22184,7 @@ defs["igImageButton"][1]["argsT"][2] = {} defs["igImageButton"][1]["argsT"][2]["name"] = "user_texture_id" defs["igImageButton"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButton"][1]["argsT"][3] = {} -defs["igImageButton"][1]["argsT"][3]["name"] = "size" +defs["igImageButton"][1]["argsT"][3]["name"] = "image_size" defs["igImageButton"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][4] = {} defs["igImageButton"][1]["argsT"][4]["name"] = "uv0" @@ -20699,8 +22198,8 @@ defs["igImageButton"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButton"][1]["argsT"][7] = {} defs["igImageButton"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButton"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" -defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)" +defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" +defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)" defs["igImageButton"][1]["cimguiname"] = "igImageButton" defs["igImageButton"][1]["defaults"] = {} defs["igImageButton"][1]["defaults"]["bg_col"] = "ImVec4(0,0,0,0)" @@ -20708,7 +22207,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:524" +defs["igImageButton"][1]["location"] = "imgui:573" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -20717,7 +22216,7 @@ defs["igImageButton"][1]["stname"] = "" defs["igImageButton"]["(const char*,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButton"][1] defs["igImageButtonEx"] = {} defs["igImageButtonEx"][1] = {} -defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)" defs["igImageButtonEx"][1]["argsT"] = {} defs["igImageButtonEx"][1]["argsT"][1] = {} defs["igImageButtonEx"][1]["argsT"][1]["name"] = "id" @@ -20726,7 +22225,7 @@ defs["igImageButtonEx"][1]["argsT"][2] = {} defs["igImageButtonEx"][1]["argsT"][2]["name"] = "texture_id" defs["igImageButtonEx"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButtonEx"][1]["argsT"][3] = {} -defs["igImageButtonEx"][1]["argsT"][3]["name"] = "size" +defs["igImageButtonEx"][1]["argsT"][3]["name"] = "image_size" defs["igImageButtonEx"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButtonEx"][1]["argsT"][4] = {} defs["igImageButtonEx"][1]["argsT"][4]["name"] = "uv0" @@ -20740,18 +22239,22 @@ defs["igImageButtonEx"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButtonEx"][1]["argsT"][7] = {} defs["igImageButtonEx"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButtonEx"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col)" -defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,bg_col,tint_col)" +defs["igImageButtonEx"][1]["argsT"][8] = {} +defs["igImageButtonEx"][1]["argsT"][8]["name"] = "flags" +defs["igImageButtonEx"][1]["argsT"][8]["type"] = "ImGuiButtonFlags" +defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)" +defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)" defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} +defs["igImageButtonEx"][1]["defaults"]["flags"] = "0" defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:3371" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3847" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" -defs["igImageButtonEx"][1]["signature"] = "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" +defs["igImageButtonEx"][1]["signature"] = "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4,ImGuiButtonFlags)" defs["igImageButtonEx"][1]["stname"] = "" -defs["igImageButtonEx"]["(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButtonEx"][1] +defs["igImageButtonEx"]["(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4,ImGuiButtonFlags)"] = defs["igImageButtonEx"][1] defs["igIndent"] = {} defs["igIndent"][1] = {} defs["igIndent"][1]["args"] = "(float indent_w)" @@ -20765,7 +22268,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:452" +defs["igIndent"][1]["location"] = "imgui:504" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -20781,7 +22284,7 @@ defs["igInitialize"][1]["call_args"] = "()" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:2981" +defs["igInitialize"][1]["location"] = "imgui_internal:3397" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -20819,7 +22322,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:595" +defs["igInputDouble"][1]["location"] = "imgui:644" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -20857,7 +22360,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:587" +defs["igInputFloat"][1]["location"] = "imgui:636" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -20887,7 +22390,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:588" +defs["igInputFloat2"][1]["location"] = "imgui:637" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -20917,7 +22420,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:589" +defs["igInputFloat3"][1]["location"] = "imgui:638" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -20947,7 +22450,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:590" +defs["igInputFloat4"][1]["location"] = "imgui:639" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -20981,7 +22484,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:591" +defs["igInputInt"][1]["location"] = "imgui:640" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -21007,7 +22510,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:592" +defs["igInputInt2"][1]["location"] = "imgui:641" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -21033,7 +22536,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:593" +defs["igInputInt3"][1]["location"] = "imgui:642" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -21059,7 +22562,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:594" +defs["igInputInt4"][1]["location"] = "imgui:643" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -21100,7 +22603,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:596" +defs["igInputScalar"][1]["location"] = "imgui:645" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -21144,7 +22647,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:597" +defs["igInputScalarN"][1]["location"] = "imgui:646" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -21181,13 +22684,32 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:584" +defs["igInputText"][1]["location"] = "imgui:633" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" defs["igInputText"][1]["signature"] = "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" defs["igInputText"][1]["stname"] = "" defs["igInputText"]["(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"] = defs["igInputText"][1] +defs["igInputTextDeactivateHook"] = {} +defs["igInputTextDeactivateHook"][1] = {} +defs["igInputTextDeactivateHook"][1]["args"] = "(ImGuiID id)" +defs["igInputTextDeactivateHook"][1]["argsT"] = {} +defs["igInputTextDeactivateHook"][1]["argsT"][1] = {} +defs["igInputTextDeactivateHook"][1]["argsT"][1]["name"] = "id" +defs["igInputTextDeactivateHook"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igInputTextDeactivateHook"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igInputTextDeactivateHook"][1]["call_args"] = "(id)" +defs["igInputTextDeactivateHook"][1]["cimguiname"] = "igInputTextDeactivateHook" +defs["igInputTextDeactivateHook"][1]["defaults"] = {} +defs["igInputTextDeactivateHook"][1]["funcname"] = "InputTextDeactivateHook" +defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3896" +defs["igInputTextDeactivateHook"][1]["namespace"] = "ImGui" +defs["igInputTextDeactivateHook"][1]["ov_cimguiname"] = "igInputTextDeactivateHook" +defs["igInputTextDeactivateHook"][1]["ret"] = "void" +defs["igInputTextDeactivateHook"][1]["signature"] = "(ImGuiID)" +defs["igInputTextDeactivateHook"][1]["stname"] = "" +defs["igInputTextDeactivateHook"]["(ImGuiID)"] = defs["igInputTextDeactivateHook"][1] defs["igInputTextEx"] = {} defs["igInputTextEx"][1] = {} defs["igInputTextEx"][1]["args"] = "(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data)" @@ -21223,7 +22745,7 @@ defs["igInputTextEx"][1]["defaults"] = {} defs["igInputTextEx"][1]["defaults"]["callback"] = "NULL" defs["igInputTextEx"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextEx"][1]["funcname"] = "InputTextEx" -defs["igInputTextEx"][1]["location"] = "imgui_internal:3415" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3895" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -21264,7 +22786,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:585" +defs["igInputTextMultiline"][1]["location"] = "imgui:634" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -21304,7 +22826,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:586" +defs["igInputTextWithHint"][1]["location"] = "imgui:635" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -21330,7 +22852,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:511" +defs["igInvisibleButton"][1]["location"] = "imgui:556" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -21349,7 +22871,7 @@ defs["igIsActiveIdUsingNavDir"][1]["call_args"] = "(dir)" defs["igIsActiveIdUsingNavDir"][1]["cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["defaults"] = {} defs["igIsActiveIdUsingNavDir"][1]["funcname"] = "IsActiveIdUsingNavDir" -defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3143" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3582" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -21368,7 +22890,7 @@ defs["igIsAliasKey"][1]["call_args"] = "(key)" defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["defaults"] = {} defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" -defs["igIsAliasKey"][1]["location"] = "imgui_internal:3121" +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3559" defs["igIsAliasKey"][1]["namespace"] = "ImGui" defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["ret"] = "bool" @@ -21384,7 +22906,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui:876" +defs["igIsAnyItemActive"][1]["location"] = "imgui:950" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -21400,7 +22922,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui:877" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:951" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -21416,7 +22938,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui:875" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:949" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -21432,7 +22954,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui:940" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1036" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -21454,7 +22976,7 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" -defs["igIsClippedEx"][1]["location"] = "imgui_internal:3055" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:3477" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -21470,7 +22992,7 @@ defs["igIsDragDropActive"][1]["call_args"] = "()" defs["igIsDragDropActive"][1]["cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["defaults"] = {} defs["igIsDragDropActive"][1]["funcname"] = "IsDragDropActive" -defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3255" +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3704" defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -21486,7 +23008,7 @@ defs["igIsDragDropPayloadBeingAccepted"][1]["call_args"] = "()" defs["igIsDragDropPayloadBeingAccepted"][1]["cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["defaults"] = {} defs["igIsDragDropPayloadBeingAccepted"][1]["funcname"] = "IsDragDropPayloadBeingAccepted" -defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3258" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3707" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -21505,7 +23027,7 @@ defs["igIsGamepadKey"][1]["call_args"] = "(key)" defs["igIsGamepadKey"][1]["cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["defaults"] = {} defs["igIsGamepadKey"][1]["funcname"] = "IsGamepadKey" -defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3119" +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3557" defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -21521,7 +23043,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui:871" +defs["igIsItemActivated"][1]["location"] = "imgui:945" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -21537,7 +23059,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui:866" +defs["igIsItemActive"][1]["location"] = "imgui:940" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -21557,7 +23079,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui:868" +defs["igIsItemClicked"][1]["location"] = "imgui:942" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -21573,7 +23095,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui:872" +defs["igIsItemDeactivated"][1]["location"] = "imgui:946" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -21589,7 +23111,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:873" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:947" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -21605,7 +23127,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui:870" +defs["igIsItemEdited"][1]["location"] = "imgui:944" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -21621,7 +23143,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui:867" +defs["igIsItemFocused"][1]["location"] = "imgui:941" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -21641,7 +23163,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui:865" +defs["igIsItemHovered"][1]["location"] = "imgui:939" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -21657,7 +23179,7 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui:874" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:948" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -21673,7 +23195,7 @@ defs["igIsItemToggledSelection"][1]["call_args"] = "()" defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["defaults"] = {} defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" -defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:3060" +defs["igIsItemToggledSelection"][1]["location"] = "imgui:695" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -21689,13 +23211,57 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui:869" +defs["igIsItemVisible"][1]["location"] = "imgui:943" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" defs["igIsItemVisible"][1]["signature"] = "()" defs["igIsItemVisible"][1]["stname"] = "" defs["igIsItemVisible"]["()"] = defs["igIsItemVisible"][1] +defs["igIsKeyChordPressed"] = {} +defs["igIsKeyChordPressed"][1] = {} +defs["igIsKeyChordPressed"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["argsT"] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1]["name"] = "key_chord" +defs["igIsKeyChordPressed"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igIsKeyChordPressed"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" +defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["defaults"] = {} +defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:994" +defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" +defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed_Nil" +defs["igIsKeyChordPressed"][1]["ret"] = "bool" +defs["igIsKeyChordPressed"][1]["signature"] = "(ImGuiKeyChord)" +defs["igIsKeyChordPressed"][1]["stname"] = "" +defs["igIsKeyChordPressed"][2] = {} +defs["igIsKeyChordPressed"][2]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igIsKeyChordPressed"][2]["argsT"] = {} +defs["igIsKeyChordPressed"][2]["argsT"][1] = {} +defs["igIsKeyChordPressed"][2]["argsT"][1]["name"] = "key_chord" +defs["igIsKeyChordPressed"][2]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igIsKeyChordPressed"][2]["argsT"][2] = {} +defs["igIsKeyChordPressed"][2]["argsT"][2]["name"] = "flags" +defs["igIsKeyChordPressed"][2]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igIsKeyChordPressed"][2]["argsT"][3] = {} +defs["igIsKeyChordPressed"][2]["argsT"][3]["name"] = "owner_id" +defs["igIsKeyChordPressed"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igIsKeyChordPressed"][2]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id=0)" +defs["igIsKeyChordPressed"][2]["call_args"] = "(key_chord,flags,owner_id)" +defs["igIsKeyChordPressed"][2]["cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][2]["defaults"] = {} +defs["igIsKeyChordPressed"][2]["defaults"]["owner_id"] = "0" +defs["igIsKeyChordPressed"][2]["funcname"] = "IsKeyChordPressed" +defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3611" +defs["igIsKeyChordPressed"][2]["namespace"] = "ImGui" +defs["igIsKeyChordPressed"][2]["ov_cimguiname"] = "igIsKeyChordPressed_InputFlags" +defs["igIsKeyChordPressed"][2]["ret"] = "bool" +defs["igIsKeyChordPressed"][2]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)" +defs["igIsKeyChordPressed"][2]["stname"] = "" +defs["igIsKeyChordPressed"]["(ImGuiKeyChord)"] = defs["igIsKeyChordPressed"][1] +defs["igIsKeyChordPressed"]["(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)"] = defs["igIsKeyChordPressed"][2] defs["igIsKeyDown"] = {} defs["igIsKeyDown"][1] = {} defs["igIsKeyDown"][1]["args"] = "(ImGuiKey key)" @@ -21708,7 +23274,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:922" +defs["igIsKeyDown"][1]["location"] = "imgui:991" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -21728,7 +23294,7 @@ defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][2]["defaults"] = {} defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][2]["location"] = "imgui_internal:3168" +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3608" defs["igIsKeyDown"][2]["namespace"] = "ImGui" defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" defs["igIsKeyDown"][2]["ret"] = "bool" @@ -21752,61 +23318,38 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui:923" +defs["igIsKeyPressed"][1]["location"] = "imgui:992" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" defs["igIsKeyPressed"][1]["signature"] = "(ImGuiKey,bool)" defs["igIsKeyPressed"][1]["stname"] = "" defs["igIsKeyPressed"][2] = {} -defs["igIsKeyPressed"][2]["args"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igIsKeyPressed"][2]["args"] = "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id)" defs["igIsKeyPressed"][2]["argsT"] = {} defs["igIsKeyPressed"][2]["argsT"][1] = {} defs["igIsKeyPressed"][2]["argsT"][1]["name"] = "key" defs["igIsKeyPressed"][2]["argsT"][1]["type"] = "ImGuiKey" defs["igIsKeyPressed"][2]["argsT"][2] = {} -defs["igIsKeyPressed"][2]["argsT"][2]["name"] = "owner_id" -defs["igIsKeyPressed"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsKeyPressed"][2]["argsT"][2]["name"] = "flags" +defs["igIsKeyPressed"][2]["argsT"][2]["type"] = "ImGuiInputFlags" defs["igIsKeyPressed"][2]["argsT"][3] = {} -defs["igIsKeyPressed"][2]["argsT"][3]["name"] = "flags" -defs["igIsKeyPressed"][2]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igIsKeyPressed"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)" -defs["igIsKeyPressed"][2]["call_args"] = "(key,owner_id,flags)" +defs["igIsKeyPressed"][2]["argsT"][3]["name"] = "owner_id" +defs["igIsKeyPressed"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igIsKeyPressed"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id=0)" +defs["igIsKeyPressed"][2]["call_args"] = "(key,flags,owner_id)" defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][2]["defaults"] = {} -defs["igIsKeyPressed"][2]["defaults"]["flags"] = "0" +defs["igIsKeyPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3169" +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3609" defs["igIsKeyPressed"][2]["namespace"] = "ImGui" -defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_ID" +defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_InputFlags" defs["igIsKeyPressed"][2]["ret"] = "bool" -defs["igIsKeyPressed"][2]["signature"] = "(ImGuiKey,ImGuiID,ImGuiInputFlags)" +defs["igIsKeyPressed"][2]["signature"] = "(ImGuiKey,ImGuiInputFlags,ImGuiID)" defs["igIsKeyPressed"][2]["stname"] = "" -defs["igIsKeyPressed"]["(ImGuiKey,ImGuiID,ImGuiInputFlags)"] = defs["igIsKeyPressed"][2] +defs["igIsKeyPressed"]["(ImGuiKey,ImGuiInputFlags,ImGuiID)"] = defs["igIsKeyPressed"][2] defs["igIsKeyPressed"]["(ImGuiKey,bool)"] = defs["igIsKeyPressed"][1] -defs["igIsKeyPressedMap"] = {} -defs["igIsKeyPressedMap"][1] = {} -defs["igIsKeyPressedMap"][1]["args"] = "(ImGuiKey key,bool repeat)" -defs["igIsKeyPressedMap"][1]["argsT"] = {} -defs["igIsKeyPressedMap"][1]["argsT"][1] = {} -defs["igIsKeyPressedMap"][1]["argsT"][1]["name"] = "key" -defs["igIsKeyPressedMap"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igIsKeyPressedMap"][1]["argsT"][2] = {} -defs["igIsKeyPressedMap"][1]["argsT"][2]["name"] = "repeat" -defs["igIsKeyPressedMap"][1]["argsT"][2]["type"] = "bool" -defs["igIsKeyPressedMap"][1]["argsoriginal"] = "(ImGuiKey key,bool repeat=true)" -defs["igIsKeyPressedMap"][1]["call_args"] = "(key,repeat)" -defs["igIsKeyPressedMap"][1]["cimguiname"] = "igIsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["defaults"] = {} -defs["igIsKeyPressedMap"][1]["defaults"]["repeat"] = "true" -defs["igIsKeyPressedMap"][1]["funcname"] = "IsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:3486" -defs["igIsKeyPressedMap"][1]["namespace"] = "ImGui" -defs["igIsKeyPressedMap"][1]["ov_cimguiname"] = "igIsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["ret"] = "bool" -defs["igIsKeyPressedMap"][1]["signature"] = "(ImGuiKey,bool)" -defs["igIsKeyPressedMap"][1]["stname"] = "" -defs["igIsKeyPressedMap"]["(ImGuiKey,bool)"] = defs["igIsKeyPressedMap"][1] defs["igIsKeyReleased"] = {} defs["igIsKeyReleased"][1] = {} defs["igIsKeyReleased"][1]["args"] = "(ImGuiKey key)" @@ -21819,7 +23362,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:924" +defs["igIsKeyReleased"][1]["location"] = "imgui:993" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -21839,7 +23382,7 @@ defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][2]["defaults"] = {} defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3170" +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3610" defs["igIsKeyReleased"][2]["namespace"] = "ImGui" defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" defs["igIsKeyReleased"][2]["ret"] = "bool" @@ -21859,13 +23402,32 @@ defs["igIsKeyboardKey"][1]["call_args"] = "(key)" defs["igIsKeyboardKey"][1]["cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["defaults"] = {} defs["igIsKeyboardKey"][1]["funcname"] = "IsKeyboardKey" -defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3118" +defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3556" defs["igIsKeyboardKey"][1]["namespace"] = "ImGui" defs["igIsKeyboardKey"][1]["ov_cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["ret"] = "bool" defs["igIsKeyboardKey"][1]["signature"] = "(ImGuiKey)" defs["igIsKeyboardKey"][1]["stname"] = "" defs["igIsKeyboardKey"]["(ImGuiKey)"] = defs["igIsKeyboardKey"][1] +defs["igIsLRModKey"] = {} +defs["igIsLRModKey"][1] = {} +defs["igIsLRModKey"][1]["args"] = "(ImGuiKey key)" +defs["igIsLRModKey"][1]["argsT"] = {} +defs["igIsLRModKey"][1]["argsT"][1] = {} +defs["igIsLRModKey"][1]["argsT"][1]["name"] = "key" +defs["igIsLRModKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsLRModKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsLRModKey"][1]["call_args"] = "(key)" +defs["igIsLRModKey"][1]["cimguiname"] = "igIsLRModKey" +defs["igIsLRModKey"][1]["defaults"] = {} +defs["igIsLRModKey"][1]["funcname"] = "IsLRModKey" +defs["igIsLRModKey"][1]["location"] = "imgui_internal:3560" +defs["igIsLRModKey"][1]["namespace"] = "ImGui" +defs["igIsLRModKey"][1]["ov_cimguiname"] = "igIsLRModKey" +defs["igIsLRModKey"][1]["ret"] = "bool" +defs["igIsLRModKey"][1]["signature"] = "(ImGuiKey)" +defs["igIsLRModKey"][1]["stname"] = "" +defs["igIsLRModKey"]["(ImGuiKey)"] = defs["igIsLRModKey"][1] defs["igIsLegacyKey"] = {} defs["igIsLegacyKey"][1] = {} defs["igIsLegacyKey"][1]["args"] = "(ImGuiKey key)" @@ -21878,7 +23440,7 @@ defs["igIsLegacyKey"][1]["call_args"] = "(key)" defs["igIsLegacyKey"][1]["cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["defaults"] = {} defs["igIsLegacyKey"][1]["funcname"] = "IsLegacyKey" -defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3117" +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3555" defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" @@ -21901,37 +23463,37 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui:934" +defs["igIsMouseClicked"][1]["location"] = "imgui:1030" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" defs["igIsMouseClicked"][1]["signature"] = "(ImGuiMouseButton,bool)" defs["igIsMouseClicked"][1]["stname"] = "" defs["igIsMouseClicked"][2] = {} -defs["igIsMouseClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igIsMouseClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id)" defs["igIsMouseClicked"][2]["argsT"] = {} defs["igIsMouseClicked"][2]["argsT"][1] = {} defs["igIsMouseClicked"][2]["argsT"][1]["name"] = "button" defs["igIsMouseClicked"][2]["argsT"][1]["type"] = "ImGuiMouseButton" defs["igIsMouseClicked"][2]["argsT"][2] = {} -defs["igIsMouseClicked"][2]["argsT"][2]["name"] = "owner_id" -defs["igIsMouseClicked"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseClicked"][2]["argsT"][2]["name"] = "flags" +defs["igIsMouseClicked"][2]["argsT"][2]["type"] = "ImGuiInputFlags" defs["igIsMouseClicked"][2]["argsT"][3] = {} -defs["igIsMouseClicked"][2]["argsT"][3]["name"] = "flags" -defs["igIsMouseClicked"][2]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igIsMouseClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags=0)" -defs["igIsMouseClicked"][2]["call_args"] = "(button,owner_id,flags)" +defs["igIsMouseClicked"][2]["argsT"][3]["name"] = "owner_id" +defs["igIsMouseClicked"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igIsMouseClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id=0)" +defs["igIsMouseClicked"][2]["call_args"] = "(button,flags,owner_id)" defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][2]["defaults"] = {} -defs["igIsMouseClicked"][2]["defaults"]["flags"] = "0" +defs["igIsMouseClicked"][2]["defaults"]["owner_id"] = "0" defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3172" +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3613" defs["igIsMouseClicked"][2]["namespace"] = "ImGui" -defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_ID" +defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_InputFlags" defs["igIsMouseClicked"][2]["ret"] = "bool" -defs["igIsMouseClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)" +defs["igIsMouseClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiInputFlags,ImGuiID)" defs["igIsMouseClicked"][2]["stname"] = "" -defs["igIsMouseClicked"]["(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)"] = defs["igIsMouseClicked"][2] +defs["igIsMouseClicked"]["(ImGuiMouseButton,ImGuiInputFlags,ImGuiID)"] = defs["igIsMouseClicked"][2] defs["igIsMouseClicked"]["(ImGuiMouseButton,bool)"] = defs["igIsMouseClicked"][1] defs["igIsMouseDoubleClicked"] = {} defs["igIsMouseDoubleClicked"][1] = {} @@ -21945,13 +23507,34 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:936" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1032" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" -defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked_Nil" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" defs["igIsMouseDoubleClicked"][1]["signature"] = "(ImGuiMouseButton)" defs["igIsMouseDoubleClicked"][1]["stname"] = "" +defs["igIsMouseDoubleClicked"][2] = {} +defs["igIsMouseDoubleClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseDoubleClicked"][2]["argsT"] = {} +defs["igIsMouseDoubleClicked"][2]["argsT"][1] = {} +defs["igIsMouseDoubleClicked"][2]["argsT"][1]["name"] = "button" +defs["igIsMouseDoubleClicked"][2]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igIsMouseDoubleClicked"][2]["argsT"][2] = {} +defs["igIsMouseDoubleClicked"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsMouseDoubleClicked"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseDoubleClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseDoubleClicked"][2]["call_args"] = "(button,owner_id)" +defs["igIsMouseDoubleClicked"][2]["cimguiname"] = "igIsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][2]["defaults"] = {} +defs["igIsMouseDoubleClicked"][2]["funcname"] = "IsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3615" +defs["igIsMouseDoubleClicked"][2]["namespace"] = "ImGui" +defs["igIsMouseDoubleClicked"][2]["ov_cimguiname"] = "igIsMouseDoubleClicked_ID" +defs["igIsMouseDoubleClicked"][2]["ret"] = "bool" +defs["igIsMouseDoubleClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiID)" +defs["igIsMouseDoubleClicked"][2]["stname"] = "" defs["igIsMouseDoubleClicked"]["(ImGuiMouseButton)"] = defs["igIsMouseDoubleClicked"][1] +defs["igIsMouseDoubleClicked"]["(ImGuiMouseButton,ImGuiID)"] = defs["igIsMouseDoubleClicked"][2] defs["igIsMouseDown"] = {} defs["igIsMouseDown"][1] = {} defs["igIsMouseDown"][1]["args"] = "(ImGuiMouseButton button)" @@ -21964,7 +23547,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui:933" +defs["igIsMouseDown"][1]["location"] = "imgui:1029" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -21984,7 +23567,7 @@ defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][2]["defaults"] = {} defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][2]["location"] = "imgui_internal:3171" +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3612" defs["igIsMouseDown"][2]["namespace"] = "ImGui" defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" defs["igIsMouseDown"][2]["ret"] = "bool" @@ -22008,7 +23591,7 @@ defs["igIsMouseDragPastThreshold"][1]["cimguiname"] = "igIsMouseDragPastThreshol defs["igIsMouseDragPastThreshold"][1]["defaults"] = {} defs["igIsMouseDragPastThreshold"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragPastThreshold"][1]["funcname"] = "IsMouseDragPastThreshold" -defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3137" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3575" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -22031,7 +23614,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui:943" +defs["igIsMouseDragging"][1]["location"] = "imgui:1039" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -22057,7 +23640,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui:938" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1034" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -22076,7 +23659,7 @@ defs["igIsMouseKey"][1]["call_args"] = "(key)" defs["igIsMouseKey"][1]["cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["defaults"] = {} defs["igIsMouseKey"][1]["funcname"] = "IsMouseKey" -defs["igIsMouseKey"][1]["location"] = "imgui_internal:3120" +defs["igIsMouseKey"][1]["location"] = "imgui_internal:3558" defs["igIsMouseKey"][1]["namespace"] = "ImGui" defs["igIsMouseKey"][1]["ov_cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["ret"] = "bool" @@ -22096,7 +23679,7 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui:939" +defs["igIsMousePosValid"][1]["location"] = "imgui:1035" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -22115,7 +23698,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui:935" +defs["igIsMouseReleased"][1]["location"] = "imgui:1031" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -22135,7 +23718,7 @@ defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][2]["defaults"] = {} defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3173" +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3614" defs["igIsMouseReleased"][2]["namespace"] = "ImGui" defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" defs["igIsMouseReleased"][2]["ret"] = "bool" @@ -22155,32 +23738,32 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" -defs["igIsNamedKey"][1]["location"] = "imgui_internal:3115" +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3553" defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" defs["igIsNamedKey"][1]["signature"] = "(ImGuiKey)" defs["igIsNamedKey"][1]["stname"] = "" defs["igIsNamedKey"]["(ImGuiKey)"] = defs["igIsNamedKey"][1] -defs["igIsNamedKeyOrModKey"] = {} -defs["igIsNamedKeyOrModKey"][1] = {} -defs["igIsNamedKeyOrModKey"][1]["args"] = "(ImGuiKey key)" -defs["igIsNamedKeyOrModKey"][1]["argsT"] = {} -defs["igIsNamedKeyOrModKey"][1]["argsT"][1] = {} -defs["igIsNamedKeyOrModKey"][1]["argsT"][1]["name"] = "key" -defs["igIsNamedKeyOrModKey"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igIsNamedKeyOrModKey"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igIsNamedKeyOrModKey"][1]["call_args"] = "(key)" -defs["igIsNamedKeyOrModKey"][1]["cimguiname"] = "igIsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["defaults"] = {} -defs["igIsNamedKeyOrModKey"][1]["funcname"] = "IsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["location"] = "imgui_internal:3116" -defs["igIsNamedKeyOrModKey"][1]["namespace"] = "ImGui" -defs["igIsNamedKeyOrModKey"][1]["ov_cimguiname"] = "igIsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["ret"] = "bool" -defs["igIsNamedKeyOrModKey"][1]["signature"] = "(ImGuiKey)" -defs["igIsNamedKeyOrModKey"][1]["stname"] = "" -defs["igIsNamedKeyOrModKey"]["(ImGuiKey)"] = defs["igIsNamedKeyOrModKey"][1] +defs["igIsNamedKeyOrMod"] = {} +defs["igIsNamedKeyOrMod"][1] = {} +defs["igIsNamedKeyOrMod"][1]["args"] = "(ImGuiKey key)" +defs["igIsNamedKeyOrMod"][1]["argsT"] = {} +defs["igIsNamedKeyOrMod"][1]["argsT"][1] = {} +defs["igIsNamedKeyOrMod"][1]["argsT"][1]["name"] = "key" +defs["igIsNamedKeyOrMod"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsNamedKeyOrMod"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsNamedKeyOrMod"][1]["call_args"] = "(key)" +defs["igIsNamedKeyOrMod"][1]["cimguiname"] = "igIsNamedKeyOrMod" +defs["igIsNamedKeyOrMod"][1]["defaults"] = {} +defs["igIsNamedKeyOrMod"][1]["funcname"] = "IsNamedKeyOrMod" +defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3554" +defs["igIsNamedKeyOrMod"][1]["namespace"] = "ImGui" +defs["igIsNamedKeyOrMod"][1]["ov_cimguiname"] = "igIsNamedKeyOrMod" +defs["igIsNamedKeyOrMod"][1]["ret"] = "bool" +defs["igIsNamedKeyOrMod"][1]["signature"] = "(ImGuiKey)" +defs["igIsNamedKeyOrMod"][1]["stname"] = "" +defs["igIsNamedKeyOrMod"]["(ImGuiKey)"] = defs["igIsNamedKeyOrMod"][1] defs["igIsPopupOpen"] = {} defs["igIsPopupOpen"][1] = {} defs["igIsPopupOpen"][1]["args"] = "(const char* str_id,ImGuiPopupFlags flags)" @@ -22197,7 +23780,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:723" +defs["igIsPopupOpen"][1]["location"] = "imgui:793" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -22217,7 +23800,7 @@ defs["igIsPopupOpen"][2]["call_args"] = "(id,popup_flags)" defs["igIsPopupOpen"][2]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][2]["defaults"] = {} defs["igIsPopupOpen"][2]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3080" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3504" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -22237,7 +23820,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui:897" +defs["igIsRectVisible"][1]["location"] = "imgui:968" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -22257,7 +23840,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui:898" +defs["igIsRectVisible"][2]["location"] = "imgui:969" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -22280,7 +23863,7 @@ defs["igIsWindowAbove"][1]["call_args"] = "(potential_above,potential_below)" defs["igIsWindowAbove"][1]["cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["defaults"] = {} defs["igIsWindowAbove"][1]["funcname"] = "IsWindowAbove" -defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2956" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:3364" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -22296,7 +23879,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:353" +defs["igIsWindowAppearing"][1]["location"] = "imgui:398" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -22324,7 +23907,7 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent,popup_hier defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" -defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2954" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:3362" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -22340,13 +23923,36 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:354" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:399" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" defs["igIsWindowCollapsed"][1]["signature"] = "()" defs["igIsWindowCollapsed"][1]["stname"] = "" defs["igIsWindowCollapsed"]["()"] = defs["igIsWindowCollapsed"][1] +defs["igIsWindowContentHoverable"] = {} +defs["igIsWindowContentHoverable"][1] = {} +defs["igIsWindowContentHoverable"][1]["args"] = "(ImGuiWindow* window,ImGuiHoveredFlags flags)" +defs["igIsWindowContentHoverable"][1]["argsT"] = {} +defs["igIsWindowContentHoverable"][1]["argsT"][1] = {} +defs["igIsWindowContentHoverable"][1]["argsT"][1]["name"] = "window" +defs["igIsWindowContentHoverable"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igIsWindowContentHoverable"][1]["argsT"][2] = {} +defs["igIsWindowContentHoverable"][1]["argsT"][2]["name"] = "flags" +defs["igIsWindowContentHoverable"][1]["argsT"][2]["type"] = "ImGuiHoveredFlags" +defs["igIsWindowContentHoverable"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiHoveredFlags flags=0)" +defs["igIsWindowContentHoverable"][1]["call_args"] = "(window,flags)" +defs["igIsWindowContentHoverable"][1]["cimguiname"] = "igIsWindowContentHoverable" +defs["igIsWindowContentHoverable"][1]["defaults"] = {} +defs["igIsWindowContentHoverable"][1]["defaults"]["flags"] = "0" +defs["igIsWindowContentHoverable"][1]["funcname"] = "IsWindowContentHoverable" +defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3476" +defs["igIsWindowContentHoverable"][1]["namespace"] = "ImGui" +defs["igIsWindowContentHoverable"][1]["ov_cimguiname"] = "igIsWindowContentHoverable" +defs["igIsWindowContentHoverable"][1]["ret"] = "bool" +defs["igIsWindowContentHoverable"][1]["signature"] = "(ImGuiWindow*,ImGuiHoveredFlags)" +defs["igIsWindowContentHoverable"][1]["stname"] = "" +defs["igIsWindowContentHoverable"]["(ImGuiWindow*,ImGuiHoveredFlags)"] = defs["igIsWindowContentHoverable"][1] defs["igIsWindowDocked"] = {} defs["igIsWindowDocked"][1] = {} defs["igIsWindowDocked"][1]["args"] = "()" @@ -22356,7 +23962,7 @@ defs["igIsWindowDocked"][1]["call_args"] = "()" defs["igIsWindowDocked"][1]["cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["defaults"] = {} defs["igIsWindowDocked"][1]["funcname"] = "IsWindowDocked" -defs["igIsWindowDocked"][1]["location"] = "imgui:820" +defs["igIsWindowDocked"][1]["location"] = "imgui:890" defs["igIsWindowDocked"][1]["namespace"] = "ImGui" defs["igIsWindowDocked"][1]["ov_cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["ret"] = "bool" @@ -22376,7 +23982,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:355" +defs["igIsWindowFocused"][1]["location"] = "imgui:400" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -22396,7 +24002,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:356" +defs["igIsWindowHovered"][1]["location"] = "imgui:401" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -22415,7 +24021,7 @@ defs["igIsWindowNavFocusable"][1]["call_args"] = "(window)" defs["igIsWindowNavFocusable"][1]["cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["defaults"] = {} defs["igIsWindowNavFocusable"][1]["funcname"] = "IsWindowNavFocusable" -defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2957" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:3365" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -22437,7 +24043,7 @@ defs["igIsWindowWithinBeginStackOf"][1]["call_args"] = "(window,potential_parent defs["igIsWindowWithinBeginStackOf"][1]["cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["defaults"] = {} defs["igIsWindowWithinBeginStackOf"][1]["funcname"] = "IsWindowWithinBeginStackOf" -defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2955" +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:3363" defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -22467,7 +24073,7 @@ defs["igItemAdd"][1]["defaults"] = {} defs["igItemAdd"][1]["defaults"]["extra_flags"] = "0" defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" -defs["igItemAdd"][1]["location"] = "imgui_internal:3053" +defs["igItemAdd"][1]["location"] = "imgui_internal:3474" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -22476,7 +24082,7 @@ defs["igItemAdd"][1]["stname"] = "" defs["igItemAdd"]["(const ImRect,ImGuiID,const ImRect*,ImGuiItemFlags)"] = defs["igItemAdd"][1] defs["igItemHoverable"] = {} defs["igItemHoverable"][1] = {} -defs["igItemHoverable"][1]["args"] = "(const ImRect bb,ImGuiID id)" +defs["igItemHoverable"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags)" defs["igItemHoverable"][1]["argsT"] = {} defs["igItemHoverable"][1]["argsT"][1] = {} defs["igItemHoverable"][1]["argsT"][1]["name"] = "bb" @@ -22484,18 +24090,21 @@ defs["igItemHoverable"][1]["argsT"][1]["type"] = "const ImRect" defs["igItemHoverable"][1]["argsT"][2] = {} defs["igItemHoverable"][1]["argsT"][2]["name"] = "id" defs["igItemHoverable"][1]["argsT"][2]["type"] = "ImGuiID" -defs["igItemHoverable"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id)" -defs["igItemHoverable"][1]["call_args"] = "(bb,id)" +defs["igItemHoverable"][1]["argsT"][3] = {} +defs["igItemHoverable"][1]["argsT"][3]["name"] = "item_flags" +defs["igItemHoverable"][1]["argsT"][3]["type"] = "ImGuiItemFlags" +defs["igItemHoverable"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiItemFlags item_flags)" +defs["igItemHoverable"][1]["call_args"] = "(bb,id,item_flags)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:3054" +defs["igItemHoverable"][1]["location"] = "imgui_internal:3475" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" -defs["igItemHoverable"][1]["signature"] = "(const ImRect,ImGuiID)" +defs["igItemHoverable"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiItemFlags)" defs["igItemHoverable"][1]["stname"] = "" -defs["igItemHoverable"]["(const ImRect,ImGuiID)"] = defs["igItemHoverable"][1] +defs["igItemHoverable"]["(const ImRect,ImGuiID,ImGuiItemFlags)"] = defs["igItemHoverable"][1] defs["igItemSize"] = {} defs["igItemSize"][1] = {} defs["igItemSize"][1]["args"] = "(const ImVec2 size,float text_baseline_y)" @@ -22512,7 +24121,7 @@ defs["igItemSize"][1]["cimguiname"] = "igItemSize" defs["igItemSize"][1]["defaults"] = {} defs["igItemSize"][1]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][1]["funcname"] = "ItemSize" -defs["igItemSize"][1]["location"] = "imgui_internal:3051" +defs["igItemSize"][1]["location"] = "imgui_internal:3472" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -22533,7 +24142,7 @@ defs["igItemSize"][2]["cimguiname"] = "igItemSize" defs["igItemSize"][2]["defaults"] = {} defs["igItemSize"][2]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][2]["funcname"] = "ItemSize" -defs["igItemSize"][2]["location"] = "imgui_internal:3052" +defs["igItemSize"][2]["location"] = "imgui_internal:3473" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -22553,7 +24162,7 @@ defs["igKeepAliveID"][1]["call_args"] = "(id)" defs["igKeepAliveID"][1]["cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["defaults"] = {} defs["igKeepAliveID"][1]["funcname"] = "KeepAliveID" -defs["igKeepAliveID"][1]["location"] = "imgui_internal:3045" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:3465" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -22579,7 +24188,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:501" +defs["igLabelText"][1]["location"] = "imgui:545" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -22604,7 +24213,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:502" +defs["igLabelTextV"][1]["location"] = "imgui:546" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -22636,14 +24245,14 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:643" +defs["igListBox"][1]["location"] = "imgui:705" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" defs["igListBox"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" defs["igListBox"][1]["stname"] = "" defs["igListBox"][2] = {} -defs["igListBox"][2]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)" +defs["igListBox"][2]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)" defs["igListBox"][2]["argsT"] = {} defs["igListBox"][2]["argsT"][1] = {} defs["igListBox"][2]["argsT"][1]["name"] = "label" @@ -22652,12 +24261,12 @@ defs["igListBox"][2]["argsT"][2] = {} defs["igListBox"][2]["argsT"][2]["name"] = "current_item" defs["igListBox"][2]["argsT"][2]["type"] = "int*" defs["igListBox"][2]["argsT"][3] = {} -defs["igListBox"][2]["argsT"][3]["name"] = "items_getter" -defs["igListBox"][2]["argsT"][3]["ret"] = "bool" -defs["igListBox"][2]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igListBox"][2]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igListBox"][2]["argsT"][3]["name"] = "getter" +defs["igListBox"][2]["argsT"][3]["ret"] = "const char*" +defs["igListBox"][2]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igListBox"][2]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igListBox"][2]["argsT"][4] = {} -defs["igListBox"][2]["argsT"][4]["name"] = "data" +defs["igListBox"][2]["argsT"][4]["name"] = "user_data" defs["igListBox"][2]["argsT"][4]["type"] = "void*" defs["igListBox"][2]["argsT"][5] = {} defs["igListBox"][2]["argsT"][5]["name"] = "items_count" @@ -22665,20 +24274,20 @@ defs["igListBox"][2]["argsT"][5]["type"] = "int" defs["igListBox"][2]["argsT"][6] = {} defs["igListBox"][2]["argsT"][6]["name"] = "height_in_items" defs["igListBox"][2]["argsT"][6]["type"] = "int" -defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)" -defs["igListBox"][2]["call_args"] = "(label,current_item,items_getter,data,items_count,height_in_items)" +defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)" +defs["igListBox"][2]["call_args"] = "(label,current_item,getter,user_data,items_count,height_in_items)" defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:644" +defs["igListBox"][2]["location"] = "imgui:706" defs["igListBox"][2]["namespace"] = "ImGui" -defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnBoolPtr" +defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" -defs["igListBox"][2]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igListBox"][2]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igListBox"][2]["stname"] = "" -defs["igListBox"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igListBox"][2] defs["igListBox"]["(const char*,int*,const char* const[],int,int)"] = defs["igListBox"][1] +defs["igListBox"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igListBox"][2] defs["igLoadIniSettingsFromDisk"] = {} defs["igLoadIniSettingsFromDisk"][1] = {} defs["igLoadIniSettingsFromDisk"][1]["args"] = "(const char* ini_filename)" @@ -22691,7 +24300,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:959" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1055" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -22714,7 +24323,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:960" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1056" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -22733,7 +24342,7 @@ defs["igLocalizeGetMsg"][1]["call_args"] = "(key)" defs["igLocalizeGetMsg"][1]["cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["defaults"] = {} defs["igLocalizeGetMsg"][1]["funcname"] = "LocalizeGetMsg" -defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3019" +defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3439" defs["igLocalizeGetMsg"][1]["namespace"] = "ImGui" defs["igLocalizeGetMsg"][1]["ov_cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["ret"] = "const char*" @@ -22755,7 +24364,7 @@ defs["igLocalizeRegisterEntries"][1]["call_args"] = "(entries,count)" defs["igLocalizeRegisterEntries"][1]["cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["defaults"] = {} defs["igLocalizeRegisterEntries"][1]["funcname"] = "LocalizeRegisterEntries" -defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3018" +defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3438" defs["igLocalizeRegisterEntries"][1]["namespace"] = "ImGui" defs["igLocalizeRegisterEntries"][1]["ov_cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["ret"] = "void" @@ -22777,7 +24386,7 @@ defs["igLogBegin"][1]["call_args"] = "(type,auto_open_depth)" defs["igLogBegin"][1]["cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["defaults"] = {} defs["igLogBegin"][1]["funcname"] = "LogBegin" -defs["igLogBegin"][1]["location"] = "imgui_internal:3069" +defs["igLogBegin"][1]["location"] = "imgui_internal:3490" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -22793,7 +24402,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui:828" +defs["igLogButtons"][1]["location"] = "imgui:898" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -22809,7 +24418,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui:827" +defs["igLogFinish"][1]["location"] = "imgui:897" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -22835,7 +24444,7 @@ defs["igLogRenderedText"][1]["cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["defaults"] = {} defs["igLogRenderedText"][1]["defaults"]["text_end"] = "NULL" defs["igLogRenderedText"][1]["funcname"] = "LogRenderedText" -defs["igLogRenderedText"][1]["location"] = "imgui_internal:3071" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3492" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -22857,7 +24466,7 @@ defs["igLogSetNextTextDecoration"][1]["call_args"] = "(prefix,suffix)" defs["igLogSetNextTextDecoration"][1]["cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["defaults"] = {} defs["igLogSetNextTextDecoration"][1]["funcname"] = "LogSetNextTextDecoration" -defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3072" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3493" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -22880,7 +24489,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:829" +defs["igLogText"][1]["location"] = "imgui:899" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -22903,7 +24512,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:830" +defs["igLogTextV"][1]["location"] = "imgui:900" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -22923,7 +24532,7 @@ defs["igLogToBuffer"][1]["cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["defaults"] = {} defs["igLogToBuffer"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToBuffer"][1]["funcname"] = "LogToBuffer" -defs["igLogToBuffer"][1]["location"] = "imgui_internal:3070" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3491" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -22943,7 +24552,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui:826" +defs["igLogToClipboard"][1]["location"] = "imgui:896" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -22967,7 +24576,7 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui:825" +defs["igLogToFile"][1]["location"] = "imgui:895" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -22987,7 +24596,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui:824" +defs["igLogToTTY"][1]["location"] = "imgui:894" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -23003,7 +24612,7 @@ defs["igMarkIniSettingsDirty"][1]["call_args"] = "()" defs["igMarkIniSettingsDirty"][1]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][1]["defaults"] = {} defs["igMarkIniSettingsDirty"][1]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3007" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3424" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -23020,7 +24629,7 @@ defs["igMarkIniSettingsDirty"][2]["call_args"] = "(window)" defs["igMarkIniSettingsDirty"][2]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][2]["defaults"] = {} defs["igMarkIniSettingsDirty"][2]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3008" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3425" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -23040,7 +24649,7 @@ defs["igMarkItemEdited"][1]["call_args"] = "(id)" defs["igMarkItemEdited"][1]["cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["defaults"] = {} defs["igMarkItemEdited"][1]["funcname"] = "MarkItemEdited" -defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3046" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3466" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -23059,7 +24668,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui:974" +defs["igMemAlloc"][1]["location"] = "imgui:1077" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -23078,7 +24687,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui:975" +defs["igMemFree"][1]["location"] = "imgui:1078" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -23109,7 +24718,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:671" +defs["igMenuItem"][1]["location"] = "imgui:733" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -23136,7 +24745,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:672" +defs["igMenuItem"][2]["location"] = "imgui:734" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -23171,7 +24780,7 @@ defs["igMenuItemEx"][1]["defaults"]["enabled"] = "true" defs["igMenuItemEx"][1]["defaults"]["selected"] = "false" defs["igMenuItemEx"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItemEx"][1]["funcname"] = "MenuItemEx" -defs["igMenuItemEx"][1]["location"] = "imgui_internal:3092" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3519" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -23190,13 +24799,154 @@ defs["igMouseButtonToKey"][1]["call_args"] = "(button)" defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["defaults"] = {} defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" -defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3136" +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3574" defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" defs["igMouseButtonToKey"][1]["signature"] = "(ImGuiMouseButton)" defs["igMouseButtonToKey"][1]["stname"] = "" defs["igMouseButtonToKey"]["(ImGuiMouseButton)"] = defs["igMouseButtonToKey"][1] +defs["igMultiSelectAddSetAll"] = {} +defs["igMultiSelectAddSetAll"][1] = {} +defs["igMultiSelectAddSetAll"][1]["args"] = "(ImGuiMultiSelectTempData* ms,bool selected)" +defs["igMultiSelectAddSetAll"][1]["argsT"] = {} +defs["igMultiSelectAddSetAll"][1]["argsT"][1] = {} +defs["igMultiSelectAddSetAll"][1]["argsT"][1]["name"] = "ms" +defs["igMultiSelectAddSetAll"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["igMultiSelectAddSetAll"][1]["argsT"][2] = {} +defs["igMultiSelectAddSetAll"][1]["argsT"][2]["name"] = "selected" +defs["igMultiSelectAddSetAll"][1]["argsT"][2]["type"] = "bool" +defs["igMultiSelectAddSetAll"][1]["argsoriginal"] = "(ImGuiMultiSelectTempData* ms,bool selected)" +defs["igMultiSelectAddSetAll"][1]["call_args"] = "(ms,selected)" +defs["igMultiSelectAddSetAll"][1]["cimguiname"] = "igMultiSelectAddSetAll" +defs["igMultiSelectAddSetAll"][1]["defaults"] = {} +defs["igMultiSelectAddSetAll"][1]["funcname"] = "MultiSelectAddSetAll" +defs["igMultiSelectAddSetAll"][1]["location"] = "imgui_internal:3723" +defs["igMultiSelectAddSetAll"][1]["namespace"] = "ImGui" +defs["igMultiSelectAddSetAll"][1]["ov_cimguiname"] = "igMultiSelectAddSetAll" +defs["igMultiSelectAddSetAll"][1]["ret"] = "void" +defs["igMultiSelectAddSetAll"][1]["signature"] = "(ImGuiMultiSelectTempData*,bool)" +defs["igMultiSelectAddSetAll"][1]["stname"] = "" +defs["igMultiSelectAddSetAll"]["(ImGuiMultiSelectTempData*,bool)"] = defs["igMultiSelectAddSetAll"][1] +defs["igMultiSelectAddSetRange"] = {} +defs["igMultiSelectAddSetRange"][1] = {} +defs["igMultiSelectAddSetRange"][1]["args"] = "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)" +defs["igMultiSelectAddSetRange"][1]["argsT"] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][1] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][1]["name"] = "ms" +defs["igMultiSelectAddSetRange"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["igMultiSelectAddSetRange"][1]["argsT"][2] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][2]["name"] = "selected" +defs["igMultiSelectAddSetRange"][1]["argsT"][2]["type"] = "bool" +defs["igMultiSelectAddSetRange"][1]["argsT"][3] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][3]["name"] = "range_dir" +defs["igMultiSelectAddSetRange"][1]["argsT"][3]["type"] = "int" +defs["igMultiSelectAddSetRange"][1]["argsT"][4] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][4]["name"] = "first_item" +defs["igMultiSelectAddSetRange"][1]["argsT"][4]["type"] = "ImGuiSelectionUserData" +defs["igMultiSelectAddSetRange"][1]["argsT"][5] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][5]["name"] = "last_item" +defs["igMultiSelectAddSetRange"][1]["argsT"][5]["type"] = "ImGuiSelectionUserData" +defs["igMultiSelectAddSetRange"][1]["argsoriginal"] = "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)" +defs["igMultiSelectAddSetRange"][1]["call_args"] = "(ms,selected,range_dir,first_item,last_item)" +defs["igMultiSelectAddSetRange"][1]["cimguiname"] = "igMultiSelectAddSetRange" +defs["igMultiSelectAddSetRange"][1]["defaults"] = {} +defs["igMultiSelectAddSetRange"][1]["funcname"] = "MultiSelectAddSetRange" +defs["igMultiSelectAddSetRange"][1]["location"] = "imgui_internal:3724" +defs["igMultiSelectAddSetRange"][1]["namespace"] = "ImGui" +defs["igMultiSelectAddSetRange"][1]["ov_cimguiname"] = "igMultiSelectAddSetRange" +defs["igMultiSelectAddSetRange"][1]["ret"] = "void" +defs["igMultiSelectAddSetRange"][1]["signature"] = "(ImGuiMultiSelectTempData*,bool,int,ImGuiSelectionUserData,ImGuiSelectionUserData)" +defs["igMultiSelectAddSetRange"][1]["stname"] = "" +defs["igMultiSelectAddSetRange"]["(ImGuiMultiSelectTempData*,bool,int,ImGuiSelectionUserData,ImGuiSelectionUserData)"] = defs["igMultiSelectAddSetRange"][1] +defs["igMultiSelectItemFooter"] = {} +defs["igMultiSelectItemFooter"][1] = {} +defs["igMultiSelectItemFooter"][1]["args"] = "(ImGuiID id,bool* p_selected,bool* p_pressed)" +defs["igMultiSelectItemFooter"][1]["argsT"] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][1] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][1]["name"] = "id" +defs["igMultiSelectItemFooter"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igMultiSelectItemFooter"][1]["argsT"][2] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][2]["name"] = "p_selected" +defs["igMultiSelectItemFooter"][1]["argsT"][2]["type"] = "bool*" +defs["igMultiSelectItemFooter"][1]["argsT"][3] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][3]["name"] = "p_pressed" +defs["igMultiSelectItemFooter"][1]["argsT"][3]["type"] = "bool*" +defs["igMultiSelectItemFooter"][1]["argsoriginal"] = "(ImGuiID id,bool* p_selected,bool* p_pressed)" +defs["igMultiSelectItemFooter"][1]["call_args"] = "(id,p_selected,p_pressed)" +defs["igMultiSelectItemFooter"][1]["cimguiname"] = "igMultiSelectItemFooter" +defs["igMultiSelectItemFooter"][1]["defaults"] = {} +defs["igMultiSelectItemFooter"][1]["funcname"] = "MultiSelectItemFooter" +defs["igMultiSelectItemFooter"][1]["location"] = "imgui_internal:3722" +defs["igMultiSelectItemFooter"][1]["namespace"] = "ImGui" +defs["igMultiSelectItemFooter"][1]["ov_cimguiname"] = "igMultiSelectItemFooter" +defs["igMultiSelectItemFooter"][1]["ret"] = "void" +defs["igMultiSelectItemFooter"][1]["signature"] = "(ImGuiID,bool*,bool*)" +defs["igMultiSelectItemFooter"][1]["stname"] = "" +defs["igMultiSelectItemFooter"]["(ImGuiID,bool*,bool*)"] = defs["igMultiSelectItemFooter"][1] +defs["igMultiSelectItemHeader"] = {} +defs["igMultiSelectItemHeader"][1] = {} +defs["igMultiSelectItemHeader"][1]["args"] = "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)" +defs["igMultiSelectItemHeader"][1]["argsT"] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][1] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][1]["name"] = "id" +defs["igMultiSelectItemHeader"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igMultiSelectItemHeader"][1]["argsT"][2] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][2]["name"] = "p_selected" +defs["igMultiSelectItemHeader"][1]["argsT"][2]["type"] = "bool*" +defs["igMultiSelectItemHeader"][1]["argsT"][3] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][3]["name"] = "p_button_flags" +defs["igMultiSelectItemHeader"][1]["argsT"][3]["type"] = "ImGuiButtonFlags*" +defs["igMultiSelectItemHeader"][1]["argsoriginal"] = "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)" +defs["igMultiSelectItemHeader"][1]["call_args"] = "(id,p_selected,p_button_flags)" +defs["igMultiSelectItemHeader"][1]["cimguiname"] = "igMultiSelectItemHeader" +defs["igMultiSelectItemHeader"][1]["defaults"] = {} +defs["igMultiSelectItemHeader"][1]["funcname"] = "MultiSelectItemHeader" +defs["igMultiSelectItemHeader"][1]["location"] = "imgui_internal:3721" +defs["igMultiSelectItemHeader"][1]["namespace"] = "ImGui" +defs["igMultiSelectItemHeader"][1]["ov_cimguiname"] = "igMultiSelectItemHeader" +defs["igMultiSelectItemHeader"][1]["ret"] = "void" +defs["igMultiSelectItemHeader"][1]["signature"] = "(ImGuiID,bool*,ImGuiButtonFlags*)" +defs["igMultiSelectItemHeader"][1]["stname"] = "" +defs["igMultiSelectItemHeader"]["(ImGuiID,bool*,ImGuiButtonFlags*)"] = defs["igMultiSelectItemHeader"][1] +defs["igNavClearPreferredPosForAxis"] = {} +defs["igNavClearPreferredPosForAxis"][1] = {} +defs["igNavClearPreferredPosForAxis"][1]["args"] = "(ImGuiAxis axis)" +defs["igNavClearPreferredPosForAxis"][1]["argsT"] = {} +defs["igNavClearPreferredPosForAxis"][1]["argsT"][1] = {} +defs["igNavClearPreferredPosForAxis"][1]["argsT"][1]["name"] = "axis" +defs["igNavClearPreferredPosForAxis"][1]["argsT"][1]["type"] = "ImGuiAxis" +defs["igNavClearPreferredPosForAxis"][1]["argsoriginal"] = "(ImGuiAxis axis)" +defs["igNavClearPreferredPosForAxis"][1]["call_args"] = "(axis)" +defs["igNavClearPreferredPosForAxis"][1]["cimguiname"] = "igNavClearPreferredPosForAxis" +defs["igNavClearPreferredPosForAxis"][1]["defaults"] = {} +defs["igNavClearPreferredPosForAxis"][1]["funcname"] = "NavClearPreferredPosForAxis" +defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3538" +defs["igNavClearPreferredPosForAxis"][1]["namespace"] = "ImGui" +defs["igNavClearPreferredPosForAxis"][1]["ov_cimguiname"] = "igNavClearPreferredPosForAxis" +defs["igNavClearPreferredPosForAxis"][1]["ret"] = "void" +defs["igNavClearPreferredPosForAxis"][1]["signature"] = "(ImGuiAxis)" +defs["igNavClearPreferredPosForAxis"][1]["stname"] = "" +defs["igNavClearPreferredPosForAxis"]["(ImGuiAxis)"] = defs["igNavClearPreferredPosForAxis"][1] +defs["igNavHighlightActivated"] = {} +defs["igNavHighlightActivated"][1] = {} +defs["igNavHighlightActivated"][1]["args"] = "(ImGuiID id)" +defs["igNavHighlightActivated"][1]["argsT"] = {} +defs["igNavHighlightActivated"][1]["argsT"][1] = {} +defs["igNavHighlightActivated"][1]["argsT"][1]["name"] = "id" +defs["igNavHighlightActivated"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igNavHighlightActivated"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igNavHighlightActivated"][1]["call_args"] = "(id)" +defs["igNavHighlightActivated"][1]["cimguiname"] = "igNavHighlightActivated" +defs["igNavHighlightActivated"][1]["defaults"] = {} +defs["igNavHighlightActivated"][1]["funcname"] = "NavHighlightActivated" +defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3537" +defs["igNavHighlightActivated"][1]["namespace"] = "ImGui" +defs["igNavHighlightActivated"][1]["ov_cimguiname"] = "igNavHighlightActivated" +defs["igNavHighlightActivated"][1]["ret"] = "void" +defs["igNavHighlightActivated"][1]["signature"] = "(ImGuiID)" +defs["igNavHighlightActivated"][1]["stname"] = "" +defs["igNavHighlightActivated"]["(ImGuiID)"] = defs["igNavHighlightActivated"][1] defs["igNavInitRequestApplyResult"] = {} defs["igNavInitRequestApplyResult"][1] = {} defs["igNavInitRequestApplyResult"][1]["args"] = "()" @@ -23206,7 +24956,7 @@ defs["igNavInitRequestApplyResult"][1]["call_args"] = "()" defs["igNavInitRequestApplyResult"][1]["cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["defaults"] = {} defs["igNavInitRequestApplyResult"][1]["funcname"] = "NavInitRequestApplyResult" -defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3101" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3528" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -23228,7 +24978,7 @@ defs["igNavInitWindow"][1]["call_args"] = "(window,force_reinit)" defs["igNavInitWindow"][1]["cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["defaults"] = {} defs["igNavInitWindow"][1]["funcname"] = "NavInitWindow" -defs["igNavInitWindow"][1]["location"] = "imgui_internal:3100" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3527" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -23244,7 +24994,7 @@ defs["igNavMoveRequestApplyResult"][1]["call_args"] = "()" defs["igNavMoveRequestApplyResult"][1]["cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["defaults"] = {} defs["igNavMoveRequestApplyResult"][1]["funcname"] = "NavMoveRequestApplyResult" -defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3107" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3535" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -23260,7 +25010,7 @@ defs["igNavMoveRequestButNoResultYet"][1]["call_args"] = "()" defs["igNavMoveRequestButNoResultYet"][1]["cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["defaults"] = {} defs["igNavMoveRequestButNoResultYet"][1]["funcname"] = "NavMoveRequestButNoResultYet" -defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3102" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3529" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -23276,7 +25026,7 @@ defs["igNavMoveRequestCancel"][1]["call_args"] = "()" defs["igNavMoveRequestCancel"][1]["cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["defaults"] = {} defs["igNavMoveRequestCancel"][1]["funcname"] = "NavMoveRequestCancel" -defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3106" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3534" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -23304,7 +25054,7 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,move_flags defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" -defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3104" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3531" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -23323,13 +25073,35 @@ defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "(result)" defs["igNavMoveRequestResolveWithLastItem"][1]["cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithLastItem"][1]["funcname"] = "NavMoveRequestResolveWithLastItem" -defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3105" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3532" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" defs["igNavMoveRequestResolveWithLastItem"][1]["signature"] = "(ImGuiNavItemData*)" defs["igNavMoveRequestResolveWithLastItem"][1]["stname"] = "" defs["igNavMoveRequestResolveWithLastItem"]["(ImGuiNavItemData*)"] = defs["igNavMoveRequestResolveWithLastItem"][1] +defs["igNavMoveRequestResolveWithPastTreeNode"] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["args"] = "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][1] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][1]["name"] = "result" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][1]["type"] = "ImGuiNavItemData*" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][2] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][2]["name"] = "tree_node_data" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][2]["type"] = "ImGuiTreeNodeStackData*" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsoriginal"] = "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["call_args"] = "(result,tree_node_data)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["defaults"] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["funcname"] = "NavMoveRequestResolveWithPastTreeNode" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3533" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["namespace"] = "ImGui" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ret"] = "void" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["signature"] = "(ImGuiNavItemData*,ImGuiTreeNodeStackData*)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["stname"] = "" +defs["igNavMoveRequestResolveWithPastTreeNode"]["(ImGuiNavItemData*,ImGuiTreeNodeStackData*)"] = defs["igNavMoveRequestResolveWithPastTreeNode"][1] defs["igNavMoveRequestSubmit"] = {} defs["igNavMoveRequestSubmit"][1] = {} defs["igNavMoveRequestSubmit"][1]["args"] = "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags)" @@ -23351,7 +25123,7 @@ defs["igNavMoveRequestSubmit"][1]["call_args"] = "(move_dir,clip_dir,move_flags, defs["igNavMoveRequestSubmit"][1]["cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["defaults"] = {} defs["igNavMoveRequestSubmit"][1]["funcname"] = "NavMoveRequestSubmit" -defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3103" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3530" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -23373,13 +25145,45 @@ defs["igNavMoveRequestTryWrapping"][1]["call_args"] = "(window,move_flags)" defs["igNavMoveRequestTryWrapping"][1]["cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["defaults"] = {} defs["igNavMoveRequestTryWrapping"][1]["funcname"] = "NavMoveRequestTryWrapping" -defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3108" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3536" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" defs["igNavMoveRequestTryWrapping"][1]["signature"] = "(ImGuiWindow*,ImGuiNavMoveFlags)" defs["igNavMoveRequestTryWrapping"][1]["stname"] = "" defs["igNavMoveRequestTryWrapping"]["(ImGuiWindow*,ImGuiNavMoveFlags)"] = defs["igNavMoveRequestTryWrapping"][1] +defs["igNavRestoreHighlightAfterMove"] = {} +defs["igNavRestoreHighlightAfterMove"][1] = {} +defs["igNavRestoreHighlightAfterMove"][1]["args"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["argsT"] = {} +defs["igNavRestoreHighlightAfterMove"][1]["argsoriginal"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["call_args"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["cimguiname"] = "igNavRestoreHighlightAfterMove" +defs["igNavRestoreHighlightAfterMove"][1]["defaults"] = {} +defs["igNavRestoreHighlightAfterMove"][1]["funcname"] = "NavRestoreHighlightAfterMove" +defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3539" +defs["igNavRestoreHighlightAfterMove"][1]["namespace"] = "ImGui" +defs["igNavRestoreHighlightAfterMove"][1]["ov_cimguiname"] = "igNavRestoreHighlightAfterMove" +defs["igNavRestoreHighlightAfterMove"][1]["ret"] = "void" +defs["igNavRestoreHighlightAfterMove"][1]["signature"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["stname"] = "" +defs["igNavRestoreHighlightAfterMove"]["()"] = defs["igNavRestoreHighlightAfterMove"][1] +defs["igNavUpdateCurrentWindowIsScrollPushableX"] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["args"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["argsT"] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["argsoriginal"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["call_args"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["defaults"] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["funcname"] = "NavUpdateCurrentWindowIsScrollPushableX" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3540" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["namespace"] = "ImGui" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ov_cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ret"] = "void" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["signature"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["stname"] = "" +defs["igNavUpdateCurrentWindowIsScrollPushableX"]["()"] = defs["igNavUpdateCurrentWindowIsScrollPushableX"][1] defs["igNewFrame"] = {} defs["igNewFrame"][1] = {} defs["igNewFrame"][1]["args"] = "()" @@ -23389,7 +25193,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:302" +defs["igNewFrame"][1]["location"] = "imgui:337" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -23405,7 +25209,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:449" +defs["igNewLine"][1]["location"] = "imgui:501" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -23421,7 +25225,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:785" +defs["igNextColumn"][1]["location"] = "imgui:855" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -23444,7 +25248,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:705" +defs["igOpenPopup"][1]["location"] = "imgui:775" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -23465,7 +25269,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:706" +defs["igOpenPopup"][2]["location"] = "imgui:776" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -23489,7 +25293,7 @@ defs["igOpenPopupEx"][1]["cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["defaults"] = {} defs["igOpenPopupEx"][1]["defaults"]["popup_flags"] = "ImGuiPopupFlags_None" defs["igOpenPopupEx"][1]["funcname"] = "OpenPopupEx" -defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3076" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3500" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -23513,7 +25317,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:707" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:777" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -23522,7 +25326,7 @@ defs["igOpenPopupOnItemClick"][1]["stname"] = "" defs["igOpenPopupOnItemClick"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopupOnItemClick"][1] defs["igPlotEx"] = {} defs["igPlotEx"][1] = {} -defs["igPlotEx"][1]["args"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)" +defs["igPlotEx"][1]["args"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg)" defs["igPlotEx"][1]["argsT"] = {} defs["igPlotEx"][1]["argsT"][1] = {} defs["igPlotEx"][1]["argsT"][1]["name"] = "plot_type" @@ -23554,20 +25358,20 @@ defs["igPlotEx"][1]["argsT"][9] = {} defs["igPlotEx"][1]["argsT"][9]["name"] = "scale_max" defs["igPlotEx"][1]["argsT"][9]["type"] = "float" defs["igPlotEx"][1]["argsT"][10] = {} -defs["igPlotEx"][1]["argsT"][10]["name"] = "frame_size" -defs["igPlotEx"][1]["argsT"][10]["type"] = "ImVec2" -defs["igPlotEx"][1]["argsoriginal"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)" -defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size)" +defs["igPlotEx"][1]["argsT"][10]["name"] = "size_arg" +defs["igPlotEx"][1]["argsT"][10]["type"] = "const ImVec2" +defs["igPlotEx"][1]["argsoriginal"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2& size_arg)" +defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,size_arg)" defs["igPlotEx"][1]["cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["defaults"] = {} defs["igPlotEx"][1]["funcname"] = "PlotEx" -defs["igPlotEx"][1]["location"] = "imgui_internal:3427" +defs["igPlotEx"][1]["location"] = "imgui_internal:3909" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" -defs["igPlotEx"][1]["signature"] = "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)" +defs["igPlotEx"][1]["signature"] = "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,const ImVec2)" defs["igPlotEx"][1]["stname"] = "" -defs["igPlotEx"]["(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotEx"][1] +defs["igPlotEx"]["(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,const ImVec2)"] = defs["igPlotEx"][1] defs["igPlotHistogram"] = {} defs["igPlotHistogram"][1] = {} defs["igPlotHistogram"][1]["args"] = "(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride)" @@ -23599,7 +25403,7 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["defaults"] = {} @@ -23610,7 +25414,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:650" +defs["igPlotHistogram"][1]["location"] = "imgui:712" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -23648,7 +25452,7 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["defaults"] = {} @@ -23658,7 +25462,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:651" +defs["igPlotHistogram"][2]["location"] = "imgui:713" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -23697,7 +25501,7 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["defaults"] = {} @@ -23708,7 +25512,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:648" +defs["igPlotLines"][1]["location"] = "imgui:710" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -23746,7 +25550,7 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["defaults"] = {} @@ -23756,7 +25560,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:649" +defs["igPlotLines"][2]["location"] = "imgui:711" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -23764,38 +25568,6 @@ defs["igPlotLines"][2]["signature"] = "(const char*,float(*)(void*,int),void*,in defs["igPlotLines"][2]["stname"] = "" defs["igPlotLines"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotLines"][1] defs["igPlotLines"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotLines"][2] -defs["igPopAllowKeyboardFocus"] = {} -defs["igPopAllowKeyboardFocus"][1] = {} -defs["igPopAllowKeyboardFocus"][1]["args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPopAllowKeyboardFocus"][1]["argsoriginal"] = "()" -defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:418" -defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPopAllowKeyboardFocus"][1]["signature"] = "()" -defs["igPopAllowKeyboardFocus"][1]["stname"] = "" -defs["igPopAllowKeyboardFocus"]["()"] = defs["igPopAllowKeyboardFocus"][1] -defs["igPopButtonRepeat"] = {} -defs["igPopButtonRepeat"][1] = {} -defs["igPopButtonRepeat"][1]["args"] = "()" -defs["igPopButtonRepeat"][1]["argsT"] = {} -defs["igPopButtonRepeat"][1]["argsoriginal"] = "()" -defs["igPopButtonRepeat"][1]["call_args"] = "()" -defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["defaults"] = {} -defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui:420" -defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["ret"] = "void" -defs["igPopButtonRepeat"][1]["signature"] = "()" -defs["igPopButtonRepeat"][1]["stname"] = "" -defs["igPopButtonRepeat"]["()"] = defs["igPopButtonRepeat"][1] defs["igPopClipRect"] = {} defs["igPopClipRect"][1] = {} defs["igPopClipRect"][1]["args"] = "()" @@ -23805,7 +25577,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui:855" +defs["igPopClipRect"][1]["location"] = "imgui:926" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -23821,7 +25593,7 @@ defs["igPopColumnsBackground"][1]["call_args"] = "()" defs["igPopColumnsBackground"][1]["cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["defaults"] = {} defs["igPopColumnsBackground"][1]["funcname"] = "PopColumnsBackground" -defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3267" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3734" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -23837,7 +25609,7 @@ defs["igPopFocusScope"][1]["call_args"] = "()" defs["igPopFocusScope"][1]["cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["defaults"] = {} defs["igPopFocusScope"][1]["funcname"] = "PopFocusScope" -defs["igPopFocusScope"][1]["location"] = "imgui_internal:3251" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3700" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -23853,7 +25625,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:410" +defs["igPopFont"][1]["location"] = "imgui:447" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -23869,7 +25641,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:486" +defs["igPopID"][1]["location"] = "imgui:529" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -23885,7 +25657,7 @@ defs["igPopItemFlag"][1]["call_args"] = "()" defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["defaults"] = {} defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" -defs["igPopItemFlag"][1]["location"] = "imgui_internal:3066" +defs["igPopItemFlag"][1]["location"] = "imgui:457" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -23901,7 +25673,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:424" +defs["igPopItemWidth"][1]["location"] = "imgui:461" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -23921,7 +25693,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:413" +defs["igPopStyleColor"][1]["location"] = "imgui:450" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -23941,7 +25713,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:416" +defs["igPopStyleVar"][1]["location"] = "imgui:455" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -23957,7 +25729,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:428" +defs["igPopTextWrapPos"][1]["location"] = "imgui:465" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -23977,58 +25749,20 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:518" +defs["igProgressBar"][1]["location"] = "imgui:563" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" defs["igProgressBar"][1]["signature"] = "(float,const ImVec2,const char*)" defs["igProgressBar"][1]["stname"] = "" defs["igProgressBar"]["(float,const ImVec2,const char*)"] = defs["igProgressBar"][1] -defs["igPushAllowKeyboardFocus"] = {} -defs["igPushAllowKeyboardFocus"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["args"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["name"] = "allow_keyboard_focus" -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["type"] = "bool" -defs["igPushAllowKeyboardFocus"][1]["argsoriginal"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:417" -defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPushAllowKeyboardFocus"][1]["signature"] = "(bool)" -defs["igPushAllowKeyboardFocus"][1]["stname"] = "" -defs["igPushAllowKeyboardFocus"]["(bool)"] = defs["igPushAllowKeyboardFocus"][1] -defs["igPushButtonRepeat"] = {} -defs["igPushButtonRepeat"][1] = {} -defs["igPushButtonRepeat"][1]["args"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["argsT"] = {} -defs["igPushButtonRepeat"][1]["argsT"][1] = {} -defs["igPushButtonRepeat"][1]["argsT"][1]["name"] = "repeat" -defs["igPushButtonRepeat"][1]["argsT"][1]["type"] = "bool" -defs["igPushButtonRepeat"][1]["argsoriginal"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" -defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["defaults"] = {} -defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui:419" -defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["ret"] = "void" -defs["igPushButtonRepeat"][1]["signature"] = "(bool)" -defs["igPushButtonRepeat"][1]["stname"] = "" -defs["igPushButtonRepeat"]["(bool)"] = defs["igPushButtonRepeat"][1] defs["igPushClipRect"] = {} defs["igPushClipRect"][1] = {} defs["igPushClipRect"][1]["args"] = "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)" @@ -24047,7 +25781,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui:854" +defs["igPushClipRect"][1]["location"] = "imgui:925" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -24066,7 +25800,7 @@ defs["igPushColumnClipRect"][1]["call_args"] = "(column_index)" defs["igPushColumnClipRect"][1]["cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["defaults"] = {} defs["igPushColumnClipRect"][1]["funcname"] = "PushColumnClipRect" -defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3265" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3732" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -24082,7 +25816,7 @@ defs["igPushColumnsBackground"][1]["call_args"] = "()" defs["igPushColumnsBackground"][1]["cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["defaults"] = {} defs["igPushColumnsBackground"][1]["funcname"] = "PushColumnsBackground" -defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3266" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3733" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -24101,7 +25835,7 @@ defs["igPushFocusScope"][1]["call_args"] = "(id)" defs["igPushFocusScope"][1]["cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["defaults"] = {} defs["igPushFocusScope"][1]["funcname"] = "PushFocusScope" -defs["igPushFocusScope"][1]["location"] = "imgui_internal:3250" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3699" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -24120,7 +25854,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:409" +defs["igPushFont"][1]["location"] = "imgui:446" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -24139,7 +25873,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:482" +defs["igPushID"][1]["location"] = "imgui:525" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -24159,7 +25893,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:483" +defs["igPushID"][2]["location"] = "imgui:526" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -24176,7 +25910,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:484" +defs["igPushID"][3]["location"] = "imgui:527" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -24193,7 +25927,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:485" +defs["igPushID"][4]["location"] = "imgui:528" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -24218,7 +25952,7 @@ defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["defaults"] = {} defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" -defs["igPushItemFlag"][1]["location"] = "imgui_internal:3065" +defs["igPushItemFlag"][1]["location"] = "imgui:456" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -24237,7 +25971,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:423" +defs["igPushItemWidth"][1]["location"] = "imgui:460" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -24259,7 +25993,7 @@ defs["igPushMultiItemsWidths"][1]["call_args"] = "(components,width_full)" defs["igPushMultiItemsWidths"][1]["cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["defaults"] = {} defs["igPushMultiItemsWidths"][1]["funcname"] = "PushMultiItemsWidths" -defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3059" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3481" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -24278,7 +26012,7 @@ defs["igPushOverrideID"][1]["call_args"] = "(id)" defs["igPushOverrideID"][1]["cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["defaults"] = {} defs["igPushOverrideID"][1]["funcname"] = "PushOverrideID" -defs["igPushOverrideID"][1]["location"] = "imgui_internal:3047" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:3467" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -24300,7 +26034,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:411" +defs["igPushStyleColor"][1]["location"] = "imgui:448" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -24320,7 +26054,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:412" +defs["igPushStyleColor"][2]["location"] = "imgui:449" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -24343,7 +26077,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:414" +defs["igPushStyleVar"][1]["location"] = "imgui:451" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -24363,7 +26097,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:415" +defs["igPushStyleVar"][2]["location"] = "imgui:452" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -24371,6 +26105,50 @@ defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] +defs["igPushStyleVarX"] = {} +defs["igPushStyleVarX"][1] = {} +defs["igPushStyleVarX"][1]["args"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["argsT"] = {} +defs["igPushStyleVarX"][1]["argsT"][1] = {} +defs["igPushStyleVarX"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarX"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarX"][1]["argsT"][2] = {} +defs["igPushStyleVarX"][1]["argsT"][2]["name"] = "val_x" +defs["igPushStyleVarX"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarX"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["call_args"] = "(idx,val_x)" +defs["igPushStyleVarX"][1]["cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["defaults"] = {} +defs["igPushStyleVarX"][1]["funcname"] = "PushStyleVarX" +defs["igPushStyleVarX"][1]["location"] = "imgui:453" +defs["igPushStyleVarX"][1]["namespace"] = "ImGui" +defs["igPushStyleVarX"][1]["ov_cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["ret"] = "void" +defs["igPushStyleVarX"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarX"][1]["stname"] = "" +defs["igPushStyleVarX"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarX"][1] +defs["igPushStyleVarY"] = {} +defs["igPushStyleVarY"][1] = {} +defs["igPushStyleVarY"][1]["args"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["argsT"] = {} +defs["igPushStyleVarY"][1]["argsT"][1] = {} +defs["igPushStyleVarY"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarY"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarY"][1]["argsT"][2] = {} +defs["igPushStyleVarY"][1]["argsT"][2]["name"] = "val_y" +defs["igPushStyleVarY"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarY"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["call_args"] = "(idx,val_y)" +defs["igPushStyleVarY"][1]["cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["defaults"] = {} +defs["igPushStyleVarY"][1]["funcname"] = "PushStyleVarY" +defs["igPushStyleVarY"][1]["location"] = "imgui:454" +defs["igPushStyleVarY"][1]["namespace"] = "ImGui" +defs["igPushStyleVarY"][1]["ov_cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["ret"] = "void" +defs["igPushStyleVarY"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarY"][1]["stname"] = "" +defs["igPushStyleVarY"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarY"][1] defs["igPushTextWrapPos"] = {} defs["igPushTextWrapPos"][1] = {} defs["igPushTextWrapPos"][1]["args"] = "(float wrap_local_pos_x)" @@ -24384,7 +26162,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:427" +defs["igPushTextWrapPos"][1]["location"] = "imgui:464" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -24406,7 +26184,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:516" +defs["igRadioButton"][1]["location"] = "imgui:561" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -24429,7 +26207,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:517" +defs["igRadioButton"][2]["location"] = "imgui:562" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -24452,7 +26230,7 @@ defs["igRemoveContextHook"][1]["call_args"] = "(context,hook_to_remove)" defs["igRemoveContextHook"][1]["cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["defaults"] = {} defs["igRemoveContextHook"][1]["funcname"] = "RemoveContextHook" -defs["igRemoveContextHook"][1]["location"] = "imgui_internal:2994" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3411" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -24471,7 +26249,7 @@ defs["igRemoveSettingsHandler"][1]["call_args"] = "(type_name)" defs["igRemoveSettingsHandler"][1]["cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["defaults"] = {} defs["igRemoveSettingsHandler"][1]["funcname"] = "RemoveSettingsHandler" -defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3014" +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3428" defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -24487,7 +26265,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:304" +defs["igRender"][1]["location"] = "imgui:339" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -24519,7 +26297,7 @@ defs["igRenderArrow"][1]["cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["defaults"] = {} defs["igRenderArrow"][1]["defaults"]["scale"] = "1.0f" defs["igRenderArrow"][1]["funcname"] = "RenderArrow" -defs["igRenderArrow"][1]["location"] = "imgui_internal:3358" +defs["igRenderArrow"][1]["location"] = "imgui_internal:3834" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -24547,7 +26325,7 @@ defs["igRenderArrowDockMenu"][1]["call_args"] = "(draw_list,p_min,sz,col)" defs["igRenderArrowDockMenu"][1]["cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["defaults"] = {} defs["igRenderArrowDockMenu"][1]["funcname"] = "RenderArrowDockMenu" -defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3362" +defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3838" defs["igRenderArrowDockMenu"][1]["namespace"] = "ImGui" defs["igRenderArrowDockMenu"][1]["ov_cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["ret"] = "void" @@ -24578,7 +26356,7 @@ defs["igRenderArrowPointingAt"][1]["call_args"] = "(draw_list,pos,half_sz,direct defs["igRenderArrowPointingAt"][1]["cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["defaults"] = {} defs["igRenderArrowPointingAt"][1]["funcname"] = "RenderArrowPointingAt" -defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3361" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3837" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -24603,7 +26381,7 @@ defs["igRenderBullet"][1]["call_args"] = "(draw_list,pos,col)" defs["igRenderBullet"][1]["cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["defaults"] = {} defs["igRenderBullet"][1]["funcname"] = "RenderBullet" -defs["igRenderBullet"][1]["location"] = "imgui_internal:3359" +defs["igRenderBullet"][1]["location"] = "imgui_internal:3835" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -24631,7 +26409,7 @@ defs["igRenderCheckMark"][1]["call_args"] = "(draw_list,pos,col,sz)" defs["igRenderCheckMark"][1]["cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["defaults"] = {} defs["igRenderCheckMark"][1]["funcname"] = "RenderCheckMark" -defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3360" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3836" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -24673,7 +26451,7 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["flags"] = "0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3352" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3828" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -24682,26 +26460,29 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["stname"] = "" defs["igRenderColorRectWithAlphaCheckerboard"]["(ImDrawList*,ImVec2,ImVec2,ImU32,float,ImVec2,float,ImDrawFlags)"] = defs["igRenderColorRectWithAlphaCheckerboard"][1] defs["igRenderDragDropTargetRect"] = {} defs["igRenderDragDropTargetRect"][1] = {} -defs["igRenderDragDropTargetRect"][1]["args"] = "(const ImRect bb)" +defs["igRenderDragDropTargetRect"][1]["args"] = "(const ImRect bb,const ImRect item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["argsT"] = {} defs["igRenderDragDropTargetRect"][1]["argsT"][1] = {} defs["igRenderDragDropTargetRect"][1]["argsT"][1]["name"] = "bb" defs["igRenderDragDropTargetRect"][1]["argsT"][1]["type"] = "const ImRect" -defs["igRenderDragDropTargetRect"][1]["argsoriginal"] = "(const ImRect& bb)" -defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb)" +defs["igRenderDragDropTargetRect"][1]["argsT"][2] = {} +defs["igRenderDragDropTargetRect"][1]["argsT"][2]["name"] = "item_clip_rect" +defs["igRenderDragDropTargetRect"][1]["argsT"][2]["type"] = "const ImRect" +defs["igRenderDragDropTargetRect"][1]["argsoriginal"] = "(const ImRect& bb,const ImRect& item_clip_rect)" +defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb,item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["defaults"] = {} defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" -defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3259" +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3708" defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["ret"] = "void" -defs["igRenderDragDropTargetRect"][1]["signature"] = "(const ImRect)" +defs["igRenderDragDropTargetRect"][1]["signature"] = "(const ImRect,const ImRect)" defs["igRenderDragDropTargetRect"][1]["stname"] = "" -defs["igRenderDragDropTargetRect"]["(const ImRect)"] = defs["igRenderDragDropTargetRect"][1] +defs["igRenderDragDropTargetRect"]["(const ImRect,const ImRect)"] = defs["igRenderDragDropTargetRect"][1] defs["igRenderFrame"] = {} defs["igRenderFrame"][1] = {} -defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)" +defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding)" defs["igRenderFrame"][1]["argsT"] = {} defs["igRenderFrame"][1]["argsT"][1] = {} defs["igRenderFrame"][1]["argsT"][1]["name"] = "p_min" @@ -24713,19 +26494,19 @@ defs["igRenderFrame"][1]["argsT"][3] = {} defs["igRenderFrame"][1]["argsT"][3]["name"] = "fill_col" defs["igRenderFrame"][1]["argsT"][3]["type"] = "ImU32" defs["igRenderFrame"][1]["argsT"][4] = {} -defs["igRenderFrame"][1]["argsT"][4]["name"] = "border" +defs["igRenderFrame"][1]["argsT"][4]["name"] = "borders" defs["igRenderFrame"][1]["argsT"][4]["type"] = "bool" defs["igRenderFrame"][1]["argsT"][5] = {} defs["igRenderFrame"][1]["argsT"][5]["name"] = "rounding" defs["igRenderFrame"][1]["argsT"][5]["type"] = "float" -defs["igRenderFrame"][1]["argsoriginal"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border=true,float rounding=0.0f)" -defs["igRenderFrame"][1]["call_args"] = "(p_min,p_max,fill_col,border,rounding)" +defs["igRenderFrame"][1]["argsoriginal"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders=true,float rounding=0.0f)" +defs["igRenderFrame"][1]["call_args"] = "(p_min,p_max,fill_col,borders,rounding)" defs["igRenderFrame"][1]["cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["defaults"] = {} -defs["igRenderFrame"][1]["defaults"]["border"] = "true" +defs["igRenderFrame"][1]["defaults"]["borders"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" -defs["igRenderFrame"][1]["location"] = "imgui_internal:3350" +defs["igRenderFrame"][1]["location"] = "imgui_internal:3826" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -24751,7 +26532,7 @@ defs["igRenderFrameBorder"][1]["cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["defaults"] = {} defs["igRenderFrameBorder"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrameBorder"][1]["funcname"] = "RenderFrameBorder" -defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3351" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3827" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -24785,7 +26566,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(pos,scale,mouse_cursor,col_fill, defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3355" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3831" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -24805,13 +26586,13 @@ defs["igRenderNavHighlight"][1]["argsT"][2]["type"] = "ImGuiID" defs["igRenderNavHighlight"][1]["argsT"][3] = {} defs["igRenderNavHighlight"][1]["argsT"][3]["name"] = "flags" defs["igRenderNavHighlight"][1]["argsT"][3]["type"] = "ImGuiNavHighlightFlags" -defs["igRenderNavHighlight"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_TypeDefault)" +defs["igRenderNavHighlight"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_None)" defs["igRenderNavHighlight"][1]["call_args"] = "(bb,id,flags)" defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} -defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_TypeDefault" +defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_None" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3353" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3829" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -24835,7 +26616,7 @@ defs["igRenderPlatformWindowsDefault"][1]["defaults"] = {} defs["igRenderPlatformWindowsDefault"][1]["defaults"]["platform_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["defaults"]["renderer_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["funcname"] = "RenderPlatformWindowsDefault" -defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:982" +defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:1084" defs["igRenderPlatformWindowsDefault"][1]["namespace"] = "ImGui" defs["igRenderPlatformWindowsDefault"][1]["ov_cimguiname"] = "igRenderPlatformWindowsDefault" defs["igRenderPlatformWindowsDefault"][1]["ret"] = "void" @@ -24869,7 +26650,7 @@ defs["igRenderRectFilledRangeH"][1]["call_args"] = "(draw_list,rect,col,x_start_ defs["igRenderRectFilledRangeH"][1]["cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["defaults"] = {} defs["igRenderRectFilledRangeH"][1]["funcname"] = "RenderRectFilledRangeH" -defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3363" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3839" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -24900,7 +26681,7 @@ defs["igRenderRectFilledWithHole"][1]["call_args"] = "(draw_list,outer,inner,col defs["igRenderRectFilledWithHole"][1]["cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["defaults"] = {} defs["igRenderRectFilledWithHole"][1]["funcname"] = "RenderRectFilledWithHole" -defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3364" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3840" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -24930,7 +26711,7 @@ defs["igRenderText"][1]["defaults"] = {} defs["igRenderText"][1]["defaults"]["hide_text_after_hash"] = "true" defs["igRenderText"][1]["defaults"]["text_end"] = "NULL" defs["igRenderText"][1]["funcname"] = "RenderText" -defs["igRenderText"][1]["location"] = "imgui_internal:3345" +defs["igRenderText"][1]["location"] = "imgui_internal:3821" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -24969,7 +26750,7 @@ defs["igRenderTextClipped"][1]["defaults"] = {} defs["igRenderTextClipped"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClipped"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClipped"][1]["funcname"] = "RenderTextClipped" -defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3347" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3823" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -25011,7 +26792,7 @@ defs["igRenderTextClippedEx"][1]["defaults"] = {} defs["igRenderTextClippedEx"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClippedEx"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClippedEx"][1]["funcname"] = "RenderTextClippedEx" -defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3348" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3824" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -25051,7 +26832,7 @@ defs["igRenderTextEllipsis"][1]["call_args"] = "(draw_list,pos_min,pos_max,clip_ defs["igRenderTextEllipsis"][1]["cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["defaults"] = {} defs["igRenderTextEllipsis"][1]["funcname"] = "RenderTextEllipsis" -defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3349" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3825" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -25079,7 +26860,7 @@ defs["igRenderTextWrapped"][1]["call_args"] = "(pos,text,text_end,wrap_width)" defs["igRenderTextWrapped"][1]["cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["defaults"] = {} defs["igRenderTextWrapped"][1]["funcname"] = "RenderTextWrapped" -defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3346" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3822" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -25099,7 +26880,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui:945" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1041" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -25123,7 +26904,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:448" +defs["igSameLine"][1]["location"] = "imgui:500" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -25142,7 +26923,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:961" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1057" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -25162,7 +26943,7 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:962" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1058" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -25184,7 +26965,7 @@ defs["igScaleWindowsInViewport"][1]["call_args"] = "(viewport,scale)" defs["igScaleWindowsInViewport"][1]["cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["defaults"] = {} defs["igScaleWindowsInViewport"][1]["funcname"] = "ScaleWindowsInViewport" -defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:2999" +defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:3416" defs["igScaleWindowsInViewport"][1]["namespace"] = "ImGui" defs["igScaleWindowsInViewport"][1]["ov_cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["ret"] = "void" @@ -25206,7 +26987,7 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" -defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3032" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3452" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -25226,7 +27007,7 @@ defs["igScrollToItem"][1]["cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["defaults"] = {} defs["igScrollToItem"][1]["defaults"]["flags"] = "0" defs["igScrollToItem"][1]["funcname"] = "ScrollToItem" -defs["igScrollToItem"][1]["location"] = "imgui_internal:3028" +defs["igScrollToItem"][1]["location"] = "imgui_internal:3448" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -25252,7 +27033,7 @@ defs["igScrollToRect"][1]["cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["defaults"] = {} defs["igScrollToRect"][1]["defaults"]["flags"] = "0" defs["igScrollToRect"][1]["funcname"] = "ScrollToRect" -defs["igScrollToRect"][1]["location"] = "imgui_internal:3029" +defs["igScrollToRect"][1]["location"] = "imgui_internal:3449" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -25281,7 +27062,7 @@ defs["igScrollToRectEx"][1]["cimguiname"] = "igScrollToRectEx" defs["igScrollToRectEx"][1]["defaults"] = {} defs["igScrollToRectEx"][1]["defaults"]["flags"] = "0" defs["igScrollToRectEx"][1]["funcname"] = "ScrollToRectEx" -defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3030" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3450" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -25301,7 +27082,7 @@ defs["igScrollbar"][1]["call_args"] = "(axis)" defs["igScrollbar"][1]["cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["defaults"] = {} defs["igScrollbar"][1]["funcname"] = "Scrollbar" -defs["igScrollbar"][1]["location"] = "imgui_internal:3379" +defs["igScrollbar"][1]["location"] = "imgui_internal:3856" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -25338,7 +27119,7 @@ defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "imgui_internal:3380" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3857" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -25369,7 +27150,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:632" +defs["igSelectable"][1]["location"] = "imgui:682" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -25397,7 +27178,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:633" +defs["igSelectable"][2]["location"] = "imgui:683" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -25414,7 +27195,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:447" +defs["igSeparator"][1]["location"] = "imgui:499" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -25423,23 +27204,74 @@ defs["igSeparator"][1]["stname"] = "" defs["igSeparator"]["()"] = defs["igSeparator"][1] defs["igSeparatorEx"] = {} defs["igSeparatorEx"][1] = {} -defs["igSeparatorEx"][1]["args"] = "(ImGuiSeparatorFlags flags)" +defs["igSeparatorEx"][1]["args"] = "(ImGuiSeparatorFlags flags,float thickness)" defs["igSeparatorEx"][1]["argsT"] = {} defs["igSeparatorEx"][1]["argsT"][1] = {} defs["igSeparatorEx"][1]["argsT"][1]["name"] = "flags" defs["igSeparatorEx"][1]["argsT"][1]["type"] = "ImGuiSeparatorFlags" -defs["igSeparatorEx"][1]["argsoriginal"] = "(ImGuiSeparatorFlags flags)" -defs["igSeparatorEx"][1]["call_args"] = "(flags)" +defs["igSeparatorEx"][1]["argsT"][2] = {} +defs["igSeparatorEx"][1]["argsT"][2]["name"] = "thickness" +defs["igSeparatorEx"][1]["argsT"][2]["type"] = "float" +defs["igSeparatorEx"][1]["argsoriginal"] = "(ImGuiSeparatorFlags flags,float thickness=1.0f)" +defs["igSeparatorEx"][1]["call_args"] = "(flags,thickness)" defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} +defs["igSeparatorEx"][1]["defaults"]["thickness"] = "1.0f" defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:3372" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3848" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" -defs["igSeparatorEx"][1]["signature"] = "(ImGuiSeparatorFlags)" +defs["igSeparatorEx"][1]["signature"] = "(ImGuiSeparatorFlags,float)" defs["igSeparatorEx"][1]["stname"] = "" -defs["igSeparatorEx"]["(ImGuiSeparatorFlags)"] = defs["igSeparatorEx"][1] +defs["igSeparatorEx"]["(ImGuiSeparatorFlags,float)"] = defs["igSeparatorEx"][1] +defs["igSeparatorText"] = {} +defs["igSeparatorText"][1] = {} +defs["igSeparatorText"][1]["args"] = "(const char* label)" +defs["igSeparatorText"][1]["argsT"] = {} +defs["igSeparatorText"][1]["argsT"][1] = {} +defs["igSeparatorText"][1]["argsT"][1]["name"] = "label" +defs["igSeparatorText"][1]["argsT"][1]["type"] = "const char*" +defs["igSeparatorText"][1]["argsoriginal"] = "(const char* label)" +defs["igSeparatorText"][1]["call_args"] = "(label)" +defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["defaults"] = {} +defs["igSeparatorText"][1]["funcname"] = "SeparatorText" +defs["igSeparatorText"][1]["location"] = "imgui:549" +defs["igSeparatorText"][1]["namespace"] = "ImGui" +defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["ret"] = "void" +defs["igSeparatorText"][1]["signature"] = "(const char*)" +defs["igSeparatorText"][1]["stname"] = "" +defs["igSeparatorText"]["(const char*)"] = defs["igSeparatorText"][1] +defs["igSeparatorTextEx"] = {} +defs["igSeparatorTextEx"][1] = {} +defs["igSeparatorTextEx"][1]["args"] = "(ImGuiID id,const char* label,const char* label_end,float extra_width)" +defs["igSeparatorTextEx"][1]["argsT"] = {} +defs["igSeparatorTextEx"][1]["argsT"][1] = {} +defs["igSeparatorTextEx"][1]["argsT"][1]["name"] = "id" +defs["igSeparatorTextEx"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSeparatorTextEx"][1]["argsT"][2] = {} +defs["igSeparatorTextEx"][1]["argsT"][2]["name"] = "label" +defs["igSeparatorTextEx"][1]["argsT"][2]["type"] = "const char*" +defs["igSeparatorTextEx"][1]["argsT"][3] = {} +defs["igSeparatorTextEx"][1]["argsT"][3]["name"] = "label_end" +defs["igSeparatorTextEx"][1]["argsT"][3]["type"] = "const char*" +defs["igSeparatorTextEx"][1]["argsT"][4] = {} +defs["igSeparatorTextEx"][1]["argsT"][4]["name"] = "extra_width" +defs["igSeparatorTextEx"][1]["argsT"][4]["type"] = "float" +defs["igSeparatorTextEx"][1]["argsoriginal"] = "(ImGuiID id,const char* label,const char* label_end,float extra_width)" +defs["igSeparatorTextEx"][1]["call_args"] = "(id,label,label_end,extra_width)" +defs["igSeparatorTextEx"][1]["cimguiname"] = "igSeparatorTextEx" +defs["igSeparatorTextEx"][1]["defaults"] = {} +defs["igSeparatorTextEx"][1]["funcname"] = "SeparatorTextEx" +defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3849" +defs["igSeparatorTextEx"][1]["namespace"] = "ImGui" +defs["igSeparatorTextEx"][1]["ov_cimguiname"] = "igSeparatorTextEx" +defs["igSeparatorTextEx"][1]["ret"] = "void" +defs["igSeparatorTextEx"][1]["signature"] = "(ImGuiID,const char*,const char*,float)" +defs["igSeparatorTextEx"][1]["stname"] = "" +defs["igSeparatorTextEx"]["(ImGuiID,const char*,const char*,float)"] = defs["igSeparatorTextEx"][1] defs["igSetActiveID"] = {} defs["igSetActiveID"][1] = {} defs["igSetActiveID"][1]["args"] = "(ImGuiID id,ImGuiWindow* window)" @@ -25455,7 +27287,7 @@ defs["igSetActiveID"][1]["call_args"] = "(id,window)" defs["igSetActiveID"][1]["cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["defaults"] = {} defs["igSetActiveID"][1]["funcname"] = "SetActiveID" -defs["igSetActiveID"][1]["location"] = "imgui_internal:3040" +defs["igSetActiveID"][1]["location"] = "imgui_internal:3460" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -25471,7 +27303,7 @@ defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" -defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3142" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3581" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" @@ -25497,7 +27329,7 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui:972" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1075" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -25516,7 +27348,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui:953" +defs["igSetClipboardText"][1]["location"] = "imgui:1049" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -25535,7 +27367,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:607" +defs["igSetColorEditOptions"][1]["location"] = "imgui:656" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -25557,7 +27389,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:790" +defs["igSetColumnOffset"][1]["location"] = "imgui:860" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -25579,7 +27411,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:788" +defs["igSetColumnWidth"][1]["location"] = "imgui:858" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -25598,7 +27430,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:297" +defs["igSetCurrentContext"][1]["location"] = "imgui:331" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -25617,7 +27449,7 @@ defs["igSetCurrentFont"][1]["call_args"] = "(font)" defs["igSetCurrentFont"][1]["cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["defaults"] = {} defs["igSetCurrentFont"][1]["funcname"] = "SetCurrentFont" -defs["igSetCurrentFont"][1]["location"] = "imgui_internal:2976" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3391" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -25639,7 +27471,7 @@ defs["igSetCurrentViewport"][1]["call_args"] = "(window,viewport)" defs["igSetCurrentViewport"][1]["cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["defaults"] = {} defs["igSetCurrentViewport"][1]["funcname"] = "SetCurrentViewport" -defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3002" +defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3419" defs["igSetCurrentViewport"][1]["namespace"] = "ImGui" defs["igSetCurrentViewport"][1]["ov_cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["ret"] = "void" @@ -25658,7 +27490,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:459" +defs["igSetCursorPos"][1]["location"] = "imgui:493" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -25677,7 +27509,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:460" +defs["igSetCursorPosX"][1]["location"] = "imgui:494" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -25696,7 +27528,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:461" +defs["igSetCursorPosY"][1]["location"] = "imgui:495" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -25715,7 +27547,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:464" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:488" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -25744,7 +27576,7 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui:838" +defs["igSetDragDropPayload"][1]["location"] = "imgui:908" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -25766,7 +27598,7 @@ defs["igSetFocusID"][1]["call_args"] = "(id,window)" defs["igSetFocusID"][1]["cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["defaults"] = {} defs["igSetFocusID"][1]["funcname"] = "SetFocusID" -defs["igSetFocusID"][1]["location"] = "imgui_internal:3041" +defs["igSetFocusID"][1]["location"] = "imgui_internal:3461" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -25785,29 +27617,13 @@ defs["igSetHoveredID"][1]["call_args"] = "(id)" defs["igSetHoveredID"][1]["cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["defaults"] = {} defs["igSetHoveredID"][1]["funcname"] = "SetHoveredID" -defs["igSetHoveredID"][1]["location"] = "imgui_internal:3044" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:3464" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" defs["igSetHoveredID"][1]["signature"] = "(ImGuiID)" defs["igSetHoveredID"][1]["stname"] = "" defs["igSetHoveredID"]["(ImGuiID)"] = defs["igSetHoveredID"][1] -defs["igSetItemAllowOverlap"] = {} -defs["igSetItemAllowOverlap"][1] = {} -defs["igSetItemAllowOverlap"][1]["args"] = "()" -defs["igSetItemAllowOverlap"][1]["argsT"] = {} -defs["igSetItemAllowOverlap"][1]["argsoriginal"] = "()" -defs["igSetItemAllowOverlap"][1]["call_args"] = "()" -defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["defaults"] = {} -defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui:882" -defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" -defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["ret"] = "void" -defs["igSetItemAllowOverlap"][1]["signature"] = "()" -defs["igSetItemAllowOverlap"][1]["stname"] = "" -defs["igSetItemAllowOverlap"]["()"] = defs["igSetItemAllowOverlap"][1] defs["igSetItemDefaultFocus"] = {} defs["igSetItemDefaultFocus"][1] = {} defs["igSetItemDefaultFocus"][1]["args"] = "()" @@ -25817,7 +27633,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:859" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:930" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -25826,27 +27642,89 @@ defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] defs["igSetItemKeyOwner"] = {} defs["igSetItemKeyOwner"][1] = {} -defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key)" defs["igSetItemKeyOwner"][1]["argsT"] = {} defs["igSetItemKeyOwner"][1]["argsT"][1] = {} defs["igSetItemKeyOwner"][1]["argsT"][1]["name"] = "key" defs["igSetItemKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igSetItemKeyOwner"][1]["argsT"][2] = {} -defs["igSetItemKeyOwner"][1]["argsT"][2]["name"] = "flags" -defs["igSetItemKeyOwner"][1]["argsT"][2]["type"] = "ImGuiInputFlags" -defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags=0)" -defs["igSetItemKeyOwner"][1]["call_args"] = "(key,flags)" +defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igSetItemKeyOwner"][1]["call_args"] = "(key)" defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["defaults"] = {} -defs["igSetItemKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3158" +defs["igSetItemKeyOwner"][1]["location"] = "imgui:1023" defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" -defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner_Nil" defs["igSetItemKeyOwner"][1]["ret"] = "void" -defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiInputFlags)" +defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey)" defs["igSetItemKeyOwner"][1]["stname"] = "" -defs["igSetItemKeyOwner"]["(ImGuiKey,ImGuiInputFlags)"] = defs["igSetItemKeyOwner"][1] +defs["igSetItemKeyOwner"][2] = {} +defs["igSetItemKeyOwner"][2]["args"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][2]["argsT"] = {} +defs["igSetItemKeyOwner"][2]["argsT"][1] = {} +defs["igSetItemKeyOwner"][2]["argsT"][1]["name"] = "key" +defs["igSetItemKeyOwner"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igSetItemKeyOwner"][2]["argsT"][2] = {} +defs["igSetItemKeyOwner"][2]["argsT"][2]["name"] = "flags" +defs["igSetItemKeyOwner"][2]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetItemKeyOwner"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][2]["call_args"] = "(key,flags)" +defs["igSetItemKeyOwner"][2]["cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][2]["defaults"] = {} +defs["igSetItemKeyOwner"][2]["funcname"] = "SetItemKeyOwner" +defs["igSetItemKeyOwner"][2]["location"] = "imgui_internal:3598" +defs["igSetItemKeyOwner"][2]["namespace"] = "ImGui" +defs["igSetItemKeyOwner"][2]["ov_cimguiname"] = "igSetItemKeyOwner_InputFlags" +defs["igSetItemKeyOwner"][2]["ret"] = "void" +defs["igSetItemKeyOwner"][2]["signature"] = "(ImGuiKey,ImGuiInputFlags)" +defs["igSetItemKeyOwner"][2]["stname"] = "" +defs["igSetItemKeyOwner"]["(ImGuiKey)"] = defs["igSetItemKeyOwner"][1] +defs["igSetItemKeyOwner"]["(ImGuiKey,ImGuiInputFlags)"] = defs["igSetItemKeyOwner"][2] +defs["igSetItemTooltip"] = {} +defs["igSetItemTooltip"][1] = {} +defs["igSetItemTooltip"][1]["args"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["argsT"] = {} +defs["igSetItemTooltip"][1]["argsT"][1] = {} +defs["igSetItemTooltip"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltip"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltip"][1]["argsT"][2] = {} +defs["igSetItemTooltip"][1]["argsT"][2]["name"] = "..." +defs["igSetItemTooltip"][1]["argsT"][2]["type"] = "..." +defs["igSetItemTooltip"][1]["argsoriginal"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["call_args"] = "(fmt,...)" +defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["defaults"] = {} +defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" +defs["igSetItemTooltip"][1]["isvararg"] = "...)" +defs["igSetItemTooltip"][1]["location"] = "imgui:750" +defs["igSetItemTooltip"][1]["namespace"] = "ImGui" +defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["ret"] = "void" +defs["igSetItemTooltip"][1]["signature"] = "(const char*,...)" +defs["igSetItemTooltip"][1]["stname"] = "" +defs["igSetItemTooltip"]["(const char*,...)"] = defs["igSetItemTooltip"][1] +defs["igSetItemTooltipV"] = {} +defs["igSetItemTooltipV"][1] = {} +defs["igSetItemTooltipV"][1]["args"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["argsT"] = {} +defs["igSetItemTooltipV"][1]["argsT"][1] = {} +defs["igSetItemTooltipV"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltipV"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltipV"][1]["argsT"][2] = {} +defs["igSetItemTooltipV"][1]["argsT"][2]["name"] = "args" +defs["igSetItemTooltipV"][1]["argsT"][2]["type"] = "va_list" +defs["igSetItemTooltipV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" +defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["defaults"] = {} +defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" +defs["igSetItemTooltipV"][1]["location"] = "imgui:751" +defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" +defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["ret"] = "void" +defs["igSetItemTooltipV"][1]["signature"] = "(const char*,va_list)" +defs["igSetItemTooltipV"][1]["stname"] = "" +defs["igSetItemTooltipV"]["(const char*,va_list)"] = defs["igSetItemTooltipV"][1] defs["igSetKeyOwner"] = {} defs["igSetKeyOwner"][1] = {} defs["igSetKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)" @@ -25866,13 +27744,39 @@ defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["defaults"] = {} defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" -defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3157" +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3596" defs["igSetKeyOwner"][1]["namespace"] = "ImGui" defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["ret"] = "void" defs["igSetKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiID,ImGuiInputFlags)" defs["igSetKeyOwner"][1]["stname"] = "" defs["igSetKeyOwner"]["(ImGuiKey,ImGuiID,ImGuiInputFlags)"] = defs["igSetKeyOwner"][1] +defs["igSetKeyOwnersForKeyChord"] = {} +defs["igSetKeyOwnersForKeyChord"][1] = {} +defs["igSetKeyOwnersForKeyChord"][1]["args"] = "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][1] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][1]["name"] = "key" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][2] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][2]["name"] = "owner_id" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][3] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][3]["name"] = "flags" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igSetKeyOwnersForKeyChord"][1]["argsoriginal"] = "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags=0)" +defs["igSetKeyOwnersForKeyChord"][1]["call_args"] = "(key,owner_id,flags)" +defs["igSetKeyOwnersForKeyChord"][1]["cimguiname"] = "igSetKeyOwnersForKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["defaults"] = {} +defs["igSetKeyOwnersForKeyChord"][1]["defaults"]["flags"] = "0" +defs["igSetKeyOwnersForKeyChord"][1]["funcname"] = "SetKeyOwnersForKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3597" +defs["igSetKeyOwnersForKeyChord"][1]["namespace"] = "ImGui" +defs["igSetKeyOwnersForKeyChord"][1]["ov_cimguiname"] = "igSetKeyOwnersForKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["ret"] = "void" +defs["igSetKeyOwnersForKeyChord"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igSetKeyOwnersForKeyChord"][1]["stname"] = "" +defs["igSetKeyOwnersForKeyChord"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igSetKeyOwnersForKeyChord"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} defs["igSetKeyboardFocusHere"][1]["args"] = "(int offset)" @@ -25886,7 +27790,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:860" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:931" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -25914,7 +27818,7 @@ defs["igSetLastItemData"][1]["call_args"] = "(item_id,in_flags,status_flags,item defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" -defs["igSetLastItemData"][1]["location"] = "imgui_internal:3056" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3478" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -25933,13 +27837,32 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:947" +defs["igSetMouseCursor"][1]["location"] = "imgui:1043" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" defs["igSetMouseCursor"][1]["signature"] = "(ImGuiMouseCursor)" defs["igSetMouseCursor"][1]["stname"] = "" defs["igSetMouseCursor"]["(ImGuiMouseCursor)"] = defs["igSetMouseCursor"][1] +defs["igSetNavFocusScope"] = {} +defs["igSetNavFocusScope"][1] = {} +defs["igSetNavFocusScope"][1]["args"] = "(ImGuiID focus_scope_id)" +defs["igSetNavFocusScope"][1]["argsT"] = {} +defs["igSetNavFocusScope"][1]["argsT"][1] = {} +defs["igSetNavFocusScope"][1]["argsT"][1]["name"] = "focus_scope_id" +defs["igSetNavFocusScope"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNavFocusScope"][1]["argsoriginal"] = "(ImGuiID focus_scope_id)" +defs["igSetNavFocusScope"][1]["call_args"] = "(focus_scope_id)" +defs["igSetNavFocusScope"][1]["cimguiname"] = "igSetNavFocusScope" +defs["igSetNavFocusScope"][1]["defaults"] = {} +defs["igSetNavFocusScope"][1]["funcname"] = "SetNavFocusScope" +defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3543" +defs["igSetNavFocusScope"][1]["namespace"] = "ImGui" +defs["igSetNavFocusScope"][1]["ov_cimguiname"] = "igSetNavFocusScope" +defs["igSetNavFocusScope"][1]["ret"] = "void" +defs["igSetNavFocusScope"][1]["signature"] = "(ImGuiID)" +defs["igSetNavFocusScope"][1]["stname"] = "" +defs["igSetNavFocusScope"]["(ImGuiID)"] = defs["igSetNavFocusScope"][1] defs["igSetNavID"] = {} defs["igSetNavID"][1] = {} defs["igSetNavID"][1]["args"] = "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)" @@ -25961,7 +27884,7 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id,rect_rel)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" -defs["igSetNavID"][1]["location"] = "imgui_internal:3111" +defs["igSetNavID"][1]["location"] = "imgui_internal:3542" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -25980,7 +27903,7 @@ defs["igSetNavWindow"][1]["call_args"] = "(window)" defs["igSetNavWindow"][1]["cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["defaults"] = {} defs["igSetNavWindow"][1]["funcname"] = "SetNavWindow" -defs["igSetNavWindow"][1]["location"] = "imgui_internal:3110" +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3541" defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -25999,7 +27922,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:927" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:997" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -26018,13 +27941,29 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:948" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1044" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" defs["igSetNextFrameWantCaptureMouse"][1]["signature"] = "(bool)" defs["igSetNextFrameWantCaptureMouse"][1]["stname"] = "" defs["igSetNextFrameWantCaptureMouse"]["(bool)"] = defs["igSetNextFrameWantCaptureMouse"][1] +defs["igSetNextItemAllowOverlap"] = {} +defs["igSetNextItemAllowOverlap"][1] = {} +defs["igSetNextItemAllowOverlap"][1]["args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["argsT"] = {} +defs["igSetNextItemAllowOverlap"][1]["argsoriginal"] = "()" +defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} +defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:934" +defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" +defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" +defs["igSetNextItemAllowOverlap"][1]["signature"] = "()" +defs["igSetNextItemAllowOverlap"][1]["stname"] = "" +defs["igSetNextItemAllowOverlap"]["()"] = defs["igSetNextItemAllowOverlap"][1] defs["igSetNextItemOpen"] = {} defs["igSetNextItemOpen"][1] = {} defs["igSetNextItemOpen"][1]["args"] = "(bool is_open,ImGuiCond cond)" @@ -26041,13 +27980,96 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:627" +defs["igSetNextItemOpen"][1]["location"] = "imgui:676" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" defs["igSetNextItemOpen"][1]["signature"] = "(bool,ImGuiCond)" defs["igSetNextItemOpen"][1]["stname"] = "" defs["igSetNextItemOpen"]["(bool,ImGuiCond)"] = defs["igSetNextItemOpen"][1] +defs["igSetNextItemRefVal"] = {} +defs["igSetNextItemRefVal"][1] = {} +defs["igSetNextItemRefVal"][1]["args"] = "(ImGuiDataType data_type,void* p_data)" +defs["igSetNextItemRefVal"][1]["argsT"] = {} +defs["igSetNextItemRefVal"][1]["argsT"][1] = {} +defs["igSetNextItemRefVal"][1]["argsT"][1]["name"] = "data_type" +defs["igSetNextItemRefVal"][1]["argsT"][1]["type"] = "ImGuiDataType" +defs["igSetNextItemRefVal"][1]["argsT"][2] = {} +defs["igSetNextItemRefVal"][1]["argsT"][2]["name"] = "p_data" +defs["igSetNextItemRefVal"][1]["argsT"][2]["type"] = "void*" +defs["igSetNextItemRefVal"][1]["argsoriginal"] = "(ImGuiDataType data_type,void* p_data)" +defs["igSetNextItemRefVal"][1]["call_args"] = "(data_type,p_data)" +defs["igSetNextItemRefVal"][1]["cimguiname"] = "igSetNextItemRefVal" +defs["igSetNextItemRefVal"][1]["defaults"] = {} +defs["igSetNextItemRefVal"][1]["funcname"] = "SetNextItemRefVal" +defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3901" +defs["igSetNextItemRefVal"][1]["namespace"] = "ImGui" +defs["igSetNextItemRefVal"][1]["ov_cimguiname"] = "igSetNextItemRefVal" +defs["igSetNextItemRefVal"][1]["ret"] = "void" +defs["igSetNextItemRefVal"][1]["signature"] = "(ImGuiDataType,void*)" +defs["igSetNextItemRefVal"][1]["stname"] = "" +defs["igSetNextItemRefVal"]["(ImGuiDataType,void*)"] = defs["igSetNextItemRefVal"][1] +defs["igSetNextItemSelectionUserData"] = {} +defs["igSetNextItemSelectionUserData"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["args"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["argsT"] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["name"] = "selection_user_data" +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["type"] = "ImGuiSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["argsoriginal"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} +defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:694" +defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" +defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" +defs["igSetNextItemSelectionUserData"][1]["signature"] = "(ImGuiSelectionUserData)" +defs["igSetNextItemSelectionUserData"][1]["stname"] = "" +defs["igSetNextItemSelectionUserData"]["(ImGuiSelectionUserData)"] = defs["igSetNextItemSelectionUserData"][1] +defs["igSetNextItemShortcut"] = {} +defs["igSetNextItemShortcut"][1] = {} +defs["igSetNextItemShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" +defs["igSetNextItemShortcut"][1]["argsT"] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igSetNextItemShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetNextItemShortcut"][1]["argsT"][2] = {} +defs["igSetNextItemShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igSetNextItemShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetNextItemShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igSetNextItemShortcut"][1]["call_args"] = "(key_chord,flags)" +defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["defaults"] = {} +defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" +defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["location"] = "imgui:1015" +defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" +defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["ret"] = "void" +defs["igSetNextItemShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" +defs["igSetNextItemShortcut"][1]["stname"] = "" +defs["igSetNextItemShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igSetNextItemShortcut"][1] +defs["igSetNextItemStorageID"] = {} +defs["igSetNextItemStorageID"][1] = {} +defs["igSetNextItemStorageID"][1]["args"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["argsT"] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1]["name"] = "storage_id" +defs["igSetNextItemStorageID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNextItemStorageID"][1]["argsoriginal"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["call_args"] = "(storage_id)" +defs["igSetNextItemStorageID"][1]["cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["defaults"] = {} +defs["igSetNextItemStorageID"][1]["funcname"] = "SetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["location"] = "imgui:677" +defs["igSetNextItemStorageID"][1]["namespace"] = "ImGui" +defs["igSetNextItemStorageID"][1]["ov_cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["ret"] = "void" +defs["igSetNextItemStorageID"][1]["signature"] = "(ImGuiID)" +defs["igSetNextItemStorageID"][1]["stname"] = "" +defs["igSetNextItemStorageID"]["(ImGuiID)"] = defs["igSetNextItemStorageID"][1] defs["igSetNextItemWidth"] = {} defs["igSetNextItemWidth"][1] = {} defs["igSetNextItemWidth"][1]["args"] = "(float item_width)" @@ -26060,7 +28082,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:425" +defs["igSetNextItemWidth"][1]["location"] = "imgui:462" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -26079,7 +28101,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:374" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:419" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -26098,7 +28120,7 @@ defs["igSetNextWindowClass"][1]["call_args"] = "(window_class)" defs["igSetNextWindowClass"][1]["cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["defaults"] = {} defs["igSetNextWindowClass"][1]["funcname"] = "SetNextWindowClass" -defs["igSetNextWindowClass"][1]["location"] = "imgui:818" +defs["igSetNextWindowClass"][1]["location"] = "imgui:888" defs["igSetNextWindowClass"][1]["namespace"] = "ImGui" defs["igSetNextWindowClass"][1]["ov_cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["ret"] = "void" @@ -26121,7 +28143,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:371" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:416" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -26140,7 +28162,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:370" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:415" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -26163,7 +28185,7 @@ defs["igSetNextWindowDockID"][1]["cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["defaults"] = {} defs["igSetNextWindowDockID"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowDockID"][1]["funcname"] = "SetNextWindowDockID" -defs["igSetNextWindowDockID"][1]["location"] = "imgui:817" +defs["igSetNextWindowDockID"][1]["location"] = "imgui:887" defs["igSetNextWindowDockID"][1]["namespace"] = "ImGui" defs["igSetNextWindowDockID"][1]["ov_cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["ret"] = "void" @@ -26179,7 +28201,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:372" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:417" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -26206,13 +28228,32 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:367" +defs["igSetNextWindowPos"][1]["location"] = "imgui:412" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" defs["igSetNextWindowPos"][1]["signature"] = "(const ImVec2,ImGuiCond,const ImVec2)" defs["igSetNextWindowPos"][1]["stname"] = "" defs["igSetNextWindowPos"]["(const ImVec2,ImGuiCond,const ImVec2)"] = defs["igSetNextWindowPos"][1] +defs["igSetNextWindowRefreshPolicy"] = {} +defs["igSetNextWindowRefreshPolicy"][1] = {} +defs["igSetNextWindowRefreshPolicy"][1]["args"] = "(ImGuiWindowRefreshFlags flags)" +defs["igSetNextWindowRefreshPolicy"][1]["argsT"] = {} +defs["igSetNextWindowRefreshPolicy"][1]["argsT"][1] = {} +defs["igSetNextWindowRefreshPolicy"][1]["argsT"][1]["name"] = "flags" +defs["igSetNextWindowRefreshPolicy"][1]["argsT"][1]["type"] = "ImGuiWindowRefreshFlags" +defs["igSetNextWindowRefreshPolicy"][1]["argsoriginal"] = "(ImGuiWindowRefreshFlags flags)" +defs["igSetNextWindowRefreshPolicy"][1]["call_args"] = "(flags)" +defs["igSetNextWindowRefreshPolicy"][1]["cimguiname"] = "igSetNextWindowRefreshPolicy" +defs["igSetNextWindowRefreshPolicy"][1]["defaults"] = {} +defs["igSetNextWindowRefreshPolicy"][1]["funcname"] = "SetNextWindowRefreshPolicy" +defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:3388" +defs["igSetNextWindowRefreshPolicy"][1]["namespace"] = "ImGui" +defs["igSetNextWindowRefreshPolicy"][1]["ov_cimguiname"] = "igSetNextWindowRefreshPolicy" +defs["igSetNextWindowRefreshPolicy"][1]["ret"] = "void" +defs["igSetNextWindowRefreshPolicy"][1]["signature"] = "(ImGuiWindowRefreshFlags)" +defs["igSetNextWindowRefreshPolicy"][1]["stname"] = "" +defs["igSetNextWindowRefreshPolicy"]["(ImGuiWindowRefreshFlags)"] = defs["igSetNextWindowRefreshPolicy"][1] defs["igSetNextWindowScroll"] = {} defs["igSetNextWindowScroll"][1] = {} defs["igSetNextWindowScroll"][1]["args"] = "(const ImVec2 scroll)" @@ -26225,7 +28266,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "imgui:373" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:418" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -26248,7 +28289,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:368" +defs["igSetNextWindowSize"][1]["location"] = "imgui:413" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -26278,7 +28319,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:369" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:414" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -26297,7 +28338,7 @@ defs["igSetNextWindowViewport"][1]["call_args"] = "(viewport_id)" defs["igSetNextWindowViewport"][1]["cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["defaults"] = {} defs["igSetNextWindowViewport"][1]["funcname"] = "SetNextWindowViewport" -defs["igSetNextWindowViewport"][1]["location"] = "imgui:375" +defs["igSetNextWindowViewport"][1]["location"] = "imgui:420" defs["igSetNextWindowViewport"][1]["namespace"] = "ImGui" defs["igSetNextWindowViewport"][1]["ov_cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["ret"] = "void" @@ -26320,7 +28361,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:405" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:442" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX_Float" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -26343,7 +28384,7 @@ defs["igSetScrollFromPosX"][2]["call_args"] = "(window,local_x,center_x_ratio)" defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3024" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3444" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -26367,7 +28408,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:406" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:443" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY_Float" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -26390,7 +28431,7 @@ defs["igSetScrollFromPosY"][2]["call_args"] = "(window,local_y,center_y_ratio)" defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3025" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3445" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -26411,7 +28452,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:403" +defs["igSetScrollHereX"][1]["location"] = "imgui:440" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -26431,7 +28472,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:404" +defs["igSetScrollHereY"][1]["location"] = "imgui:441" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -26450,7 +28491,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:399" +defs["igSetScrollX"][1]["location"] = "imgui:436" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX_Float" defs["igSetScrollX"][1]["ret"] = "void" @@ -26470,7 +28511,7 @@ defs["igSetScrollX"][2]["call_args"] = "(window,scroll_x)" defs["igSetScrollX"][2]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][2]["defaults"] = {} defs["igSetScrollX"][2]["funcname"] = "SetScrollX" -defs["igSetScrollX"][2]["location"] = "imgui_internal:3022" +defs["igSetScrollX"][2]["location"] = "imgui_internal:3442" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -26490,7 +28531,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:400" +defs["igSetScrollY"][1]["location"] = "imgui:437" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY_Float" defs["igSetScrollY"][1]["ret"] = "void" @@ -26510,7 +28551,7 @@ defs["igSetScrollY"][2]["call_args"] = "(window,scroll_y)" defs["igSetScrollY"][2]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][2]["defaults"] = {} defs["igSetScrollY"][2]["funcname"] = "SetScrollY" -defs["igSetScrollY"][2]["location"] = "imgui_internal:3023" +defs["igSetScrollY"][2]["location"] = "imgui_internal:3443" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -26520,31 +28561,29 @@ defs["igSetScrollY"]["(ImGuiWindow*,float)"] = defs["igSetScrollY"][2] defs["igSetScrollY"]["(float)"] = defs["igSetScrollY"][1] defs["igSetShortcutRouting"] = {} defs["igSetShortcutRouting"][1] = {} -defs["igSetShortcutRouting"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igSetShortcutRouting"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" defs["igSetShortcutRouting"][1]["argsT"] = {} defs["igSetShortcutRouting"][1]["argsT"][1] = {} defs["igSetShortcutRouting"][1]["argsT"][1]["name"] = "key_chord" defs["igSetShortcutRouting"][1]["argsT"][1]["type"] = "ImGuiKeyChord" defs["igSetShortcutRouting"][1]["argsT"][2] = {} -defs["igSetShortcutRouting"][1]["argsT"][2]["name"] = "owner_id" -defs["igSetShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetShortcutRouting"][1]["argsT"][2]["name"] = "flags" +defs["igSetShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiInputFlags" defs["igSetShortcutRouting"][1]["argsT"][3] = {} -defs["igSetShortcutRouting"][1]["argsT"][3]["name"] = "flags" -defs["igSetShortcutRouting"][1]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" -defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,owner_id,flags)" +defs["igSetShortcutRouting"][1]["argsT"][3]["name"] = "owner_id" +defs["igSetShortcutRouting"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,flags,owner_id)" defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["defaults"] = {} -defs["igSetShortcutRouting"][1]["defaults"]["flags"] = "0" -defs["igSetShortcutRouting"][1]["defaults"]["owner_id"] = "0" defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" -defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3186" +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3632" defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["ret"] = "bool" -defs["igSetShortcutRouting"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igSetShortcutRouting"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)" defs["igSetShortcutRouting"][1]["stname"] = "" -defs["igSetShortcutRouting"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igSetShortcutRouting"][1] +defs["igSetShortcutRouting"]["(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)"] = defs["igSetShortcutRouting"][1] defs["igSetStateStorage"] = {} defs["igSetStateStorage"][1] = {} defs["igSetStateStorage"][1]["args"] = "(ImGuiStorage* storage)" @@ -26557,7 +28596,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui:903" +defs["igSetStateStorage"][1]["location"] = "imgui:974" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -26576,7 +28615,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui:800" +defs["igSetTabItemClosed"][1]["location"] = "imgui:870" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -26599,7 +28638,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:678" +defs["igSetTooltip"][1]["location"] = "imgui:742" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -26621,7 +28660,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:679" +defs["igSetTooltipV"][1]["location"] = "imgui:743" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -26643,7 +28682,7 @@ defs["igSetWindowClipRectBeforeSetChannel"][1]["call_args"] = "(window,clip_rect defs["igSetWindowClipRectBeforeSetChannel"][1]["cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["defaults"] = {} defs["igSetWindowClipRectBeforeSetChannel"][1]["funcname"] = "SetWindowClipRectBeforeSetChannel" -defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3262" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3729" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -26666,7 +28705,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:378" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:423" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -26690,7 +28729,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:383" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:428" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -26714,7 +28753,7 @@ defs["igSetWindowCollapsed"][3]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][3]["defaults"] = {} defs["igSetWindowCollapsed"][3]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][3]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:2960" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:3368" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -26741,7 +28780,7 @@ defs["igSetWindowDock"][1]["call_args"] = "(window,dock_id,cond)" defs["igSetWindowDock"][1]["cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["defaults"] = {} defs["igSetWindowDock"][1]["funcname"] = "SetWindowDock" -defs["igSetWindowDock"][1]["location"] = "imgui_internal:3216" +defs["igSetWindowDock"][1]["location"] = "imgui_internal:3665" defs["igSetWindowDock"][1]["namespace"] = "ImGui" defs["igSetWindowDock"][1]["ov_cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["ret"] = "void" @@ -26757,7 +28796,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:379" +defs["igSetWindowFocus"][1]["location"] = "imgui:424" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -26774,7 +28813,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:384" +defs["igSetWindowFocus"][2]["location"] = "imgui:429" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -26794,13 +28833,32 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:380" +defs["igSetWindowFontScale"][1]["location"] = "imgui:425" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" defs["igSetWindowFontScale"][1]["signature"] = "(float)" defs["igSetWindowFontScale"][1]["stname"] = "" defs["igSetWindowFontScale"]["(float)"] = defs["igSetWindowFontScale"][1] +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["args"] = "(ImGuiWindow* window)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"][1] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"][1]["name"] = "window" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["call_args"] = "(window)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["defaults"] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["funcname"] = "SetWindowHiddenAndSkipItemsForCurrentFrame" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3370" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["namespace"] = "ImGui" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ov_cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ret"] = "void" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["signature"] = "(ImGuiWindow*)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["stname"] = "" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"]["(ImGuiWindow*)"] = defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1] defs["igSetWindowHitTestHole"] = {} defs["igSetWindowHitTestHole"][1] = {} defs["igSetWindowHitTestHole"][1]["args"] = "(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size)" @@ -26819,13 +28877,35 @@ defs["igSetWindowHitTestHole"][1]["call_args"] = "(window,pos,size)" defs["igSetWindowHitTestHole"][1]["cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["defaults"] = {} defs["igSetWindowHitTestHole"][1]["funcname"] = "SetWindowHitTestHole" -defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:2961" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:3369" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" defs["igSetWindowHitTestHole"][1]["signature"] = "(ImGuiWindow*,const ImVec2,const ImVec2)" defs["igSetWindowHitTestHole"][1]["stname"] = "" defs["igSetWindowHitTestHole"]["(ImGuiWindow*,const ImVec2,const ImVec2)"] = defs["igSetWindowHitTestHole"][1] +defs["igSetWindowParentWindowForFocusRoute"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["args"] = "(ImGuiWindow* window,ImGuiWindow* parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1]["name"] = "window" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2]["name"] = "parent_window" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiWindow* parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["call_args"] = "(window,parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["cimguiname"] = "igSetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["defaults"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["funcname"] = "SetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3371" +defs["igSetWindowParentWindowForFocusRoute"][1]["namespace"] = "ImGui" +defs["igSetWindowParentWindowForFocusRoute"][1]["ov_cimguiname"] = "igSetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["ret"] = "void" +defs["igSetWindowParentWindowForFocusRoute"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igSetWindowParentWindowForFocusRoute"][1]["stname"] = "" +defs["igSetWindowParentWindowForFocusRoute"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igSetWindowParentWindowForFocusRoute"][1] defs["igSetWindowPos"] = {} defs["igSetWindowPos"][1] = {} defs["igSetWindowPos"][1]["args"] = "(const ImVec2 pos,ImGuiCond cond)" @@ -26842,7 +28922,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:376" +defs["igSetWindowPos"][1]["location"] = "imgui:421" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -26866,7 +28946,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:381" +defs["igSetWindowPos"][2]["location"] = "imgui:426" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -26890,7 +28970,7 @@ defs["igSetWindowPos"][3]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][3]["defaults"] = {} defs["igSetWindowPos"][3]["defaults"]["cond"] = "0" defs["igSetWindowPos"][3]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][3]["location"] = "imgui_internal:2958" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:3366" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -26915,7 +28995,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:377" +defs["igSetWindowSize"][1]["location"] = "imgui:422" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -26939,7 +29019,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:382" +defs["igSetWindowSize"][2]["location"] = "imgui:427" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -26963,7 +29043,7 @@ defs["igSetWindowSize"][3]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][3]["defaults"] = {} defs["igSetWindowSize"][3]["defaults"]["cond"] = "0" defs["igSetWindowSize"][3]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][3]["location"] = "imgui_internal:2959" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:3367" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -26987,7 +29067,7 @@ defs["igSetWindowViewport"][1]["call_args"] = "(window,viewport)" defs["igSetWindowViewport"][1]["cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["defaults"] = {} defs["igSetWindowViewport"][1]["funcname"] = "SetWindowViewport" -defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3001" +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3418" defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -27024,7 +29104,7 @@ defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["call_args"] = "(draw_list,v defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["defaults"] = {} defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["funcname"] = "ShadeVertsLinearColorGradientKeepAlpha" -defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3430" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3912" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -27064,40 +29144,97 @@ defs["igShadeVertsLinearUV"][1]["call_args"] = "(draw_list,vert_start_idx,vert_e defs["igShadeVertsLinearUV"][1]["cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["defaults"] = {} defs["igShadeVertsLinearUV"][1]["funcname"] = "ShadeVertsLinearUV" -defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3431" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3913" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" defs["igShadeVertsLinearUV"][1]["signature"] = "(ImDrawList*,int,int,const ImVec2,const ImVec2,const ImVec2,const ImVec2,bool)" defs["igShadeVertsLinearUV"][1]["stname"] = "" defs["igShadeVertsLinearUV"]["(ImDrawList*,int,int,const ImVec2,const ImVec2,const ImVec2,const ImVec2,bool)"] = defs["igShadeVertsLinearUV"][1] +defs["igShadeVertsTransformPos"] = {} +defs["igShadeVertsTransformPos"][1] = {} +defs["igShadeVertsTransformPos"][1]["args"] = "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out)" +defs["igShadeVertsTransformPos"][1]["argsT"] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][1] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][1]["name"] = "draw_list" +defs["igShadeVertsTransformPos"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["igShadeVertsTransformPos"][1]["argsT"][2] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][2]["name"] = "vert_start_idx" +defs["igShadeVertsTransformPos"][1]["argsT"][2]["type"] = "int" +defs["igShadeVertsTransformPos"][1]["argsT"][3] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][3]["name"] = "vert_end_idx" +defs["igShadeVertsTransformPos"][1]["argsT"][3]["type"] = "int" +defs["igShadeVertsTransformPos"][1]["argsT"][4] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][4]["name"] = "pivot_in" +defs["igShadeVertsTransformPos"][1]["argsT"][4]["type"] = "const ImVec2" +defs["igShadeVertsTransformPos"][1]["argsT"][5] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][5]["name"] = "cos_a" +defs["igShadeVertsTransformPos"][1]["argsT"][5]["type"] = "float" +defs["igShadeVertsTransformPos"][1]["argsT"][6] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][6]["name"] = "sin_a" +defs["igShadeVertsTransformPos"][1]["argsT"][6]["type"] = "float" +defs["igShadeVertsTransformPos"][1]["argsT"][7] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][7]["name"] = "pivot_out" +defs["igShadeVertsTransformPos"][1]["argsT"][7]["type"] = "const ImVec2" +defs["igShadeVertsTransformPos"][1]["argsoriginal"] = "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2& pivot_in,float cos_a,float sin_a,const ImVec2& pivot_out)" +defs["igShadeVertsTransformPos"][1]["call_args"] = "(draw_list,vert_start_idx,vert_end_idx,pivot_in,cos_a,sin_a,pivot_out)" +defs["igShadeVertsTransformPos"][1]["cimguiname"] = "igShadeVertsTransformPos" +defs["igShadeVertsTransformPos"][1]["defaults"] = {} +defs["igShadeVertsTransformPos"][1]["funcname"] = "ShadeVertsTransformPos" +defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3914" +defs["igShadeVertsTransformPos"][1]["namespace"] = "ImGui" +defs["igShadeVertsTransformPos"][1]["ov_cimguiname"] = "igShadeVertsTransformPos" +defs["igShadeVertsTransformPos"][1]["ret"] = "void" +defs["igShadeVertsTransformPos"][1]["signature"] = "(ImDrawList*,int,int,const ImVec2,float,float,const ImVec2)" +defs["igShadeVertsTransformPos"][1]["stname"] = "" +defs["igShadeVertsTransformPos"]["(ImDrawList*,int,int,const ImVec2,float,float,const ImVec2)"] = defs["igShadeVertsTransformPos"][1] defs["igShortcut"] = {} defs["igShortcut"][1] = {} -defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" defs["igShortcut"][1]["argsT"] = {} defs["igShortcut"][1]["argsT"][1] = {} defs["igShortcut"][1]["argsT"][1]["name"] = "key_chord" defs["igShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" defs["igShortcut"][1]["argsT"][2] = {} -defs["igShortcut"][1]["argsT"][2]["name"] = "owner_id" -defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiID" -defs["igShortcut"][1]["argsT"][3] = {} -defs["igShortcut"][1]["argsT"][3]["name"] = "flags" -defs["igShortcut"][1]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" -defs["igShortcut"][1]["call_args"] = "(key_chord,owner_id,flags)" +defs["igShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igShortcut"][1]["call_args"] = "(key_chord,flags)" defs["igShortcut"][1]["cimguiname"] = "igShortcut" defs["igShortcut"][1]["defaults"] = {} defs["igShortcut"][1]["defaults"]["flags"] = "0" -defs["igShortcut"][1]["defaults"]["owner_id"] = "0" defs["igShortcut"][1]["funcname"] = "Shortcut" -defs["igShortcut"][1]["location"] = "imgui_internal:3185" +defs["igShortcut"][1]["location"] = "imgui:1014" defs["igShortcut"][1]["namespace"] = "ImGui" -defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut" +defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut_Nil" defs["igShortcut"][1]["ret"] = "bool" -defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" defs["igShortcut"][1]["stname"] = "" -defs["igShortcut"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igShortcut"][1] +defs["igShortcut"][2] = {} +defs["igShortcut"][2]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igShortcut"][2]["argsT"] = {} +defs["igShortcut"][2]["argsT"][1] = {} +defs["igShortcut"][2]["argsT"][1]["name"] = "key_chord" +defs["igShortcut"][2]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igShortcut"][2]["argsT"][2] = {} +defs["igShortcut"][2]["argsT"][2]["name"] = "flags" +defs["igShortcut"][2]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igShortcut"][2]["argsT"][3] = {} +defs["igShortcut"][2]["argsT"][3]["name"] = "owner_id" +defs["igShortcut"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igShortcut"][2]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igShortcut"][2]["call_args"] = "(key_chord,flags,owner_id)" +defs["igShortcut"][2]["cimguiname"] = "igShortcut" +defs["igShortcut"][2]["defaults"] = {} +defs["igShortcut"][2]["funcname"] = "Shortcut" +defs["igShortcut"][2]["location"] = "imgui_internal:3631" +defs["igShortcut"][2]["namespace"] = "ImGui" +defs["igShortcut"][2]["ov_cimguiname"] = "igShortcut_ID" +defs["igShortcut"][2]["ret"] = "bool" +defs["igShortcut"][2]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)" +defs["igShortcut"][2]["stname"] = "" +defs["igShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igShortcut"][1] +defs["igShortcut"]["(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)"] = defs["igShortcut"][2] defs["igShowAboutWindow"] = {} defs["igShowAboutWindow"][1] = {} defs["igShowAboutWindow"][1]["args"] = "(bool* p_open)" @@ -27111,7 +29248,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:312" +defs["igShowAboutWindow"][1]["location"] = "imgui:347" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -27131,7 +29268,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:310" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:345" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -27151,7 +29288,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:308" +defs["igShowDemoWindow"][1]["location"] = "imgui:343" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -27170,7 +29307,7 @@ defs["igShowFontAtlas"][1]["call_args"] = "(atlas)" defs["igShowFontAtlas"][1]["cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["defaults"] = {} defs["igShowFontAtlas"][1]["funcname"] = "ShowFontAtlas" -defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3451" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3936" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -27189,13 +29326,33 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:315" +defs["igShowFontSelector"][1]["location"] = "imgui:350" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" defs["igShowFontSelector"][1]["signature"] = "(const char*)" defs["igShowFontSelector"][1]["stname"] = "" defs["igShowFontSelector"]["(const char*)"] = defs["igShowFontSelector"][1] +defs["igShowIDStackToolWindow"] = {} +defs["igShowIDStackToolWindow"][1] = {} +defs["igShowIDStackToolWindow"][1]["args"] = "(bool* p_open)" +defs["igShowIDStackToolWindow"][1]["argsT"] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1]["name"] = "p_open" +defs["igShowIDStackToolWindow"][1]["argsT"][1]["type"] = "bool*" +defs["igShowIDStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowIDStackToolWindow"][1]["call_args"] = "(p_open)" +defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["defaults"] = {} +defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" +defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:346" +defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" +defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["ret"] = "void" +defs["igShowIDStackToolWindow"][1]["signature"] = "(bool*)" +defs["igShowIDStackToolWindow"][1]["stname"] = "" +defs["igShowIDStackToolWindow"]["(bool*)"] = defs["igShowIDStackToolWindow"][1] defs["igShowMetricsWindow"] = {} defs["igShowMetricsWindow"][1] = {} defs["igShowMetricsWindow"][1]["args"] = "(bool* p_open)" @@ -27209,33 +29366,13 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:309" +defs["igShowMetricsWindow"][1]["location"] = "imgui:344" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" defs["igShowMetricsWindow"][1]["stname"] = "" defs["igShowMetricsWindow"]["(bool*)"] = defs["igShowMetricsWindow"][1] -defs["igShowStackToolWindow"] = {} -defs["igShowStackToolWindow"][1] = {} -defs["igShowStackToolWindow"][1]["args"] = "(bool* p_open)" -defs["igShowStackToolWindow"][1]["argsT"] = {} -defs["igShowStackToolWindow"][1]["argsT"][1] = {} -defs["igShowStackToolWindow"][1]["argsT"][1]["name"] = "p_open" -defs["igShowStackToolWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" -defs["igShowStackToolWindow"][1]["call_args"] = "(p_open)" -defs["igShowStackToolWindow"][1]["cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["defaults"] = {} -defs["igShowStackToolWindow"][1]["defaults"]["p_open"] = "NULL" -defs["igShowStackToolWindow"][1]["funcname"] = "ShowStackToolWindow" -defs["igShowStackToolWindow"][1]["location"] = "imgui:311" -defs["igShowStackToolWindow"][1]["namespace"] = "ImGui" -defs["igShowStackToolWindow"][1]["ov_cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["ret"] = "void" -defs["igShowStackToolWindow"][1]["signature"] = "(bool*)" -defs["igShowStackToolWindow"][1]["stname"] = "" -defs["igShowStackToolWindow"]["(bool*)"] = defs["igShowStackToolWindow"][1] defs["igShowStyleEditor"] = {} defs["igShowStyleEditor"][1] = {} defs["igShowStyleEditor"][1]["args"] = "(ImGuiStyle* ref)" @@ -27249,7 +29386,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:313" +defs["igShowStyleEditor"][1]["location"] = "imgui:348" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -27268,7 +29405,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:314" +defs["igShowStyleSelector"][1]["location"] = "imgui:349" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -27284,7 +29421,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:316" +defs["igShowUserGuide"][1]["location"] = "imgui:351" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -27309,7 +29446,7 @@ defs["igShrinkWidths"][1]["call_args"] = "(items,count,width_excess)" defs["igShrinkWidths"][1]["cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["defaults"] = {} defs["igShrinkWidths"][1]["funcname"] = "ShrinkWidths" -defs["igShrinkWidths"][1]["location"] = "imgui_internal:3062" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3482" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -27325,7 +29462,7 @@ defs["igShutdown"][1]["call_args"] = "()" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:2982" +defs["igShutdown"][1]["location"] = "imgui_internal:3398" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -27363,7 +29500,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:570" +defs["igSliderAngle"][1]["location"] = "imgui:619" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -27406,7 +29543,7 @@ defs["igSliderBehavior"][1]["call_args"] = "(bb,id,data_type,p_v,p_min,p_max,for defs["igSliderBehavior"][1]["cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["defaults"] = {} defs["igSliderBehavior"][1]["funcname"] = "SliderBehavior" -defs["igSliderBehavior"][1]["location"] = "imgui_internal:3389" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3866" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -27442,7 +29579,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:566" +defs["igSliderFloat"][1]["location"] = "imgui:615" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -27478,7 +29615,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:567" +defs["igSliderFloat2"][1]["location"] = "imgui:616" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -27514,7 +29651,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:568" +defs["igSliderFloat3"][1]["location"] = "imgui:617" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -27550,7 +29687,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:569" +defs["igSliderFloat4"][1]["location"] = "imgui:618" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -27586,7 +29723,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:571" +defs["igSliderInt"][1]["location"] = "imgui:620" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -27622,7 +29759,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:572" +defs["igSliderInt2"][1]["location"] = "imgui:621" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -27658,7 +29795,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:573" +defs["igSliderInt3"][1]["location"] = "imgui:622" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -27694,7 +29831,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:574" +defs["igSliderInt4"][1]["location"] = "imgui:623" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -27733,7 +29870,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:575" +defs["igSliderScalar"][1]["location"] = "imgui:624" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -27775,7 +29912,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:576" +defs["igSliderScalarN"][1]["location"] = "imgui:625" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -27794,7 +29931,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:510" +defs["igSmallButton"][1]["location"] = "imgui:555" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -27810,7 +29947,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:450" +defs["igSpacing"][1]["location"] = "imgui:502" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -27859,7 +29996,7 @@ defs["igSplitterBehavior"][1]["defaults"]["bg_col"] = "0" defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" -defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3390" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3867" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -27878,7 +30015,7 @@ defs["igStartMouseMovingWindow"][1]["call_args"] = "(window)" defs["igStartMouseMovingWindow"][1]["cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["defaults"] = {} defs["igStartMouseMovingWindow"][1]["funcname"] = "StartMouseMovingWindow" -defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:2987" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3404" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -27887,7 +30024,7 @@ defs["igStartMouseMovingWindow"][1]["stname"] = "" defs["igStartMouseMovingWindow"]["(ImGuiWindow*)"] = defs["igStartMouseMovingWindow"][1] defs["igStartMouseMovingWindowOrNode"] = {} defs["igStartMouseMovingWindowOrNode"][1] = {} -defs["igStartMouseMovingWindowOrNode"][1]["args"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)" +defs["igStartMouseMovingWindowOrNode"][1]["args"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)" defs["igStartMouseMovingWindowOrNode"][1]["argsT"] = {} defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1] = {} defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1]["name"] = "window" @@ -27896,14 +30033,14 @@ defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2] = {} defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2]["name"] = "node" defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3] = {} -defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["name"] = "undock_floating_node" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["name"] = "undock" defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["type"] = "bool" -defs["igStartMouseMovingWindowOrNode"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)" -defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock_floating_node)" +defs["igStartMouseMovingWindowOrNode"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)" +defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock)" defs["igStartMouseMovingWindowOrNode"][1]["cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["defaults"] = {} defs["igStartMouseMovingWindowOrNode"][1]["funcname"] = "StartMouseMovingWindowOrNode" -defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:2988" +defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:3405" defs["igStartMouseMovingWindowOrNode"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindowOrNode"][1]["ov_cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["ret"] = "void" @@ -27923,7 +30060,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:322" +defs["igStyleColorsClassic"][1]["location"] = "imgui:357" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -27943,7 +30080,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:320" +defs["igStyleColorsDark"][1]["location"] = "imgui:355" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -27963,7 +30100,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:321" +defs["igStyleColorsLight"][1]["location"] = "imgui:356" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -27988,7 +30125,7 @@ defs["igTabBarAddTab"][1]["call_args"] = "(tab_bar,tab_flags,window)" defs["igTabBarAddTab"][1]["cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["defaults"] = {} defs["igTabBarAddTab"][1]["funcname"] = "TabBarAddTab" -defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3330" +defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3805" defs["igTabBarAddTab"][1]["namespace"] = "ImGui" defs["igTabBarAddTab"][1]["ov_cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["ret"] = "void" @@ -28010,7 +30147,7 @@ defs["igTabBarCloseTab"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarCloseTab"][1]["cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["defaults"] = {} defs["igTabBarCloseTab"][1]["funcname"] = "TabBarCloseTab" -defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3332" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3807" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -28029,7 +30166,7 @@ defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["call_args"] = "(t defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["defaults"] = {} defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["funcname"] = "TabBarFindMostRecentlySelectedTabForActiveWindow" -defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3329" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3801" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["namespace"] = "ImGui" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ov_cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ret"] = "ImGuiTabItem*" @@ -28051,13 +30188,98 @@ defs["igTabBarFindTabByID"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarFindTabByID"][1]["cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["defaults"] = {} defs["igTabBarFindTabByID"][1]["funcname"] = "TabBarFindTabByID" -defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3328" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3799" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" defs["igTabBarFindTabByID"][1]["signature"] = "(ImGuiTabBar*,ImGuiID)" defs["igTabBarFindTabByID"][1]["stname"] = "" defs["igTabBarFindTabByID"]["(ImGuiTabBar*,ImGuiID)"] = defs["igTabBarFindTabByID"][1] +defs["igTabBarFindTabByOrder"] = {} +defs["igTabBarFindTabByOrder"][1] = {} +defs["igTabBarFindTabByOrder"][1]["args"] = "(ImGuiTabBar* tab_bar,int order)" +defs["igTabBarFindTabByOrder"][1]["argsT"] = {} +defs["igTabBarFindTabByOrder"][1]["argsT"][1] = {} +defs["igTabBarFindTabByOrder"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarFindTabByOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarFindTabByOrder"][1]["argsT"][2] = {} +defs["igTabBarFindTabByOrder"][1]["argsT"][2]["name"] = "order" +defs["igTabBarFindTabByOrder"][1]["argsT"][2]["type"] = "int" +defs["igTabBarFindTabByOrder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,int order)" +defs["igTabBarFindTabByOrder"][1]["call_args"] = "(tab_bar,order)" +defs["igTabBarFindTabByOrder"][1]["cimguiname"] = "igTabBarFindTabByOrder" +defs["igTabBarFindTabByOrder"][1]["defaults"] = {} +defs["igTabBarFindTabByOrder"][1]["funcname"] = "TabBarFindTabByOrder" +defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3800" +defs["igTabBarFindTabByOrder"][1]["namespace"] = "ImGui" +defs["igTabBarFindTabByOrder"][1]["ov_cimguiname"] = "igTabBarFindTabByOrder" +defs["igTabBarFindTabByOrder"][1]["ret"] = "ImGuiTabItem*" +defs["igTabBarFindTabByOrder"][1]["signature"] = "(ImGuiTabBar*,int)" +defs["igTabBarFindTabByOrder"][1]["stname"] = "" +defs["igTabBarFindTabByOrder"]["(ImGuiTabBar*,int)"] = defs["igTabBarFindTabByOrder"][1] +defs["igTabBarGetCurrentTab"] = {} +defs["igTabBarGetCurrentTab"][1] = {} +defs["igTabBarGetCurrentTab"][1]["args"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarGetCurrentTab"][1]["argsT"] = {} +defs["igTabBarGetCurrentTab"][1]["argsT"][1] = {} +defs["igTabBarGetCurrentTab"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarGetCurrentTab"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarGetCurrentTab"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarGetCurrentTab"][1]["call_args"] = "(tab_bar)" +defs["igTabBarGetCurrentTab"][1]["cimguiname"] = "igTabBarGetCurrentTab" +defs["igTabBarGetCurrentTab"][1]["defaults"] = {} +defs["igTabBarGetCurrentTab"][1]["funcname"] = "TabBarGetCurrentTab" +defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3802" +defs["igTabBarGetCurrentTab"][1]["namespace"] = "ImGui" +defs["igTabBarGetCurrentTab"][1]["ov_cimguiname"] = "igTabBarGetCurrentTab" +defs["igTabBarGetCurrentTab"][1]["ret"] = "ImGuiTabItem*" +defs["igTabBarGetCurrentTab"][1]["signature"] = "(ImGuiTabBar*)" +defs["igTabBarGetCurrentTab"][1]["stname"] = "" +defs["igTabBarGetCurrentTab"]["(ImGuiTabBar*)"] = defs["igTabBarGetCurrentTab"][1] +defs["igTabBarGetTabName"] = {} +defs["igTabBarGetTabName"][1] = {} +defs["igTabBarGetTabName"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabName"][1]["argsT"] = {} +defs["igTabBarGetTabName"][1]["argsT"][1] = {} +defs["igTabBarGetTabName"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarGetTabName"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarGetTabName"][1]["argsT"][2] = {} +defs["igTabBarGetTabName"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarGetTabName"][1]["argsT"][2]["type"] = "ImGuiTabItem*" +defs["igTabBarGetTabName"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabName"][1]["call_args"] = "(tab_bar,tab)" +defs["igTabBarGetTabName"][1]["cimguiname"] = "igTabBarGetTabName" +defs["igTabBarGetTabName"][1]["defaults"] = {} +defs["igTabBarGetTabName"][1]["funcname"] = "TabBarGetTabName" +defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3804" +defs["igTabBarGetTabName"][1]["namespace"] = "ImGui" +defs["igTabBarGetTabName"][1]["ov_cimguiname"] = "igTabBarGetTabName" +defs["igTabBarGetTabName"][1]["ret"] = "const char*" +defs["igTabBarGetTabName"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" +defs["igTabBarGetTabName"][1]["stname"] = "" +defs["igTabBarGetTabName"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarGetTabName"][1] +defs["igTabBarGetTabOrder"] = {} +defs["igTabBarGetTabOrder"][1] = {} +defs["igTabBarGetTabOrder"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabOrder"][1]["argsT"] = {} +defs["igTabBarGetTabOrder"][1]["argsT"][1] = {} +defs["igTabBarGetTabOrder"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarGetTabOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarGetTabOrder"][1]["argsT"][2] = {} +defs["igTabBarGetTabOrder"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarGetTabOrder"][1]["argsT"][2]["type"] = "ImGuiTabItem*" +defs["igTabBarGetTabOrder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabOrder"][1]["call_args"] = "(tab_bar,tab)" +defs["igTabBarGetTabOrder"][1]["cimguiname"] = "igTabBarGetTabOrder" +defs["igTabBarGetTabOrder"][1]["defaults"] = {} +defs["igTabBarGetTabOrder"][1]["funcname"] = "TabBarGetTabOrder" +defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3803" +defs["igTabBarGetTabOrder"][1]["namespace"] = "ImGui" +defs["igTabBarGetTabOrder"][1]["ov_cimguiname"] = "igTabBarGetTabOrder" +defs["igTabBarGetTabOrder"][1]["ret"] = "int" +defs["igTabBarGetTabOrder"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" +defs["igTabBarGetTabOrder"][1]["stname"] = "" +defs["igTabBarGetTabOrder"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarGetTabOrder"][1] defs["igTabBarProcessReorder"] = {} defs["igTabBarProcessReorder"][1] = {} defs["igTabBarProcessReorder"][1]["args"] = "(ImGuiTabBar* tab_bar)" @@ -28070,63 +30292,85 @@ defs["igTabBarProcessReorder"][1]["call_args"] = "(tab_bar)" defs["igTabBarProcessReorder"][1]["cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["defaults"] = {} defs["igTabBarProcessReorder"][1]["funcname"] = "TabBarProcessReorder" -defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3335" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3811" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" defs["igTabBarProcessReorder"][1]["signature"] = "(ImGuiTabBar*)" defs["igTabBarProcessReorder"][1]["stname"] = "" defs["igTabBarProcessReorder"]["(ImGuiTabBar*)"] = defs["igTabBarProcessReorder"][1] +defs["igTabBarQueueFocus"] = {} +defs["igTabBarQueueFocus"][1] = {} +defs["igTabBarQueueFocus"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarQueueFocus"][1]["argsT"] = {} +defs["igTabBarQueueFocus"][1]["argsT"][1] = {} +defs["igTabBarQueueFocus"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarQueueFocus"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarQueueFocus"][1]["argsT"][2] = {} +defs["igTabBarQueueFocus"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarQueueFocus"][1]["argsT"][2]["type"] = "ImGuiTabItem*" +defs["igTabBarQueueFocus"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarQueueFocus"][1]["call_args"] = "(tab_bar,tab)" +defs["igTabBarQueueFocus"][1]["cimguiname"] = "igTabBarQueueFocus" +defs["igTabBarQueueFocus"][1]["defaults"] = {} +defs["igTabBarQueueFocus"][1]["funcname"] = "TabBarQueueFocus" +defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3808" +defs["igTabBarQueueFocus"][1]["namespace"] = "ImGui" +defs["igTabBarQueueFocus"][1]["ov_cimguiname"] = "igTabBarQueueFocus" +defs["igTabBarQueueFocus"][1]["ret"] = "void" +defs["igTabBarQueueFocus"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" +defs["igTabBarQueueFocus"][1]["stname"] = "" +defs["igTabBarQueueFocus"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarQueueFocus"][1] defs["igTabBarQueueReorder"] = {} defs["igTabBarQueueReorder"][1] = {} -defs["igTabBarQueueReorder"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)" +defs["igTabBarQueueReorder"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)" defs["igTabBarQueueReorder"][1]["argsT"] = {} defs["igTabBarQueueReorder"][1]["argsT"][1] = {} defs["igTabBarQueueReorder"][1]["argsT"][1]["name"] = "tab_bar" defs["igTabBarQueueReorder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" defs["igTabBarQueueReorder"][1]["argsT"][2] = {} defs["igTabBarQueueReorder"][1]["argsT"][2]["name"] = "tab" -defs["igTabBarQueueReorder"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" +defs["igTabBarQueueReorder"][1]["argsT"][2]["type"] = "ImGuiTabItem*" defs["igTabBarQueueReorder"][1]["argsT"][3] = {} defs["igTabBarQueueReorder"][1]["argsT"][3]["name"] = "offset" defs["igTabBarQueueReorder"][1]["argsT"][3]["type"] = "int" -defs["igTabBarQueueReorder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)" +defs["igTabBarQueueReorder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)" defs["igTabBarQueueReorder"][1]["call_args"] = "(tab_bar,tab,offset)" defs["igTabBarQueueReorder"][1]["cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["defaults"] = {} defs["igTabBarQueueReorder"][1]["funcname"] = "TabBarQueueReorder" -defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3333" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3809" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" -defs["igTabBarQueueReorder"][1]["signature"] = "(ImGuiTabBar*,const ImGuiTabItem*,int)" +defs["igTabBarQueueReorder"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*,int)" defs["igTabBarQueueReorder"][1]["stname"] = "" -defs["igTabBarQueueReorder"]["(ImGuiTabBar*,const ImGuiTabItem*,int)"] = defs["igTabBarQueueReorder"][1] +defs["igTabBarQueueReorder"]["(ImGuiTabBar*,ImGuiTabItem*,int)"] = defs["igTabBarQueueReorder"][1] defs["igTabBarQueueReorderFromMousePos"] = {} defs["igTabBarQueueReorderFromMousePos"][1] = {} -defs["igTabBarQueueReorderFromMousePos"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)" +defs["igTabBarQueueReorderFromMousePos"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][1] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][1]["name"] = "tab_bar" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][1]["type"] = "ImGuiTabBar*" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2]["name"] = "tab" -defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" +defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2]["type"] = "ImGuiTabItem*" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][3] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][3]["name"] = "mouse_pos" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][3]["type"] = "ImVec2" -defs["igTabBarQueueReorderFromMousePos"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)" +defs["igTabBarQueueReorderFromMousePos"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)" defs["igTabBarQueueReorderFromMousePos"][1]["call_args"] = "(tab_bar,tab,mouse_pos)" defs["igTabBarQueueReorderFromMousePos"][1]["cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["defaults"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["funcname"] = "TabBarQueueReorderFromMousePos" -defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3334" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3810" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" -defs["igTabBarQueueReorderFromMousePos"][1]["signature"] = "(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)" +defs["igTabBarQueueReorderFromMousePos"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*,ImVec2)" defs["igTabBarQueueReorderFromMousePos"][1]["stname"] = "" -defs["igTabBarQueueReorderFromMousePos"]["(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)"] = defs["igTabBarQueueReorderFromMousePos"][1] +defs["igTabBarQueueReorderFromMousePos"]["(ImGuiTabBar*,ImGuiTabItem*,ImVec2)"] = defs["igTabBarQueueReorderFromMousePos"][1] defs["igTabBarRemoveTab"] = {} defs["igTabBarRemoveTab"][1] = {} defs["igTabBarRemoveTab"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiID tab_id)" @@ -28142,7 +30386,7 @@ defs["igTabBarRemoveTab"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarRemoveTab"][1]["cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["defaults"] = {} defs["igTabBarRemoveTab"][1]["funcname"] = "TabBarRemoveTab" -defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3331" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3806" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -28170,7 +30414,7 @@ defs["igTabItemBackground"][1]["call_args"] = "(draw_list,bb,flags,col)" defs["igTabItemBackground"][1]["cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["defaults"] = {} defs["igTabItemBackground"][1]["funcname"] = "TabItemBackground" -defs["igTabItemBackground"][1]["location"] = "imgui_internal:3339" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3815" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -28193,7 +30437,7 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:799" +defs["igTabItemButton"][1]["location"] = "imgui:869" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -28218,7 +30462,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_ defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3337" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3813" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" @@ -28239,7 +30483,7 @@ defs["igTabItemCalcSize"][2]["call_args"] = "(window)" defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][2]["defaults"] = {} defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3338" +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3814" defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" defs["igTabItemCalcSize"][2]["nonUDT"] = 1 defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" @@ -28272,7 +30516,7 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags,docked_window defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" -defs["igTabItemEx"][1]["location"] = "imgui_internal:3336" +defs["igTabItemEx"][1]["location"] = "imgui_internal:3812" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -28318,13 +30562,60 @@ defs["igTabItemLabelAndCloseButton"][1]["call_args"] = "(draw_list,bb,flags,fram defs["igTabItemLabelAndCloseButton"][1]["cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["defaults"] = {} defs["igTabItemLabelAndCloseButton"][1]["funcname"] = "TabItemLabelAndCloseButton" -defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3340" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3816" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" defs["igTabItemLabelAndCloseButton"][1]["signature"] = "(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImVec2,const char*,ImGuiID,ImGuiID,bool,bool*,bool*)" defs["igTabItemLabelAndCloseButton"][1]["stname"] = "" defs["igTabItemLabelAndCloseButton"]["(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImVec2,const char*,ImGuiID,ImGuiID,bool,bool*,bool*)"] = defs["igTabItemLabelAndCloseButton"][1] +defs["igTableAngledHeadersRow"] = {} +defs["igTableAngledHeadersRow"][1] = {} +defs["igTableAngledHeadersRow"][1]["args"] = "()" +defs["igTableAngledHeadersRow"][1]["argsT"] = {} +defs["igTableAngledHeadersRow"][1]["argsoriginal"] = "()" +defs["igTableAngledHeadersRow"][1]["call_args"] = "()" +defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["defaults"] = {} +defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:834" +defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" +defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["ret"] = "void" +defs["igTableAngledHeadersRow"][1]["signature"] = "()" +defs["igTableAngledHeadersRow"][1]["stname"] = "" +defs["igTableAngledHeadersRow"]["()"] = defs["igTableAngledHeadersRow"][1] +defs["igTableAngledHeadersRowEx"] = {} +defs["igTableAngledHeadersRowEx"][1] = {} +defs["igTableAngledHeadersRowEx"][1]["args"] = "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)" +defs["igTableAngledHeadersRowEx"][1]["argsT"] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][1] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][1]["name"] = "row_id" +defs["igTableAngledHeadersRowEx"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igTableAngledHeadersRowEx"][1]["argsT"][2] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][2]["name"] = "angle" +defs["igTableAngledHeadersRowEx"][1]["argsT"][2]["type"] = "float" +defs["igTableAngledHeadersRowEx"][1]["argsT"][3] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][3]["name"] = "max_label_width" +defs["igTableAngledHeadersRowEx"][1]["argsT"][3]["type"] = "float" +defs["igTableAngledHeadersRowEx"][1]["argsT"][4] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][4]["name"] = "data" +defs["igTableAngledHeadersRowEx"][1]["argsT"][4]["type"] = "const ImGuiTableHeaderData*" +defs["igTableAngledHeadersRowEx"][1]["argsT"][5] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][5]["name"] = "data_count" +defs["igTableAngledHeadersRowEx"][1]["argsT"][5]["type"] = "int" +defs["igTableAngledHeadersRowEx"][1]["argsoriginal"] = "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)" +defs["igTableAngledHeadersRowEx"][1]["call_args"] = "(row_id,angle,max_label_width,data,data_count)" +defs["igTableAngledHeadersRowEx"][1]["cimguiname"] = "igTableAngledHeadersRowEx" +defs["igTableAngledHeadersRowEx"][1]["defaults"] = {} +defs["igTableAngledHeadersRowEx"][1]["funcname"] = "TableAngledHeadersRowEx" +defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3749" +defs["igTableAngledHeadersRowEx"][1]["namespace"] = "ImGui" +defs["igTableAngledHeadersRowEx"][1]["ov_cimguiname"] = "igTableAngledHeadersRowEx" +defs["igTableAngledHeadersRowEx"][1]["ret"] = "void" +defs["igTableAngledHeadersRowEx"][1]["signature"] = "(ImGuiID,float,float,const ImGuiTableHeaderData*,int)" +defs["igTableAngledHeadersRowEx"][1]["stname"] = "" +defs["igTableAngledHeadersRowEx"]["(ImGuiID,float,float,const ImGuiTableHeaderData*,int)"] = defs["igTableAngledHeadersRowEx"][1] defs["igTableBeginApplyRequests"] = {} defs["igTableBeginApplyRequests"][1] = {} defs["igTableBeginApplyRequests"][1]["args"] = "(ImGuiTable* table)" @@ -28337,7 +30628,7 @@ defs["igTableBeginApplyRequests"][1]["call_args"] = "(table)" defs["igTableBeginApplyRequests"][1]["cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["defaults"] = {} defs["igTableBeginApplyRequests"][1]["funcname"] = "TableBeginApplyRequests" -defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3287" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3756" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -28359,7 +30650,7 @@ defs["igTableBeginCell"][1]["call_args"] = "(table,column_n)" defs["igTableBeginCell"][1]["cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["defaults"] = {} defs["igTableBeginCell"][1]["funcname"] = "TableBeginCell" -defs["igTableBeginCell"][1]["location"] = "imgui_internal:3304" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3774" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -28378,7 +30669,7 @@ defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" -defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3294" +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3763" defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" @@ -28400,7 +30691,7 @@ defs["igTableBeginInitMemory"][1]["call_args"] = "(table,columns_count)" defs["igTableBeginInitMemory"][1]["cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["defaults"] = {} defs["igTableBeginInitMemory"][1]["funcname"] = "TableBeginInitMemory" -defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3286" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3755" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -28419,13 +30710,35 @@ defs["igTableBeginRow"][1]["call_args"] = "(table)" defs["igTableBeginRow"][1]["cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["defaults"] = {} defs["igTableBeginRow"][1]["funcname"] = "TableBeginRow" -defs["igTableBeginRow"][1]["location"] = "imgui_internal:3302" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3772" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" defs["igTableBeginRow"][1]["signature"] = "(ImGuiTable*)" defs["igTableBeginRow"][1]["stname"] = "" defs["igTableBeginRow"]["(ImGuiTable*)"] = defs["igTableBeginRow"][1] +defs["igTableCalcMaxColumnWidth"] = {} +defs["igTableCalcMaxColumnWidth"][1] = {} +defs["igTableCalcMaxColumnWidth"][1]["args"] = "(const ImGuiTable* table,int column_n)" +defs["igTableCalcMaxColumnWidth"][1]["argsT"] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1]["name"] = "table" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1]["type"] = "const ImGuiTable*" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2]["name"] = "column_n" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2]["type"] = "int" +defs["igTableCalcMaxColumnWidth"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n)" +defs["igTableCalcMaxColumnWidth"][1]["call_args"] = "(table,column_n)" +defs["igTableCalcMaxColumnWidth"][1]["cimguiname"] = "igTableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["defaults"] = {} +defs["igTableCalcMaxColumnWidth"][1]["funcname"] = "TableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["location"] = "imgui_internal:3779" +defs["igTableCalcMaxColumnWidth"][1]["namespace"] = "ImGui" +defs["igTableCalcMaxColumnWidth"][1]["ov_cimguiname"] = "igTableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["ret"] = "float" +defs["igTableCalcMaxColumnWidth"][1]["signature"] = "(const ImGuiTable*,int)" +defs["igTableCalcMaxColumnWidth"][1]["stname"] = "" +defs["igTableCalcMaxColumnWidth"]["(const ImGuiTable*,int)"] = defs["igTableCalcMaxColumnWidth"][1] defs["igTableDrawBorders"] = {} defs["igTableDrawBorders"][1] = {} defs["igTableDrawBorders"][1]["args"] = "(ImGuiTable* table)" @@ -28438,32 +30751,35 @@ defs["igTableDrawBorders"][1]["call_args"] = "(table)" defs["igTableDrawBorders"][1]["cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["defaults"] = {} defs["igTableDrawBorders"][1]["funcname"] = "TableDrawBorders" -defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3292" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3761" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" defs["igTableDrawBorders"][1]["signature"] = "(ImGuiTable*)" defs["igTableDrawBorders"][1]["stname"] = "" defs["igTableDrawBorders"]["(ImGuiTable*)"] = defs["igTableDrawBorders"][1] -defs["igTableDrawContextMenu"] = {} -defs["igTableDrawContextMenu"][1] = {} -defs["igTableDrawContextMenu"][1]["args"] = "(ImGuiTable* table)" -defs["igTableDrawContextMenu"][1]["argsT"] = {} -defs["igTableDrawContextMenu"][1]["argsT"][1] = {} -defs["igTableDrawContextMenu"][1]["argsT"][1]["name"] = "table" -defs["igTableDrawContextMenu"][1]["argsT"][1]["type"] = "ImGuiTable*" -defs["igTableDrawContextMenu"][1]["argsoriginal"] = "(ImGuiTable* table)" -defs["igTableDrawContextMenu"][1]["call_args"] = "(table)" -defs["igTableDrawContextMenu"][1]["cimguiname"] = "igTableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["defaults"] = {} -defs["igTableDrawContextMenu"][1]["funcname"] = "TableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["location"] = "imgui_internal:3293" -defs["igTableDrawContextMenu"][1]["namespace"] = "ImGui" -defs["igTableDrawContextMenu"][1]["ov_cimguiname"] = "igTableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["ret"] = "void" -defs["igTableDrawContextMenu"][1]["signature"] = "(ImGuiTable*)" -defs["igTableDrawContextMenu"][1]["stname"] = "" -defs["igTableDrawContextMenu"]["(ImGuiTable*)"] = defs["igTableDrawContextMenu"][1] +defs["igTableDrawDefaultContextMenu"] = {} +defs["igTableDrawDefaultContextMenu"][1] = {} +defs["igTableDrawDefaultContextMenu"][1]["args"] = "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)" +defs["igTableDrawDefaultContextMenu"][1]["argsT"] = {} +defs["igTableDrawDefaultContextMenu"][1]["argsT"][1] = {} +defs["igTableDrawDefaultContextMenu"][1]["argsT"][1]["name"] = "table" +defs["igTableDrawDefaultContextMenu"][1]["argsT"][1]["type"] = "ImGuiTable*" +defs["igTableDrawDefaultContextMenu"][1]["argsT"][2] = {} +defs["igTableDrawDefaultContextMenu"][1]["argsT"][2]["name"] = "flags_for_section_to_display" +defs["igTableDrawDefaultContextMenu"][1]["argsT"][2]["type"] = "ImGuiTableFlags" +defs["igTableDrawDefaultContextMenu"][1]["argsoriginal"] = "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)" +defs["igTableDrawDefaultContextMenu"][1]["call_args"] = "(table,flags_for_section_to_display)" +defs["igTableDrawDefaultContextMenu"][1]["cimguiname"] = "igTableDrawDefaultContextMenu" +defs["igTableDrawDefaultContextMenu"][1]["defaults"] = {} +defs["igTableDrawDefaultContextMenu"][1]["funcname"] = "TableDrawDefaultContextMenu" +defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3762" +defs["igTableDrawDefaultContextMenu"][1]["namespace"] = "ImGui" +defs["igTableDrawDefaultContextMenu"][1]["ov_cimguiname"] = "igTableDrawDefaultContextMenu" +defs["igTableDrawDefaultContextMenu"][1]["ret"] = "void" +defs["igTableDrawDefaultContextMenu"][1]["signature"] = "(ImGuiTable*,ImGuiTableFlags)" +defs["igTableDrawDefaultContextMenu"][1]["stname"] = "" +defs["igTableDrawDefaultContextMenu"]["(ImGuiTable*,ImGuiTableFlags)"] = defs["igTableDrawDefaultContextMenu"][1] defs["igTableEndCell"] = {} defs["igTableEndCell"][1] = {} defs["igTableEndCell"][1]["args"] = "(ImGuiTable* table)" @@ -28476,7 +30792,7 @@ defs["igTableEndCell"][1]["call_args"] = "(table)" defs["igTableEndCell"][1]["cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["defaults"] = {} defs["igTableEndCell"][1]["funcname"] = "TableEndCell" -defs["igTableEndCell"][1]["location"] = "imgui_internal:3305" +defs["igTableEndCell"][1]["location"] = "imgui_internal:3775" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -28495,7 +30811,7 @@ defs["igTableEndRow"][1]["call_args"] = "(table)" defs["igTableEndRow"][1]["cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["defaults"] = {} defs["igTableEndRow"][1]["funcname"] = "TableEndRow" -defs["igTableEndRow"][1]["location"] = "imgui_internal:3303" +defs["igTableEndRow"][1]["location"] = "imgui_internal:3773" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -28514,7 +30830,7 @@ defs["igTableFindByID"][1]["call_args"] = "(id)" defs["igTableFindByID"][1]["cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["defaults"] = {} defs["igTableFindByID"][1]["funcname"] = "TableFindByID" -defs["igTableFindByID"][1]["location"] = "imgui_internal:3284" +defs["igTableFindByID"][1]["location"] = "imgui_internal:3753" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -28536,7 +30852,7 @@ defs["igTableFixColumnSortDirection"][1]["call_args"] = "(table,column)" defs["igTableFixColumnSortDirection"][1]["cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["defaults"] = {} defs["igTableFixColumnSortDirection"][1]["funcname"] = "TableFixColumnSortDirection" -defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3300" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3770" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -28552,7 +30868,7 @@ defs["igTableGcCompactSettings"][1]["call_args"] = "()" defs["igTableGcCompactSettings"][1]["cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["defaults"] = {} defs["igTableGcCompactSettings"][1]["funcname"] = "TableGcCompactSettings" -defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3315" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3785" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -28571,7 +30887,7 @@ defs["igTableGcCompactTransientBuffers"][1]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][1]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][1]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][1]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3313" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3783" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -28588,7 +30904,7 @@ defs["igTableGcCompactTransientBuffers"][2]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][2]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][2]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][2]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3314" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3784" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -28608,7 +30924,7 @@ defs["igTableGetBoundSettings"][1]["call_args"] = "(table)" defs["igTableGetBoundSettings"][1]["cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["defaults"] = {} defs["igTableGetBoundSettings"][1]["funcname"] = "TableGetBoundSettings" -defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3321" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3791" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -28633,7 +30949,7 @@ defs["igTableGetCellBgRect"][1]["call_args"] = "(table,column_n)" defs["igTableGetCellBgRect"][1]["cimguiname"] = "igTableGetCellBgRect" defs["igTableGetCellBgRect"][1]["defaults"] = {} defs["igTableGetCellBgRect"][1]["funcname"] = "TableGetCellBgRect" -defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3306" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3776" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -28650,7 +30966,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:774" +defs["igTableGetColumnCount"][1]["location"] = "imgui:843" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -28670,7 +30986,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:778" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:847" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -28686,7 +31002,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:775" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:844" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -28706,7 +31022,7 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:777" +defs["igTableGetColumnName"][1]["location"] = "imgui:846" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -28726,7 +31042,7 @@ defs["igTableGetColumnName"][2]["call_args"] = "(table,column_n)" defs["igTableGetColumnName"][2]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][2]["defaults"] = {} defs["igTableGetColumnName"][2]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3307" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3777" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -28746,7 +31062,7 @@ defs["igTableGetColumnNextSortDirection"][1]["call_args"] = "(column)" defs["igTableGetColumnNextSortDirection"][1]["cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["defaults"] = {} defs["igTableGetColumnNextSortDirection"][1]["funcname"] = "TableGetColumnNextSortDirection" -defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3299" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3769" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -28755,30 +31071,30 @@ defs["igTableGetColumnNextSortDirection"][1]["stname"] = "" defs["igTableGetColumnNextSortDirection"]["(ImGuiTableColumn*)"] = defs["igTableGetColumnNextSortDirection"][1] defs["igTableGetColumnResizeID"] = {} defs["igTableGetColumnResizeID"][1] = {} -defs["igTableGetColumnResizeID"][1]["args"] = "(const ImGuiTable* table,int column_n,int instance_no)" +defs["igTableGetColumnResizeID"][1]["args"] = "(ImGuiTable* table,int column_n,int instance_no)" defs["igTableGetColumnResizeID"][1]["argsT"] = {} defs["igTableGetColumnResizeID"][1]["argsT"][1] = {} defs["igTableGetColumnResizeID"][1]["argsT"][1]["name"] = "table" -defs["igTableGetColumnResizeID"][1]["argsT"][1]["type"] = "const ImGuiTable*" +defs["igTableGetColumnResizeID"][1]["argsT"][1]["type"] = "ImGuiTable*" defs["igTableGetColumnResizeID"][1]["argsT"][2] = {} defs["igTableGetColumnResizeID"][1]["argsT"][2]["name"] = "column_n" defs["igTableGetColumnResizeID"][1]["argsT"][2]["type"] = "int" defs["igTableGetColumnResizeID"][1]["argsT"][3] = {} defs["igTableGetColumnResizeID"][1]["argsT"][3]["name"] = "instance_no" defs["igTableGetColumnResizeID"][1]["argsT"][3]["type"] = "int" -defs["igTableGetColumnResizeID"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n,int instance_no=0)" +defs["igTableGetColumnResizeID"][1]["argsoriginal"] = "(ImGuiTable* table,int column_n,int instance_no=0)" defs["igTableGetColumnResizeID"][1]["call_args"] = "(table,column_n,instance_no)" defs["igTableGetColumnResizeID"][1]["cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["defaults"] = {} defs["igTableGetColumnResizeID"][1]["defaults"]["instance_no"] = "0" defs["igTableGetColumnResizeID"][1]["funcname"] = "TableGetColumnResizeID" -defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3308" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3778" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" -defs["igTableGetColumnResizeID"][1]["signature"] = "(const ImGuiTable*,int,int)" +defs["igTableGetColumnResizeID"][1]["signature"] = "(ImGuiTable*,int,int)" defs["igTableGetColumnResizeID"][1]["stname"] = "" -defs["igTableGetColumnResizeID"]["(const ImGuiTable*,int,int)"] = defs["igTableGetColumnResizeID"][1] +defs["igTableGetColumnResizeID"]["(ImGuiTable*,int,int)"] = defs["igTableGetColumnResizeID"][1] defs["igTableGetColumnWidthAuto"] = {} defs["igTableGetColumnWidthAuto"][1] = {} defs["igTableGetColumnWidthAuto"][1]["args"] = "(ImGuiTable* table,ImGuiTableColumn* column)" @@ -28794,13 +31110,29 @@ defs["igTableGetColumnWidthAuto"][1]["call_args"] = "(table,column)" defs["igTableGetColumnWidthAuto"][1]["cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["defaults"] = {} defs["igTableGetColumnWidthAuto"][1]["funcname"] = "TableGetColumnWidthAuto" -defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3301" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3771" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" defs["igTableGetColumnWidthAuto"][1]["signature"] = "(ImGuiTable*,ImGuiTableColumn*)" defs["igTableGetColumnWidthAuto"][1]["stname"] = "" defs["igTableGetColumnWidthAuto"]["(ImGuiTable*,ImGuiTableColumn*)"] = defs["igTableGetColumnWidthAuto"][1] +defs["igTableGetHeaderAngledMaxLabelWidth"] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["args"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["argsT"] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["argsoriginal"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["call_args"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["defaults"] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["funcname"] = "TableGetHeaderAngledMaxLabelWidth" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3746" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["namespace"] = "ImGui" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ov_cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ret"] = "float" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["signature"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["stname"] = "" +defs["igTableGetHeaderAngledMaxLabelWidth"]["()"] = defs["igTableGetHeaderAngledMaxLabelWidth"][1] defs["igTableGetHeaderRowHeight"] = {} defs["igTableGetHeaderRowHeight"][1] = {} defs["igTableGetHeaderRowHeight"][1]["args"] = "()" @@ -28810,7 +31142,7 @@ defs["igTableGetHeaderRowHeight"][1]["call_args"] = "()" defs["igTableGetHeaderRowHeight"][1]["cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["defaults"] = {} defs["igTableGetHeaderRowHeight"][1]["funcname"] = "TableGetHeaderRowHeight" -defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3278" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3745" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -28826,13 +31158,29 @@ defs["igTableGetHoveredColumn"][1]["call_args"] = "()" defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["defaults"] = {} defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" -defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:3277" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:849" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" defs["igTableGetHoveredColumn"][1]["signature"] = "()" defs["igTableGetHoveredColumn"][1]["stname"] = "" defs["igTableGetHoveredColumn"]["()"] = defs["igTableGetHoveredColumn"][1] +defs["igTableGetHoveredRow"] = {} +defs["igTableGetHoveredRow"][1] = {} +defs["igTableGetHoveredRow"][1]["args"] = "()" +defs["igTableGetHoveredRow"][1]["argsT"] = {} +defs["igTableGetHoveredRow"][1]["argsoriginal"] = "()" +defs["igTableGetHoveredRow"][1]["call_args"] = "()" +defs["igTableGetHoveredRow"][1]["cimguiname"] = "igTableGetHoveredRow" +defs["igTableGetHoveredRow"][1]["defaults"] = {} +defs["igTableGetHoveredRow"][1]["funcname"] = "TableGetHoveredRow" +defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3744" +defs["igTableGetHoveredRow"][1]["namespace"] = "ImGui" +defs["igTableGetHoveredRow"][1]["ov_cimguiname"] = "igTableGetHoveredRow" +defs["igTableGetHoveredRow"][1]["ret"] = "int" +defs["igTableGetHoveredRow"][1]["signature"] = "()" +defs["igTableGetHoveredRow"][1]["stname"] = "" +defs["igTableGetHoveredRow"]["()"] = defs["igTableGetHoveredRow"][1] defs["igTableGetInstanceData"] = {} defs["igTableGetInstanceData"][1] = {} defs["igTableGetInstanceData"][1]["args"] = "(ImGuiTable* table,int instance_no)" @@ -28848,35 +31196,35 @@ defs["igTableGetInstanceData"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceData"][1]["cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["defaults"] = {} defs["igTableGetInstanceData"][1]["funcname"] = "TableGetInstanceData" -defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3296" +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3765" defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" defs["igTableGetInstanceData"][1]["signature"] = "(ImGuiTable*,int)" defs["igTableGetInstanceData"][1]["stname"] = "" defs["igTableGetInstanceData"]["(ImGuiTable*,int)"] = defs["igTableGetInstanceData"][1] -defs["igTableGetMaxColumnWidth"] = {} -defs["igTableGetMaxColumnWidth"][1] = {} -defs["igTableGetMaxColumnWidth"][1]["args"] = "(const ImGuiTable* table,int column_n)" -defs["igTableGetMaxColumnWidth"][1]["argsT"] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][1] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][1]["name"] = "table" -defs["igTableGetMaxColumnWidth"][1]["argsT"][1]["type"] = "const ImGuiTable*" -defs["igTableGetMaxColumnWidth"][1]["argsT"][2] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][2]["name"] = "column_n" -defs["igTableGetMaxColumnWidth"][1]["argsT"][2]["type"] = "int" -defs["igTableGetMaxColumnWidth"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n)" -defs["igTableGetMaxColumnWidth"][1]["call_args"] = "(table,column_n)" -defs["igTableGetMaxColumnWidth"][1]["cimguiname"] = "igTableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["defaults"] = {} -defs["igTableGetMaxColumnWidth"][1]["funcname"] = "TableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3309" -defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" -defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" -defs["igTableGetMaxColumnWidth"][1]["signature"] = "(const ImGuiTable*,int)" -defs["igTableGetMaxColumnWidth"][1]["stname"] = "" -defs["igTableGetMaxColumnWidth"]["(const ImGuiTable*,int)"] = defs["igTableGetMaxColumnWidth"][1] +defs["igTableGetInstanceID"] = {} +defs["igTableGetInstanceID"][1] = {} +defs["igTableGetInstanceID"][1]["args"] = "(ImGuiTable* table,int instance_no)" +defs["igTableGetInstanceID"][1]["argsT"] = {} +defs["igTableGetInstanceID"][1]["argsT"][1] = {} +defs["igTableGetInstanceID"][1]["argsT"][1]["name"] = "table" +defs["igTableGetInstanceID"][1]["argsT"][1]["type"] = "ImGuiTable*" +defs["igTableGetInstanceID"][1]["argsT"][2] = {} +defs["igTableGetInstanceID"][1]["argsT"][2]["name"] = "instance_no" +defs["igTableGetInstanceID"][1]["argsT"][2]["type"] = "int" +defs["igTableGetInstanceID"][1]["argsoriginal"] = "(ImGuiTable* table,int instance_no)" +defs["igTableGetInstanceID"][1]["call_args"] = "(table,instance_no)" +defs["igTableGetInstanceID"][1]["cimguiname"] = "igTableGetInstanceID" +defs["igTableGetInstanceID"][1]["defaults"] = {} +defs["igTableGetInstanceID"][1]["funcname"] = "TableGetInstanceID" +defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3766" +defs["igTableGetInstanceID"][1]["namespace"] = "ImGui" +defs["igTableGetInstanceID"][1]["ov_cimguiname"] = "igTableGetInstanceID" +defs["igTableGetInstanceID"][1]["ret"] = "ImGuiID" +defs["igTableGetInstanceID"][1]["signature"] = "(ImGuiTable*,int)" +defs["igTableGetInstanceID"][1]["stname"] = "" +defs["igTableGetInstanceID"]["(ImGuiTable*,int)"] = defs["igTableGetInstanceID"][1] defs["igTableGetRowIndex"] = {} defs["igTableGetRowIndex"][1] = {} defs["igTableGetRowIndex"][1]["args"] = "()" @@ -28886,7 +31234,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:776" +defs["igTableGetRowIndex"][1]["location"] = "imgui:845" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -28902,7 +31250,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:773" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:842" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -28921,7 +31269,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:765" +defs["igTableHeader"][1]["location"] = "imgui:832" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -28937,7 +31285,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:764" +defs["igTableHeadersRow"][1]["location"] = "imgui:833" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -28956,7 +31304,7 @@ defs["igTableLoadSettings"][1]["call_args"] = "(table)" defs["igTableLoadSettings"][1]["cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["defaults"] = {} defs["igTableLoadSettings"][1]["funcname"] = "TableLoadSettings" -defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3318" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3788" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -28975,7 +31323,7 @@ defs["igTableMergeDrawChannels"][1]["call_args"] = "(table)" defs["igTableMergeDrawChannels"][1]["cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["defaults"] = {} defs["igTableMergeDrawChannels"][1]["funcname"] = "TableMergeDrawChannels" -defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3295" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3764" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -28991,7 +31339,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:751" +defs["igTableNextColumn"][1]["location"] = "imgui:819" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -29015,7 +31363,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:750" +defs["igTableNextRow"][1]["location"] = "imgui:818" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -29035,7 +31383,7 @@ defs["igTableOpenContextMenu"][1]["cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["defaults"] = {} defs["igTableOpenContextMenu"][1]["defaults"]["column_n"] = "-1" defs["igTableOpenContextMenu"][1]["funcname"] = "TableOpenContextMenu" -defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3274" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3741" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -29051,7 +31399,7 @@ defs["igTablePopBackgroundChannel"][1]["call_args"] = "()" defs["igTablePopBackgroundChannel"][1]["cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["defaults"] = {} defs["igTablePopBackgroundChannel"][1]["funcname"] = "TablePopBackgroundChannel" -defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3280" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3748" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -29067,7 +31415,7 @@ defs["igTablePushBackgroundChannel"][1]["call_args"] = "()" defs["igTablePushBackgroundChannel"][1]["cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["defaults"] = {} defs["igTablePushBackgroundChannel"][1]["funcname"] = "TablePushBackgroundChannel" -defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3279" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3747" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -29086,7 +31434,7 @@ defs["igTableRemove"][1]["call_args"] = "(table)" defs["igTableRemove"][1]["cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["defaults"] = {} defs["igTableRemove"][1]["funcname"] = "TableRemove" -defs["igTableRemove"][1]["location"] = "imgui_internal:3312" +defs["igTableRemove"][1]["location"] = "imgui_internal:3782" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -29105,7 +31453,7 @@ defs["igTableResetSettings"][1]["call_args"] = "(table)" defs["igTableResetSettings"][1]["cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["defaults"] = {} defs["igTableResetSettings"][1]["funcname"] = "TableResetSettings" -defs["igTableResetSettings"][1]["location"] = "imgui_internal:3320" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3790" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -29124,7 +31472,7 @@ defs["igTableSaveSettings"][1]["call_args"] = "(table)" defs["igTableSaveSettings"][1]["cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["defaults"] = {} defs["igTableSaveSettings"][1]["funcname"] = "TableSaveSettings" -defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3319" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3789" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -29150,7 +31498,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:780" +defs["igTableSetBgColor"][1]["location"] = "imgui:850" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -29172,7 +31520,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:779" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:848" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -29191,7 +31539,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:752" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:820" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -29216,7 +31564,7 @@ defs["igTableSetColumnSortDirection"][1]["call_args"] = "(column_n,sort_directio defs["igTableSetColumnSortDirection"][1]["cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["defaults"] = {} defs["igTableSetColumnSortDirection"][1]["funcname"] = "TableSetColumnSortDirection" -defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3276" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3743" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -29238,7 +31586,7 @@ defs["igTableSetColumnWidth"][1]["call_args"] = "(column_n,width)" defs["igTableSetColumnWidth"][1]["cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["defaults"] = {} defs["igTableSetColumnWidth"][1]["funcname"] = "TableSetColumnWidth" -defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3275" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3742" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -29257,7 +31605,7 @@ defs["igTableSetColumnWidthAutoAll"][1]["call_args"] = "(table)" defs["igTableSetColumnWidthAutoAll"][1]["cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoAll"][1]["funcname"] = "TableSetColumnWidthAutoAll" -defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3311" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3781" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -29279,7 +31627,7 @@ defs["igTableSetColumnWidthAutoSingle"][1]["call_args"] = "(table,column_n)" defs["igTableSetColumnWidthAutoSingle"][1]["cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoSingle"][1]["funcname"] = "TableSetColumnWidthAutoSingle" -defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3310" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3780" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -29295,7 +31643,7 @@ defs["igTableSettingsAddSettingsHandler"][1]["call_args"] = "()" defs["igTableSettingsAddSettingsHandler"][1]["cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["defaults"] = {} defs["igTableSettingsAddSettingsHandler"][1]["funcname"] = "TableSettingsAddSettingsHandler" -defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3322" +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3792" defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -29317,7 +31665,7 @@ defs["igTableSettingsCreate"][1]["call_args"] = "(id,columns_count)" defs["igTableSettingsCreate"][1]["cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["defaults"] = {} defs["igTableSettingsCreate"][1]["funcname"] = "TableSettingsCreate" -defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3323" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3793" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -29336,7 +31684,7 @@ defs["igTableSettingsFindByID"][1]["call_args"] = "(id)" defs["igTableSettingsFindByID"][1]["cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["defaults"] = {} defs["igTableSettingsFindByID"][1]["funcname"] = "TableSettingsFindByID" -defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3324" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3794" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -29367,7 +31715,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:762" +defs["igTableSetupColumn"][1]["location"] = "imgui:830" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -29386,7 +31734,7 @@ defs["igTableSetupDrawChannels"][1]["call_args"] = "(table)" defs["igTableSetupDrawChannels"][1]["cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["defaults"] = {} defs["igTableSetupDrawChannels"][1]["funcname"] = "TableSetupDrawChannels" -defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3288" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3757" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -29408,7 +31756,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:763" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:831" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -29427,7 +31775,7 @@ defs["igTableSortSpecsBuild"][1]["call_args"] = "(table)" defs["igTableSortSpecsBuild"][1]["cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["defaults"] = {} defs["igTableSortSpecsBuild"][1]["funcname"] = "TableSortSpecsBuild" -defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3298" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3768" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -29446,7 +31794,7 @@ defs["igTableSortSpecsSanitize"][1]["call_args"] = "(table)" defs["igTableSortSpecsSanitize"][1]["cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["defaults"] = {} defs["igTableSortSpecsSanitize"][1]["funcname"] = "TableSortSpecsSanitize" -defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3297" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3767" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -29465,7 +31813,7 @@ defs["igTableUpdateBorders"][1]["call_args"] = "(table)" defs["igTableUpdateBorders"][1]["cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["defaults"] = {} defs["igTableUpdateBorders"][1]["funcname"] = "TableUpdateBorders" -defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3290" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3759" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -29484,7 +31832,7 @@ defs["igTableUpdateColumnsWeightFromWidth"][1]["call_args"] = "(table)" defs["igTableUpdateColumnsWeightFromWidth"][1]["cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["defaults"] = {} defs["igTableUpdateColumnsWeightFromWidth"][1]["funcname"] = "TableUpdateColumnsWeightFromWidth" -defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3291" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3760" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -29503,13 +31851,32 @@ defs["igTableUpdateLayout"][1]["call_args"] = "(table)" defs["igTableUpdateLayout"][1]["cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["defaults"] = {} defs["igTableUpdateLayout"][1]["funcname"] = "TableUpdateLayout" -defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3289" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3758" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" defs["igTableUpdateLayout"][1]["signature"] = "(ImGuiTable*)" defs["igTableUpdateLayout"][1]["stname"] = "" defs["igTableUpdateLayout"]["(ImGuiTable*)"] = defs["igTableUpdateLayout"][1] +defs["igTeleportMousePos"] = {} +defs["igTeleportMousePos"][1] = {} +defs["igTeleportMousePos"][1]["args"] = "(const ImVec2 pos)" +defs["igTeleportMousePos"][1]["argsT"] = {} +defs["igTeleportMousePos"][1]["argsT"][1] = {} +defs["igTeleportMousePos"][1]["argsT"][1]["name"] = "pos" +defs["igTeleportMousePos"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igTeleportMousePos"][1]["argsoriginal"] = "(const ImVec2& pos)" +defs["igTeleportMousePos"][1]["call_args"] = "(pos)" +defs["igTeleportMousePos"][1]["cimguiname"] = "igTeleportMousePos" +defs["igTeleportMousePos"][1]["defaults"] = {} +defs["igTeleportMousePos"][1]["funcname"] = "TeleportMousePos" +defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3580" +defs["igTeleportMousePos"][1]["namespace"] = "ImGui" +defs["igTeleportMousePos"][1]["ov_cimguiname"] = "igTeleportMousePos" +defs["igTeleportMousePos"][1]["ret"] = "void" +defs["igTeleportMousePos"][1]["signature"] = "(const ImVec2)" +defs["igTeleportMousePos"][1]["stname"] = "" +defs["igTeleportMousePos"]["(const ImVec2)"] = defs["igTeleportMousePos"][1] defs["igTempInputIsActive"] = {} defs["igTempInputIsActive"][1] = {} defs["igTempInputIsActive"][1]["args"] = "(ImGuiID id)" @@ -29522,7 +31889,7 @@ defs["igTempInputIsActive"][1]["call_args"] = "(id)" defs["igTempInputIsActive"][1]["cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["defaults"] = {} defs["igTempInputIsActive"][1]["funcname"] = "TempInputIsActive" -defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3418" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3899" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -29564,7 +31931,7 @@ defs["igTempInputScalar"][1]["defaults"] = {} defs["igTempInputScalar"][1]["defaults"]["p_clamp_max"] = "NULL" defs["igTempInputScalar"][1]["defaults"]["p_clamp_min"] = "NULL" defs["igTempInputScalar"][1]["funcname"] = "TempInputScalar" -defs["igTempInputScalar"][1]["location"] = "imgui_internal:3417" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3898" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -29598,7 +31965,7 @@ defs["igTempInputText"][1]["call_args"] = "(bb,id,label,buf,buf_size,flags)" defs["igTempInputText"][1]["cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["defaults"] = {} defs["igTempInputText"][1]["funcname"] = "TempInputText" -defs["igTempInputText"][1]["location"] = "imgui_internal:3416" +defs["igTempInputText"][1]["location"] = "imgui_internal:3897" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -29620,7 +31987,7 @@ defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["defaults"] = {} defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" -defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3159" +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3599" defs["igTestKeyOwner"][1]["namespace"] = "ImGui" defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["ret"] = "bool" @@ -29642,7 +32009,7 @@ defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["defaults"] = {} defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" -defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3187" +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3633" defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["ret"] = "bool" @@ -29665,7 +32032,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:493" +defs["igText"][1]["location"] = "imgui:537" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -29691,7 +32058,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:495" +defs["igTextColored"][1]["location"] = "imgui:539" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -29716,7 +32083,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:496" +defs["igTextColoredV"][1]["location"] = "imgui:540" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -29739,7 +32106,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:497" +defs["igTextDisabled"][1]["location"] = "imgui:541" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -29761,7 +32128,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:498" +defs["igTextDisabledV"][1]["location"] = "imgui:542" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -29788,13 +32155,55 @@ defs["igTextEx"][1]["defaults"] = {} defs["igTextEx"][1]["defaults"]["flags"] = "0" defs["igTextEx"][1]["defaults"]["text_end"] = "NULL" defs["igTextEx"][1]["funcname"] = "TextEx" -defs["igTextEx"][1]["location"] = "imgui_internal:3368" +defs["igTextEx"][1]["location"] = "imgui_internal:3844" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" defs["igTextEx"][1]["signature"] = "(const char*,const char*,ImGuiTextFlags)" defs["igTextEx"][1]["stname"] = "" defs["igTextEx"]["(const char*,const char*,ImGuiTextFlags)"] = defs["igTextEx"][1] +defs["igTextLink"] = {} +defs["igTextLink"][1] = {} +defs["igTextLink"][1]["args"] = "(const char* label)" +defs["igTextLink"][1]["argsT"] = {} +defs["igTextLink"][1]["argsT"][1] = {} +defs["igTextLink"][1]["argsT"][1]["name"] = "label" +defs["igTextLink"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLink"][1]["argsoriginal"] = "(const char* label)" +defs["igTextLink"][1]["call_args"] = "(label)" +defs["igTextLink"][1]["cimguiname"] = "igTextLink" +defs["igTextLink"][1]["defaults"] = {} +defs["igTextLink"][1]["funcname"] = "TextLink" +defs["igTextLink"][1]["location"] = "imgui:565" +defs["igTextLink"][1]["namespace"] = "ImGui" +defs["igTextLink"][1]["ov_cimguiname"] = "igTextLink" +defs["igTextLink"][1]["ret"] = "bool" +defs["igTextLink"][1]["signature"] = "(const char*)" +defs["igTextLink"][1]["stname"] = "" +defs["igTextLink"]["(const char*)"] = defs["igTextLink"][1] +defs["igTextLinkOpenURL"] = {} +defs["igTextLinkOpenURL"][1] = {} +defs["igTextLinkOpenURL"][1]["args"] = "(const char* label,const char* url)" +defs["igTextLinkOpenURL"][1]["argsT"] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1]["name"] = "label" +defs["igTextLinkOpenURL"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsT"][2] = {} +defs["igTextLinkOpenURL"][1]["argsT"][2]["name"] = "url" +defs["igTextLinkOpenURL"][1]["argsT"][2]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsoriginal"] = "(const char* label,const char* url=((void*)0))" +defs["igTextLinkOpenURL"][1]["call_args"] = "(label,url)" +defs["igTextLinkOpenURL"][1]["cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["defaults"] = {} +defs["igTextLinkOpenURL"][1]["defaults"]["url"] = "NULL" +defs["igTextLinkOpenURL"][1]["funcname"] = "TextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["location"] = "imgui:566" +defs["igTextLinkOpenURL"][1]["namespace"] = "ImGui" +defs["igTextLinkOpenURL"][1]["ov_cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["ret"] = "void" +defs["igTextLinkOpenURL"][1]["signature"] = "(const char*,const char*)" +defs["igTextLinkOpenURL"][1]["stname"] = "" +defs["igTextLinkOpenURL"]["(const char*,const char*)"] = defs["igTextLinkOpenURL"][1] defs["igTextUnformatted"] = {} defs["igTextUnformatted"][1] = {} defs["igTextUnformatted"][1]["args"] = "(const char* text,const char* text_end)" @@ -29811,7 +32220,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:492" +defs["igTextUnformatted"][1]["location"] = "imgui:536" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -29833,7 +32242,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:494" +defs["igTextV"][1]["location"] = "imgui:538" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -29856,7 +32265,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:499" +defs["igTextWrapped"][1]["location"] = "imgui:543" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -29878,7 +32287,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:500" +defs["igTextWrappedV"][1]["location"] = "imgui:544" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -29887,7 +32296,7 @@ defs["igTextWrappedV"][1]["stname"] = "" defs["igTextWrappedV"]["(const char*,va_list)"] = defs["igTextWrappedV"][1] defs["igTranslateWindowsInViewport"] = {} defs["igTranslateWindowsInViewport"][1] = {} -defs["igTranslateWindowsInViewport"][1]["args"] = "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos)" +defs["igTranslateWindowsInViewport"][1]["args"] = "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size)" defs["igTranslateWindowsInViewport"][1]["argsT"] = {} defs["igTranslateWindowsInViewport"][1]["argsT"][1] = {} defs["igTranslateWindowsInViewport"][1]["argsT"][1]["name"] = "viewport" @@ -29898,18 +32307,24 @@ defs["igTranslateWindowsInViewport"][1]["argsT"][2]["type"] = "const ImVec2" defs["igTranslateWindowsInViewport"][1]["argsT"][3] = {} defs["igTranslateWindowsInViewport"][1]["argsT"][3]["name"] = "new_pos" defs["igTranslateWindowsInViewport"][1]["argsT"][3]["type"] = "const ImVec2" -defs["igTranslateWindowsInViewport"][1]["argsoriginal"] = "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos)" -defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_pos)" +defs["igTranslateWindowsInViewport"][1]["argsT"][4] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][4]["name"] = "old_size" +defs["igTranslateWindowsInViewport"][1]["argsT"][4]["type"] = "const ImVec2" +defs["igTranslateWindowsInViewport"][1]["argsT"][5] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][5]["name"] = "new_size" +defs["igTranslateWindowsInViewport"][1]["argsT"][5]["type"] = "const ImVec2" +defs["igTranslateWindowsInViewport"][1]["argsoriginal"] = "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos,const ImVec2& old_size,const ImVec2& new_size)" +defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_pos,old_size,new_size)" defs["igTranslateWindowsInViewport"][1]["cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["defaults"] = {} defs["igTranslateWindowsInViewport"][1]["funcname"] = "TranslateWindowsInViewport" -defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:2998" +defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:3415" defs["igTranslateWindowsInViewport"][1]["namespace"] = "ImGui" defs["igTranslateWindowsInViewport"][1]["ov_cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["ret"] = "void" -defs["igTranslateWindowsInViewport"][1]["signature"] = "(ImGuiViewportP*,const ImVec2,const ImVec2)" +defs["igTranslateWindowsInViewport"][1]["signature"] = "(ImGuiViewportP*,const ImVec2,const ImVec2,const ImVec2,const ImVec2)" defs["igTranslateWindowsInViewport"][1]["stname"] = "" -defs["igTranslateWindowsInViewport"]["(ImGuiViewportP*,const ImVec2,const ImVec2)"] = defs["igTranslateWindowsInViewport"][1] +defs["igTranslateWindowsInViewport"]["(ImGuiViewportP*,const ImVec2,const ImVec2,const ImVec2,const ImVec2)"] = defs["igTranslateWindowsInViewport"][1] defs["igTreeNode"] = {} defs["igTreeNode"][1] = {} defs["igTreeNode"][1]["args"] = "(const char* label)" @@ -29922,7 +32337,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:611" +defs["igTreeNode"][1]["location"] = "imgui:660" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -29946,7 +32361,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:612" +defs["igTreeNode"][2]["location"] = "imgui:661" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -29970,7 +32385,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:613" +defs["igTreeNode"][3]["location"] = "imgui:662" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -30001,7 +32416,7 @@ defs["igTreeNodeBehavior"][1]["cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["defaults"] = {} defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "NULL" defs["igTreeNodeBehavior"][1]["funcname"] = "TreeNodeBehavior" -defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3391" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3870" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -30024,7 +32439,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:616" +defs["igTreeNodeEx"][1]["location"] = "imgui:665" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -30051,7 +32466,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:617" +defs["igTreeNodeEx"][2]["location"] = "imgui:666" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -30078,7 +32493,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:618" +defs["igTreeNodeEx"][3]["location"] = "imgui:667" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -30108,7 +32523,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:619" +defs["igTreeNodeExV"][1]["location"] = "imgui:668" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -30134,7 +32549,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:620" +defs["igTreeNodeExV"][2]["location"] = "imgui:669" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -30142,22 +32557,41 @@ defs["igTreeNodeExV"][2]["signature"] = "(const void*,ImGuiTreeNodeFlags,const c defs["igTreeNodeExV"][2]["stname"] = "" defs["igTreeNodeExV"]["(const char*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][1] defs["igTreeNodeExV"]["(const void*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][2] +defs["igTreeNodeGetOpen"] = {} +defs["igTreeNodeGetOpen"][1] = {} +defs["igTreeNodeGetOpen"][1]["args"] = "(ImGuiID storage_id)" +defs["igTreeNodeGetOpen"][1]["argsT"] = {} +defs["igTreeNodeGetOpen"][1]["argsT"][1] = {} +defs["igTreeNodeGetOpen"][1]["argsT"][1]["name"] = "storage_id" +defs["igTreeNodeGetOpen"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igTreeNodeGetOpen"][1]["argsoriginal"] = "(ImGuiID storage_id)" +defs["igTreeNodeGetOpen"][1]["call_args"] = "(storage_id)" +defs["igTreeNodeGetOpen"][1]["cimguiname"] = "igTreeNodeGetOpen" +defs["igTreeNodeGetOpen"][1]["defaults"] = {} +defs["igTreeNodeGetOpen"][1]["funcname"] = "TreeNodeGetOpen" +defs["igTreeNodeGetOpen"][1]["location"] = "imgui_internal:3872" +defs["igTreeNodeGetOpen"][1]["namespace"] = "ImGui" +defs["igTreeNodeGetOpen"][1]["ov_cimguiname"] = "igTreeNodeGetOpen" +defs["igTreeNodeGetOpen"][1]["ret"] = "bool" +defs["igTreeNodeGetOpen"][1]["signature"] = "(ImGuiID)" +defs["igTreeNodeGetOpen"][1]["stname"] = "" +defs["igTreeNodeGetOpen"]["(ImGuiID)"] = defs["igTreeNodeGetOpen"][1] defs["igTreeNodeSetOpen"] = {} defs["igTreeNodeSetOpen"][1] = {} -defs["igTreeNodeSetOpen"][1]["args"] = "(ImGuiID id,bool open)" +defs["igTreeNodeSetOpen"][1]["args"] = "(ImGuiID storage_id,bool open)" defs["igTreeNodeSetOpen"][1]["argsT"] = {} defs["igTreeNodeSetOpen"][1]["argsT"][1] = {} -defs["igTreeNodeSetOpen"][1]["argsT"][1]["name"] = "id" +defs["igTreeNodeSetOpen"][1]["argsT"][1]["name"] = "storage_id" defs["igTreeNodeSetOpen"][1]["argsT"][1]["type"] = "ImGuiID" defs["igTreeNodeSetOpen"][1]["argsT"][2] = {} defs["igTreeNodeSetOpen"][1]["argsT"][2]["name"] = "open" defs["igTreeNodeSetOpen"][1]["argsT"][2]["type"] = "bool" -defs["igTreeNodeSetOpen"][1]["argsoriginal"] = "(ImGuiID id,bool open)" -defs["igTreeNodeSetOpen"][1]["call_args"] = "(id,open)" +defs["igTreeNodeSetOpen"][1]["argsoriginal"] = "(ImGuiID storage_id,bool open)" +defs["igTreeNodeSetOpen"][1]["call_args"] = "(storage_id,open)" defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["defaults"] = {} defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" -defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3393" +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3873" defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["ret"] = "void" @@ -30166,20 +32600,20 @@ defs["igTreeNodeSetOpen"][1]["stname"] = "" defs["igTreeNodeSetOpen"]["(ImGuiID,bool)"] = defs["igTreeNodeSetOpen"][1] defs["igTreeNodeUpdateNextOpen"] = {} defs["igTreeNodeUpdateNextOpen"][1] = {} -defs["igTreeNodeUpdateNextOpen"][1]["args"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" +defs["igTreeNodeUpdateNextOpen"][1]["args"] = "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)" defs["igTreeNodeUpdateNextOpen"][1]["argsT"] = {} defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1] = {} -defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["name"] = "id" +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["name"] = "storage_id" defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["type"] = "ImGuiID" defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2] = {} defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2]["name"] = "flags" defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2]["type"] = "ImGuiTreeNodeFlags" -defs["igTreeNodeUpdateNextOpen"][1]["argsoriginal"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" -defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(id,flags)" +defs["igTreeNodeUpdateNextOpen"][1]["argsoriginal"] = "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)" +defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(storage_id,flags)" defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" -defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3394" +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3874" defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" @@ -30204,7 +32638,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:614" +defs["igTreeNodeV"][1]["location"] = "imgui:663" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -30227,7 +32661,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:615" +defs["igTreeNodeV"][2]["location"] = "imgui:664" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -30244,7 +32678,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:623" +defs["igTreePop"][1]["location"] = "imgui:672" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -30263,7 +32697,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:621" +defs["igTreePush"][1]["location"] = "imgui:670" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -30280,7 +32714,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:622" +defs["igTreePush"][2]["location"] = "imgui:671" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -30300,13 +32734,109 @@ defs["igTreePushOverrideID"][1]["call_args"] = "(id)" defs["igTreePushOverrideID"][1]["cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["defaults"] = {} defs["igTreePushOverrideID"][1]["funcname"] = "TreePushOverrideID" -defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3392" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3871" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" defs["igTreePushOverrideID"][1]["signature"] = "(ImGuiID)" defs["igTreePushOverrideID"][1]["stname"] = "" defs["igTreePushOverrideID"]["(ImGuiID)"] = defs["igTreePushOverrideID"][1] +defs["igTypingSelectFindBestLeadingMatch"] = {} +defs["igTypingSelectFindBestLeadingMatch"][1] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["args"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][1] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][1]["name"] = "req" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][1]["type"] = "ImGuiTypingSelectRequest*" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][2] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][2]["name"] = "items_count" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][2]["type"] = "int" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["name"] = "get_item_name_func" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["ret"] = "const char*" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["signature"] = "(void*,int)" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["type"] = "const char*(*)(void*,int)" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][4] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][4]["name"] = "user_data" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][4]["type"] = "void*" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsoriginal"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)" +defs["igTypingSelectFindBestLeadingMatch"][1]["call_args"] = "(req,items_count,get_item_name_func,user_data)" +defs["igTypingSelectFindBestLeadingMatch"][1]["cimguiname"] = "igTypingSelectFindBestLeadingMatch" +defs["igTypingSelectFindBestLeadingMatch"][1]["defaults"] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["funcname"] = "TypingSelectFindBestLeadingMatch" +defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3714" +defs["igTypingSelectFindBestLeadingMatch"][1]["namespace"] = "ImGui" +defs["igTypingSelectFindBestLeadingMatch"][1]["ov_cimguiname"] = "igTypingSelectFindBestLeadingMatch" +defs["igTypingSelectFindBestLeadingMatch"][1]["ret"] = "int" +defs["igTypingSelectFindBestLeadingMatch"][1]["signature"] = "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*)" +defs["igTypingSelectFindBestLeadingMatch"][1]["stname"] = "" +defs["igTypingSelectFindBestLeadingMatch"]["(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*)"] = defs["igTypingSelectFindBestLeadingMatch"][1] +defs["igTypingSelectFindMatch"] = {} +defs["igTypingSelectFindMatch"][1] = {} +defs["igTypingSelectFindMatch"][1]["args"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindMatch"][1]["argsT"] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][1] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][1]["name"] = "req" +defs["igTypingSelectFindMatch"][1]["argsT"][1]["type"] = "ImGuiTypingSelectRequest*" +defs["igTypingSelectFindMatch"][1]["argsT"][2] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][2]["name"] = "items_count" +defs["igTypingSelectFindMatch"][1]["argsT"][2]["type"] = "int" +defs["igTypingSelectFindMatch"][1]["argsT"][3] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][3]["name"] = "get_item_name_func" +defs["igTypingSelectFindMatch"][1]["argsT"][3]["ret"] = "const char*" +defs["igTypingSelectFindMatch"][1]["argsT"][3]["signature"] = "(void*,int)" +defs["igTypingSelectFindMatch"][1]["argsT"][3]["type"] = "const char*(*)(void*,int)" +defs["igTypingSelectFindMatch"][1]["argsT"][4] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][4]["name"] = "user_data" +defs["igTypingSelectFindMatch"][1]["argsT"][4]["type"] = "void*" +defs["igTypingSelectFindMatch"][1]["argsT"][5] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][5]["name"] = "nav_item_idx" +defs["igTypingSelectFindMatch"][1]["argsT"][5]["type"] = "int" +defs["igTypingSelectFindMatch"][1]["argsoriginal"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindMatch"][1]["call_args"] = "(req,items_count,get_item_name_func,user_data,nav_item_idx)" +defs["igTypingSelectFindMatch"][1]["cimguiname"] = "igTypingSelectFindMatch" +defs["igTypingSelectFindMatch"][1]["defaults"] = {} +defs["igTypingSelectFindMatch"][1]["funcname"] = "TypingSelectFindMatch" +defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3712" +defs["igTypingSelectFindMatch"][1]["namespace"] = "ImGui" +defs["igTypingSelectFindMatch"][1]["ov_cimguiname"] = "igTypingSelectFindMatch" +defs["igTypingSelectFindMatch"][1]["ret"] = "int" +defs["igTypingSelectFindMatch"][1]["signature"] = "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)" +defs["igTypingSelectFindMatch"][1]["stname"] = "" +defs["igTypingSelectFindMatch"]["(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)"] = defs["igTypingSelectFindMatch"][1] +defs["igTypingSelectFindNextSingleCharMatch"] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["args"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][1] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][1]["name"] = "req" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][1]["type"] = "ImGuiTypingSelectRequest*" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][2] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][2]["name"] = "items_count" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][2]["type"] = "int" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["name"] = "get_item_name_func" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["ret"] = "const char*" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["signature"] = "(void*,int)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["type"] = "const char*(*)(void*,int)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][4] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][4]["name"] = "user_data" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][4]["type"] = "void*" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][5] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][5]["name"] = "nav_item_idx" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][5]["type"] = "int" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsoriginal"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["call_args"] = "(req,items_count,get_item_name_func,user_data,nav_item_idx)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["cimguiname"] = "igTypingSelectFindNextSingleCharMatch" +defs["igTypingSelectFindNextSingleCharMatch"][1]["defaults"] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["funcname"] = "TypingSelectFindNextSingleCharMatch" +defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3713" +defs["igTypingSelectFindNextSingleCharMatch"][1]["namespace"] = "ImGui" +defs["igTypingSelectFindNextSingleCharMatch"][1]["ov_cimguiname"] = "igTypingSelectFindNextSingleCharMatch" +defs["igTypingSelectFindNextSingleCharMatch"][1]["ret"] = "int" +defs["igTypingSelectFindNextSingleCharMatch"][1]["signature"] = "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["stname"] = "" +defs["igTypingSelectFindNextSingleCharMatch"]["(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)"] = defs["igTypingSelectFindNextSingleCharMatch"][1] defs["igUnindent"] = {} defs["igUnindent"][1] = {} defs["igUnindent"][1]["args"] = "(float indent_w)" @@ -30320,7 +32850,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:453" +defs["igUnindent"][1]["location"] = "imgui:505" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -30336,7 +32866,7 @@ defs["igUpdateHoveredWindowAndCaptureFlags"][1]["call_args"] = "()" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["defaults"] = {} defs["igUpdateHoveredWindowAndCaptureFlags"][1]["funcname"] = "UpdateHoveredWindowAndCaptureFlags" -defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:2986" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3402" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -30355,7 +32885,7 @@ defs["igUpdateInputEvents"][1]["call_args"] = "(trickle_fast_inputs)" defs["igUpdateInputEvents"][1]["cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["defaults"] = {} defs["igUpdateInputEvents"][1]["funcname"] = "UpdateInputEvents" -defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:2985" +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3401" defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -30371,7 +32901,7 @@ defs["igUpdateMouseMovingWindowEndFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowEndFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowEndFrame"][1]["funcname"] = "UpdateMouseMovingWindowEndFrame" -defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:2990" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3407" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -30387,7 +32917,7 @@ defs["igUpdateMouseMovingWindowNewFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowNewFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowNewFrame"][1]["funcname"] = "UpdateMouseMovingWindowNewFrame" -defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:2989" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3406" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -30403,7 +32933,7 @@ defs["igUpdatePlatformWindows"][1]["call_args"] = "()" defs["igUpdatePlatformWindows"][1]["cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["defaults"] = {} defs["igUpdatePlatformWindows"][1]["funcname"] = "UpdatePlatformWindows" -defs["igUpdatePlatformWindows"][1]["location"] = "imgui:981" +defs["igUpdatePlatformWindows"][1]["location"] = "imgui:1083" defs["igUpdatePlatformWindows"][1]["namespace"] = "ImGui" defs["igUpdatePlatformWindows"][1]["ov_cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["ret"] = "void" @@ -30428,13 +32958,32 @@ defs["igUpdateWindowParentAndRootLinks"][1]["call_args"] = "(window,flags,parent defs["igUpdateWindowParentAndRootLinks"][1]["cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["defaults"] = {} defs["igUpdateWindowParentAndRootLinks"][1]["funcname"] = "UpdateWindowParentAndRootLinks" -defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:2952" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:3359" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" defs["igUpdateWindowParentAndRootLinks"][1]["signature"] = "(ImGuiWindow*,ImGuiWindowFlags,ImGuiWindow*)" defs["igUpdateWindowParentAndRootLinks"][1]["stname"] = "" defs["igUpdateWindowParentAndRootLinks"]["(ImGuiWindow*,ImGuiWindowFlags,ImGuiWindow*)"] = defs["igUpdateWindowParentAndRootLinks"][1] +defs["igUpdateWindowSkipRefresh"] = {} +defs["igUpdateWindowSkipRefresh"][1] = {} +defs["igUpdateWindowSkipRefresh"][1]["args"] = "(ImGuiWindow* window)" +defs["igUpdateWindowSkipRefresh"][1]["argsT"] = {} +defs["igUpdateWindowSkipRefresh"][1]["argsT"][1] = {} +defs["igUpdateWindowSkipRefresh"][1]["argsT"][1]["name"] = "window" +defs["igUpdateWindowSkipRefresh"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igUpdateWindowSkipRefresh"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igUpdateWindowSkipRefresh"][1]["call_args"] = "(window)" +defs["igUpdateWindowSkipRefresh"][1]["cimguiname"] = "igUpdateWindowSkipRefresh" +defs["igUpdateWindowSkipRefresh"][1]["defaults"] = {} +defs["igUpdateWindowSkipRefresh"][1]["funcname"] = "UpdateWindowSkipRefresh" +defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:3360" +defs["igUpdateWindowSkipRefresh"][1]["namespace"] = "ImGui" +defs["igUpdateWindowSkipRefresh"][1]["ov_cimguiname"] = "igUpdateWindowSkipRefresh" +defs["igUpdateWindowSkipRefresh"][1]["ret"] = "void" +defs["igUpdateWindowSkipRefresh"][1]["signature"] = "(ImGuiWindow*)" +defs["igUpdateWindowSkipRefresh"][1]["stname"] = "" +defs["igUpdateWindowSkipRefresh"]["(ImGuiWindow*)"] = defs["igUpdateWindowSkipRefresh"][1] defs["igVSliderFloat"] = {} defs["igVSliderFloat"][1] = {} defs["igVSliderFloat"][1]["args"] = "(const char* label,const ImVec2 size,float* v,float v_min,float v_max,const char* format,ImGuiSliderFlags flags)" @@ -30467,7 +33016,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:577" +defs["igVSliderFloat"][1]["location"] = "imgui:626" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -30506,7 +33055,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:578" +defs["igVSliderInt"][1]["location"] = "imgui:627" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -30548,7 +33097,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:579" +defs["igVSliderScalar"][1]["location"] = "imgui:628" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -30570,7 +33119,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:655" +defs["igValue"][1]["location"] = "imgui:717" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -30590,7 +33139,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:656" +defs["igValue"][2]["location"] = "imgui:718" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -30610,7 +33159,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:657" +defs["igValue"][3]["location"] = "imgui:719" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -30634,7 +33183,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:658" +defs["igValue"][4]["location"] = "imgui:720" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -30644,6 +33193,58 @@ defs["igValue"]["(const char*,bool)"] = defs["igValue"][1] defs["igValue"]["(const char*,float,const char*)"] = defs["igValue"][4] defs["igValue"]["(const char*,int)"] = defs["igValue"][2] defs["igValue"]["(const char*,unsigned int)"] = defs["igValue"][3] +defs["igWindowPosAbsToRel"] = {} +defs["igWindowPosAbsToRel"][1] = {} +defs["igWindowPosAbsToRel"][1]["args"] = "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)" +defs["igWindowPosAbsToRel"][1]["argsT"] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][1] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][1]["name"] = "pOut" +defs["igWindowPosAbsToRel"][1]["argsT"][1]["type"] = "ImVec2*" +defs["igWindowPosAbsToRel"][1]["argsT"][2] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][2]["name"] = "window" +defs["igWindowPosAbsToRel"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igWindowPosAbsToRel"][1]["argsT"][3] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][3]["name"] = "p" +defs["igWindowPosAbsToRel"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igWindowPosAbsToRel"][1]["argsoriginal"] = "(ImGuiWindow* window,const ImVec2& p)" +defs["igWindowPosAbsToRel"][1]["call_args"] = "(window,p)" +defs["igWindowPosAbsToRel"][1]["cimguiname"] = "igWindowPosAbsToRel" +defs["igWindowPosAbsToRel"][1]["defaults"] = {} +defs["igWindowPosAbsToRel"][1]["funcname"] = "WindowPosAbsToRel" +defs["igWindowPosAbsToRel"][1]["location"] = "imgui_internal:3374" +defs["igWindowPosAbsToRel"][1]["namespace"] = "ImGui" +defs["igWindowPosAbsToRel"][1]["nonUDT"] = 1 +defs["igWindowPosAbsToRel"][1]["ov_cimguiname"] = "igWindowPosAbsToRel" +defs["igWindowPosAbsToRel"][1]["ret"] = "void" +defs["igWindowPosAbsToRel"][1]["signature"] = "(ImGuiWindow*,const ImVec2)" +defs["igWindowPosAbsToRel"][1]["stname"] = "" +defs["igWindowPosAbsToRel"]["(ImGuiWindow*,const ImVec2)"] = defs["igWindowPosAbsToRel"][1] +defs["igWindowPosRelToAbs"] = {} +defs["igWindowPosRelToAbs"][1] = {} +defs["igWindowPosRelToAbs"][1]["args"] = "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)" +defs["igWindowPosRelToAbs"][1]["argsT"] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][1] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][1]["name"] = "pOut" +defs["igWindowPosRelToAbs"][1]["argsT"][1]["type"] = "ImVec2*" +defs["igWindowPosRelToAbs"][1]["argsT"][2] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][2]["name"] = "window" +defs["igWindowPosRelToAbs"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igWindowPosRelToAbs"][1]["argsT"][3] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][3]["name"] = "p" +defs["igWindowPosRelToAbs"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igWindowPosRelToAbs"][1]["argsoriginal"] = "(ImGuiWindow* window,const ImVec2& p)" +defs["igWindowPosRelToAbs"][1]["call_args"] = "(window,p)" +defs["igWindowPosRelToAbs"][1]["cimguiname"] = "igWindowPosRelToAbs" +defs["igWindowPosRelToAbs"][1]["defaults"] = {} +defs["igWindowPosRelToAbs"][1]["funcname"] = "WindowPosRelToAbs" +defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3375" +defs["igWindowPosRelToAbs"][1]["namespace"] = "ImGui" +defs["igWindowPosRelToAbs"][1]["nonUDT"] = 1 +defs["igWindowPosRelToAbs"][1]["ov_cimguiname"] = "igWindowPosRelToAbs" +defs["igWindowPosRelToAbs"][1]["ret"] = "void" +defs["igWindowPosRelToAbs"][1]["signature"] = "(ImGuiWindow*,const ImVec2)" +defs["igWindowPosRelToAbs"][1]["stname"] = "" +defs["igWindowPosRelToAbs"]["(ImGuiWindow*,const ImVec2)"] = defs["igWindowPosRelToAbs"][1] defs["igWindowRectAbsToRel"] = {} defs["igWindowRectAbsToRel"][1] = {} defs["igWindowRectAbsToRel"][1]["args"] = "(ImRect *pOut,ImGuiWindow* window,const ImRect r)" @@ -30662,7 +33263,7 @@ defs["igWindowRectAbsToRel"][1]["call_args"] = "(window,r)" defs["igWindowRectAbsToRel"][1]["cimguiname"] = "igWindowRectAbsToRel" defs["igWindowRectAbsToRel"][1]["defaults"] = {} defs["igWindowRectAbsToRel"][1]["funcname"] = "WindowRectAbsToRel" -defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:2962" +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3372" defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -30688,7 +33289,7 @@ defs["igWindowRectRelToAbs"][1]["call_args"] = "(window,r)" defs["igWindowRectRelToAbs"][1]["cimguiname"] = "igWindowRectRelToAbs" defs["igWindowRectRelToAbs"][1]["defaults"] = {} defs["igWindowRectRelToAbs"][1]["funcname"] = "WindowRectRelToAbs" -defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:2963" +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3373" defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" diff --git a/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.json b/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.json index 3597665..ac713a3 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.json +++ b/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.json @@ -17,7 +17,7 @@ "cimguiname": "ImGui_ImplGlfw_CharCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw:41", + "location": "imgui_impl_glfw:61", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -42,7 +42,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorEnterCallback", - "location": "imgui_impl_glfw:36", + "location": "imgui_impl_glfw:56", "ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -71,7 +71,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorPosCallback", - "location": "imgui_impl_glfw:37", + "location": "imgui_impl_glfw:57", "ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -96,7 +96,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw:22", + "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -121,7 +121,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOther", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOther", - "location": "imgui_impl_glfw:24", + "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_InitForOther", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -146,7 +146,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw:23", + "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -167,7 +167,7 @@ "cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_InstallCallbacks", - "location": "imgui_impl_glfw:31", + "location": "imgui_impl_glfw:47", "ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -204,7 +204,7 @@ "cimguiname": "ImGui_ImplGlfw_KeyCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw:40", + "location": "imgui_impl_glfw:60", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -229,7 +229,7 @@ "cimguiname": "ImGui_ImplGlfw_MonitorCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MonitorCallback", - "location": "imgui_impl_glfw:42", + "location": "imgui_impl_glfw:62", "ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback", "ret": "void", "signature": "(GLFWmonitor*,int)", @@ -262,7 +262,7 @@ "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw:38", + "location": "imgui_impl_glfw:58", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -278,7 +278,7 @@ "cimguiname": "ImGui_ImplGlfw_NewFrame", "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw:26", + "location": "imgui_impl_glfw:36", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -299,7 +299,7 @@ "cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_RestoreCallbacks", - "location": "imgui_impl_glfw:32", + "location": "imgui_impl_glfw:48", "ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -328,13 +328,34 @@ "cimguiname": "ImGui_ImplGlfw_ScrollCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw:39", + "location": "imgui_impl_glfw:59", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" } ], + "ImGui_ImplGlfw_SetCallbacksChainForAllWindows": [ + { + "args": "(bool chain_for_all_windows)", + "argsT": [ + { + "name": "chain_for_all_windows", + "type": "bool" + } + ], + "argsoriginal": "(bool chain_for_all_windows)", + "call_args": "(chain_for_all_windows)", + "cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "location": "imgui_impl_glfw:52", + "ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "ret": "void", + "signature": "(bool)", + "stname": "" + } + ], "ImGui_ImplGlfw_Shutdown": [ { "args": "()", @@ -344,13 +365,34 @@ "cimguiname": "ImGui_ImplGlfw_Shutdown", "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw:25", + "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" } ], + "ImGui_ImplGlfw_Sleep": [ + { + "args": "(int milliseconds)", + "argsT": [ + { + "name": "milliseconds", + "type": "int" + } + ], + "argsoriginal": "(int milliseconds)", + "call_args": "(milliseconds)", + "cimguiname": "ImGui_ImplGlfw_Sleep", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_Sleep", + "location": "imgui_impl_glfw:65", + "ov_cimguiname": "ImGui_ImplGlfw_Sleep", + "ret": "void", + "signature": "(int)", + "stname": "" + } + ], "ImGui_ImplGlfw_WindowFocusCallback": [ { "args": "(GLFWwindow* window,int focused)", @@ -369,7 +411,7 @@ "cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_WindowFocusCallback", - "location": "imgui_impl_glfw:35", + "location": "imgui_impl_glfw:55", "ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -385,7 +427,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2:31", + "location": "imgui_impl_opengl2:37", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -401,7 +443,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2:29", + "location": "imgui_impl_opengl2:35", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -417,7 +459,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2:32", + "location": "imgui_impl_opengl2:38", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -433,7 +475,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2:30", + "location": "imgui_impl_opengl2:36", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -449,7 +491,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2:23", + "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -465,7 +507,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2:25", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -486,7 +528,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2:26", + "location": "imgui_impl_opengl2:32", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -502,7 +544,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2:24", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -518,7 +560,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3:32", + "location": "imgui_impl_opengl3:42", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -534,7 +576,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3:30", + "location": "imgui_impl_opengl3:40", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -550,7 +592,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3:33", + "location": "imgui_impl_opengl3:43", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -566,7 +608,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3:31", + "location": "imgui_impl_opengl3:41", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -589,7 +631,7 @@ "glsl_version": "nullptr" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3:24", + "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", @@ -605,7 +647,7 @@ "cimguiname": "ImGui_ImplOpenGL3_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3:26", + "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", @@ -626,7 +668,7 @@ "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3:27", + "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -642,7 +684,7 @@ "cimguiname": "ImGui_ImplOpenGL3_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3:25", + "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", @@ -663,7 +705,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForD3D", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForD3D", - "location": "imgui_impl_sdl:27", + "location": "imgui_impl_sdl2:37", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -684,7 +726,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForMetal", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForMetal", - "location": "imgui_impl_sdl:28", + "location": "imgui_impl_sdl2:38", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -709,13 +751,34 @@ "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl:25", + "location": "imgui_impl_sdl2:35", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" } ], + "ImGui_ImplSDL2_InitForOther": [ + { + "args": "(SDL_Window* window)", + "argsT": [ + { + "name": "window", + "type": "SDL_Window*" + } + ], + "argsoriginal": "(SDL_Window* window)", + "call_args": "(window)", + "cimguiname": "ImGui_ImplSDL2_InitForOther", + "defaults": {}, + "funcname": "ImGui_ImplSDL2_InitForOther", + "location": "imgui_impl_sdl2:40", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOther", + "ret": "bool", + "signature": "(SDL_Window*)", + "stname": "" + } + ], "ImGui_ImplSDL2_InitForSDLRenderer": [ { "args": "(SDL_Window* window,SDL_Renderer* renderer)", @@ -734,7 +797,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForSDLRenderer", - "location": "imgui_impl_sdl:29", + "location": "imgui_impl_sdl2:39", "ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "ret": "bool", "signature": "(SDL_Window*,SDL_Renderer*)", @@ -755,7 +818,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl:26", + "location": "imgui_impl_sdl2:36", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -771,7 +834,7 @@ "cimguiname": "ImGui_ImplSDL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl:31", + "location": "imgui_impl_sdl2:42", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "()", @@ -792,13 +855,45 @@ "cimguiname": "ImGui_ImplSDL2_ProcessEvent", "defaults": {}, "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl:32", + "location": "imgui_impl_sdl2:43", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" } ], + "ImGui_ImplSDL2_SetGamepadMode": [ + { + "args": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)", + "argsT": [ + { + "name": "mode", + "type": "ImGui_ImplSDL2_GamepadMode" + }, + { + "name": "manual_gamepads_array", + "type": "struct _SDL_GameController**" + }, + { + "name": "manual_gamepads_count", + "type": "int" + } + ], + "argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)", + "call_args": "(mode,manual_gamepads_array,manual_gamepads_count)", + "cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "defaults": { + "manual_gamepads_array": "NULL", + "manual_gamepads_count": "-1" + }, + "funcname": "ImGui_ImplSDL2_SetGamepadMode", + "location": "imgui_impl_sdl2:48", + "ov_cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "ret": "void", + "signature": "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)", + "stname": "" + } + ], "ImGui_ImplSDL2_Shutdown": [ { "args": "()", @@ -808,7 +903,7 @@ "cimguiname": "ImGui_ImplSDL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl:30", + "location": "imgui_impl_sdl2:41", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", diff --git a/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.lua b/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.lua index fbc6a4c..828c8f2 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.lua +++ b/imgui-sys/third-party/imgui-docking-freetype/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:41" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:61" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback" -defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:36" +defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:56" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback" -defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:37" +defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:57" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:22" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:32" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther" -defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:24" +defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:34" defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)" @@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:23" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:33" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks" -defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:31" +defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:47" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:40" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:60" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)" defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback" -defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:42" +defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:62" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)" @@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:38" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:58" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:26" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:36" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks" -defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:32" +defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:48" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -275,12 +275,30 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:39" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:59" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["stname"] = "" defs["ImGui_ImplGlfw_ScrollCallback"]["(GLFWwindow*,double,double)"] = defs["ImGui_ImplGlfw_ScrollCallback"][1] +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["args"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["name"] = "chain_for_all_windows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["type"] = "bool" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsoriginal"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:52" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["stname"] = "" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"]["(bool)"] = defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] defs["ImGui_ImplGlfw_Shutdown"] = {} defs["ImGui_ImplGlfw_Shutdown"][1] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["args"] = "()" @@ -290,12 +308,30 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:25" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:35" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" defs["ImGui_ImplGlfw_Shutdown"]["()"] = defs["ImGui_ImplGlfw_Shutdown"][1] +defs["ImGui_ImplGlfw_Sleep"] = {} +defs["ImGui_ImplGlfw_Sleep"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["args"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["name"] = "milliseconds" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["type"] = "int" +defs["ImGui_ImplGlfw_Sleep"][1]["argsoriginal"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["call_args"] = "(milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["funcname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["location"] = "imgui_impl_glfw:65" +defs["ImGui_ImplGlfw_Sleep"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_Sleep"][1]["signature"] = "(int)" +defs["ImGui_ImplGlfw_Sleep"][1]["stname"] = "" +defs["ImGui_ImplGlfw_Sleep"]["(int)"] = defs["ImGui_ImplGlfw_Sleep"][1] defs["ImGui_ImplGlfw_WindowFocusCallback"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["args"] = "(GLFWwindow* window,int focused)" @@ -311,7 +347,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback" -defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:35" +defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:55" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -326,7 +362,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:31" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:37" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -341,7 +377,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:29" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:35" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -356,7 +392,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:32" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:38" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -371,7 +407,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:30" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:36" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -386,7 +422,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:23" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:29" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -401,7 +437,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:25" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -419,7 +455,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:26" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:32" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -434,7 +470,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:24" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -449,7 +485,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:32" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:42" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" @@ -464,7 +500,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:30" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:40" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" @@ -479,7 +515,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:33" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:43" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" @@ -494,7 +530,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:31" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:41" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" @@ -513,7 +549,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "nullptr" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:24" +defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:34" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" @@ -528,7 +564,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:26" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:36" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" @@ -546,7 +582,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:27" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:37" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -561,7 +597,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:25" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:35" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" @@ -579,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D" -defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl:27" +defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:37" defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -597,7 +633,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal" -defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl:28" +defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:38" defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -618,12 +654,30 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl:25" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:35" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["stname"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"]["(SDL_Window*,void*)"] = defs["ImGui_ImplSDL2_InitForOpenGL"][1] +defs["ImGui_ImplSDL2_InitForOther"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["args"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["name"] = "window" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["type"] = "SDL_Window*" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsoriginal"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["call_args"] = "(window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:40" +defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool" +defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)" +defs["ImGui_ImplSDL2_InitForOther"][1]["stname"] = "" +defs["ImGui_ImplSDL2_InitForOther"]["(SDL_Window*)"] = defs["ImGui_ImplSDL2_InitForOther"][1] defs["ImGui_ImplSDL2_InitForSDLRenderer"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["args"] = "(SDL_Window* window,SDL_Renderer* renderer)" @@ -639,7 +693,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer" -defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl:29" +defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:39" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)" @@ -657,7 +711,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl:26" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:36" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -672,7 +726,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl:31" +defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:42" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()" @@ -690,12 +744,38 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl:32" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:43" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = "" defs["ImGui_ImplSDL2_ProcessEvent"]["(const SDL_Event*)"] = defs["ImGui_ImplSDL2_ProcessEvent"][1] +defs["ImGui_ImplSDL2_SetGamepadMode"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["args"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["name"] = "mode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["type"] = "ImGui_ImplSDL2_GamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["name"] = "manual_gamepads_array" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["type"] = "struct _SDL_GameController**" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["type"] = "int" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["location"] = "imgui_impl_sdl2:48" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ret"] = "void" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["signature"] = "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["stname"] = "" +defs["ImGui_ImplSDL2_SetGamepadMode"]["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"] = defs["ImGui_ImplSDL2_SetGamepadMode"][1] defs["ImGui_ImplSDL2_Shutdown"] = {} defs["ImGui_ImplSDL2_Shutdown"][1] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()" @@ -705,7 +785,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl:30" +defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:41" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" diff --git a/imgui-sys/third-party/imgui-docking-freetype/overloads.txt b/imgui-sys/third-party/imgui-docking-freetype/overloads.txt index 6b78943..70d0f30 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/overloads.txt +++ b/imgui-sys/third-party/imgui-docking-freetype/overloads.txt @@ -94,8 +94,8 @@ ImVector_resize 2 1 void ImVector_resize_Nil (int) 2 void ImVector_resize_T (int,const T) igBeginChild 2 -1 bool igBeginChild_Str (const char*,const ImVec2,bool,ImGuiWindowFlags) -2 bool igBeginChild_ID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) +1 bool igBeginChild_Str (const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) +2 bool igBeginChild_ID (ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) igCheckboxFlags 4 1 bool igCheckboxFlags_IntPtr (const char*,int*,int) 2 bool igCheckboxFlags_UintPtr (const char*,unsigned int*,unsigned int) @@ -107,22 +107,25 @@ igCollapsingHeader 2 igCombo 3 1 bool igCombo_Str_arr (const char*,int*,const char* const[],int,int) 2 bool igCombo_Str (const char*,int*,const char*,int) -3 bool igCombo_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) -igGetBackgroundDrawList 2 -1 ImDrawList* igGetBackgroundDrawList_Nil () -2 ImDrawList* igGetBackgroundDrawList_ViewportPtr (ImGuiViewport*) +3 bool igCombo_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igGetColorU32 3 1 ImU32 igGetColorU32_Col (ImGuiCol,float) 2 ImU32 igGetColorU32_Vec4 (const ImVec4) -3 ImU32 igGetColorU32_U32 (ImU32) -igGetForegroundDrawList 3 -1 ImDrawList* igGetForegroundDrawList_Nil () -2 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*) -3 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*) -igGetID 3 +3 ImU32 igGetColorU32_U32 (ImU32,float) +igGetForegroundDrawList 2 +1 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*) +2 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*) +igGetID 4 1 ImGuiID igGetID_Str (const char*) 2 ImGuiID igGetID_StrStr (const char*,const char*) 3 ImGuiID igGetID_Ptr (const void*) +4 ImGuiID igGetID_Int (int) +igGetIDWithSeed 2 +1 ImGuiID igGetIDWithSeed_Str (const char*,const char*,ImGuiID) +2 ImGuiID igGetIDWithSeed_Int (int,ImGuiID) +igGetKeyData 2 +1 ImGuiKeyData* igGetKeyData_ContextPtr (ImGuiContext*,ImGuiKey) +2 ImGuiKeyData* igGetKeyData_Key (ImGuiKey) igImAbs 3 1 int igImAbs_Int (int) 2 float igImAbs_Float (float) @@ -130,9 +133,6 @@ igImAbs 3 igImFloor 2 1 float igImFloor_Float (float) 2 ImVec2 igImFloor_Vec2 (const ImVec2) -igImFloorSigned 2 -1 float igImFloorSigned_Float (float) -2 ImVec2 igImFloorSigned_Vec2 (const ImVec2) igImIsPowerOfTwo 2 1 bool igImIsPowerOfTwo_Int (int) 2 bool igImIsPowerOfTwo_U64 (ImU64) @@ -155,18 +155,27 @@ igImRsqrt 2 igImSign 2 1 float igImSign_Float (float) 2 double igImSign_double (double) +igImTrunc 2 +1 float igImTrunc_Float (float) +2 ImVec2 igImTrunc_Vec2 (const ImVec2) +igIsKeyChordPressed 2 +1 bool igIsKeyChordPressed_Nil (ImGuiKeyChord) +2 bool igIsKeyChordPressed_InputFlags (ImGuiKeyChord,ImGuiInputFlags,ImGuiID) igIsKeyDown 2 1 bool igIsKeyDown_Nil (ImGuiKey) 2 bool igIsKeyDown_ID (ImGuiKey,ImGuiID) igIsKeyPressed 2 1 bool igIsKeyPressed_Bool (ImGuiKey,bool) -2 bool igIsKeyPressed_ID (ImGuiKey,ImGuiID,ImGuiInputFlags) +2 bool igIsKeyPressed_InputFlags (ImGuiKey,ImGuiInputFlags,ImGuiID) igIsKeyReleased 2 1 bool igIsKeyReleased_Nil (ImGuiKey) 2 bool igIsKeyReleased_ID (ImGuiKey,ImGuiID) igIsMouseClicked 2 1 bool igIsMouseClicked_Bool (ImGuiMouseButton,bool) -2 bool igIsMouseClicked_ID (ImGuiMouseButton,ImGuiID,ImGuiInputFlags) +2 bool igIsMouseClicked_InputFlags (ImGuiMouseButton,ImGuiInputFlags,ImGuiID) +igIsMouseDoubleClicked 2 +1 bool igIsMouseDoubleClicked_Nil (ImGuiMouseButton) +2 bool igIsMouseDoubleClicked_ID (ImGuiMouseButton,ImGuiID) igIsMouseDown 2 1 bool igIsMouseDown_Nil (ImGuiMouseButton) 2 bool igIsMouseDown_ID (ImGuiMouseButton,ImGuiID) @@ -184,7 +193,7 @@ igItemSize 2 2 void igItemSize_Rect (const ImRect,float) igListBox 2 1 bool igListBox_Str_arr (const char*,int*,const char* const[],int,int) -2 bool igListBox_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +2 bool igListBox_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igMarkIniSettingsDirty 2 1 void igMarkIniSettingsDirty_Nil () 2 void igMarkIniSettingsDirty_WindowPtr (ImGuiWindow*) @@ -217,6 +226,9 @@ igRadioButton 2 igSelectable 2 1 bool igSelectable_Bool (const char*,bool,ImGuiSelectableFlags,const ImVec2) 2 bool igSelectable_BoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) +igSetItemKeyOwner 2 +1 void igSetItemKeyOwner_Nil (ImGuiKey) +2 void igSetItemKeyOwner_InputFlags (ImGuiKey,ImGuiInputFlags) igSetScrollFromPosX 2 1 void igSetScrollFromPosX_Float (float,float) 2 void igSetScrollFromPosX_WindowPtr (ImGuiWindow*,float,float) @@ -244,6 +256,9 @@ igSetWindowSize 3 1 void igSetWindowSize_Vec2 (const ImVec2,ImGuiCond) 2 void igSetWindowSize_Str (const char*,const ImVec2,ImGuiCond) 3 void igSetWindowSize_WindowPtr (ImGuiWindow*,const ImVec2,ImGuiCond) +igShortcut 2 +1 bool igShortcut_Nil (ImGuiKeyChord,ImGuiInputFlags) +2 bool igShortcut_ID (ImGuiKeyChord,ImGuiInputFlags,ImGuiID) igTabItemCalcSize 2 1 ImVec2 igTabItemCalcSize_Str (const char*,bool) 2 ImVec2 igTabItemCalcSize_WindowPtr (ImGuiWindow*) @@ -275,4 +290,4 @@ igValue 4 2 void igValue_Int (const char*,int) 3 void igValue_Uint (const char*,unsigned int) 4 void igValue_Float (const char*,float,const char*) -193 overloaded \ No newline at end of file +203 overloaded \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.json b/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.json index ce810b1..a670eae 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.json +++ b/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.json @@ -141,6 +141,16 @@ "calc_value": 4, "name": "ImGuiActivateFlags_TryToPreserveState", "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiActivateFlags_FromTabbing", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiActivateFlags_FromShortcut", + "value": "1 << 4" } ], "ImGuiAxis": [ @@ -245,7 +255,7 @@ }, { "calc_value": 4096, - "name": "ImGuiButtonFlags_AllowItemOverlap", + "name": "ImGuiButtonFlags_AllowOverlap", "value": "1 << 12" }, { @@ -324,11 +334,58 @@ "calc_value": 7, "name": "ImGuiButtonFlags_MouseButtonMask_", "value": "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" + } + ], + "ImGuiChildFlags_": [ + { + "calc_value": 0, + "name": "ImGuiChildFlags_None", + "value": "0" }, { "calc_value": 1, - "name": "ImGuiButtonFlags_MouseButtonDefault_", - "value": "ImGuiButtonFlags_MouseButtonLeft" + "name": "ImGuiChildFlags_Borders", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiChildFlags_AlwaysUseWindowPadding", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiChildFlags_ResizeX", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiChildFlags_ResizeY", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiChildFlags_AutoResizeX", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiChildFlags_AutoResizeY", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiChildFlags_AlwaysAutoResize", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiChildFlags_FrameStyle", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiChildFlags_NavFlattened", + "value": "1 << 8" } ], "ImGuiCol_": [ @@ -499,118 +556,133 @@ }, { "calc_value": 33, - "name": "ImGuiCol_Tab", + "name": "ImGuiCol_TabHovered", "value": "33" }, { "calc_value": 34, - "name": "ImGuiCol_TabHovered", + "name": "ImGuiCol_Tab", "value": "34" }, { "calc_value": 35, - "name": "ImGuiCol_TabActive", + "name": "ImGuiCol_TabSelected", "value": "35" }, { "calc_value": 36, - "name": "ImGuiCol_TabUnfocused", + "name": "ImGuiCol_TabSelectedOverline", "value": "36" }, { "calc_value": 37, - "name": "ImGuiCol_TabUnfocusedActive", + "name": "ImGuiCol_TabDimmed", "value": "37" }, { "calc_value": 38, - "name": "ImGuiCol_DockingPreview", + "name": "ImGuiCol_TabDimmedSelected", "value": "38" }, { "calc_value": 39, - "name": "ImGuiCol_DockingEmptyBg", + "name": "ImGuiCol_TabDimmedSelectedOverline", "value": "39" }, { "calc_value": 40, - "name": "ImGuiCol_PlotLines", + "name": "ImGuiCol_DockingPreview", "value": "40" }, { "calc_value": 41, - "name": "ImGuiCol_PlotLinesHovered", + "name": "ImGuiCol_DockingEmptyBg", "value": "41" }, { "calc_value": 42, - "name": "ImGuiCol_PlotHistogram", + "name": "ImGuiCol_PlotLines", "value": "42" }, { "calc_value": 43, - "name": "ImGuiCol_PlotHistogramHovered", + "name": "ImGuiCol_PlotLinesHovered", "value": "43" }, { "calc_value": 44, - "name": "ImGuiCol_TableHeaderBg", + "name": "ImGuiCol_PlotHistogram", "value": "44" }, { "calc_value": 45, - "name": "ImGuiCol_TableBorderStrong", + "name": "ImGuiCol_PlotHistogramHovered", "value": "45" }, { "calc_value": 46, - "name": "ImGuiCol_TableBorderLight", + "name": "ImGuiCol_TableHeaderBg", "value": "46" }, { "calc_value": 47, - "name": "ImGuiCol_TableRowBg", + "name": "ImGuiCol_TableBorderStrong", "value": "47" }, { "calc_value": 48, - "name": "ImGuiCol_TableRowBgAlt", + "name": "ImGuiCol_TableBorderLight", "value": "48" }, { "calc_value": 49, - "name": "ImGuiCol_TextSelectedBg", + "name": "ImGuiCol_TableRowBg", "value": "49" }, { "calc_value": 50, - "name": "ImGuiCol_DragDropTarget", + "name": "ImGuiCol_TableRowBgAlt", "value": "50" }, { "calc_value": 51, - "name": "ImGuiCol_NavHighlight", + "name": "ImGuiCol_TextLink", "value": "51" }, { "calc_value": 52, - "name": "ImGuiCol_NavWindowingHighlight", + "name": "ImGuiCol_TextSelectedBg", "value": "52" }, { "calc_value": 53, - "name": "ImGuiCol_NavWindowingDimBg", + "name": "ImGuiCol_DragDropTarget", "value": "53" }, { "calc_value": 54, - "name": "ImGuiCol_ModalWindowDimBg", + "name": "ImGuiCol_NavHighlight", "value": "54" }, { "calc_value": 55, - "name": "ImGuiCol_COUNT", + "name": "ImGuiCol_NavWindowingHighlight", "value": "55" + }, + { + "calc_value": 56, + "name": "ImGuiCol_NavWindowingDimBg", + "value": "56" + }, + { + "calc_value": 57, + "name": "ImGuiCol_ModalWindowDimBg", + "value": "57" + }, + { + "calc_value": 58, + "name": "ImGuiCol_COUNT", + "value": "58" } ], "ImGuiColorEditFlags_": [ @@ -808,6 +880,11 @@ "name": "ImGuiComboFlags_NoPreview", "value": "1 << 6" }, + { + "calc_value": 128, + "name": "ImGuiComboFlags_WidthFitPreview", + "value": "1 << 7" + }, { "calc_value": 30, "name": "ImGuiComboFlags_HeightMask_", @@ -879,9 +956,14 @@ }, { "calc_value": 64, - "name": "ImGuiConfigFlags_DockingEnable", + "name": "ImGuiConfigFlags_NoKeyboard", "value": "1 << 6" }, + { + "calc_value": 128, + "name": "ImGuiConfigFlags_DockingEnable", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiConfigFlags_ViewportsEnable", @@ -969,17 +1051,17 @@ ], "ImGuiDataTypePrivate_": [ { - "calc_value": 11, + "calc_value": 12, "name": "ImGuiDataType_String", "value": "ImGuiDataType_COUNT + 1" }, { - "calc_value": 12, + "calc_value": 13, "name": "ImGuiDataType_Pointer", "value": "ImGuiDataType_COUNT + 1+1" }, { - "calc_value": 13, + "calc_value": 14, "name": "ImGuiDataType_ID", "value": "ImGuiDataType_COUNT + 1+1+1" } @@ -1037,8 +1119,13 @@ }, { "calc_value": 10, - "name": "ImGuiDataType_COUNT", + "name": "ImGuiDataType_Bool", "value": "10" + }, + { + "calc_value": 11, + "name": "ImGuiDataType_COUNT", + "value": "11" } ], "ImGuiDebugLogFlags_": [ @@ -1074,31 +1161,46 @@ }, { "calc_value": 32, - "name": "ImGuiDebugLogFlags_EventIO", + "name": "ImGuiDebugLogFlags_EventSelection", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiDebugLogFlags_EventDocking", + "name": "ImGuiDebugLogFlags_EventIO", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiDebugLogFlags_EventViewport", + "name": "ImGuiDebugLogFlags_EventInputRouting", "value": "1 << 7" }, { - "calc_value": 255, - "name": "ImGuiDebugLogFlags_EventMask_", - "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" + "calc_value": 256, + "name": "ImGuiDebugLogFlags_EventDocking", + "value": "1 << 8" }, { - "calc_value": 1024, + "calc_value": 512, + "name": "ImGuiDebugLogFlags_EventViewport", + "value": "1 << 9" + }, + { + "calc_value": 1023, + "name": "ImGuiDebugLogFlags_EventMask_", + "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" + }, + { + "calc_value": 1048576, "name": "ImGuiDebugLogFlags_OutputToTTY", - "value": "1 << 10" + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiDebugLogFlags_OutputToTestEngine", + "value": "1 << 21" } ], - "ImGuiDir_": [ + "ImGuiDir": [ { "calc_value": -1, "name": "ImGuiDir_None", @@ -1163,43 +1265,43 @@ }, { "calc_value": 65536, - "name": "ImGuiDockNodeFlags_NoDocking", + "name": "ImGuiDockNodeFlags_NoResizeX", "value": "1 << 16" }, { "calc_value": 131072, - "name": "ImGuiDockNodeFlags_NoDockingSplitMe", + "name": "ImGuiDockNodeFlags_NoResizeY", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiDockNodeFlags_NoDockingSplitOther", + "name": "ImGuiDockNodeFlags_DockedWindowsInFocusRoute", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiDockNodeFlags_NoDockingOverMe", + "name": "ImGuiDockNodeFlags_NoDockingSplitOther", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiDockNodeFlags_NoDockingOverOther", + "name": "ImGuiDockNodeFlags_NoDockingOverMe", "value": "1 << 20" }, { "calc_value": 2097152, - "name": "ImGuiDockNodeFlags_NoDockingOverEmpty", + "name": "ImGuiDockNodeFlags_NoDockingOverOther", "value": "1 << 21" }, { "calc_value": 4194304, - "name": "ImGuiDockNodeFlags_NoResizeX", + "name": "ImGuiDockNodeFlags_NoDockingOverEmpty", "value": "1 << 22" }, { - "calc_value": 8388608, - "name": "ImGuiDockNodeFlags_NoResizeY", - "value": "1 << 23" + "calc_value": 7864336, + "name": "ImGuiDockNodeFlags_NoDocking", + "value": "ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther" }, { "calc_value": -1, @@ -1207,24 +1309,19 @@ "value": "~0" }, { - "calc_value": 12582944, + "calc_value": 196640, "name": "ImGuiDockNodeFlags_NoResizeFlagsMask_", - "value": "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" + "value": "(int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" }, { - "calc_value": 12713072, - "name": "ImGuiDockNodeFlags_LocalFlagsMask_", - "value": "ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" - }, - { - "calc_value": 12712048, + "calc_value": 260208, "name": "ImGuiDockNodeFlags_LocalFlagsTransferMask_", - "value": "ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace" + "value": "(int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" }, { - "calc_value": 12712992, + "calc_value": 261152, "name": "ImGuiDockNodeFlags_SavedFlagsMask_", - "value": "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" + "value": "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" } ], "ImGuiDockNodeFlags_": [ @@ -1240,7 +1337,7 @@ }, { "calc_value": 4, - "name": "ImGuiDockNodeFlags_NoDockingInCentralNode", + "name": "ImGuiDockNodeFlags_NoDockingOverCentralNode", "value": "1 << 2" }, { @@ -1250,7 +1347,7 @@ }, { "calc_value": 16, - "name": "ImGuiDockNodeFlags_NoSplit", + "name": "ImGuiDockNodeFlags_NoDockingSplit", "value": "1 << 4" }, { @@ -1262,6 +1359,11 @@ "calc_value": 64, "name": "ImGuiDockNodeFlags_AutoHideTabBar", "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDockNodeFlags_NoUndocking", + "value": "1 << 7" } ], "ImGuiDockNodeState": [ @@ -1319,9 +1421,19 @@ }, { "calc_value": 32, - "name": "ImGuiDragDropFlags_SourceAutoExpirePayload", + "name": "ImGuiDragDropFlags_PayloadAutoExpire", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiDragDropFlags_PayloadNoCrossContext", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDragDropFlags_PayloadNoCrossProcess", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiDragDropFlags_AcceptBeforeDelivery", @@ -1343,6 +1455,23 @@ "value": "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" } ], + "ImGuiFocusRequestFlags_": [ + { + "calc_value": 0, + "name": "ImGuiFocusRequestFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiFocusRequestFlags_RestoreFocusedChild", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiFocusRequestFlags_UnlessBelowModal", + "value": "1 << 1" + } + ], "ImGuiFocusedFlags_": [ { "calc_value": 0, @@ -1432,6 +1561,23 @@ "value": "1 << 9" } ], + "ImGuiHoveredFlagsPrivate_": [ + { + "calc_value": 245760, + "name": "ImGuiHoveredFlags_DelayMask_", + "value": "ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay" + }, + { + "calc_value": 12479, + "name": "ImGuiHoveredFlags_AllowedMaskForIsWindowHovered", + "value": "ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_DockHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary" + }, + { + "calc_value": 262048, + "name": "ImGuiHoveredFlags_AllowedMaskForIsItemHovered", + "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_" + } + ], "ImGuiHoveredFlags_": [ { "calc_value": 0, @@ -1475,21 +1621,31 @@ }, { "calc_value": 256, - "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByItem", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiHoveredFlags_AllowWhenDisabled", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByWindow", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiHoveredFlags_NoNavOverride", + "name": "ImGuiHoveredFlags_AllowWhenDisabled", "value": "1 << 10" }, { - "calc_value": 416, + "calc_value": 2048, + "name": "ImGuiHoveredFlags_NoNavOverride", + "value": "1 << 11" + }, + { + "calc_value": 768, + "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "value": "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" + }, + { + "calc_value": 928, "name": "ImGuiHoveredFlags_RectOnly", "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" }, @@ -1498,20 +1654,35 @@ "name": "ImGuiHoveredFlags_RootAndChildWindows", "value": "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" }, - { - "calc_value": 2048, - "name": "ImGuiHoveredFlags_DelayNormal", - "value": "1 << 11" - }, { "calc_value": 4096, - "name": "ImGuiHoveredFlags_DelayShort", + "name": "ImGuiHoveredFlags_ForTooltip", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiHoveredFlags_NoSharedDelay", + "name": "ImGuiHoveredFlags_Stationary", "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiHoveredFlags_DelayNone", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiHoveredFlags_DelayShort", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiHoveredFlags_DelayNormal", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiHoveredFlags_NoSharedDelay", + "value": "1 << 17" } ], "ImGuiInputEventType": [ @@ -1561,17 +1732,7 @@ "value": "8" } ], - "ImGuiInputFlags_": [ - { - "calc_value": 0, - "name": "ImGuiInputFlags_None", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiInputFlags_Repeat", - "value": "1 << 0" - }, + "ImGuiInputFlagsPrivate_": [ { "calc_value": 2, "name": "ImGuiInputFlags_RepeatRateDefault", @@ -1587,102 +1748,169 @@ "name": "ImGuiInputFlags_RepeatRateNavTweak", "value": "1 << 3" }, + { + "calc_value": 16, + "name": "ImGuiInputFlags_RepeatUntilRelease", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiInputFlags_RepeatUntilKeyModsChange", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiInputFlags_RepeatUntilOtherKeyPress", + "value": "1 << 7" + }, + { + "calc_value": 1048576, + "name": "ImGuiInputFlags_LockThisFrame", + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiInputFlags_LockUntilRelease", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiInputFlags_CondHovered", + "value": "1 << 22" + }, + { + "calc_value": 8388608, + "name": "ImGuiInputFlags_CondActive", + "value": "1 << 23" + }, + { + "calc_value": 12582912, + "name": "ImGuiInputFlags_CondDefault_", + "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" + }, { "calc_value": 14, "name": "ImGuiInputFlags_RepeatRateMask_", "value": "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" }, { - "calc_value": 16, - "name": "ImGuiInputFlags_CondHovered", - "value": "1 << 4" + "calc_value": 240, + "name": "ImGuiInputFlags_RepeatUntilMask_", + "value": "ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress" }, { - "calc_value": 32, - "name": "ImGuiInputFlags_CondActive", - "value": "1 << 5" + "calc_value": 255, + "name": "ImGuiInputFlags_RepeatMask_", + "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" }, { - "calc_value": 48, - "name": "ImGuiInputFlags_CondDefault_", - "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" - }, - { - "calc_value": 48, + "calc_value": 12582912, "name": "ImGuiInputFlags_CondMask_", "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" }, { - "calc_value": 64, - "name": "ImGuiInputFlags_LockThisFrame", - "value": "1 << 6" + "calc_value": 15360, + "name": "ImGuiInputFlags_RouteTypeMask_", + "value": "ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways" }, { - "calc_value": 128, - "name": "ImGuiInputFlags_LockUntilRelease", - "value": "1 << 7" + "calc_value": 245760, + "name": "ImGuiInputFlags_RouteOptionsMask_", + "value": "ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow" }, { - "calc_value": 256, - "name": "ImGuiInputFlags_RouteFocused", - "value": "1 << 8" - }, - { - "calc_value": 512, - "name": "ImGuiInputFlags_RouteGlobalLow", - "value": "1 << 9" - }, - { - "calc_value": 1024, - "name": "ImGuiInputFlags_RouteGlobal", - "value": "1 << 10" - }, - { - "calc_value": 2048, - "name": "ImGuiInputFlags_RouteGlobalHigh", - "value": "1 << 11" - }, - { - "calc_value": 3840, - "name": "ImGuiInputFlags_RouteMask_", - "value": "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" - }, - { - "calc_value": 4096, - "name": "ImGuiInputFlags_RouteAlways", - "value": "1 << 12" - }, - { - "calc_value": 8192, - "name": "ImGuiInputFlags_RouteUnlessBgFocused", - "value": "1 << 13" - }, - { - "calc_value": 12288, - "name": "ImGuiInputFlags_RouteExtraMask_", - "value": "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" - }, - { - "calc_value": 15, + "calc_value": 255, "name": "ImGuiInputFlags_SupportedByIsKeyPressed", - "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_" + "value": "ImGuiInputFlags_RepeatMask_" }, { - "calc_value": 16143, + "calc_value": 1, + "name": "ImGuiInputFlags_SupportedByIsMouseClicked", + "value": "ImGuiInputFlags_Repeat" + }, + { + "calc_value": 261375, "name": "ImGuiInputFlags_SupportedByShortcut", - "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" + "value": "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_" }, { - "calc_value": 192, + "calc_value": 523519, + "name": "ImGuiInputFlags_SupportedBySetNextItemShortcut", + "value": "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip" + }, + { + "calc_value": 3145728, "name": "ImGuiInputFlags_SupportedBySetKeyOwner", "value": "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" }, { - "calc_value": 240, + "calc_value": 15728640, "name": "ImGuiInputFlags_SupportedBySetItemKeyOwner", "value": "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" } ], + "ImGuiInputFlags_": [ + { + "calc_value": 0, + "name": "ImGuiInputFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiInputFlags_Repeat", + "value": "1 << 0" + }, + { + "calc_value": 1024, + "name": "ImGuiInputFlags_RouteActive", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiInputFlags_RouteFocused", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiInputFlags_RouteGlobal", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiInputFlags_RouteAlways", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiInputFlags_RouteOverFocused", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiInputFlags_RouteOverActive", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiInputFlags_RouteUnlessBgFocused", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiInputFlags_RouteFromRootWindow", + "value": "1 << 17" + }, + { + "calc_value": 262144, + "name": "ImGuiInputFlags_Tooltip", + "value": "1 << 18" + } + ], "ImGuiInputSource": [ { "calc_value": 0, @@ -1706,18 +1934,8 @@ }, { "calc_value": 4, - "name": "ImGuiInputSource_Clipboard", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiInputSource_Nav", - "value": "5" - }, - { - "calc_value": 6, "name": "ImGuiInputSource_COUNT", - "value": "6" + "value": "4" } ], "ImGuiInputTextFlagsPrivate_": [ @@ -1735,6 +1953,11 @@ "calc_value": 268435456, "name": "ImGuiInputTextFlags_MergedItem", "value": "1 << 28" + }, + { + "calc_value": 536870912, + "name": "ImGuiInputTextFlags_LocalizeDecimalPoint", + "value": "1 << 29" } ], "ImGuiInputTextFlags_": [ @@ -1755,72 +1978,72 @@ }, { "calc_value": 4, - "name": "ImGuiInputTextFlags_CharsUppercase", + "name": "ImGuiInputTextFlags_CharsScientific", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiInputTextFlags_CharsNoBlank", + "name": "ImGuiInputTextFlags_CharsUppercase", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiInputTextFlags_AutoSelectAll", + "name": "ImGuiInputTextFlags_CharsNoBlank", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiInputTextFlags_EnterReturnsTrue", + "name": "ImGuiInputTextFlags_AllowTabInput", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiInputTextFlags_CallbackCompletion", + "name": "ImGuiInputTextFlags_EnterReturnsTrue", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiInputTextFlags_CallbackHistory", + "name": "ImGuiInputTextFlags_EscapeClearsAll", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiInputTextFlags_CallbackAlways", + "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiInputTextFlags_CallbackCharFilter", + "name": "ImGuiInputTextFlags_ReadOnly", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiInputTextFlags_AllowTabInput", + "name": "ImGuiInputTextFlags_Password", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", + "name": "ImGuiInputTextFlags_AlwaysOverwrite", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiInputTextFlags_NoHorizontalScroll", + "name": "ImGuiInputTextFlags_AutoSelectAll", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiInputTextFlags_AlwaysOverwrite", + "name": "ImGuiInputTextFlags_ParseEmptyRefVal", "value": "1 << 13" }, { "calc_value": 16384, - "name": "ImGuiInputTextFlags_ReadOnly", + "name": "ImGuiInputTextFlags_DisplayEmptyRefVal", "value": "1 << 14" }, { "calc_value": 32768, - "name": "ImGuiInputTextFlags_Password", + "name": "ImGuiInputTextFlags_NoHorizontalScroll", "value": "1 << 15" }, { @@ -1830,23 +2053,80 @@ }, { "calc_value": 131072, - "name": "ImGuiInputTextFlags_CharsScientific", + "name": "ImGuiInputTextFlags_CallbackCompletion", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiInputTextFlags_CallbackResize", + "name": "ImGuiInputTextFlags_CallbackHistory", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiInputTextFlags_CallbackEdit", + "name": "ImGuiInputTextFlags_CallbackAlways", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiInputTextFlags_EscapeClearsAll", + "name": "ImGuiInputTextFlags_CallbackCharFilter", "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiInputTextFlags_CallbackResize", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 22" + } + ], + "ImGuiItemFlagsPrivate_": [ + { + "calc_value": 1024, + "name": "ImGuiItemFlags_Disabled", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiItemFlags_ReadOnly", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiItemFlags_MixedValue", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiItemFlags_NoWindowHoverableCheck", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiItemFlags_AllowOverlap", + "value": "1 << 14" + }, + { + "calc_value": 1048576, + "name": "ImGuiItemFlags_Inputable", + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiItemFlags_HasSelectionUserData", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiItemFlags_IsMultiSelect", + "value": "1 << 22" + }, + { + "calc_value": 16, + "name": "ImGuiItemFlags_Default_", + "value": "ImGuiItemFlags_AutoClosePopups" } ], "ImGuiItemFlags_": [ @@ -1862,48 +2142,28 @@ }, { "calc_value": 2, - "name": "ImGuiItemFlags_ButtonRepeat", + "name": "ImGuiItemFlags_NoNav", "value": "1 << 1" }, { "calc_value": 4, - "name": "ImGuiItemFlags_Disabled", + "name": "ImGuiItemFlags_NoNavDefaultFocus", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiItemFlags_NoNav", + "name": "ImGuiItemFlags_ButtonRepeat", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiItemFlags_NoNavDefaultFocus", + "name": "ImGuiItemFlags_AutoClosePopups", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiItemFlags_SelectableDontClosePopup", + "name": "ImGuiItemFlags_AllowDuplicateId", "value": "1 << 5" - }, - { - "calc_value": 64, - "name": "ImGuiItemFlags_MixedValue", - "value": "1 << 6" - }, - { - "calc_value": 128, - "name": "ImGuiItemFlags_ReadOnly", - "value": "1 << 7" - }, - { - "calc_value": 256, - "name": "ImGuiItemFlags_NoWindowHoverableCheck", - "value": "1 << 8" - }, - { - "calc_value": 1024, - "name": "ImGuiItemFlags_Inputable", - "value": "1 << 10" } ], "ImGuiItemStatusFlags_": [ @@ -1954,13 +2214,18 @@ }, { "calc_value": 256, - "name": "ImGuiItemStatusFlags_FocusedByTabbing", + "name": "ImGuiItemStatusFlags_Visible", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiItemStatusFlags_Visible", + "name": "ImGuiItemStatusFlags_HasClipRect", "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiItemStatusFlags_HasShortcut", + "value": "1 << 10" } ], "ImGuiKey": [ @@ -2331,349 +2596,419 @@ }, { "calc_value": 584, - "name": "ImGuiKey_Apostrophe", + "name": "ImGuiKey_F13", "value": "584" }, { "calc_value": 585, - "name": "ImGuiKey_Comma", + "name": "ImGuiKey_F14", "value": "585" }, { "calc_value": 586, - "name": "ImGuiKey_Minus", + "name": "ImGuiKey_F15", "value": "586" }, { "calc_value": 587, - "name": "ImGuiKey_Period", + "name": "ImGuiKey_F16", "value": "587" }, { "calc_value": 588, - "name": "ImGuiKey_Slash", + "name": "ImGuiKey_F17", "value": "588" }, { "calc_value": 589, - "name": "ImGuiKey_Semicolon", + "name": "ImGuiKey_F18", "value": "589" }, { "calc_value": 590, - "name": "ImGuiKey_Equal", + "name": "ImGuiKey_F19", "value": "590" }, { "calc_value": 591, - "name": "ImGuiKey_LeftBracket", + "name": "ImGuiKey_F20", "value": "591" }, { "calc_value": 592, - "name": "ImGuiKey_Backslash", + "name": "ImGuiKey_F21", "value": "592" }, { "calc_value": 593, - "name": "ImGuiKey_RightBracket", + "name": "ImGuiKey_F22", "value": "593" }, { "calc_value": 594, - "name": "ImGuiKey_GraveAccent", + "name": "ImGuiKey_F23", "value": "594" }, { "calc_value": 595, - "name": "ImGuiKey_CapsLock", + "name": "ImGuiKey_F24", "value": "595" }, { "calc_value": 596, - "name": "ImGuiKey_ScrollLock", + "name": "ImGuiKey_Apostrophe", "value": "596" }, { "calc_value": 597, - "name": "ImGuiKey_NumLock", + "name": "ImGuiKey_Comma", "value": "597" }, { "calc_value": 598, - "name": "ImGuiKey_PrintScreen", + "name": "ImGuiKey_Minus", "value": "598" }, { "calc_value": 599, - "name": "ImGuiKey_Pause", + "name": "ImGuiKey_Period", "value": "599" }, { "calc_value": 600, - "name": "ImGuiKey_Keypad0", + "name": "ImGuiKey_Slash", "value": "600" }, { "calc_value": 601, - "name": "ImGuiKey_Keypad1", + "name": "ImGuiKey_Semicolon", "value": "601" }, { "calc_value": 602, - "name": "ImGuiKey_Keypad2", + "name": "ImGuiKey_Equal", "value": "602" }, { "calc_value": 603, - "name": "ImGuiKey_Keypad3", + "name": "ImGuiKey_LeftBracket", "value": "603" }, { "calc_value": 604, - "name": "ImGuiKey_Keypad4", + "name": "ImGuiKey_Backslash", "value": "604" }, { "calc_value": 605, - "name": "ImGuiKey_Keypad5", + "name": "ImGuiKey_RightBracket", "value": "605" }, { "calc_value": 606, - "name": "ImGuiKey_Keypad6", + "name": "ImGuiKey_GraveAccent", "value": "606" }, { "calc_value": 607, - "name": "ImGuiKey_Keypad7", + "name": "ImGuiKey_CapsLock", "value": "607" }, { "calc_value": 608, - "name": "ImGuiKey_Keypad8", + "name": "ImGuiKey_ScrollLock", "value": "608" }, { "calc_value": 609, - "name": "ImGuiKey_Keypad9", + "name": "ImGuiKey_NumLock", "value": "609" }, { "calc_value": 610, - "name": "ImGuiKey_KeypadDecimal", + "name": "ImGuiKey_PrintScreen", "value": "610" }, { "calc_value": 611, - "name": "ImGuiKey_KeypadDivide", + "name": "ImGuiKey_Pause", "value": "611" }, { "calc_value": 612, - "name": "ImGuiKey_KeypadMultiply", + "name": "ImGuiKey_Keypad0", "value": "612" }, { "calc_value": 613, - "name": "ImGuiKey_KeypadSubtract", + "name": "ImGuiKey_Keypad1", "value": "613" }, { "calc_value": 614, - "name": "ImGuiKey_KeypadAdd", + "name": "ImGuiKey_Keypad2", "value": "614" }, { "calc_value": 615, - "name": "ImGuiKey_KeypadEnter", + "name": "ImGuiKey_Keypad3", "value": "615" }, { "calc_value": 616, - "name": "ImGuiKey_KeypadEqual", + "name": "ImGuiKey_Keypad4", "value": "616" }, { "calc_value": 617, - "name": "ImGuiKey_GamepadStart", + "name": "ImGuiKey_Keypad5", "value": "617" }, { "calc_value": 618, - "name": "ImGuiKey_GamepadBack", + "name": "ImGuiKey_Keypad6", "value": "618" }, { "calc_value": 619, - "name": "ImGuiKey_GamepadFaceLeft", + "name": "ImGuiKey_Keypad7", "value": "619" }, { "calc_value": 620, - "name": "ImGuiKey_GamepadFaceRight", + "name": "ImGuiKey_Keypad8", "value": "620" }, { "calc_value": 621, - "name": "ImGuiKey_GamepadFaceUp", + "name": "ImGuiKey_Keypad9", "value": "621" }, { "calc_value": 622, - "name": "ImGuiKey_GamepadFaceDown", + "name": "ImGuiKey_KeypadDecimal", "value": "622" }, { "calc_value": 623, - "name": "ImGuiKey_GamepadDpadLeft", + "name": "ImGuiKey_KeypadDivide", "value": "623" }, { "calc_value": 624, - "name": "ImGuiKey_GamepadDpadRight", + "name": "ImGuiKey_KeypadMultiply", "value": "624" }, { "calc_value": 625, - "name": "ImGuiKey_GamepadDpadUp", + "name": "ImGuiKey_KeypadSubtract", "value": "625" }, { "calc_value": 626, - "name": "ImGuiKey_GamepadDpadDown", + "name": "ImGuiKey_KeypadAdd", "value": "626" }, { "calc_value": 627, - "name": "ImGuiKey_GamepadL1", + "name": "ImGuiKey_KeypadEnter", "value": "627" }, { "calc_value": 628, - "name": "ImGuiKey_GamepadR1", + "name": "ImGuiKey_KeypadEqual", "value": "628" }, { "calc_value": 629, - "name": "ImGuiKey_GamepadL2", + "name": "ImGuiKey_AppBack", "value": "629" }, { "calc_value": 630, - "name": "ImGuiKey_GamepadR2", + "name": "ImGuiKey_AppForward", "value": "630" }, { "calc_value": 631, - "name": "ImGuiKey_GamepadL3", + "name": "ImGuiKey_GamepadStart", "value": "631" }, { "calc_value": 632, - "name": "ImGuiKey_GamepadR3", + "name": "ImGuiKey_GamepadBack", "value": "632" }, { "calc_value": 633, - "name": "ImGuiKey_GamepadLStickLeft", + "name": "ImGuiKey_GamepadFaceLeft", "value": "633" }, { "calc_value": 634, - "name": "ImGuiKey_GamepadLStickRight", + "name": "ImGuiKey_GamepadFaceRight", "value": "634" }, { "calc_value": 635, - "name": "ImGuiKey_GamepadLStickUp", + "name": "ImGuiKey_GamepadFaceUp", "value": "635" }, { "calc_value": 636, - "name": "ImGuiKey_GamepadLStickDown", + "name": "ImGuiKey_GamepadFaceDown", "value": "636" }, { "calc_value": 637, - "name": "ImGuiKey_GamepadRStickLeft", + "name": "ImGuiKey_GamepadDpadLeft", "value": "637" }, { "calc_value": 638, - "name": "ImGuiKey_GamepadRStickRight", + "name": "ImGuiKey_GamepadDpadRight", "value": "638" }, { "calc_value": 639, - "name": "ImGuiKey_GamepadRStickUp", + "name": "ImGuiKey_GamepadDpadUp", "value": "639" }, { "calc_value": 640, - "name": "ImGuiKey_GamepadRStickDown", + "name": "ImGuiKey_GamepadDpadDown", "value": "640" }, { "calc_value": 641, - "name": "ImGuiKey_MouseLeft", + "name": "ImGuiKey_GamepadL1", "value": "641" }, { "calc_value": 642, - "name": "ImGuiKey_MouseRight", + "name": "ImGuiKey_GamepadR1", "value": "642" }, { "calc_value": 643, - "name": "ImGuiKey_MouseMiddle", + "name": "ImGuiKey_GamepadL2", "value": "643" }, { "calc_value": 644, - "name": "ImGuiKey_MouseX1", + "name": "ImGuiKey_GamepadR2", "value": "644" }, { "calc_value": 645, - "name": "ImGuiKey_MouseX2", + "name": "ImGuiKey_GamepadL3", "value": "645" }, { "calc_value": 646, - "name": "ImGuiKey_MouseWheelX", + "name": "ImGuiKey_GamepadR3", "value": "646" }, { "calc_value": 647, - "name": "ImGuiKey_MouseWheelY", + "name": "ImGuiKey_GamepadLStickLeft", "value": "647" }, { "calc_value": 648, - "name": "ImGuiKey_ReservedForModCtrl", + "name": "ImGuiKey_GamepadLStickRight", "value": "648" }, { "calc_value": 649, - "name": "ImGuiKey_ReservedForModShift", + "name": "ImGuiKey_GamepadLStickUp", "value": "649" }, { "calc_value": 650, - "name": "ImGuiKey_ReservedForModAlt", + "name": "ImGuiKey_GamepadLStickDown", "value": "650" }, { "calc_value": 651, - "name": "ImGuiKey_ReservedForModSuper", + "name": "ImGuiKey_GamepadRStickLeft", "value": "651" }, { "calc_value": 652, - "name": "ImGuiKey_COUNT", + "name": "ImGuiKey_GamepadRStickRight", "value": "652" }, + { + "calc_value": 653, + "name": "ImGuiKey_GamepadRStickUp", + "value": "653" + }, + { + "calc_value": 654, + "name": "ImGuiKey_GamepadRStickDown", + "value": "654" + }, + { + "calc_value": 655, + "name": "ImGuiKey_MouseLeft", + "value": "655" + }, + { + "calc_value": 656, + "name": "ImGuiKey_MouseRight", + "value": "656" + }, + { + "calc_value": 657, + "name": "ImGuiKey_MouseMiddle", + "value": "657" + }, + { + "calc_value": 658, + "name": "ImGuiKey_MouseX1", + "value": "658" + }, + { + "calc_value": 659, + "name": "ImGuiKey_MouseX2", + "value": "659" + }, + { + "calc_value": 660, + "name": "ImGuiKey_MouseWheelX", + "value": "660" + }, + { + "calc_value": 661, + "name": "ImGuiKey_MouseWheelY", + "value": "661" + }, + { + "calc_value": 662, + "name": "ImGuiKey_ReservedForModCtrl", + "value": "662" + }, + { + "calc_value": 663, + "name": "ImGuiKey_ReservedForModShift", + "value": "663" + }, + { + "calc_value": 664, + "name": "ImGuiKey_ReservedForModAlt", + "value": "664" + }, + { + "calc_value": 665, + "name": "ImGuiKey_ReservedForModSuper", + "value": "665" + }, + { + "calc_value": 666, + "name": "ImGuiKey_COUNT", + "value": "666" + }, { "calc_value": 0, "name": "ImGuiMod_None", @@ -2700,14 +3035,9 @@ "value": "1 << 15" }, { - "calc_value": 2048, - "name": "ImGuiMod_Shortcut", - "value": "1 << 11" - }, - { - "calc_value": 63488, + "calc_value": 61440, "name": "ImGuiMod_Mask_", - "value": "0xF800" + "value": "0xF000" }, { "calc_value": 512, @@ -2715,24 +3045,24 @@ "value": "512" }, { - "calc_value": 652, + "calc_value": 666, "name": "ImGuiKey_NamedKey_END", "value": "ImGuiKey_COUNT" }, { - "calc_value": 140, + "calc_value": 154, "name": "ImGuiKey_NamedKey_COUNT", "value": "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" }, { - "calc_value": 652, + "calc_value": 154, "name": "ImGuiKey_KeysData_SIZE", - "value": "ImGuiKey_COUNT" + "value": "ImGuiKey_NamedKey_COUNT" }, { - "calc_value": 0, + "calc_value": 512, "name": "ImGuiKey_KeysData_OFFSET", - "value": "0" + "value": "ImGuiKey_NamedKey_BEGIN" } ], "ImGuiLayoutType_": [ @@ -2750,48 +3080,73 @@ "ImGuiLocKey": [ { "calc_value": 0, - "name": "ImGuiLocKey_TableSizeOne", + "name": "ImGuiLocKey_VersionStr", "value": "0" }, { "calc_value": 1, - "name": "ImGuiLocKey_TableSizeAllFit", + "name": "ImGuiLocKey_TableSizeOne", "value": "1" }, { "calc_value": 2, - "name": "ImGuiLocKey_TableSizeAllDefault", + "name": "ImGuiLocKey_TableSizeAllFit", "value": "2" }, { "calc_value": 3, - "name": "ImGuiLocKey_TableResetOrder", + "name": "ImGuiLocKey_TableSizeAllDefault", "value": "3" }, { "calc_value": 4, - "name": "ImGuiLocKey_WindowingMainMenuBar", + "name": "ImGuiLocKey_TableResetOrder", "value": "4" }, { "calc_value": 5, - "name": "ImGuiLocKey_WindowingPopup", + "name": "ImGuiLocKey_WindowingMainMenuBar", "value": "5" }, { "calc_value": 6, - "name": "ImGuiLocKey_WindowingUntitled", + "name": "ImGuiLocKey_WindowingPopup", "value": "6" }, { "calc_value": 7, - "name": "ImGuiLocKey_DockingHideTabBar", + "name": "ImGuiLocKey_WindowingUntitled", "value": "7" }, { "calc_value": 8, - "name": "ImGuiLocKey_COUNT", + "name": "ImGuiLocKey_OpenLink_s", "value": "8" + }, + { + "calc_value": 9, + "name": "ImGuiLocKey_CopyLink", + "value": "9" + }, + { + "calc_value": 10, + "name": "ImGuiLocKey_DockingHideTabBar", + "value": "10" + }, + { + "calc_value": 11, + "name": "ImGuiLocKey_DockingHoldShiftToDock", + "value": "11" + }, + { + "calc_value": 12, + "name": "ImGuiLocKey_DockingDragToUndockOrMoveNode", + "value": "12" + }, + { + "calc_value": 13, + "name": "ImGuiLocKey_COUNT", + "value": "13" } ], "ImGuiLogType": [ @@ -2900,20 +3255,124 @@ "value": "9" } ], + "ImGuiMouseSource": [ + { + "calc_value": 0, + "name": "ImGuiMouseSource_Mouse", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiMouseSource_TouchScreen", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiMouseSource_Pen", + "value": "2" + }, + { + "calc_value": 3, + "name": "ImGuiMouseSource_COUNT", + "value": "3" + } + ], + "ImGuiMultiSelectFlags_": [ + { + "calc_value": 0, + "name": "ImGuiMultiSelectFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiMultiSelectFlags_SingleSelect", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiMultiSelectFlags_NoSelectAll", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiMultiSelectFlags_NoRangeSelect", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiMultiSelectFlags_NoAutoSelect", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiMultiSelectFlags_NoAutoClear", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiMultiSelectFlags_NoAutoClearOnReselect", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiMultiSelectFlags_BoxSelect1d", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiMultiSelectFlags_BoxSelect2d", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiMultiSelectFlags_BoxSelectNoScroll", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiMultiSelectFlags_ClearOnEscape", + "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiMultiSelectFlags_ClearOnClickVoid", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiMultiSelectFlags_ScopeWindow", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiMultiSelectFlags_ScopeRect", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiMultiSelectFlags_SelectOnClick", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiMultiSelectFlags_SelectOnClickRelease", + "value": "1 << 14" + }, + { + "calc_value": 65536, + "name": "ImGuiMultiSelectFlags_NavWrapX", + "value": "1 << 16" + } + ], "ImGuiNavHighlightFlags_": [ { "calc_value": 0, "name": "ImGuiNavHighlightFlags_None", "value": "0" }, - { - "calc_value": 1, - "name": "ImGuiNavHighlightFlags_TypeDefault", - "value": "1 << 0" - }, { "calc_value": 2, - "name": "ImGuiNavHighlightFlags_TypeThin", + "name": "ImGuiNavHighlightFlags_Compact", "value": "1 << 1" }, { @@ -2927,93 +3386,6 @@ "value": "1 << 3" } ], - "ImGuiNavInput": [ - { - "calc_value": 0, - "name": "ImGuiNavInput_Activate", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiNavInput_Cancel", - "value": "1" - }, - { - "calc_value": 2, - "name": "ImGuiNavInput_Input", - "value": "2" - }, - { - "calc_value": 3, - "name": "ImGuiNavInput_Menu", - "value": "3" - }, - { - "calc_value": 4, - "name": "ImGuiNavInput_DpadLeft", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiNavInput_DpadRight", - "value": "5" - }, - { - "calc_value": 6, - "name": "ImGuiNavInput_DpadUp", - "value": "6" - }, - { - "calc_value": 7, - "name": "ImGuiNavInput_DpadDown", - "value": "7" - }, - { - "calc_value": 8, - "name": "ImGuiNavInput_LStickLeft", - "value": "8" - }, - { - "calc_value": 9, - "name": "ImGuiNavInput_LStickRight", - "value": "9" - }, - { - "calc_value": 10, - "name": "ImGuiNavInput_LStickUp", - "value": "10" - }, - { - "calc_value": 11, - "name": "ImGuiNavInput_LStickDown", - "value": "11" - }, - { - "calc_value": 12, - "name": "ImGuiNavInput_FocusPrev", - "value": "12" - }, - { - "calc_value": 13, - "name": "ImGuiNavInput_FocusNext", - "value": "13" - }, - { - "calc_value": 14, - "name": "ImGuiNavInput_TweakSlow", - "value": "14" - }, - { - "calc_value": 15, - "name": "ImGuiNavInput_TweakFast", - "value": "15" - }, - { - "calc_value": 16, - "name": "ImGuiNavInput_COUNT", - "value": "16" - } - ], "ImGuiNavLayer": [ { "calc_value": 0, @@ -3057,6 +3429,11 @@ "name": "ImGuiNavMoveFlags_WrapY", "value": "1 << 3" }, + { + "calc_value": 15, + "name": "ImGuiNavMoveFlags_WrapMask_", + "value": "ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY" + }, { "calc_value": 16, "name": "ImGuiNavMoveFlags_AllowCurrentNavId", @@ -3089,18 +3466,33 @@ }, { "calc_value": 1024, - "name": "ImGuiNavMoveFlags_Tabbing", + "name": "ImGuiNavMoveFlags_IsTabbing", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiNavMoveFlags_Activate", + "name": "ImGuiNavMoveFlags_IsPageMove", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiNavMoveFlags_DontSetNavHighlight", + "name": "ImGuiNavMoveFlags_Activate", "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiNavMoveFlags_NoSelect", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiNavMoveFlags_NoSetNavHighlight", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiNavMoveFlags_NoClearActiveId", + "value": "1 << 15" } ], "ImGuiNextItemDataFlags_": [ @@ -3118,6 +3510,21 @@ "calc_value": 2, "name": "ImGuiNextItemDataFlags_HasOpen", "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiNextItemDataFlags_HasShortcut", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiNextItemDataFlags_HasRefVal", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiNextItemDataFlags_HasStorageID", + "value": "1 << 4" } ], "ImGuiNextWindowDataFlags_": [ @@ -3168,18 +3575,28 @@ }, { "calc_value": 256, - "name": "ImGuiNextWindowDataFlags_HasViewport", + "name": "ImGuiNextWindowDataFlags_HasChildFlags", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiNextWindowDataFlags_HasDock", + "name": "ImGuiNextWindowDataFlags_HasRefreshPolicy", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiNextWindowDataFlags_HasWindowClass", + "name": "ImGuiNextWindowDataFlags_HasViewport", "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiNextWindowDataFlags_HasDock", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiNextWindowDataFlags_HasWindowClass", + "value": "1 << 12" } ], "ImGuiOldColumnFlags_": [ @@ -3259,26 +3676,31 @@ }, { "calc_value": 32, - "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", + "name": "ImGuiPopupFlags_NoReopen", "value": "1 << 5" }, - { - "calc_value": 64, - "name": "ImGuiPopupFlags_NoOpenOverItems", - "value": "1 << 6" - }, { "calc_value": 128, - "name": "ImGuiPopupFlags_AnyPopupId", + "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiPopupFlags_AnyPopupLevel", + "name": "ImGuiPopupFlags_NoOpenOverItems", "value": "1 << 8" }, { - "calc_value": 384, + "calc_value": 1024, + "name": "ImGuiPopupFlags_AnyPopupId", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiPopupFlags_AnyPopupLevel", + "value": "1 << 11" + }, + { + "calc_value": 3072, "name": "ImGuiPopupFlags_AnyPopup", "value": "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" } @@ -3402,7 +3824,7 @@ }, { "calc_value": 1, - "name": "ImGuiSelectableFlags_DontClosePopups", + "name": "ImGuiSelectableFlags_NoAutoClosePopups", "value": "1 << 0" }, { @@ -3422,8 +3844,30 @@ }, { "calc_value": 16, - "name": "ImGuiSelectableFlags_AllowItemOverlap", + "name": "ImGuiSelectableFlags_AllowOverlap", "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiSelectableFlags_Highlight", + "value": "1 << 5" + } + ], + "ImGuiSelectionRequestType": [ + { + "calc_value": 0, + "name": "ImGuiSelectionRequestType_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiSelectionRequestType_SetAll", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiSelectionRequestType_SetRange", + "value": "2" } ], "ImGuiSeparatorFlags_": [ @@ -3486,13 +3930,18 @@ "name": "ImGuiSliderFlags_NoInput", "value": "1 << 7" }, + { + "calc_value": 256, + "name": "ImGuiSliderFlags_WrapAround", + "value": "1 << 8" + }, { "calc_value": 1879048207, "name": "ImGuiSliderFlags_InvalidMask_", "value": "0x7000000F" } ], - "ImGuiSortDirection_": [ + "ImGuiSortDirection": [ { "calc_value": 0, "name": "ImGuiSortDirection_None", @@ -3627,18 +4076,63 @@ }, { "calc_value": 23, - "name": "ImGuiStyleVar_ButtonTextAlign", + "name": "ImGuiStyleVar_TabBorderSize", "value": "23" }, { "calc_value": 24, - "name": "ImGuiStyleVar_SelectableTextAlign", + "name": "ImGuiStyleVar_TabBarBorderSize", "value": "24" }, { "calc_value": 25, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_TabBarOverlineSize", "value": "25" + }, + { + "calc_value": 26, + "name": "ImGuiStyleVar_TableAngledHeadersAngle", + "value": "26" + }, + { + "calc_value": 27, + "name": "ImGuiStyleVar_TableAngledHeadersTextAlign", + "value": "27" + }, + { + "calc_value": 28, + "name": "ImGuiStyleVar_ButtonTextAlign", + "value": "28" + }, + { + "calc_value": 29, + "name": "ImGuiStyleVar_SelectableTextAlign", + "value": "29" + }, + { + "calc_value": 30, + "name": "ImGuiStyleVar_SeparatorTextBorderSize", + "value": "30" + }, + { + "calc_value": 31, + "name": "ImGuiStyleVar_SeparatorTextAlign", + "value": "31" + }, + { + "calc_value": 32, + "name": "ImGuiStyleVar_SeparatorTextPadding", + "value": "32" + }, + { + "calc_value": 33, + "name": "ImGuiStyleVar_DockingSeparatorSize", + "value": "33" + }, + { + "calc_value": 34, + "name": "ImGuiStyleVar_COUNT", + "value": "34" } ], "ImGuiTabBarFlagsPrivate_": [ @@ -3696,21 +4190,26 @@ }, { "calc_value": 64, - "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", + "name": "ImGuiTabBarFlags_DrawSelectedOverline", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", "value": "1 << 7" }, { - "calc_value": 192, + "calc_value": 256, + "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "value": "1 << 8" + }, + { + "calc_value": 384, "name": "ImGuiTabBarFlags_FittingPolicyMask_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" }, { - "calc_value": 64, + "calc_value": 128, "name": "ImGuiTabBarFlags_FittingPolicyDefault_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown" } @@ -3735,11 +4234,6 @@ "calc_value": 4194304, "name": "ImGuiTabItemFlags_Unsorted", "value": "1 << 22" - }, - { - "calc_value": 8388608, - "name": "ImGuiTabItemFlags_Preview", - "value": "1 << 23" } ], "ImGuiTabItemFlags_": [ @@ -3787,6 +4281,11 @@ "calc_value": 128, "name": "ImGuiTabItemFlags_Trailing", "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiTabItemFlags_NoAssumedClosure", + "value": "1 << 8" } ], "ImGuiTableBgTarget_": [ @@ -3907,6 +4406,11 @@ "name": "ImGuiTableColumnFlags_IndentDisable", "value": "1 << 17" }, + { + "calc_value": 262144, + "name": "ImGuiTableColumnFlags_AngledHeader", + "value": "1 << 18" + }, { "calc_value": 16777216, "name": "ImGuiTableColumnFlags_IsEnabled", @@ -4124,6 +4628,11 @@ "name": "ImGuiTableFlags_SortTristate", "value": "1 << 27" }, + { + "calc_value": 268435456, + "name": "ImGuiTableFlags_HighlightHoveredColumn", + "value": "1 << 28" + }, { "calc_value": 57344, "name": "ImGuiTableFlags_SizingMask_", @@ -4161,16 +4670,26 @@ "value": "0" }, { - "calc_value": 1, - "name": "ImGuiTooltipFlags_OverridePreviousTooltip", - "value": "1 << 0" + "calc_value": 2, + "name": "ImGuiTooltipFlags_OverridePrevious", + "value": "1 << 1" } ], "ImGuiTreeNodeFlagsPrivate_": [ { - "calc_value": 1048576, + "calc_value": 268435456, "name": "ImGuiTreeNodeFlags_ClipLabelForTrailingButton", - "value": "1 << 20" + "value": "1 << 28" + }, + { + "calc_value": 536870912, + "name": "ImGuiTreeNodeFlags_UpsideDownArrow", + "value": "1 << 29" + }, + { + "calc_value": 192, + "name": "ImGuiTreeNodeFlags_OpenOnMask_", + "value": "ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow" } ], "ImGuiTreeNodeFlags_": [ @@ -4191,7 +4710,7 @@ }, { "calc_value": 4, - "name": "ImGuiTreeNodeFlags_AllowItemOverlap", + "name": "ImGuiTreeNodeFlags_AllowOverlap", "value": "1 << 2" }, { @@ -4246,15 +4765,42 @@ }, { "calc_value": 8192, - "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "name": "ImGuiTreeNodeFlags_SpanTextWidth", "value": "1 << 13" }, + { + "calc_value": 16384, + "name": "ImGuiTreeNodeFlags_SpanAllColumns", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "value": "1 << 15" + }, { "calc_value": 26, "name": "ImGuiTreeNodeFlags_CollapsingHeader", "value": "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" } ], + "ImGuiTypingSelectFlags_": [ + { + "calc_value": 0, + "name": "ImGuiTypingSelectFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiTypingSelectFlags_AllowBackspace", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiTypingSelectFlags_AllowSingleCharMode", + "value": "1 << 1" + } + ], "ImGuiViewportFlags_": [ { "calc_value": 0, @@ -4308,23 +4854,28 @@ }, { "calc_value": 512, - "name": "ImGuiViewportFlags_TopMost", + "name": "ImGuiViewportFlags_NoAutoMerge", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiViewportFlags_Minimized", + "name": "ImGuiViewportFlags_TopMost", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiViewportFlags_NoAutoMerge", + "name": "ImGuiViewportFlags_CanHostOtherWindows", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiViewportFlags_CanHostOtherWindows", + "name": "ImGuiViewportFlags_IsMinimized", "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiViewportFlags_IsFocused", + "value": "1 << 13" } ], "ImGuiWindowDockStyleCol": [ @@ -4335,33 +4886,43 @@ }, { "calc_value": 1, - "name": "ImGuiWindowDockStyleCol_Tab", + "name": "ImGuiWindowDockStyleCol_TabHovered", "value": "1" }, { "calc_value": 2, - "name": "ImGuiWindowDockStyleCol_TabHovered", + "name": "ImGuiWindowDockStyleCol_TabFocused", "value": "2" }, { "calc_value": 3, - "name": "ImGuiWindowDockStyleCol_TabActive", + "name": "ImGuiWindowDockStyleCol_TabSelected", "value": "3" }, { "calc_value": 4, - "name": "ImGuiWindowDockStyleCol_TabUnfocused", + "name": "ImGuiWindowDockStyleCol_TabSelectedOverline", "value": "4" }, { "calc_value": 5, - "name": "ImGuiWindowDockStyleCol_TabUnfocusedActive", + "name": "ImGuiWindowDockStyleCol_TabDimmed", "value": "5" }, { "calc_value": 6, - "name": "ImGuiWindowDockStyleCol_COUNT", + "name": "ImGuiWindowDockStyleCol_TabDimmedSelected", "value": "6" + }, + { + "calc_value": 7, + "name": "ImGuiWindowDockStyleCol_TabDimmedSelectedOverline", + "value": "7" + }, + { + "calc_value": 8, + "name": "ImGuiWindowDockStyleCol_COUNT", + "value": "8" } ], "ImGuiWindowFlags_": [ @@ -4452,31 +5013,26 @@ }, { "calc_value": 65536, - "name": "ImGuiWindowFlags_AlwaysUseWindowPadding", + "name": "ImGuiWindowFlags_NoNavInputs", "value": "1 << 16" }, + { + "calc_value": 131072, + "name": "ImGuiWindowFlags_NoNavFocus", + "value": "1 << 17" + }, { "calc_value": 262144, - "name": "ImGuiWindowFlags_NoNavInputs", + "name": "ImGuiWindowFlags_UnsavedDocument", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiWindowFlags_NoNavFocus", + "name": "ImGuiWindowFlags_NoDocking", "value": "1 << 19" }, { - "calc_value": 1048576, - "name": "ImGuiWindowFlags_UnsavedDocument", - "value": "1 << 20" - }, - { - "calc_value": 2097152, - "name": "ImGuiWindowFlags_NoDocking", - "value": "1 << 21" - }, - { - "calc_value": 786432, + "calc_value": 196608, "name": "ImGuiWindowFlags_NoNav", "value": "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, @@ -4486,15 +5042,10 @@ "value": "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" }, { - "calc_value": 786944, + "calc_value": 197120, "name": "ImGuiWindowFlags_NoInputs", "value": "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, - { - "calc_value": 8388608, - "name": "ImGuiWindowFlags_NavFlattened", - "value": "1 << 23" - }, { "calc_value": 16777216, "name": "ImGuiWindowFlags_ChildWindow", @@ -4525,189 +5076,235 @@ "name": "ImGuiWindowFlags_DockNodeHost", "value": "1 << 29" } + ], + "ImGuiWindowRefreshFlags_": [ + { + "calc_value": 0, + "name": "ImGuiWindowRefreshFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiWindowRefreshFlags_TryToAvoidRefresh", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiWindowRefreshFlags_RefreshOnHover", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiWindowRefreshFlags_RefreshOnFocus", + "value": "1 << 2" + } ] }, "enumtypes": { + "ImGuiDir": "int", "ImGuiKey": "int", - "ImGuiLocKey": "int" + "ImGuiLocKey": "int", + "ImGuiMouseSource": "int", + "ImGuiSortDirection": "ImU8" }, "locations": { - "ImBitVector": "imgui_internal:598", - "ImColor": "imgui:2455", - "ImDrawChannel": "imgui:2545", - "ImDrawCmd": "imgui:2504", - "ImDrawCmdHeader": "imgui:2537", - "ImDrawData": "imgui:2737", - "ImDrawDataBuilder": "imgui_internal:787", - "ImDrawFlags_": "imgui:2571", - "ImDrawList": "imgui:2609", - "ImDrawListFlags_": "imgui:2591", - "ImDrawListSharedData": "imgui_internal:764", - "ImDrawListSplitter": "imgui:2554", - "ImDrawVert": "imgui:2522", - "ImFont": "imgui:2957", - "ImFontAtlas": "imgui:2854", - "ImFontAtlasCustomRect": "imgui:2816", - "ImFontAtlasFlags_": "imgui:2829", - "ImFontBuilderIO": "imgui_internal:3497", - "ImFontConfig": "imgui:2760", - "ImFontGlyph": "imgui:2789", - "ImFontGlyphRangesBuilder": "imgui:2801", - "ImGuiActivateFlags_": "imgui_internal:1433", - "ImGuiAxis": "imgui_internal:953", - "ImGuiBackendFlags_": "imgui:1576", - "ImGuiButtonFlagsPrivate_": "imgui_internal:858", - "ImGuiButtonFlags_": "imgui:1690", - "ImGuiCol_": "imgui:1591", - "ImGuiColorEditFlags_": "imgui:1703", - "ImGuiColorMod": "imgui_internal:996", - "ImGuiComboFlagsPrivate_": "imgui_internal:883", - "ImGuiComboFlags_": "imgui:1124", - "ImGuiComboPreviewData": "imgui_internal:1013", - "ImGuiCond_": "imgui:1794", - "ImGuiConfigFlags_": "imgui:1551", - "ImGuiContext": "imgui_internal:1910", - "ImGuiContextHook": "imgui_internal:1895", - "ImGuiContextHookType": "imgui_internal:1893", - "ImGuiDataAuthority_": "imgui_internal:1604", - "ImGuiDataTypeInfo": "imgui_internal:979", - "ImGuiDataTypePrivate_": "imgui_internal:988", - "ImGuiDataTypeTempStorage": "imgui_internal:973", - "ImGuiDataType_": "imgui:1376", - "ImGuiDebugLogFlags_": "imgui_internal:1825", - "ImGuiDir_": "imgui:1392", - "ImGuiDockContext": "imgui_internal:1702", - "ImGuiDockNode": "imgui_internal:1620", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1579", - "ImGuiDockNodeFlags_": "imgui:1341", - "ImGuiDockNodeState": "imgui_internal:1611", - "ImGuiDragDropFlags_": "imgui:1354", - "ImGuiFocusedFlags_": "imgui:1301", + "ImBitVector": "imgui_internal:607", + "ImColor": "imgui:2845", + "ImDrawChannel": "imgui:3083", + "ImDrawCmd": "imgui:3042", + "ImDrawCmdHeader": "imgui:3075", + "ImDrawData": "imgui:3288", + "ImDrawDataBuilder": "imgui_internal:796", + "ImDrawFlags_": "imgui:3109", + "ImDrawList": "imgui:3147", + "ImDrawListFlags_": "imgui:3129", + "ImDrawListSharedData": "imgui_internal:772", + "ImDrawListSplitter": "imgui:3092", + "ImDrawVert": "imgui:3060", + "ImFont": "imgui:3511", + "ImFontAtlas": "imgui:3407", + "ImFontAtlasCustomRect": "imgui:3369", + "ImFontAtlasFlags_": "imgui:3382", + "ImFontBuilderIO": "imgui_internal:3983", + "ImFontConfig": "imgui:3312", + "ImFontGlyph": "imgui:3342", + "ImFontGlyphRangesBuilder": "imgui:3354", + "ImGuiActivateFlags_": "imgui_internal:1550", + "ImGuiAxis": "imgui_internal:1018", + "ImGuiBackendFlags_": "imgui:1679", + "ImGuiBoxSelectState": "imgui_internal:1733", + "ImGuiButtonFlagsPrivate_": "imgui_internal:911", + "ImGuiButtonFlags_": "imgui:1812", + "ImGuiChildFlags_": "imgui:1148", + "ImGuiCol_": "imgui:1694", + "ImGuiColorEditFlags_": "imgui:1823", + "ImGuiColorMod": "imgui_internal:1032", + "ImGuiComboFlagsPrivate_": "imgui_internal:936", + "ImGuiComboFlags_": "imgui:1291", + "ImGuiComboPreviewData": "imgui_internal:1049", + "ImGuiCond_": "imgui:1925", + "ImGuiConfigFlags_": "imgui:1653", + "ImGuiContext": "imgui_internal:2184", + "ImGuiContextHook": "imgui_internal:2169", + "ImGuiContextHookType": "imgui_internal:2167", + "ImGuiDataAuthority_": "imgui_internal:1844", + "ImGuiDataTypeInfo": "imgui_internal:822", + "ImGuiDataTypePrivate_": "imgui_internal:831", + "ImGuiDataTypeStorage": "imgui_internal:816", + "ImGuiDataType_": "imgui:1439", + "ImGuiDataVarInfo": "imgui_internal:808", + "ImGuiDebugAllocEntry": "imgui_internal:2103", + "ImGuiDebugAllocInfo": "imgui_internal:2110", + "ImGuiDebugLogFlags_": "imgui_internal:2083", + "ImGuiDir": "imgui:1456", + "ImGuiDockContext": "imgui_internal:1946", + "ImGuiDockNode": "imgui_internal:1860", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1814", + "ImGuiDockNodeFlags_": "imgui:1392", + "ImGuiDockNodeState": "imgui_internal:1851", + "ImGuiDragDropFlags_": "imgui:1411", + "ImGuiFocusRequestFlags_": "imgui_internal:981", + "ImGuiFocusScopeData": "imgui_internal:1630", + "ImGuiFocusedFlags_": "imgui:1338", "ImGuiFreeTypeBuilderFlags": "imgui_freetype:19", - "ImGuiGroupData": "imgui_internal:1026", - "ImGuiHoveredFlags_": "imgui:1315", - "ImGuiIO": "imgui:1971", - "ImGuiInputEvent": "imgui_internal:1291", - "ImGuiInputEventAppFocused": "imgui_internal:1289", - "ImGuiInputEventKey": "imgui_internal:1287", - "ImGuiInputEventMouseButton": "imgui_internal:1285", - "ImGuiInputEventMousePos": "imgui_internal:1283", - "ImGuiInputEventMouseViewport": "imgui_internal:1286", - "ImGuiInputEventMouseWheel": "imgui_internal:1284", - "ImGuiInputEventText": "imgui_internal:1288", - "ImGuiInputEventType": "imgui_internal:1257", - "ImGuiInputFlags_": "imgui_internal:1354", - "ImGuiInputSource": "imgui_internal:1270", - "ImGuiInputTextCallbackData": "imgui:2159", - "ImGuiInputTextFlagsPrivate_": "imgui_internal:849", - "ImGuiInputTextFlags_": "imgui:1036", - "ImGuiInputTextState": "imgui_internal:1061", - "ImGuiItemFlags_": "imgui_internal:806", - "ImGuiItemStatusFlags_": "imgui_internal:826", - "ImGuiKey": "imgui:1414", - "ImGuiKeyData": "imgui:1963", - "ImGuiKeyOwnerData": "imgui_internal:1342", - "ImGuiKeyRoutingData": "imgui_internal:1317", - "ImGuiKeyRoutingTable": "imgui_internal:1330", - "ImGuiLastItemData": "imgui_internal:1176", - "ImGuiLayoutType_": "imgui_internal:937", - "ImGuiListClipper": "imgui:2404", - "ImGuiListClipperData": "imgui_internal:1417", - "ImGuiListClipperRange": "imgui_internal:1404", - "ImGuiLocEntry": "imgui_internal:1814", - "ImGuiLocKey": "imgui_internal:1801", - "ImGuiLogType": "imgui_internal:943", - "ImGuiMenuColumns": "imgui_internal:1042", - "ImGuiMetricsConfig": "imgui_internal:1841", - "ImGuiMouseButton_": "imgui:1766", - "ImGuiMouseCursor_": "imgui:1776", - "ImGuiNavHighlightFlags_": "imgui_internal:1456", - "ImGuiNavInput": "imgui:1542", - "ImGuiNavItemData": "imgui_internal:1490", - "ImGuiNavLayer": "imgui_internal:1483", - "ImGuiNavMoveFlags_": "imgui_internal:1465", - "ImGuiNextItemData": "imgui_internal:1163", - "ImGuiNextItemDataFlags_": "imgui_internal:1156", - "ImGuiNextWindowData": "imgui_internal:1129", - "ImGuiNextWindowDataFlags_": "imgui_internal:1112", - "ImGuiOldColumnData": "imgui_internal:1530", - "ImGuiOldColumnFlags_": "imgui_internal:1510", - "ImGuiOldColumns": "imgui_internal:1540", - "ImGuiOnceUponAFrame": "imgui:2279", - "ImGuiPayload": "imgui:2220", - "ImGuiPlatformIO": "imgui:3122", - "ImGuiPlatformImeData": "imgui:3194", - "ImGuiPlatformMonitor": "imgui:3185", - "ImGuiPlotType": "imgui_internal:960", - "ImGuiPopupData": "imgui_internal:1098", - "ImGuiPopupFlags_": "imgui:1097", - "ImGuiPopupPositionPolicy": "imgui_internal:966", - "ImGuiPtrOrIndex": "imgui_internal:1220", - "ImGuiScrollFlags_": "imgui_internal:1442", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:896", - "ImGuiSelectableFlags_": "imgui:1113", - "ImGuiSeparatorFlags_": "imgui_internal:915", - "ImGuiSettingsHandler": "imgui_internal:1781", - "ImGuiShrinkWidthItem": "imgui_internal:1213", - "ImGuiSizeCallbackData": "imgui:2190", - "ImGuiSliderFlagsPrivate_": "imgui_internal:889", - "ImGuiSliderFlags_": "imgui:1749", - "ImGuiSortDirection_": "imgui:1403", - "ImGuiStackLevelInfo": "imgui_internal:1864", - "ImGuiStackSizes": "imgui_internal:1188", - "ImGuiStackTool": "imgui_internal:1876", - "ImGuiStorage": "imgui:2341", - "ImGuiStoragePair": "imgui:2344", - "ImGuiStyle": "imgui:1906", - "ImGuiStyleMod": "imgui_internal:1003", - "ImGuiStyleVar_": "imgui:1658", - "ImGuiTabBar": "imgui_internal:2625", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2587", - "ImGuiTabBarFlags_": "imgui:1138", - "ImGuiTabItem": "imgui_internal:2605", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2595", - "ImGuiTabItemFlags_": "imgui:1154", - "ImGuiTable": "imgui_internal:2762", - "ImGuiTableBgTarget_": "imgui:1292", - "ImGuiTableCellData": "imgui_internal:2745", - "ImGuiTableColumn": "imgui_internal:2686", - "ImGuiTableColumnFlags_": "imgui:1240", - "ImGuiTableColumnSettings": "imgui_internal:2899", - "ImGuiTableColumnSortSpecs": "imgui:2242", - "ImGuiTableFlags_": "imgui:1189", - "ImGuiTableInstanceData": "imgui_internal:2752", - "ImGuiTableRowFlags_": "imgui:1277", - "ImGuiTableSettings": "imgui_internal:2923", - "ImGuiTableSortSpecs": "imgui:2256", - "ImGuiTableTempData": "imgui_internal:2878", - "ImGuiTextBuffer": "imgui:2314", - "ImGuiTextFilter": "imgui:2287", - "ImGuiTextFlags_": "imgui_internal:923", - "ImGuiTextIndex": "imgui_internal:721", - "ImGuiTextRange": "imgui:2297", - "ImGuiTooltipFlags_": "imgui_internal:929", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:910", - "ImGuiTreeNodeFlags_": "imgui:1068", - "ImGuiViewport": "imgui:3038", - "ImGuiViewportFlags_": "imgui:3013", - "ImGuiViewportP": "imgui_internal:1719", - "ImGuiWindow": "imgui_internal:2440", - "ImGuiWindowClass": "imgui:2205", - "ImGuiWindowDockStyle": "imgui_internal:1697", - "ImGuiWindowDockStyleCol": "imgui_internal:1686", - "ImGuiWindowFlags_": "imgui:995", - "ImGuiWindowSettings": "imgui_internal:1764", - "ImGuiWindowStackData": "imgui_internal:1206", - "ImGuiWindowTempData": "imgui_internal:2392", - "ImRect": "imgui_internal:526", - "ImVec1": "imgui_internal:508", - "ImVec2": "imgui:259", - "ImVec2ih": "imgui_internal:516", - "ImVec4": "imgui:272", - "STB_TexteditState": "imstb_textedit:320", - "StbTexteditRow": "imstb_textedit:367", - "StbUndoRecord": "imstb_textedit:302", - "StbUndoState": "imstb_textedit:311" + "ImGuiGroupData": "imgui_internal:1062", + "ImGuiHoveredFlagsPrivate_": "imgui_internal:893", + "ImGuiHoveredFlags_": "imgui:1352", + "ImGuiIDStackTool": "imgui_internal:2150", + "ImGuiIO": "imgui:2298", + "ImGuiInputEvent": "imgui_internal:1410", + "ImGuiInputEventAppFocused": "imgui_internal:1408", + "ImGuiInputEventKey": "imgui_internal:1406", + "ImGuiInputEventMouseButton": "imgui_internal:1404", + "ImGuiInputEventMousePos": "imgui_internal:1402", + "ImGuiInputEventMouseViewport": "imgui_internal:1405", + "ImGuiInputEventMouseWheel": "imgui_internal:1403", + "ImGuiInputEventText": "imgui_internal:1407", + "ImGuiInputEventType": "imgui_internal:1378", + "ImGuiInputFlagsPrivate_": "imgui_internal:1477", + "ImGuiInputFlags_": "imgui:1618", + "ImGuiInputSource": "imgui_internal:1391", + "ImGuiInputTextCallbackData": "imgui:2524", + "ImGuiInputTextDeactivatedState": "imgui_internal:1098", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:901", + "ImGuiInputTextFlags_": "imgui:1182", + "ImGuiInputTextState": "imgui_internal:1120", + "ImGuiItemFlagsPrivate_": "imgui_internal:845", + "ImGuiItemFlags_": "imgui:1169", + "ImGuiItemStatusFlags_": "imgui_internal:867", + "ImGuiKey": "imgui:1485", + "ImGuiKeyData": "imgui:2290", + "ImGuiKeyOwnerData": "imgui_internal:1464", + "ImGuiKeyRoutingData": "imgui_internal:1438", + "ImGuiKeyRoutingTable": "imgui_internal:1452", + "ImGuiLastItemData": "imgui_internal:1254", + "ImGuiLayoutType_": "imgui_internal:1002", + "ImGuiListClipper": "imgui:2753", + "ImGuiListClipperData": "imgui_internal:1534", + "ImGuiListClipperRange": "imgui_internal:1521", + "ImGuiLocEntry": "imgui_internal:2072", + "ImGuiLocKey": "imgui_internal:2054", + "ImGuiLogType": "imgui_internal:1008", + "ImGuiMenuColumns": "imgui_internal:1080", + "ImGuiMetricsConfig": "imgui_internal:2120", + "ImGuiMouseButton_": "imgui:1885", + "ImGuiMouseCursor_": "imgui:1895", + "ImGuiMouseSource": "imgui:1914", + "ImGuiMultiSelectFlags_": "imgui:2903", + "ImGuiMultiSelectIO": "imgui:2930", + "ImGuiMultiSelectState": "imgui_internal:1790", + "ImGuiMultiSelectTempData": "imgui_internal:1765", + "ImGuiNavHighlightFlags_": "imgui_internal:1575", + "ImGuiNavItemData": "imgui_internal:1613", + "ImGuiNavLayer": "imgui_internal:1605", + "ImGuiNavMoveFlags_": "imgui_internal:1583", + "ImGuiNextItemData": "imgui_internal:1234", + "ImGuiNextItemDataFlags_": "imgui_internal:1224", + "ImGuiNextWindowData": "imgui_internal:1195", + "ImGuiNextWindowDataFlags_": "imgui_internal:1176", + "ImGuiOldColumnData": "imgui_internal:1698", + "ImGuiOldColumnFlags_": "imgui_internal:1678", + "ImGuiOldColumns": "imgui_internal:1708", + "ImGuiOnceUponAFrame": "imgui:2624", + "ImGuiPayload": "imgui:2589", + "ImGuiPlatformIO": "imgui:3682", + "ImGuiPlatformImeData": "imgui:3781", + "ImGuiPlatformMonitor": "imgui:3771", + "ImGuiPlotType": "imgui_internal:1025", + "ImGuiPopupData": "imgui_internal:1335", + "ImGuiPopupFlags_": "imgui:1256", + "ImGuiPopupPositionPolicy": "imgui_internal:1327", + "ImGuiPtrOrIndex": "imgui_internal:1314", + "ImGuiScrollFlags_": "imgui_internal:1561", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:949", + "ImGuiSelectableFlags_": "imgui:1274", + "ImGuiSelectionBasicStorage": "imgui:2976", + "ImGuiSelectionExternalStorage": "imgui:2999", + "ImGuiSelectionRequest": "imgui:2950", + "ImGuiSelectionRequestType": "imgui:2942", + "ImGuiSeparatorFlags_": "imgui_internal:970", + "ImGuiSettingsHandler": "imgui_internal:2034", + "ImGuiShrinkWidthItem": "imgui_internal:1307", + "ImGuiSizeCallbackData": "imgui:2558", + "ImGuiSliderFlagsPrivate_": "imgui_internal:942", + "ImGuiSliderFlags_": "imgui:1869", + "ImGuiSortDirection": "imgui:1467", + "ImGuiStackLevelInfo": "imgui_internal:2138", + "ImGuiStackSizes": "imgui_internal:1281", + "ImGuiStorage": "imgui:2696", + "ImGuiStoragePair": "imgui:2679", + "ImGuiStyle": "imgui:2212", + "ImGuiStyleMod": "imgui_internal:1039", + "ImGuiStyleVar_": "imgui:1771", + "ImGuiTabBar": "imgui_internal:3013", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2976", + "ImGuiTabBarFlags_": "imgui:1306", + "ImGuiTabItem": "imgui_internal:2993", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2984", + "ImGuiTabItemFlags_": "imgui:1323", + "ImGuiTable": "imgui_internal:3159", + "ImGuiTableBgTarget_": "imgui:2066", + "ImGuiTableCellData": "imgui_internal:3127", + "ImGuiTableColumn": "imgui_internal:3067", + "ImGuiTableColumnFlags_": "imgui:2013", + "ImGuiTableColumnSettings": "imgui_internal:3306", + "ImGuiTableColumnSortSpecs": "imgui:2088", + "ImGuiTableFlags_": "imgui:1960", + "ImGuiTableHeaderData": "imgui_internal:3136", + "ImGuiTableInstanceData": "imgui_internal:3146", + "ImGuiTableRowFlags_": "imgui:2051", + "ImGuiTableSettings": "imgui_internal:3330", + "ImGuiTableSortSpecs": "imgui:2078", + "ImGuiTableTempData": "imgui_internal:3283", + "ImGuiTextBuffer": "imgui:2659", + "ImGuiTextFilter": "imgui:2632", + "ImGuiTextFlags_": "imgui_internal:988", + "ImGuiTextIndex": "imgui_internal:727", + "ImGuiTextRange": "imgui:2642", + "ImGuiTooltipFlags_": "imgui_internal:994", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:963", + "ImGuiTreeNodeFlags_": "imgui:1221", + "ImGuiTreeNodeStackData": "imgui_internal:1273", + "ImGuiTypingSelectFlags_": "imgui_internal:1641", + "ImGuiTypingSelectRequest": "imgui_internal:1649", + "ImGuiTypingSelectState": "imgui_internal:1660", + "ImGuiViewport": "imgui:3597", + "ImGuiViewportFlags_": "imgui:3569", + "ImGuiViewportP": "imgui_internal:1963", + "ImGuiWindow": "imgui_internal:2824", + "ImGuiWindowClass": "imgui:2573", + "ImGuiWindowDockStyle": "imgui_internal:1941", + "ImGuiWindowDockStyleCol": "imgui_internal:1927", + "ImGuiWindowFlags_": "imgui:1097", + "ImGuiWindowRefreshFlags_": "imgui_internal:1167", + "ImGuiWindowSettings": "imgui_internal:2015", + "ImGuiWindowStackData": "imgui_internal:1299", + "ImGuiWindowTempData": "imgui_internal:2774", + "ImRect": "imgui_internal:529", + "ImVec1": "imgui_internal:511", + "ImVec2": "imgui:293", + "ImVec2ih": "imgui_internal:519", + "ImVec4": "imgui:306" }, "structs": { "ImBitVector": [ @@ -4798,7 +5395,8 @@ }, { "name": "CmdLists", - "type": "ImDrawList**" + "template_type": "ImDrawList*", + "type": "ImVector_ImDrawListPtr" }, { "name": "DisplayPos", @@ -4822,6 +5420,11 @@ "name": "Layers[2]", "size": 2, "template_type": "ImDrawList*", + "type": "ImVector_ImDrawListPtr*" + }, + { + "name": "LayerData1", + "template_type": "ImDrawList*", "type": "ImVector_ImDrawListPtr" } ], @@ -4853,10 +5456,6 @@ "name": "_Data", "type": "ImDrawListSharedData*" }, - { - "name": "_OwnerName", - "type": "const char*" - }, { "name": "_VtxWritePtr", "type": "ImDrawVert*" @@ -4865,16 +5464,6 @@ "name": "_IdxWritePtr", "type": "ImDrawIdx*" }, - { - "name": "_ClipRectStack", - "template_type": "ImVec4", - "type": "ImVector_ImVec4" - }, - { - "name": "_TextureIdStack", - "template_type": "ImTextureID", - "type": "ImVector_ImTextureID" - }, { "name": "_Path", "template_type": "ImVec2", @@ -4888,9 +5477,23 @@ "name": "_Splitter", "type": "ImDrawListSplitter" }, + { + "name": "_ClipRectStack", + "template_type": "ImVec4", + "type": "ImVector_ImVec4" + }, + { + "name": "_TextureIdStack", + "template_type": "ImTextureID", + "type": "ImVector_ImTextureID" + }, { "name": "_FringeScale", "type": "float" + }, + { + "name": "_OwnerName", + "type": "const char*" } ], "ImDrawListSharedData": [ @@ -4906,6 +5509,10 @@ "name": "FontSize", "type": "float" }, + { + "name": "FontScale", + "type": "float" + }, { "name": "CurveTessellationTol", "type": "float" @@ -5024,8 +5631,16 @@ "type": "ImWchar" }, { - "name": "DotChar", - "type": "ImWchar" + "name": "EllipsisCharCount", + "type": "short" + }, + { + "name": "EllipsisWidth", + "type": "float" + }, + { + "name": "EllipsisCharStep", + "type": "float" }, { "name": "DirtyLookupTables", @@ -5252,6 +5867,10 @@ "name": "RasterizerMultiply", "type": "float" }, + { + "name": "RasterizerDensity", + "type": "float" + }, { "name": "EllipsisChar", "type": "ImWchar" @@ -5326,6 +5945,69 @@ "type": "ImVector_ImU32" } ], + "ImGuiBoxSelectState": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "IsActive", + "type": "bool" + }, + { + "name": "IsStarting", + "type": "bool" + }, + { + "name": "IsStartedFromVoid", + "type": "bool" + }, + { + "name": "IsStartedSetNavIdOnce", + "type": "bool" + }, + { + "name": "RequestClear", + "type": "bool" + }, + { + "bitfield": "16", + "name": "KeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "StartPosRel", + "type": "ImVec2" + }, + { + "name": "EndPosRel", + "type": "ImVec2" + }, + { + "name": "ScrollAccum", + "type": "ImVec2" + }, + { + "name": "Window", + "type": "ImGuiWindow*" + }, + { + "name": "UnclipMode", + "type": "bool" + }, + { + "name": "UnclipRect", + "type": "ImRect" + }, + { + "name": "BoxSelectRectPrev", + "type": "ImRect" + }, + { + "name": "BoxSelectRectCurr", + "type": "ImRect" + } + ], "ImGuiColorMod": [ { "name": "Col", @@ -5379,16 +6061,6 @@ "name": "PlatformIO", "type": "ImGuiPlatformIO" }, - { - "name": "InputEventsQueue", - "template_type": "ImGuiInputEvent", - "type": "ImVector_ImGuiInputEvent" - }, - { - "name": "InputEventsTrail", - "template_type": "ImGuiInputEvent", - "type": "ImVector_ImGuiInputEvent" - }, { "name": "Style", "type": "ImGuiStyle" @@ -5413,6 +6085,14 @@ "name": "FontBaseSize", "type": "float" }, + { + "name": "FontScale", + "type": "float" + }, + { + "name": "CurrentDpiScale", + "type": "float" + }, { "name": "DrawListSharedData", "type": "ImDrawListSharedData" @@ -5461,6 +6141,29 @@ "name": "TestEngine", "type": "void*" }, + { + "name": "ContextName[16]", + "size": 16, + "type": "char" + }, + { + "name": "InputEventsQueue", + "template_type": "ImGuiInputEvent", + "type": "ImVector_ImGuiInputEvent" + }, + { + "name": "InputEventsTrail", + "template_type": "ImGuiInputEvent", + "type": "ImVector_ImGuiInputEvent" + }, + { + "name": "InputEventsNextMouseSource", + "type": "ImGuiMouseSource" + }, + { + "name": "InputEventsNextEventId", + "type": "ImU32" + }, { "name": "Windows", "template_type": "ImGuiWindow*", @@ -5493,6 +6196,10 @@ "name": "WindowsHoverPadding", "type": "ImVec2" }, + { + "name": "DebugBreakInWindow", + "type": "ImGuiID" + }, { "name": "CurrentWindow", "type": "ImGuiWindow*" @@ -5505,6 +6212,10 @@ "name": "HoveredWindowUnderMovingWindow", "type": "ImGuiWindow*" }, + { + "name": "HoveredWindowBeforeClear", + "type": "ImGuiWindow*" + }, { "name": "MovingWindow", "type": "ImGuiWindow*" @@ -5521,6 +6232,10 @@ "name": "WheelingWindowStartFrame", "type": "int" }, + { + "name": "WheelingWindowScrolledFrame", + "type": "int" + }, { "name": "WheelingWindowReleaseTimer", "type": "float" @@ -5533,6 +6248,10 @@ "name": "WheelingAxisAvg", "type": "ImVec2" }, + { + "name": "DebugDrawIdConflicts", + "type": "ImGuiID" + }, { "name": "DebugHookIdInfo", "type": "ImGuiID" @@ -5546,12 +6265,8 @@ "type": "ImGuiID" }, { - "name": "HoveredIdAllowOverlap", - "type": "bool" - }, - { - "name": "HoveredIdDisabled", - "type": "bool" + "name": "HoveredIdPreviousFrameItemCount", + "type": "int" }, { "name": "HoveredIdTimer", @@ -5561,6 +6276,18 @@ "name": "HoveredIdNotActiveTimer", "type": "float" }, + { + "name": "HoveredIdAllowOverlap", + "type": "bool" + }, + { + "name": "HoveredIdIsDisabled", + "type": "bool" + }, + { + "name": "ItemUnclipByLog", + "type": "bool" + }, { "name": "ActiveId", "type": "ImGuiID" @@ -5597,6 +6324,15 @@ "name": "ActiveIdHasBeenEditedThisFrame", "type": "bool" }, + { + "name": "ActiveIdFromShortcut", + "type": "bool" + }, + { + "bitfield": "8", + "name": "ActiveIdMouseButton", + "type": "int" + }, { "name": "ActiveIdClickOffset", "type": "ImVec2" @@ -5609,10 +6345,6 @@ "name": "ActiveIdSource", "type": "ImGuiInputSource" }, - { - "name": "ActiveIdMouseButton", - "type": "int" - }, { "name": "ActiveIdPreviousFrame", "type": "ImGuiID" @@ -5637,9 +6369,25 @@ "name": "LastActiveIdTimer", "type": "float" }, + { + "name": "LastKeyModsChangeTime", + "type": "double" + }, + { + "name": "LastKeyModsChangeFromNoneTime", + "type": "double" + }, + { + "name": "LastKeyboardKeyPressTime", + "type": "double" + }, + { + "name": "KeysMayBeCharInput", + "type": "ImBitArrayForNamedKeys" + }, { "name": "KeysOwnerData[ImGuiKey_NamedKey_COUNT]", - "size": 140, + "size": 154, "type": "ImGuiKeyOwnerData" }, { @@ -5655,8 +6403,8 @@ "type": "bool" }, { - "name": "ActiveIdUsingNavInputMask", - "type": "ImU32" + "name": "DebugBreakInShortcutRouting", + "type": "ImGuiKeyChord" }, { "name": "CurrentFocusScopeId", @@ -5682,6 +6430,14 @@ "name": "NextWindowData", "type": "ImGuiNextWindowData" }, + { + "name": "DebugShowGroupRects", + "type": "bool" + }, + { + "name": "DebugFlashStyleColorIdx", + "type": "ImGuiCol" + }, { "name": "ColorStack", "template_type": "ImGuiColorMod", @@ -5699,8 +6455,8 @@ }, { "name": "FocusScopeStack", - "template_type": "ImGuiID", - "type": "ImVector_ImGuiID" + "template_type": "ImGuiFocusScopeData", + "type": "ImVector_ImGuiFocusScopeData" }, { "name": "ItemFlagsStack", @@ -5723,18 +6479,15 @@ "type": "ImVector_ImGuiPopupData" }, { - "name": "BeginMenuCount", - "type": "int" + "name": "TreeNodeStack", + "template_type": "ImGuiTreeNodeStackData", + "type": "ImVector_ImGuiTreeNodeStackData" }, { "name": "Viewports", "template_type": "ImGuiViewportP*", "type": "ImVector_ImGuiViewportPPtr" }, - { - "name": "CurrentDpiScale", - "type": "float" - }, { "name": "CurrentViewport", "type": "ImGuiViewportP*" @@ -5756,7 +6509,19 @@ "type": "ImGuiPlatformMonitor" }, { - "name": "ViewportFrontMostStampCount", + "name": "PlatformMonitorsFullWorkRect", + "type": "ImRect" + }, + { + "name": "ViewportCreatedCount", + "type": "int" + }, + { + "name": "PlatformWindowsCreatedCount", + "type": "int" + }, + { + "name": "ViewportFocusedStampCount", "type": "int" }, { @@ -5771,6 +6536,10 @@ "name": "NavFocusScopeId", "type": "ImGuiID" }, + { + "name": "NavLayer", + "type": "ImGuiNavLayer" + }, { "name": "NavActivateId", "type": "ImGuiID" @@ -5783,25 +6552,22 @@ "name": "NavActivatePressedId", "type": "ImGuiID" }, - { - "name": "NavActivateInputId", - "type": "ImGuiID" - }, { "name": "NavActivateFlags", "type": "ImGuiActivateFlags" }, { - "name": "NavJustMovedToId", + "name": "NavFocusRoute", + "template_type": "ImGuiFocusScopeData", + "type": "ImVector_ImGuiFocusScopeData" + }, + { + "name": "NavHighlightActivatedId", "type": "ImGuiID" }, { - "name": "NavJustMovedToFocusScopeId", - "type": "ImGuiID" - }, - { - "name": "NavJustMovedToKeyMods", - "type": "ImGuiKeyChord" + "name": "NavHighlightActivatedTimer", + "type": "float" }, { "name": "NavNextActivateId", @@ -5816,8 +6582,8 @@ "type": "ImGuiInputSource" }, { - "name": "NavLayer", - "type": "ImGuiNavLayer" + "name": "NavLastValidSelectionUserData", + "type": "ImGuiSelectionUserData" }, { "name": "NavIdIsAlive", @@ -5848,12 +6614,8 @@ "type": "bool" }, { - "name": "NavInitResultId", - "type": "ImGuiID" - }, - { - "name": "NavInitResultRectRel", - "type": "ImRect" + "name": "NavInitResult", + "type": "ImGuiNavItemData" }, { "name": "NavMoveSubmitted", @@ -5927,6 +6689,30 @@ "name": "NavTabbingResultFirst", "type": "ImGuiNavItemData" }, + { + "name": "NavJustMovedFromFocusScopeId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToFocusScopeId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToKeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "NavJustMovedToIsTabbing", + "type": "bool" + }, + { + "name": "NavJustMovedToHasSelectionData", + "type": "bool" + }, { "name": "ConfigNavWindowingKeyNext", "type": "ImGuiKeyChord" @@ -5959,6 +6745,10 @@ "name": "NavWindowingToggleLayer", "type": "bool" }, + { + "name": "NavWindowingToggleKey", + "type": "ImGuiKey" + }, { "name": "NavWindowingAccumDeltaPos", "type": "ImVec2" @@ -5971,10 +6761,6 @@ "name": "DimBgRatio", "type": "float" }, - { - "name": "MouseCursor", - "type": "ImGuiMouseCursor" - }, { "name": "DragDropActive", "type": "bool" @@ -6007,6 +6793,10 @@ "name": "DragDropTargetRect", "type": "ImRect" }, + { + "name": "DragDropTargetClipRect", + "type": "ImRect" + }, { "name": "DragDropTargetId", "type": "ImGuiID" @@ -6058,6 +6848,10 @@ "name": "CurrentTable", "type": "ImGuiTable*" }, + { + "name": "DebugBreakInTable", + "type": "ImGuiID" + }, { "name": "TablesTempDataStacked", "type": "int" @@ -6102,19 +6896,57 @@ "type": "ImVector_ImGuiShrinkWidthItem" }, { - "name": "HoverDelayId", + "name": "BoxSelectState", + "type": "ImGuiBoxSelectState" + }, + { + "name": "CurrentMultiSelect", + "type": "ImGuiMultiSelectTempData*" + }, + { + "name": "MultiSelectTempDataStacked", + "type": "int" + }, + { + "name": "MultiSelectTempData", + "template_type": "ImGuiMultiSelectTempData", + "type": "ImVector_ImGuiMultiSelectTempData" + }, + { + "name": "MultiSelectStorage", + "template_type": "ImGuiMultiSelectState", + "type": "ImPool_ImGuiMultiSelectState" + }, + { + "name": "HoverItemDelayId", "type": "ImGuiID" }, { - "name": "HoverDelayIdPreviousFrame", + "name": "HoverItemDelayIdPreviousFrame", "type": "ImGuiID" }, { - "name": "HoverDelayTimer", + "name": "HoverItemDelayTimer", "type": "float" }, { - "name": "HoverDelayClearTimer", + "name": "HoverItemDelayClearTimer", + "type": "float" + }, + { + "name": "HoverItemUnlockedStationaryId", + "type": "ImGuiID" + }, + { + "name": "HoverWindowUnlockedStationaryId", + "type": "ImGuiID" + }, + { + "name": "MouseCursor", + "type": "ImGuiMouseCursor" + }, + { + "name": "MouseStationaryTimer", "type": "float" }, { @@ -6125,6 +6957,10 @@ "name": "InputTextState", "type": "ImGuiInputTextState" }, + { + "name": "InputTextDeactivatedState", + "type": "ImGuiInputTextDeactivatedState" + }, { "name": "InputTextPasswordFont", "type": "ImFont" @@ -6133,20 +6969,40 @@ "name": "TempInputId", "type": "ImGuiID" }, + { + "name": "DataTypeZeroValue", + "type": "ImGuiDataTypeStorage" + }, + { + "name": "BeginMenuDepth", + "type": "int" + }, + { + "name": "BeginComboDepth", + "type": "int" + }, { "name": "ColorEditOptions", "type": "ImGuiColorEditFlags" }, { - "name": "ColorEditLastHue", + "name": "ColorEditCurrentID", + "type": "ImGuiID" + }, + { + "name": "ColorEditSavedID", + "type": "ImGuiID" + }, + { + "name": "ColorEditSavedHue", "type": "float" }, { - "name": "ColorEditLastSat", + "name": "ColorEditSavedSat", "type": "float" }, { - "name": "ColorEditLastColor", + "name": "ColorEditSavedColor", "type": "ImU32" }, { @@ -6157,6 +7013,22 @@ "name": "ComboPreviewData", "type": "ImGuiComboPreviewData" }, + { + "name": "WindowResizeBorderExpectedRect", + "type": "ImRect" + }, + { + "name": "WindowResizeRelativeMode", + "type": "bool" + }, + { + "name": "ScrollbarSeekMode", + "type": "short" + }, + { + "name": "ScrollbarClickDeltaToGrabCenter", + "type": "float" + }, { "name": "SliderGrabClickOffset", "type": "float" @@ -6181,10 +7053,6 @@ "name": "DragSpeedDefaultRatio", "type": "float" }, - { - "name": "ScrollbarClickDeltaToGrabCenter", - "type": "float" - }, { "name": "DisabledAlphaBackup", "type": "float" @@ -6193,6 +7061,10 @@ "name": "DisabledStackSize", "type": "short" }, + { + "name": "LockMarkEdited", + "type": "short" + }, { "name": "TooltipOverrideCount", "type": "short" @@ -6207,6 +7079,10 @@ "template_type": "ImGuiID", "type": "ImVector_ImGuiID" }, + { + "name": "TypingSelectState", + "type": "ImGuiTypingSelectState" + }, { "name": "PlatformImeData", "type": "ImGuiPlatformImeData" @@ -6219,14 +7095,14 @@ "name": "PlatformImeViewport", "type": "ImGuiID" }, - { - "name": "PlatformLocaleDecimalPoint", - "type": "char" - }, { "name": "DockContext", "type": "ImGuiDockContext" }, + { + "name": "DockNodeWindowMenuHandler", + "type": "void(*)(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" + }, { "name": "SettingsLoaded", "type": "bool" @@ -6265,7 +7141,7 @@ }, { "name": "LocalizationTable[ImGuiLocKey_COUNT]", - "size": 8, + "size": 13, "type": "const char*" }, { @@ -6324,10 +7200,30 @@ "name": "DebugLogIndex", "type": "ImGuiTextIndex" }, + { + "name": "DebugLogAutoDisableFlags", + "type": "ImGuiDebugLogFlags" + }, + { + "name": "DebugLogAutoDisableFrames", + "type": "ImU8" + }, { "name": "DebugLocateFrames", "type": "ImU8" }, + { + "name": "DebugBreakInLocateId", + "type": "bool" + }, + { + "name": "DebugBreakKeyChord", + "type": "ImGuiKeyChord" + }, + { + "name": "DebugBeginReturnValueCullDepth", + "type": "ImS8" + }, { "name": "DebugItemPickerActive", "type": "bool" @@ -6340,13 +7236,25 @@ "name": "DebugItemPickerBreakId", "type": "ImGuiID" }, + { + "name": "DebugFlashStyleColorTime", + "type": "float" + }, + { + "name": "DebugFlashStyleColorBackup", + "type": "ImVec4" + }, { "name": "DebugMetricsConfig", "type": "ImGuiMetricsConfig" }, { - "name": "DebugStackTool", - "type": "ImGuiStackTool" + "name": "DebugIDStackTool", + "type": "ImGuiIDStackTool" + }, + { + "name": "DebugAllocInfo", + "type": "ImGuiDebugAllocInfo" }, { "name": "DebugHoveredDockNode", @@ -6385,6 +7293,11 @@ "name": "TempBuffer", "template_type": "char", "type": "ImVector_char" + }, + { + "name": "TempKeychordName[64]", + "size": 64, + "type": "char" } ], "ImGuiContextHook": [ @@ -6427,13 +7340,60 @@ "type": "const char*" } ], - "ImGuiDataTypeTempStorage": [ + "ImGuiDataTypeStorage": [ { "name": "Data[8]", "size": 8, "type": "ImU8" } ], + "ImGuiDataVarInfo": [ + { + "name": "Type", + "type": "ImGuiDataType" + }, + { + "name": "Count", + "type": "ImU32" + }, + { + "name": "Offset", + "type": "ImU32" + } + ], + "ImGuiDebugAllocEntry": [ + { + "name": "FrameCount", + "type": "int" + }, + { + "name": "AllocCount", + "type": "ImS16" + }, + { + "name": "FreeCount", + "type": "ImS16" + } + ], + "ImGuiDebugAllocInfo": [ + { + "name": "TotalAllocCount", + "type": "int" + }, + { + "name": "TotalFreeCount", + "type": "int" + }, + { + "name": "LastEntriesIdx", + "type": "ImS16" + }, + { + "name": "LastEntriesBuf[6]", + "size": 6, + "type": "ImGuiDebugAllocEntry" + } + ], "ImGuiDockContext": [ { "name": "Nodes", @@ -6565,6 +7525,10 @@ "name": "WantCloseTabId", "type": "ImGuiID" }, + { + "name": "RefViewportId", + "type": "ImGuiID" + }, { "bitfield": "3", "name": "AuthorityForPos", @@ -6636,6 +7600,16 @@ "type": "bool" } ], + "ImGuiFocusScopeData": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "WindowID", + "type": "ImGuiID" + } + ], "ImGuiGroupData": [ { "name": "WindowID", @@ -6649,6 +7623,10 @@ "name": "BackupCursorMaxPos", "type": "ImVec2" }, + { + "name": "BackupCursorPosPrevLine", + "type": "ImVec2" + }, { "name": "BackupIndent", "type": "ImVec1" @@ -6677,11 +7655,42 @@ "name": "BackupHoveredIdIsAlive", "type": "bool" }, + { + "name": "BackupIsSameLine", + "type": "bool" + }, { "name": "EmitItem", "type": "bool" } ], + "ImGuiIDStackTool": [ + { + "name": "LastActiveFrame", + "type": "int" + }, + { + "name": "StackLevel", + "type": "int" + }, + { + "name": "QueryId", + "type": "ImGuiID" + }, + { + "name": "Results", + "template_type": "ImGuiStackLevelInfo", + "type": "ImVector_ImGuiStackLevelInfo" + }, + { + "name": "CopyToClipboardOnCtrlC", + "type": "bool" + }, + { + "name": "CopyToClipboardLastTime", + "type": "float" + } + ], "ImGuiIO": [ { "name": "ConfigFlags", @@ -6711,34 +7720,6 @@ "name": "LogFilename", "type": "const char*" }, - { - "name": "MouseDoubleClickTime", - "type": "float" - }, - { - "name": "MouseDoubleClickMaxDist", - "type": "float" - }, - { - "name": "MouseDragThreshold", - "type": "float" - }, - { - "name": "KeyRepeatDelay", - "type": "float" - }, - { - "name": "KeyRepeatRate", - "type": "float" - }, - { - "name": "HoverDelayNormal", - "type": "float" - }, - { - "name": "HoverDelayShort", - "type": "float" - }, { "name": "UserData", "type": "void*" @@ -6803,6 +7784,10 @@ "name": "ConfigMacOSXBehaviors", "type": "bool" }, + { + "name": "ConfigNavSwapGamepadButtons", + "type": "bool" + }, { "name": "ConfigInputTrickleEventQueue", "type": "bool" @@ -6831,6 +7816,50 @@ "name": "ConfigMemoryCompactTimer", "type": "float" }, + { + "name": "MouseDoubleClickTime", + "type": "float" + }, + { + "name": "MouseDoubleClickMaxDist", + "type": "float" + }, + { + "name": "MouseDragThreshold", + "type": "float" + }, + { + "name": "KeyRepeatDelay", + "type": "float" + }, + { + "name": "KeyRepeatRate", + "type": "float" + }, + { + "name": "ConfigDebugIsDebuggerPresent", + "type": "bool" + }, + { + "name": "ConfigDebugHighlightIdConflicts", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueOnce", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueLoop", + "type": "bool" + }, + { + "name": "ConfigDebugIgnoreFocusLoss", + "type": "bool" + }, + { + "name": "ConfigDebugIniSettings", + "type": "bool" + }, { "name": "BackendPlatformName", "type": "const char*" @@ -6851,26 +7880,6 @@ "name": "BackendLanguageUserData", "type": "void*" }, - { - "name": "GetClipboardTextFn", - "type": "const char*(*)(void* user_data)" - }, - { - "name": "SetClipboardTextFn", - "type": "void(*)(void* user_data,const char* text)" - }, - { - "name": "ClipboardUserData", - "type": "void*" - }, - { - "name": "SetPlatformImeDataFn", - "type": "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" - }, - { - "name": "_UnusedPadding", - "type": "void*" - }, { "name": "WantCaptureMouse", "type": "bool" @@ -6919,28 +7928,13 @@ "name": "MetricsActiveWindows", "type": "int" }, - { - "name": "MetricsActiveAllocations", - "type": "int" - }, { "name": "MouseDelta", "type": "ImVec2" }, { - "name": "KeyMap[ImGuiKey_COUNT]", - "size": 652, - "type": "int" - }, - { - "name": "KeysDown[ImGuiKey_COUNT]", - "size": 652, - "type": "bool" - }, - { - "name": "NavInputs[ImGuiNavInput_COUNT]", - "size": 16, - "type": "float" + "name": "Ctx", + "type": "ImGuiContext*" }, { "name": "MousePos", @@ -6959,6 +7953,10 @@ "name": "MouseWheelH", "type": "float" }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" + }, { "name": "MouseHoveredViewport", "type": "ImGuiID" @@ -6985,7 +7983,7 @@ }, { "name": "KeysData[ImGuiKey_KeysData_SIZE]", - "size": 652, + "size": 154, "type": "ImGuiKeyData" }, { @@ -7041,6 +8039,14 @@ "size": 5, "type": "bool" }, + { + "name": "MouseWheelRequestAxisSwap", + "type": "bool" + }, + { + "name": "MouseCtrlLeftAsRightClick", + "type": "bool" + }, { "name": "MouseDownDuration[5]", "size": 5, @@ -7100,6 +8106,10 @@ "name": "Source", "type": "ImGuiInputSource" }, + { + "name": "EventId", + "type": "ImU32" + }, { "name": "", "type": "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventMouseViewport MouseViewport; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}" @@ -7137,6 +8147,10 @@ { "name": "Down", "type": "bool" + }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" } ], "ImGuiInputEventMousePos": [ @@ -7147,6 +8161,10 @@ { "name": "PosY", "type": "float" + }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" } ], "ImGuiInputEventMouseViewport": [ @@ -7163,6 +8181,10 @@ { "name": "WheelY", "type": "float" + }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" } ], "ImGuiInputEventText": [ @@ -7172,6 +8194,10 @@ } ], "ImGuiInputTextCallbackData": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "EventFlag", "type": "ImGuiInputTextFlags" @@ -7221,28 +8247,34 @@ "type": "int" } ], + "ImGuiInputTextDeactivatedState": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "TextA", + "template_type": "char", + "type": "ImVector_char" + } + ], "ImGuiInputTextState": [ { "name": "Ctx", "type": "ImGuiContext*" }, + { + "name": "Stb", + "type": "ImStbTexteditState*" + }, { "name": "ID", "type": "ImGuiID" }, - { - "name": "CurLenW", - "type": "int" - }, { "name": "CurLenA", "type": "int" }, - { - "name": "TextW", - "template_type": "ImWchar", - "type": "ImVector_ImWchar" - }, { "name": "TextA", "template_type": "char", @@ -7254,20 +8286,17 @@ "type": "ImVector_char" }, { - "name": "TextAIsValid", - "type": "bool" + "name": "CallbackTextBackup", + "template_type": "char", + "type": "ImVector_char" }, { "name": "BufCapacityA", "type": "int" }, { - "name": "ScrollX", - "type": "float" - }, - { - "name": "Stb", - "type": "STB_TexteditState" + "name": "Scroll", + "type": "ImVec2" }, { "name": "CursorAnim", @@ -7288,6 +8317,18 @@ { "name": "Flags", "type": "ImGuiInputTextFlags" + }, + { + "name": "ReloadUserBuf", + "type": "bool" + }, + { + "name": "ReloadSelectionStart", + "type": "int" + }, + { + "name": "ReloadSelectionEnd", + "type": "int" } ], "ImGuiKeyData": [ @@ -7335,6 +8376,10 @@ "name": "Mods", "type": "ImU16" }, + { + "name": "RoutingCurrScore", + "type": "ImU8" + }, { "name": "RoutingNextScore", "type": "ImU8" @@ -7351,7 +8396,7 @@ "ImGuiKeyRoutingTable": [ { "name": "Index[ImGuiKey_NamedKey_COUNT]", - "size": 140, + "size": 154, "type": "ImGuiKeyRoutingIndex" }, { @@ -7389,9 +8434,21 @@ { "name": "DisplayRect", "type": "ImRect" + }, + { + "name": "ClipRect", + "type": "ImRect" + }, + { + "name": "Shortcut", + "type": "ImGuiKeyChord" } ], "ImGuiListClipper": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "DisplayStart", "type": "int" @@ -7412,6 +8469,10 @@ "name": "StartPosY", "type": "float" }, + { + "name": "StartSeekOffsetY", + "type": "double" + }, { "name": "TempData", "type": "void*" @@ -7513,7 +8574,7 @@ "type": "bool" }, { - "name": "ShowStackTool", + "name": "ShowIDStackTool", "type": "bool" }, { @@ -7536,6 +8597,14 @@ "name": "ShowDrawCmdBoundingBoxes", "type": "bool" }, + { + "name": "ShowTextEncodingViewer", + "type": "bool" + }, + { + "name": "ShowAtlasTintedWithTextColor", + "type": "bool" + }, { "name": "ShowDockingNodes", "type": "bool" @@ -7547,6 +8616,141 @@ { "name": "ShowTablesRectsType", "type": "int" + }, + { + "name": "HighlightMonitorIdx", + "type": "int" + }, + { + "name": "HighlightViewportID", + "type": "ImGuiID" + } + ], + "ImGuiMultiSelectIO": [ + { + "name": "Requests", + "template_type": "ImGuiSelectionRequest", + "type": "ImVector_ImGuiSelectionRequest" + }, + { + "name": "RangeSrcItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdSelected", + "type": "bool" + }, + { + "name": "RangeSrcReset", + "type": "bool" + }, + { + "name": "ItemsCount", + "type": "int" + } + ], + "ImGuiMultiSelectState": [ + { + "name": "Window", + "type": "ImGuiWindow*" + }, + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "LastFrameActive", + "type": "int" + }, + { + "name": "LastSelectionSize", + "type": "int" + }, + { + "name": "RangeSelected", + "type": "ImS8" + }, + { + "name": "NavIdSelected", + "type": "ImS8" + }, + { + "name": "RangeSrcItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdItem", + "type": "ImGuiSelectionUserData" + } + ], + "ImGuiMultiSelectTempData": [ + { + "name": "IO", + "type": "ImGuiMultiSelectIO" + }, + { + "name": "Storage", + "type": "ImGuiMultiSelectState*" + }, + { + "name": "FocusScopeId", + "type": "ImGuiID" + }, + { + "name": "Flags", + "type": "ImGuiMultiSelectFlags" + }, + { + "name": "ScopeRectMin", + "type": "ImVec2" + }, + { + "name": "BackupCursorMaxPos", + "type": "ImVec2" + }, + { + "name": "LastSubmittedItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "BoxSelectId", + "type": "ImGuiID" + }, + { + "name": "KeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "LoopRequestSetAll", + "type": "ImS8" + }, + { + "name": "IsEndIO", + "type": "bool" + }, + { + "name": "IsFocused", + "type": "bool" + }, + { + "name": "IsKeyboardSetRange", + "type": "bool" + }, + { + "name": "NavIdPassedBy", + "type": "bool" + }, + { + "name": "RangeSrcPassedBy", + "type": "bool" + }, + { + "name": "RangeDstPassedBy", + "type": "bool" } ], "ImGuiNavItemData": [ @@ -7581,6 +8785,10 @@ { "name": "DistAxial", "type": "float" + }, + { + "name": "SelectionUserData", + "type": "ImGuiSelectionUserData" } ], "ImGuiNextItemData": [ @@ -7589,20 +8797,44 @@ "type": "ImGuiNextItemDataFlags" }, { - "name": "Width", - "type": "float" + "name": "ItemFlags", + "type": "ImGuiItemFlags" }, { "name": "FocusScopeId", "type": "ImGuiID" }, { - "name": "OpenCond", - "type": "ImGuiCond" + "name": "SelectionUserData", + "type": "ImGuiSelectionUserData" + }, + { + "name": "Width", + "type": "float" + }, + { + "name": "Shortcut", + "type": "ImGuiKeyChord" + }, + { + "name": "ShortcutFlags", + "type": "ImGuiInputFlags" }, { "name": "OpenVal", "type": "bool" + }, + { + "name": "OpenCond", + "type": "ImU8" + }, + { + "name": "RefVal", + "type": "ImGuiDataTypeStorage" + }, + { + "name": "StorageId", + "type": "ImGuiID" } ], "ImGuiNextWindowData": [ @@ -7646,6 +8878,10 @@ "name": "ScrollVal", "type": "ImVec2" }, + { + "name": "ChildFlags", + "type": "ImGuiChildFlags" + }, { "name": "PosUndock", "type": "bool" @@ -7685,6 +8921,10 @@ { "name": "MenuBarOffsetMinVal", "type": "ImVec2" + }, + { + "name": "RefreshFlagsVal", + "type": "ImGuiWindowRefreshFlags" } ], "ImGuiOldColumnData": [ @@ -7818,6 +9058,38 @@ } ], "ImGuiPlatformIO": [ + { + "name": "Platform_GetClipboardTextFn", + "type": "const char*(*)(ImGuiContext* ctx)" + }, + { + "name": "Platform_SetClipboardTextFn", + "type": "void(*)(ImGuiContext* ctx,const char* text)" + }, + { + "name": "Platform_ClipboardUserData", + "type": "void*" + }, + { + "name": "Platform_OpenInShellFn", + "type": "bool(*)(ImGuiContext* ctx,const char* path)" + }, + { + "name": "Platform_OpenInShellUserData", + "type": "void*" + }, + { + "name": "Platform_SetImeDataFn", + "type": "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" + }, + { + "name": "Platform_ImeUserData", + "type": "void*" + }, + { + "name": "Platform_LocaleDecimalPoint", + "type": "ImWchar" + }, { "name": "Platform_CreateWindow", "type": "void(*)(ImGuiViewport* vp)" @@ -7886,6 +9158,10 @@ "name": "Platform_OnChangedViewport", "type": "void(*)(ImGuiViewport* vp)" }, + { + "name": "Platform_GetWindowWorkAreaInsets", + "type": "ImVec4(*)(ImGuiViewport* vp)" + }, { "name": "Platform_CreateVkSurface", "type": "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" @@ -7955,6 +9231,10 @@ { "name": "DpiScale", "type": "float" + }, + { + "name": "PlatformHandle", + "type": "void*" } ], "ImGuiPopupData": [ @@ -7967,7 +9247,7 @@ "type": "ImGuiWindow*" }, { - "name": "BackupNavWindow", + "name": "RestoreNavWindow", "type": "ImGuiWindow*" }, { @@ -8001,6 +9281,64 @@ "type": "int" } ], + "ImGuiSelectionBasicStorage": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "PreserveOrder", + "type": "bool" + }, + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterIndexToStorageId", + "type": "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" + }, + { + "name": "_SelectionOrder", + "type": "int" + }, + { + "name": "_Storage", + "type": "ImGuiStorage" + } + ], + "ImGuiSelectionExternalStorage": [ + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterSetItemSelected", + "type": "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" + } + ], + "ImGuiSelectionRequest": [ + { + "name": "Type", + "type": "ImGuiSelectionRequestType" + }, + { + "name": "Selected", + "type": "bool" + }, + { + "name": "RangeDirection", + "type": "ImS8" + }, + { + "name": "RangeFirstItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "RangeLastItem", + "type": "ImGuiSelectionUserData" + } + ], "ImGuiSettingsHandler": [ { "name": "TypeName", @@ -8133,33 +9471,6 @@ "type": "short" } ], - "ImGuiStackTool": [ - { - "name": "LastActiveFrame", - "type": "int" - }, - { - "name": "StackLevel", - "type": "int" - }, - { - "name": "QueryId", - "type": "ImGuiID" - }, - { - "name": "Results", - "template_type": "ImGuiStackLevelInfo", - "type": "ImVector_ImGuiStackLevelInfo" - }, - { - "name": "CopyToClipboardOnCtrlC", - "type": "bool" - }, - { - "name": "CopyToClipboardLastTime", - "type": "float" - } - ], "ImGuiStorage": [ { "name": "Data", @@ -8294,6 +9605,22 @@ "name": "TabMinWidthForCloseButton", "type": "float" }, + { + "name": "TabBarBorderSize", + "type": "float" + }, + { + "name": "TabBarOverlineSize", + "type": "float" + }, + { + "name": "TableAngledHeadersAngle", + "type": "float" + }, + { + "name": "TableAngledHeadersTextAlign", + "type": "ImVec2" + }, { "name": "ColorButtonPosition", "type": "ImGuiDir" @@ -8306,6 +9633,18 @@ "name": "SelectableTextAlign", "type": "ImVec2" }, + { + "name": "SeparatorTextBorderSize", + "type": "float" + }, + { + "name": "SeparatorTextAlign", + "type": "ImVec2" + }, + { + "name": "SeparatorTextPadding", + "type": "ImVec2" + }, { "name": "DisplayWindowPadding", "type": "ImVec2" @@ -8314,6 +9653,10 @@ "name": "DisplaySafeAreaPadding", "type": "ImVec2" }, + { + "name": "DockingSeparatorSize", + "type": "float" + }, { "name": "MouseCursorScale", "type": "float" @@ -8340,8 +9683,28 @@ }, { "name": "Colors[ImGuiCol_COUNT]", - "size": 55, + "size": 58, "type": "ImVec4" + }, + { + "name": "HoverStationaryDelay", + "type": "float" + }, + { + "name": "HoverDelayShort", + "type": "float" + }, + { + "name": "HoverDelayNormal", + "type": "float" + }, + { + "name": "HoverFlagsForTooltipMouse", + "type": "ImGuiHoveredFlags" + }, + { + "name": "HoverFlagsForTooltipNav", + "type": "ImGuiHoveredFlags" } ], "ImGuiStyleMod": [ @@ -8432,6 +9795,14 @@ "name": "ScrollingRectMaxX", "type": "float" }, + { + "name": "SeparatorMinX", + "type": "float" + }, + { + "name": "SeparatorMaxX", + "type": "float" + }, { "name": "ReorderRequestTabId", "type": "ImGuiID" @@ -8569,19 +9940,15 @@ }, { "name": "EnabledMaskByDisplayOrder", - "type": "ImU64" + "type": "ImBitArrayPtr" }, { "name": "EnabledMaskByIndex", - "type": "ImU64" + "type": "ImBitArrayPtr" }, { "name": "VisibleMaskByIndex", - "type": "ImU64" - }, - { - "name": "RequestOutputMaskByIndex", - "type": "ImU64" + "type": "ImBitArrayPtr" }, { "name": "SettingsLoadedFlags", @@ -8627,6 +9994,10 @@ "name": "RowMinHeight", "type": "float" }, + { + "name": "RowCellPaddingY", + "type": "float" + }, { "name": "RowTextBaseline", "type": "float" @@ -8686,10 +10057,6 @@ "name": "CellPaddingX", "type": "float" }, - { - "name": "CellPaddingY", - "type": "float" - }, { "name": "CellSpacingX1", "type": "float" @@ -8726,6 +10093,14 @@ "name": "RefScale", "type": "float" }, + { + "name": "AngledHeadersHeight", + "type": "float" + }, + { + "name": "AngledHeadersSlope", + "type": "float" + }, { "name": "OuterRect", "type": "ImRect" @@ -8816,6 +10191,10 @@ "name": "DeclColumnsCount", "type": "ImGuiTableColumnIdx" }, + { + "name": "AngledHeadersCount", + "type": "ImGuiTableColumnIdx" + }, { "name": "HoveredColumnBody", "type": "ImGuiTableColumnIdx" @@ -8824,6 +10203,10 @@ "name": "HoveredColumnBorder", "type": "ImGuiTableColumnIdx" }, + { + "name": "HighlightColumnHeader", + "type": "ImGuiTableColumnIdx" + }, { "name": "AutoFitSingleColumn", "type": "ImGuiTableColumnIdx" @@ -8924,6 +10307,10 @@ "name": "IsContextPopupOpen", "type": "bool" }, + { + "name": "DisableDefaultContextMenu", + "type": "bool" + }, { "name": "IsSettingsRequestLoad", "type": "bool" @@ -8952,6 +10339,14 @@ "name": "IsDefaultSizingPolicy", "type": "bool" }, + { + "name": "IsActiveIdAliveBeforeTable", + "type": "bool" + }, + { + "name": "IsActiveIdInTable", + "type": "bool" + }, { "name": "HasScrollbarYCurr", "type": "bool" @@ -9004,6 +10399,10 @@ "name": "WidthAuto", "type": "float" }, + { + "name": "WidthMax", + "type": "float" + }, { "name": "StretchWeight", "type": "float" @@ -9199,23 +10598,52 @@ "type": "ImS16" }, { - "bitfield": "8", "name": "SortDirection", "type": "ImGuiSortDirection" } ], + "ImGuiTableHeaderData": [ + { + "name": "Index", + "type": "ImGuiTableColumnIdx" + }, + { + "name": "TextColor", + "type": "ImU32" + }, + { + "name": "BgColor0", + "type": "ImU32" + }, + { + "name": "BgColor1", + "type": "ImU32" + } + ], "ImGuiTableInstanceData": [ + { + "name": "TableInstanceID", + "type": "ImGuiID" + }, { "name": "LastOuterHeight", "type": "float" }, { - "name": "LastFirstRowHeight", + "name": "LastTopHeadersRowHeight", "type": "float" }, { "name": "LastFrozenHeight", "type": "float" + }, + { + "name": "HoveredRowLast", + "type": "int" + }, + { + "name": "HoveredRowNext", + "type": "int" } ], "ImGuiTableSettings": [ @@ -9267,6 +10695,15 @@ "name": "LastTimeActive", "type": "float" }, + { + "name": "AngledHeadersExtraWidth", + "type": "float" + }, + { + "name": "AngledHeadersRequests", + "template_type": "ImGuiTableHeaderData", + "type": "ImVector_ImGuiTableHeaderData" + }, { "name": "UserOuterSize", "type": "ImVec2" @@ -9352,6 +10789,77 @@ "type": "const char*" } ], + "ImGuiTreeNodeStackData": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "TreeFlags", + "type": "ImGuiTreeNodeFlags" + }, + { + "name": "InFlags", + "type": "ImGuiItemFlags" + }, + { + "name": "NavRect", + "type": "ImRect" + } + ], + "ImGuiTypingSelectRequest": [ + { + "name": "Flags", + "type": "ImGuiTypingSelectFlags" + }, + { + "name": "SearchBufferLen", + "type": "int" + }, + { + "name": "SearchBuffer", + "type": "const char*" + }, + { + "name": "SelectRequest", + "type": "bool" + }, + { + "name": "SingleCharMode", + "type": "bool" + }, + { + "name": "SingleCharSize", + "type": "ImS8" + } + ], + "ImGuiTypingSelectState": [ + { + "name": "Request", + "type": "ImGuiTypingSelectRequest" + }, + { + "name": "SearchBuffer[64]", + "size": 64, + "type": "char" + }, + { + "name": "FocusScope", + "type": "ImGuiID" + }, + { + "name": "LastRequestFrame", + "type": "int" + }, + { + "name": "LastRequestTime", + "type": "float" + }, + { + "name": "SingleCharModeLock", + "type": "bool" + } + ], "ImGuiViewport": [ { "name": "ID", @@ -9427,6 +10935,10 @@ "name": "_ImGuiViewport", "type": "ImGuiViewport" }, + { + "name": "Window", + "type": "ImGuiWindow*" + }, { "name": "Idx", "type": "int" @@ -9436,7 +10948,7 @@ "type": "int" }, { - "name": "LastFrontMostStampCount", + "name": "LastFocusedStampCount", "type": "int" }, { @@ -9447,6 +10959,10 @@ "name": "LastPos", "type": "ImVec2" }, + { + "name": "LastSize", + "type": "ImVec2" + }, { "name": "Alpha", "type": "float" @@ -9455,21 +10971,21 @@ "name": "LastAlpha", "type": "float" }, + { + "name": "LastFocusedHadNavWindow", + "type": "bool" + }, { "name": "PlatformMonitor", "type": "short" }, { - "name": "Window", - "type": "ImGuiWindow*" - }, - { - "name": "DrawListsLastFrame[2]", + "name": "BgFgDrawListsLastFrame[2]", "size": 2, "type": "int" }, { - "name": "DrawLists[2]", + "name": "BgFgDrawLists[2]", "size": 2, "type": "ImDrawList*" }, @@ -9494,23 +11010,27 @@ "type": "ImVec2" }, { - "name": "WorkOffsetMin", + "name": "WorkInsetMin", "type": "ImVec2" }, { - "name": "WorkOffsetMax", + "name": "WorkInsetMax", "type": "ImVec2" }, { - "name": "BuildWorkOffsetMin", + "name": "BuildWorkInsetMin", "type": "ImVec2" }, { - "name": "BuildWorkOffsetMax", + "name": "BuildWorkInsetMax", "type": "ImVec2" } ], "ImGuiWindow": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "Name", "type": "char*" @@ -9527,6 +11047,10 @@ "name": "FlagsPreviousFrame", "type": "ImGuiWindowFlags" }, + { + "name": "ChildFlags", + "type": "ImGuiChildFlags" + }, { "name": "WindowClass", "type": "ImGuiWindowClass" @@ -9583,6 +11107,14 @@ "name": "WindowBorderSize", "type": "float" }, + { + "name": "TitleBarHeight", + "type": "float" + }, + { + "name": "MenuBarHeight", + "type": "float" + }, { "name": "DecoOuterSizeX1", "type": "float" @@ -9623,6 +11155,10 @@ "name": "ChildId", "type": "ImGuiID" }, + { + "name": "PopupId", + "type": "ImGuiID" + }, { "name": "Scroll", "type": "ImVec2" @@ -9683,6 +11219,10 @@ "name": "SkipItems", "type": "bool" }, + { + "name": "SkipRefresh", + "type": "bool" + }, { "name": "Appearing", "type": "bool" @@ -9703,6 +11243,10 @@ "name": "HasCloseButton", "type": "bool" }, + { + "name": "ResizeBorderHovered", + "type": "signed char" + }, { "name": "ResizeBorderHeld", "type": "signed char" @@ -9727,10 +11271,6 @@ "name": "FocusOrder", "type": "short" }, - { - "name": "PopupId", - "type": "ImGuiID" - }, { "name": "AutoFitFramesX", "type": "ImS8" @@ -9739,10 +11279,6 @@ "name": "AutoFitFramesY", "type": "ImS8" }, - { - "name": "AutoFitChildAxises", - "type": "ImS8" - }, { "name": "AutoFitOnlyGrows", "type": "bool" @@ -9913,6 +11449,10 @@ "name": "RootWindowForNav", "type": "ImGuiWindow*" }, + { + "name": "ParentWindowForFocusRoute", + "type": "ImGuiWindow*" + }, { "name": "NavLastChildNavWindow", "type": "ImGuiWindow*" @@ -9927,6 +11467,11 @@ "size": 2, "type": "ImRect" }, + { + "name": "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]", + "size": 2, + "type": "ImVec2" + }, { "name": "NavRootFocusScopeId", "type": "ImGuiID" @@ -10001,6 +11546,10 @@ "name": "ParentViewportId", "type": "ImGuiID" }, + { + "name": "FocusRouteParentWindowId", + "type": "ImGuiID" + }, { "name": "ViewportFlagsOverrideSet", "type": "ImGuiViewportFlags" @@ -10029,7 +11578,7 @@ "ImGuiWindowDockStyle": [ { "name": "Colors[ImGuiWindowDockStyleCol_COUNT]", - "size": 6, + "size": 8, "type": "ImU32" } ], @@ -10070,9 +11619,17 @@ "name": "Collapsed", "type": "bool" }, + { + "name": "IsChild", + "type": "bool" + }, { "name": "WantApply", "type": "bool" + }, + { + "name": "WantDelete", + "type": "bool" } ], "ImGuiWindowStackData": [ @@ -10087,6 +11644,10 @@ { "name": "StackSizesOnBegin", "type": "ImGuiStackSizes" + }, + { + "name": "DisabledOverrideReenable", + "type": "bool" } ], "ImGuiWindowTempData": [ @@ -10162,12 +11723,16 @@ "name": "NavLayersActiveMaskNext", "type": "short" }, + { + "name": "NavIsScrollPushableX", + "type": "bool" + }, { "name": "NavHideHighlightOneFrame", "type": "bool" }, { - "name": "NavHasScroll", + "name": "NavWindowHasScrollY", "type": "bool" }, { @@ -10187,7 +11752,7 @@ "type": "int" }, { - "name": "TreeJumpToParentOnPopMask", + "name": "TreeHasStackDataDepthMask", "type": "ImU32" }, { @@ -10215,6 +11780,10 @@ "name": "ParentLayoutType", "type": "ImGuiLayoutType" }, + { + "name": "ModalDimBgColor", + "type": "ImU32" + }, { "name": "ItemWidth", "type": "float" @@ -10287,136 +11856,171 @@ "name": "w", "type": "float" } - ], - "STB_TexteditState": [ + ] + }, + "templated_structs": { + "ImBitArray": [ { - "name": "cursor", - "type": "int" - }, - { - "name": "select_start", - "type": "int" - }, - { - "name": "select_end", - "type": "int" - }, - { - "name": "insert_mode", - "type": "unsigned char" - }, - { - "name": "row_count_per_page", - "type": "int" - }, - { - "name": "cursor_at_end_of_line", - "type": "unsigned char" - }, - { - "name": "initialized", - "type": "unsigned char" - }, - { - "name": "has_preferred_x", - "type": "unsigned char" - }, - { - "name": "single_line", - "type": "unsigned char" - }, - { - "name": "padding1", - "type": "unsigned char" - }, - { - "name": "padding2", - "type": "unsigned char" - }, - { - "name": "padding3", - "type": "unsigned char" - }, - { - "name": "preferred_x", - "type": "float" - }, - { - "name": "undostate", - "type": "StbUndoState" + "name": "Storage[(BITCOUNT+31)>>5]", + "type": "ImU32" } ], - "StbTexteditRow": [ + "ImChunkStream": [ { - "name": "x0", - "type": "float" + "name": "Buf", + "template_type": "char", + "type": "ImVector_char" + } + ], + "ImPool": [ + { + "name": "Buf", + "type": "ImVector" }, { - "name": "x1", - "type": "float" + "name": "Map", + "type": "ImGuiStorage" }, { - "name": "baseline_y_delta", - "type": "float" + "name": "FreeIdx", + "type": "ImPoolIdx" }, { - "name": "ymin", - "type": "float" + "name": "AliveCount", + "type": "ImPoolIdx" + } + ], + "ImSpan": [ + { + "name": "Data", + "type": "T*" }, { - "name": "ymax", - "type": "float" + "name": "DataEnd", + "type": "T*" + } + ], + "ImSpanAllocator": [ + { + "name": "BasePtr", + "type": "char*" }, { - "name": "num_chars", + "name": "CurrOff", + "type": "int" + }, + { + "name": "CurrIdx", + "type": "int" + }, + { + "name": "Offsets[CHUNKS]", + "type": "int" + }, + { + "name": "Sizes[CHUNKS]", "type": "int" } ], - "StbUndoRecord": [ + "ImVector": [ { - "name": "where", + "name": "Size", "type": "int" }, { - "name": "insert_length", + "name": "Capacity", "type": "int" }, { - "name": "delete_length", - "type": "int" - }, - { - "name": "char_storage", - "type": "int" - } - ], - "StbUndoState": [ - { - "name": "undo_rec[99]", - "size": 99, - "type": "StbUndoRecord" - }, - { - "name": "undo_char[999]", - "size": 999, - "type": "ImWchar" - }, - { - "name": "undo_point", - "type": "short" - }, - { - "name": "redo_point", - "type": "short" - }, - { - "name": "undo_char_point", - "type": "int" - }, - { - "name": "redo_char_point", - "type": "int" + "name": "Data", + "type": "T*" } ] + }, + "templates_done": { + "ImBitArray": { + "ImGuiKey_NamedKey_COUNT, -ImGuiKey_NamedKey_BEGIN": true + }, + "ImChunkStream": { + "ImGuiTableSettings": true, + "ImGuiWindowSettings": true + }, + "ImPool": { + "ImGuiMultiSelectState": true, + "ImGuiTabBar": true, + "ImGuiTable": true + }, + "ImSpan": { + "ImGuiTableCellData": true, + "ImGuiTableColumn": true, + "ImGuiTableColumnIdx": true + }, + "ImVector": { + "ImDrawChannel": true, + "ImDrawCmd": true, + "ImDrawIdx": true, + "ImDrawList*": true, + "ImDrawVert": true, + "ImFont*": true, + "ImFontAtlasCustomRect": true, + "ImFontConfig": true, + "ImFontGlyph": true, + "ImGuiColorMod": true, + "ImGuiContextHook": true, + "ImGuiDockNodeSettings": true, + "ImGuiDockRequest": true, + "ImGuiFocusScopeData": true, + "ImGuiGroupData": true, + "ImGuiID": true, + "ImGuiInputEvent": true, + "ImGuiItemFlags": true, + "ImGuiKeyRoutingData": true, + "ImGuiListClipperData": true, + "ImGuiListClipperRange": true, + "ImGuiMultiSelectState": true, + "ImGuiMultiSelectTempData": true, + "ImGuiOldColumnData": true, + "ImGuiOldColumns": true, + "ImGuiPlatformMonitor": true, + "ImGuiPopupData": true, + "ImGuiPtrOrIndex": true, + "ImGuiSelectionRequest": true, + "ImGuiSettingsHandler": true, + "ImGuiShrinkWidthItem": true, + "ImGuiStackLevelInfo": true, + "ImGuiStoragePair": true, + "ImGuiStyleMod": true, + "ImGuiTabBar": true, + "ImGuiTabItem": true, + "ImGuiTable": true, + "ImGuiTableColumnSortSpecs": true, + "ImGuiTableHeaderData": true, + "ImGuiTableInstanceData": true, + "ImGuiTableTempData": true, + "ImGuiTextRange": true, + "ImGuiTreeNodeStackData": true, + "ImGuiViewport*": true, + "ImGuiViewportP*": true, + "ImGuiWindow*": true, + "ImGuiWindowStackData": true, + "ImTextureID": true, + "ImU32": true, + "ImVec2": true, + "ImVec4": true, + "ImWchar": true, + "char": true, + "const char*": true, + "float": true, + "int": true, + "unsigned char": true + } + }, + "typenames": { + "ImBitArray": "int BITCOUNT, int OFFSET = 0", + "ImChunkStream": "T", + "ImPool": "T", + "ImSpan": "T", + "ImSpanAllocator": "int CHUNKS", + "ImVector": "T" } } \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.lua b/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.lua index 18cc8fd..16a2e3e 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.lua +++ b/imgui-sys/third-party/imgui-docking-freetype/structs_and_enums.lua @@ -112,6 +112,14 @@ defs["enums"]["ImGuiActivateFlags_"][4] = {} defs["enums"]["ImGuiActivateFlags_"][4]["calc_value"] = 4 defs["enums"]["ImGuiActivateFlags_"][4]["name"] = "ImGuiActivateFlags_TryToPreserveState" defs["enums"]["ImGuiActivateFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiActivateFlags_"][5] = {} +defs["enums"]["ImGuiActivateFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiActivateFlags_"][5]["name"] = "ImGuiActivateFlags_FromTabbing" +defs["enums"]["ImGuiActivateFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiActivateFlags_"][6] = {} +defs["enums"]["ImGuiActivateFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiActivateFlags_"][6]["name"] = "ImGuiActivateFlags_FromShortcut" +defs["enums"]["ImGuiActivateFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiAxis"] = {} defs["enums"]["ImGuiAxis"][1] = {} defs["enums"]["ImGuiAxis"][1]["calc_value"] = -1 @@ -193,7 +201,7 @@ defs["enums"]["ImGuiButtonFlagsPrivate_"][8]["name"] = "ImGuiButtonFlags_Flatten defs["enums"]["ImGuiButtonFlagsPrivate_"][8]["value"] = "1 << 11" defs["enums"]["ImGuiButtonFlagsPrivate_"][9] = {} defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["calc_value"] = 4096 -defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["name"] = "ImGuiButtonFlags_AllowItemOverlap" +defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["name"] = "ImGuiButtonFlags_AllowOverlap" defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["value"] = "1 << 12" defs["enums"]["ImGuiButtonFlagsPrivate_"][10] = {} defs["enums"]["ImGuiButtonFlagsPrivate_"][10]["calc_value"] = 8192 @@ -256,10 +264,47 @@ defs["enums"]["ImGuiButtonFlags_"][5] = {} defs["enums"]["ImGuiButtonFlags_"][5]["calc_value"] = 7 defs["enums"]["ImGuiButtonFlags_"][5]["name"] = "ImGuiButtonFlags_MouseButtonMask_" defs["enums"]["ImGuiButtonFlags_"][5]["value"] = "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" -defs["enums"]["ImGuiButtonFlags_"][6] = {} -defs["enums"]["ImGuiButtonFlags_"][6]["calc_value"] = 1 -defs["enums"]["ImGuiButtonFlags_"][6]["name"] = "ImGuiButtonFlags_MouseButtonDefault_" -defs["enums"]["ImGuiButtonFlags_"][6]["value"] = "ImGuiButtonFlags_MouseButtonLeft" +defs["enums"]["ImGuiChildFlags_"] = {} +defs["enums"]["ImGuiChildFlags_"][1] = {} +defs["enums"]["ImGuiChildFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiChildFlags_"][1]["name"] = "ImGuiChildFlags_None" +defs["enums"]["ImGuiChildFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiChildFlags_"][2] = {} +defs["enums"]["ImGuiChildFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiChildFlags_"][2]["name"] = "ImGuiChildFlags_Borders" +defs["enums"]["ImGuiChildFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiChildFlags_"][3] = {} +defs["enums"]["ImGuiChildFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiChildFlags_"][3]["name"] = "ImGuiChildFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiChildFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiChildFlags_"][4] = {} +defs["enums"]["ImGuiChildFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiChildFlags_"][4]["name"] = "ImGuiChildFlags_ResizeX" +defs["enums"]["ImGuiChildFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiChildFlags_"][5] = {} +defs["enums"]["ImGuiChildFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiChildFlags_"][5]["name"] = "ImGuiChildFlags_ResizeY" +defs["enums"]["ImGuiChildFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiChildFlags_"][6] = {} +defs["enums"]["ImGuiChildFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiChildFlags_"][6]["name"] = "ImGuiChildFlags_AutoResizeX" +defs["enums"]["ImGuiChildFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiChildFlags_"][7] = {} +defs["enums"]["ImGuiChildFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiChildFlags_"][7]["name"] = "ImGuiChildFlags_AutoResizeY" +defs["enums"]["ImGuiChildFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiChildFlags_"][8] = {} +defs["enums"]["ImGuiChildFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiChildFlags_"][8]["name"] = "ImGuiChildFlags_AlwaysAutoResize" +defs["enums"]["ImGuiChildFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiChildFlags_"][9] = {} +defs["enums"]["ImGuiChildFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiChildFlags_"][9]["name"] = "ImGuiChildFlags_FrameStyle" +defs["enums"]["ImGuiChildFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiChildFlags_"][10] = {} +defs["enums"]["ImGuiChildFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiChildFlags_"][10]["name"] = "ImGuiChildFlags_NavFlattened" +defs["enums"]["ImGuiChildFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiCol_"] = {} defs["enums"]["ImGuiCol_"][1] = {} defs["enums"]["ImGuiCol_"][1]["calc_value"] = 0 @@ -395,96 +440,108 @@ defs["enums"]["ImGuiCol_"][33]["name"] = "ImGuiCol_ResizeGripActive" defs["enums"]["ImGuiCol_"][33]["value"] = "32" defs["enums"]["ImGuiCol_"][34] = {} defs["enums"]["ImGuiCol_"][34]["calc_value"] = 33 -defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_Tab" +defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_TabHovered" defs["enums"]["ImGuiCol_"][34]["value"] = "33" defs["enums"]["ImGuiCol_"][35] = {} defs["enums"]["ImGuiCol_"][35]["calc_value"] = 34 -defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_TabHovered" +defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_Tab" defs["enums"]["ImGuiCol_"][35]["value"] = "34" defs["enums"]["ImGuiCol_"][36] = {} defs["enums"]["ImGuiCol_"][36]["calc_value"] = 35 -defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabActive" +defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabSelected" defs["enums"]["ImGuiCol_"][36]["value"] = "35" defs["enums"]["ImGuiCol_"][37] = {} defs["enums"]["ImGuiCol_"][37]["calc_value"] = 36 -defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabUnfocused" +defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabSelectedOverline" defs["enums"]["ImGuiCol_"][37]["value"] = "36" defs["enums"]["ImGuiCol_"][38] = {} defs["enums"]["ImGuiCol_"][38]["calc_value"] = 37 -defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabUnfocusedActive" +defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabDimmed" defs["enums"]["ImGuiCol_"][38]["value"] = "37" defs["enums"]["ImGuiCol_"][39] = {} defs["enums"]["ImGuiCol_"][39]["calc_value"] = 38 -defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_DockingPreview" +defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_TabDimmedSelected" defs["enums"]["ImGuiCol_"][39]["value"] = "38" defs["enums"]["ImGuiCol_"][40] = {} defs["enums"]["ImGuiCol_"][40]["calc_value"] = 39 -defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_DockingEmptyBg" +defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_TabDimmedSelectedOverline" defs["enums"]["ImGuiCol_"][40]["value"] = "39" defs["enums"]["ImGuiCol_"][41] = {} defs["enums"]["ImGuiCol_"][41]["calc_value"] = 40 -defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotLines" +defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_DockingPreview" defs["enums"]["ImGuiCol_"][41]["value"] = "40" defs["enums"]["ImGuiCol_"][42] = {} defs["enums"]["ImGuiCol_"][42]["calc_value"] = 41 -defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotLinesHovered" +defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_DockingEmptyBg" defs["enums"]["ImGuiCol_"][42]["value"] = "41" defs["enums"]["ImGuiCol_"][43] = {} defs["enums"]["ImGuiCol_"][43]["calc_value"] = 42 -defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotHistogram" +defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotLines" defs["enums"]["ImGuiCol_"][43]["value"] = "42" defs["enums"]["ImGuiCol_"][44] = {} defs["enums"]["ImGuiCol_"][44]["calc_value"] = 43 -defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotHistogramHovered" +defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotLinesHovered" defs["enums"]["ImGuiCol_"][44]["value"] = "43" defs["enums"]["ImGuiCol_"][45] = {} defs["enums"]["ImGuiCol_"][45]["calc_value"] = 44 -defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_TableHeaderBg" +defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_PlotHistogram" defs["enums"]["ImGuiCol_"][45]["value"] = "44" defs["enums"]["ImGuiCol_"][46] = {} defs["enums"]["ImGuiCol_"][46]["calc_value"] = 45 -defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_TableBorderStrong" +defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_PlotHistogramHovered" defs["enums"]["ImGuiCol_"][46]["value"] = "45" defs["enums"]["ImGuiCol_"][47] = {} defs["enums"]["ImGuiCol_"][47]["calc_value"] = 46 -defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableBorderLight" +defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableHeaderBg" defs["enums"]["ImGuiCol_"][47]["value"] = "46" defs["enums"]["ImGuiCol_"][48] = {} defs["enums"]["ImGuiCol_"][48]["calc_value"] = 47 -defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableRowBg" +defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableBorderStrong" defs["enums"]["ImGuiCol_"][48]["value"] = "47" defs["enums"]["ImGuiCol_"][49] = {} defs["enums"]["ImGuiCol_"][49]["calc_value"] = 48 -defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableRowBgAlt" +defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableBorderLight" defs["enums"]["ImGuiCol_"][49]["value"] = "48" defs["enums"]["ImGuiCol_"][50] = {} defs["enums"]["ImGuiCol_"][50]["calc_value"] = 49 -defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TextSelectedBg" +defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TableRowBg" defs["enums"]["ImGuiCol_"][50]["value"] = "49" defs["enums"]["ImGuiCol_"][51] = {} defs["enums"]["ImGuiCol_"][51]["calc_value"] = 50 -defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_DragDropTarget" +defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_TableRowBgAlt" defs["enums"]["ImGuiCol_"][51]["value"] = "50" defs["enums"]["ImGuiCol_"][52] = {} defs["enums"]["ImGuiCol_"][52]["calc_value"] = 51 -defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_NavHighlight" +defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_TextLink" defs["enums"]["ImGuiCol_"][52]["value"] = "51" defs["enums"]["ImGuiCol_"][53] = {} defs["enums"]["ImGuiCol_"][53]["calc_value"] = 52 -defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_NavWindowingHighlight" +defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_TextSelectedBg" defs["enums"]["ImGuiCol_"][53]["value"] = "52" defs["enums"]["ImGuiCol_"][54] = {} defs["enums"]["ImGuiCol_"][54]["calc_value"] = 53 -defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_DragDropTarget" defs["enums"]["ImGuiCol_"][54]["value"] = "53" defs["enums"]["ImGuiCol_"][55] = {} defs["enums"]["ImGuiCol_"][55]["calc_value"] = 54 -defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_NavHighlight" defs["enums"]["ImGuiCol_"][55]["value"] = "54" defs["enums"]["ImGuiCol_"][56] = {} defs["enums"]["ImGuiCol_"][56]["calc_value"] = 55 -defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_NavWindowingHighlight" defs["enums"]["ImGuiCol_"][56]["value"] = "55" +defs["enums"]["ImGuiCol_"][57] = {} +defs["enums"]["ImGuiCol_"][57]["calc_value"] = 56 +defs["enums"]["ImGuiCol_"][57]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][57]["value"] = "56" +defs["enums"]["ImGuiCol_"][58] = {} +defs["enums"]["ImGuiCol_"][58]["calc_value"] = 57 +defs["enums"]["ImGuiCol_"][58]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][58]["value"] = "57" +defs["enums"]["ImGuiCol_"][59] = {} +defs["enums"]["ImGuiCol_"][59]["calc_value"] = 58 +defs["enums"]["ImGuiCol_"][59]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][59]["value"] = "58" defs["enums"]["ImGuiColorEditFlags_"] = {} defs["enums"]["ImGuiColorEditFlags_"][1] = {} defs["enums"]["ImGuiColorEditFlags_"][1]["calc_value"] = 0 @@ -641,9 +698,13 @@ defs["enums"]["ImGuiComboFlags_"][8]["calc_value"] = 64 defs["enums"]["ImGuiComboFlags_"][8]["name"] = "ImGuiComboFlags_NoPreview" defs["enums"]["ImGuiComboFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiComboFlags_"][9] = {} -defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 30 -defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_HeightMask_" -defs["enums"]["ImGuiComboFlags_"][9]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" +defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_WidthFitPreview" +defs["enums"]["ImGuiComboFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiComboFlags_"][10] = {} +defs["enums"]["ImGuiComboFlags_"][10]["calc_value"] = 30 +defs["enums"]["ImGuiComboFlags_"][10]["name"] = "ImGuiComboFlags_HeightMask_" +defs["enums"]["ImGuiComboFlags_"][10]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" defs["enums"]["ImGuiCond_"] = {} defs["enums"]["ImGuiCond_"][1] = {} defs["enums"]["ImGuiCond_"][1]["calc_value"] = 0 @@ -696,28 +757,32 @@ defs["enums"]["ImGuiConfigFlags_"][7]["name"] = "ImGuiConfigFlags_NoMouseCursorC defs["enums"]["ImGuiConfigFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiConfigFlags_"][8] = {} defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_DockingEnable" +defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_NoKeyboard" defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiConfigFlags_"][9] = {} -defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 1024 -defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_ViewportsEnable" -defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 10" +defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_DockingEnable" +defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiConfigFlags_"][10] = {} -defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 16384 -defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_DpiEnableScaleViewports" -defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 14" +defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_ViewportsEnable" +defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiConfigFlags_"][11] = {} -defs["enums"]["ImGuiConfigFlags_"][11]["calc_value"] = 32768 -defs["enums"]["ImGuiConfigFlags_"][11]["name"] = "ImGuiConfigFlags_DpiEnableScaleFonts" -defs["enums"]["ImGuiConfigFlags_"][11]["value"] = "1 << 15" +defs["enums"]["ImGuiConfigFlags_"][11]["calc_value"] = 16384 +defs["enums"]["ImGuiConfigFlags_"][11]["name"] = "ImGuiConfigFlags_DpiEnableScaleViewports" +defs["enums"]["ImGuiConfigFlags_"][11]["value"] = "1 << 14" defs["enums"]["ImGuiConfigFlags_"][12] = {} -defs["enums"]["ImGuiConfigFlags_"][12]["calc_value"] = 1048576 -defs["enums"]["ImGuiConfigFlags_"][12]["name"] = "ImGuiConfigFlags_IsSRGB" -defs["enums"]["ImGuiConfigFlags_"][12]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][12]["calc_value"] = 32768 +defs["enums"]["ImGuiConfigFlags_"][12]["name"] = "ImGuiConfigFlags_DpiEnableScaleFonts" +defs["enums"]["ImGuiConfigFlags_"][12]["value"] = "1 << 15" defs["enums"]["ImGuiConfigFlags_"][13] = {} -defs["enums"]["ImGuiConfigFlags_"][13]["calc_value"] = 2097152 -defs["enums"]["ImGuiConfigFlags_"][13]["name"] = "ImGuiConfigFlags_IsTouchScreen" -defs["enums"]["ImGuiConfigFlags_"][13]["value"] = "1 << 21" +defs["enums"]["ImGuiConfigFlags_"][13]["calc_value"] = 1048576 +defs["enums"]["ImGuiConfigFlags_"][13]["name"] = "ImGuiConfigFlags_IsSRGB" +defs["enums"]["ImGuiConfigFlags_"][13]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][14] = {} +defs["enums"]["ImGuiConfigFlags_"][14]["calc_value"] = 2097152 +defs["enums"]["ImGuiConfigFlags_"][14]["name"] = "ImGuiConfigFlags_IsTouchScreen" +defs["enums"]["ImGuiConfigFlags_"][14]["value"] = "1 << 21" defs["enums"]["ImGuiContextHookType"] = {} defs["enums"]["ImGuiContextHookType"][1] = {} defs["enums"]["ImGuiContextHookType"][1]["calc_value"] = 0 @@ -766,15 +831,15 @@ defs["enums"]["ImGuiDataAuthority_"][3]["name"] = "ImGuiDataAuthority_Window" defs["enums"]["ImGuiDataAuthority_"][3]["value"] = "2" defs["enums"]["ImGuiDataTypePrivate_"] = {} defs["enums"]["ImGuiDataTypePrivate_"][1] = {} -defs["enums"]["ImGuiDataTypePrivate_"][1]["calc_value"] = 11 +defs["enums"]["ImGuiDataTypePrivate_"][1]["calc_value"] = 12 defs["enums"]["ImGuiDataTypePrivate_"][1]["name"] = "ImGuiDataType_String" defs["enums"]["ImGuiDataTypePrivate_"][1]["value"] = "ImGuiDataType_COUNT + 1" defs["enums"]["ImGuiDataTypePrivate_"][2] = {} -defs["enums"]["ImGuiDataTypePrivate_"][2]["calc_value"] = 12 +defs["enums"]["ImGuiDataTypePrivate_"][2]["calc_value"] = 13 defs["enums"]["ImGuiDataTypePrivate_"][2]["name"] = "ImGuiDataType_Pointer" defs["enums"]["ImGuiDataTypePrivate_"][2]["value"] = "ImGuiDataType_COUNT + 1+1" defs["enums"]["ImGuiDataTypePrivate_"][3] = {} -defs["enums"]["ImGuiDataTypePrivate_"][3]["calc_value"] = 13 +defs["enums"]["ImGuiDataTypePrivate_"][3]["calc_value"] = 14 defs["enums"]["ImGuiDataTypePrivate_"][3]["name"] = "ImGuiDataType_ID" defs["enums"]["ImGuiDataTypePrivate_"][3]["value"] = "ImGuiDataType_COUNT + 1+1+1" defs["enums"]["ImGuiDataType_"] = {} @@ -820,8 +885,12 @@ defs["enums"]["ImGuiDataType_"][10]["name"] = "ImGuiDataType_Double" defs["enums"]["ImGuiDataType_"][10]["value"] = "9" defs["enums"]["ImGuiDataType_"][11] = {} defs["enums"]["ImGuiDataType_"][11]["calc_value"] = 10 -defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_Bool" defs["enums"]["ImGuiDataType_"][11]["value"] = "10" +defs["enums"]["ImGuiDataType_"][12] = {} +defs["enums"]["ImGuiDataType_"][12]["calc_value"] = 11 +defs["enums"]["ImGuiDataType_"][12]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][12]["value"] = "11" defs["enums"]["ImGuiDebugLogFlags_"] = {} defs["enums"]["ImGuiDebugLogFlags_"][1] = {} defs["enums"]["ImGuiDebugLogFlags_"][1]["calc_value"] = 0 @@ -849,49 +918,61 @@ defs["enums"]["ImGuiDebugLogFlags_"][6]["name"] = "ImGuiDebugLogFlags_EventClipp defs["enums"]["ImGuiDebugLogFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDebugLogFlags_"][7] = {} defs["enums"]["ImGuiDebugLogFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDebugLogFlags_"][7]["name"] = "ImGuiDebugLogFlags_EventIO" +defs["enums"]["ImGuiDebugLogFlags_"][7]["name"] = "ImGuiDebugLogFlags_EventSelection" defs["enums"]["ImGuiDebugLogFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDebugLogFlags_"][8] = {} defs["enums"]["ImGuiDebugLogFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventDocking" +defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventIO" defs["enums"]["ImGuiDebugLogFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDebugLogFlags_"][9] = {} defs["enums"]["ImGuiDebugLogFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventInputRouting" defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDebugLogFlags_"][10] = {} -defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 255 -defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventMask_" -defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventDocking" +defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiDebugLogFlags_"][11] = {} -defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 1024 -defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_OutputToTTY" -defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 10" -defs["enums"]["ImGuiDir_"] = {} -defs["enums"]["ImGuiDir_"][1] = {} -defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 -defs["enums"]["ImGuiDir_"][1]["name"] = "ImGuiDir_None" -defs["enums"]["ImGuiDir_"][1]["value"] = "-1" -defs["enums"]["ImGuiDir_"][2] = {} -defs["enums"]["ImGuiDir_"][2]["calc_value"] = 0 -defs["enums"]["ImGuiDir_"][2]["name"] = "ImGuiDir_Left" -defs["enums"]["ImGuiDir_"][2]["value"] = "0" -defs["enums"]["ImGuiDir_"][3] = {} -defs["enums"]["ImGuiDir_"][3]["calc_value"] = 1 -defs["enums"]["ImGuiDir_"][3]["name"] = "ImGuiDir_Right" -defs["enums"]["ImGuiDir_"][3]["value"] = "1" -defs["enums"]["ImGuiDir_"][4] = {} -defs["enums"]["ImGuiDir_"][4]["calc_value"] = 2 -defs["enums"]["ImGuiDir_"][4]["name"] = "ImGuiDir_Up" -defs["enums"]["ImGuiDir_"][4]["value"] = "2" -defs["enums"]["ImGuiDir_"][5] = {} -defs["enums"]["ImGuiDir_"][5]["calc_value"] = 3 -defs["enums"]["ImGuiDir_"][5]["name"] = "ImGuiDir_Down" -defs["enums"]["ImGuiDir_"][5]["value"] = "3" -defs["enums"]["ImGuiDir_"][6] = {} -defs["enums"]["ImGuiDir_"][6]["calc_value"] = 4 -defs["enums"]["ImGuiDir_"][6]["name"] = "ImGuiDir_COUNT" -defs["enums"]["ImGuiDir_"][6]["value"] = "4" +defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiDebugLogFlags_"][12] = {} +defs["enums"]["ImGuiDebugLogFlags_"][12]["calc_value"] = 1023 +defs["enums"]["ImGuiDebugLogFlags_"][12]["name"] = "ImGuiDebugLogFlags_EventMask_" +defs["enums"]["ImGuiDebugLogFlags_"][12]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][13] = {} +defs["enums"]["ImGuiDebugLogFlags_"][13]["calc_value"] = 1048576 +defs["enums"]["ImGuiDebugLogFlags_"][13]["name"] = "ImGuiDebugLogFlags_OutputToTTY" +defs["enums"]["ImGuiDebugLogFlags_"][13]["value"] = "1 << 20" +defs["enums"]["ImGuiDebugLogFlags_"][14] = {} +defs["enums"]["ImGuiDebugLogFlags_"][14]["calc_value"] = 2097152 +defs["enums"]["ImGuiDebugLogFlags_"][14]["name"] = "ImGuiDebugLogFlags_OutputToTestEngine" +defs["enums"]["ImGuiDebugLogFlags_"][14]["value"] = "1 << 21" +defs["enums"]["ImGuiDir"] = {} +defs["enums"]["ImGuiDir"][1] = {} +defs["enums"]["ImGuiDir"][1]["calc_value"] = -1 +defs["enums"]["ImGuiDir"][1]["name"] = "ImGuiDir_None" +defs["enums"]["ImGuiDir"][1]["value"] = "-1" +defs["enums"]["ImGuiDir"][2] = {} +defs["enums"]["ImGuiDir"][2]["calc_value"] = 0 +defs["enums"]["ImGuiDir"][2]["name"] = "ImGuiDir_Left" +defs["enums"]["ImGuiDir"][2]["value"] = "0" +defs["enums"]["ImGuiDir"][3] = {} +defs["enums"]["ImGuiDir"][3]["calc_value"] = 1 +defs["enums"]["ImGuiDir"][3]["name"] = "ImGuiDir_Right" +defs["enums"]["ImGuiDir"][3]["value"] = "1" +defs["enums"]["ImGuiDir"][4] = {} +defs["enums"]["ImGuiDir"][4]["calc_value"] = 2 +defs["enums"]["ImGuiDir"][4]["name"] = "ImGuiDir_Up" +defs["enums"]["ImGuiDir"][4]["value"] = "2" +defs["enums"]["ImGuiDir"][5] = {} +defs["enums"]["ImGuiDir"][5]["calc_value"] = 3 +defs["enums"]["ImGuiDir"][5]["name"] = "ImGuiDir_Down" +defs["enums"]["ImGuiDir"][5]["value"] = "3" +defs["enums"]["ImGuiDir"][6] = {} +defs["enums"]["ImGuiDir"][6]["calc_value"] = 4 +defs["enums"]["ImGuiDir"][6]["name"] = "ImGuiDir_COUNT" +defs["enums"]["ImGuiDir"][6]["value"] = "4" defs["enums"]["ImGuiDockNodeFlagsPrivate_"] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][1] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][1]["calc_value"] = 1024 @@ -919,56 +1000,52 @@ defs["enums"]["ImGuiDockNodeFlagsPrivate_"][6]["name"] = "ImGuiDockNodeFlags_NoC defs["enums"]["ImGuiDockNodeFlagsPrivate_"][6]["value"] = "1 << 15" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["calc_value"] = 65536 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["name"] = "ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["name"] = "ImGuiDockNodeFlags_NoResizeX" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["value"] = "1 << 16" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["calc_value"] = 131072 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["name"] = "ImGuiDockNodeFlags_NoDockingSplitMe" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["name"] = "ImGuiDockNodeFlags_NoResizeY" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["value"] = "1 << 17" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["calc_value"] = 262144 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["name"] = "ImGuiDockNodeFlags_NoDockingSplitOther" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["name"] = "ImGuiDockNodeFlags_DockedWindowsInFocusRoute" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["value"] = "1 << 18" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["calc_value"] = 524288 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["name"] = "ImGuiDockNodeFlags_NoDockingOverMe" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["name"] = "ImGuiDockNodeFlags_NoDockingSplitOther" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["value"] = "1 << 19" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["calc_value"] = 1048576 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["name"] = "ImGuiDockNodeFlags_NoDockingOverOther" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["name"] = "ImGuiDockNodeFlags_NoDockingOverMe" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["value"] = "1 << 20" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["calc_value"] = 2097152 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["name"] = "ImGuiDockNodeFlags_NoDockingOverEmpty" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["name"] = "ImGuiDockNodeFlags_NoDockingOverOther" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["value"] = "1 << 21" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["calc_value"] = 4194304 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["name"] = "ImGuiDockNodeFlags_NoResizeX" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["name"] = "ImGuiDockNodeFlags_NoDockingOverEmpty" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["value"] = "1 << 22" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["calc_value"] = 8388608 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["name"] = "ImGuiDockNodeFlags_NoResizeY" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["value"] = "1 << 23" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["calc_value"] = 7864336 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["name"] = "ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["value"] = "ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["calc_value"] = -1 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["name"] = "ImGuiDockNodeFlags_SharedFlagsInheritMask_" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["value"] = "~0" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["calc_value"] = 12582944 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["calc_value"] = 196640 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["name"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["value"] = "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["value"] = "(int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["calc_value"] = 12713072 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["name"] = "ImGuiDockNodeFlags_LocalFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["value"] = "ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["calc_value"] = 260208 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["name"] = "ImGuiDockNodeFlags_LocalFlagsTransferMask_" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["value"] = "(int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["calc_value"] = 12712048 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["name"] = "ImGuiDockNodeFlags_LocalFlagsTransferMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["value"] = "ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19]["calc_value"] = 12712992 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19]["name"] = "ImGuiDockNodeFlags_SavedFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19]["value"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["calc_value"] = 261152 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["name"] = "ImGuiDockNodeFlags_SavedFlagsMask_" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["value"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" defs["enums"]["ImGuiDockNodeFlags_"] = {} defs["enums"]["ImGuiDockNodeFlags_"][1] = {} defs["enums"]["ImGuiDockNodeFlags_"][1]["calc_value"] = 0 @@ -980,7 +1057,7 @@ defs["enums"]["ImGuiDockNodeFlags_"][2]["name"] = "ImGuiDockNodeFlags_KeepAliveO defs["enums"]["ImGuiDockNodeFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiDockNodeFlags_"][3] = {} defs["enums"]["ImGuiDockNodeFlags_"][3]["calc_value"] = 4 -defs["enums"]["ImGuiDockNodeFlags_"][3]["name"] = "ImGuiDockNodeFlags_NoDockingInCentralNode" +defs["enums"]["ImGuiDockNodeFlags_"][3]["name"] = "ImGuiDockNodeFlags_NoDockingOverCentralNode" defs["enums"]["ImGuiDockNodeFlags_"][3]["value"] = "1 << 2" defs["enums"]["ImGuiDockNodeFlags_"][4] = {} defs["enums"]["ImGuiDockNodeFlags_"][4]["calc_value"] = 8 @@ -988,7 +1065,7 @@ defs["enums"]["ImGuiDockNodeFlags_"][4]["name"] = "ImGuiDockNodeFlags_PassthruCe defs["enums"]["ImGuiDockNodeFlags_"][4]["value"] = "1 << 3" defs["enums"]["ImGuiDockNodeFlags_"][5] = {} defs["enums"]["ImGuiDockNodeFlags_"][5]["calc_value"] = 16 -defs["enums"]["ImGuiDockNodeFlags_"][5]["name"] = "ImGuiDockNodeFlags_NoSplit" +defs["enums"]["ImGuiDockNodeFlags_"][5]["name"] = "ImGuiDockNodeFlags_NoDockingSplit" defs["enums"]["ImGuiDockNodeFlags_"][5]["value"] = "1 << 4" defs["enums"]["ImGuiDockNodeFlags_"][6] = {} defs["enums"]["ImGuiDockNodeFlags_"][6]["calc_value"] = 32 @@ -998,6 +1075,10 @@ defs["enums"]["ImGuiDockNodeFlags_"][7] = {} defs["enums"]["ImGuiDockNodeFlags_"][7]["calc_value"] = 64 defs["enums"]["ImGuiDockNodeFlags_"][7]["name"] = "ImGuiDockNodeFlags_AutoHideTabBar" defs["enums"]["ImGuiDockNodeFlags_"][7]["value"] = "1 << 6" +defs["enums"]["ImGuiDockNodeFlags_"][8] = {} +defs["enums"]["ImGuiDockNodeFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiDockNodeFlags_"][8]["name"] = "ImGuiDockNodeFlags_NoUndocking" +defs["enums"]["ImGuiDockNodeFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiDockNodeState"] = {} defs["enums"]["ImGuiDockNodeState"][1] = {} defs["enums"]["ImGuiDockNodeState"][1]["calc_value"] = 0 @@ -1042,24 +1123,45 @@ defs["enums"]["ImGuiDragDropFlags_"][6]["name"] = "ImGuiDragDropFlags_SourceExte defs["enums"]["ImGuiDragDropFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDragDropFlags_"][7] = {} defs["enums"]["ImGuiDragDropFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_SourceAutoExpirePayload" +defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_PayloadAutoExpire" defs["enums"]["ImGuiDragDropFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDragDropFlags_"][8] = {} -defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 1024 -defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" -defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 10" +defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_PayloadNoCrossContext" +defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDragDropFlags_"][9] = {} -defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 2048 -defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" -defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_PayloadNoCrossProcess" +defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDragDropFlags_"][10] = {} -defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 4096 -defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" -defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" +defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiDragDropFlags_"][11] = {} -defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 3072 -defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" -defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][12] = {} +defs["enums"]["ImGuiDragDropFlags_"][12]["calc_value"] = 4096 +defs["enums"]["ImGuiDragDropFlags_"][12]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" +defs["enums"]["ImGuiDragDropFlags_"][12]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][13] = {} +defs["enums"]["ImGuiDragDropFlags_"][13]["calc_value"] = 3072 +defs["enums"]["ImGuiDragDropFlags_"][13]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" +defs["enums"]["ImGuiDragDropFlags_"][13]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiFocusRequestFlags_"] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][1] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiFocusRequestFlags_"][1]["name"] = "ImGuiFocusRequestFlags_None" +defs["enums"]["ImGuiFocusRequestFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiFocusRequestFlags_"][2] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiFocusRequestFlags_"][2]["name"] = "ImGuiFocusRequestFlags_RestoreFocusedChild" +defs["enums"]["ImGuiFocusRequestFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiFocusRequestFlags_"][3] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiFocusRequestFlags_"][3]["name"] = "ImGuiFocusRequestFlags_UnlessBelowModal" +defs["enums"]["ImGuiFocusRequestFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiFocusedFlags_"] = {} defs["enums"]["ImGuiFocusedFlags_"][1] = {} defs["enums"]["ImGuiFocusedFlags_"][1]["calc_value"] = 0 @@ -1130,6 +1232,19 @@ defs["enums"]["ImGuiFreeTypeBuilderFlags"][10] = {} defs["enums"]["ImGuiFreeTypeBuilderFlags"][10]["calc_value"] = 512 defs["enums"]["ImGuiFreeTypeBuilderFlags"][10]["name"] = "ImGuiFreeTypeBuilderFlags_Bitmap" defs["enums"]["ImGuiFreeTypeBuilderFlags"][10]["value"] = "1 << 9" +defs["enums"]["ImGuiHoveredFlagsPrivate_"] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1]["calc_value"] = 245760 +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1]["name"] = "ImGuiHoveredFlags_DelayMask_" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1]["value"] = "ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2]["calc_value"] = 12479 +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2]["name"] = "ImGuiHoveredFlags_AllowedMaskForIsWindowHovered" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2]["value"] = "ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_DockHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3]["calc_value"] = 262048 +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3]["name"] = "ImGuiHoveredFlags_AllowedMaskForIsItemHovered" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_" defs["enums"]["ImGuiHoveredFlags_"] = {} defs["enums"]["ImGuiHoveredFlags_"][1] = {} defs["enums"]["ImGuiHoveredFlags_"][1]["calc_value"] = 0 @@ -1165,36 +1280,56 @@ defs["enums"]["ImGuiHoveredFlags_"][8]["name"] = "ImGuiHoveredFlags_AllowWhenBlo defs["enums"]["ImGuiHoveredFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiHoveredFlags_"][9] = {} defs["enums"]["ImGuiHoveredFlags_"][9]["calc_value"] = 256 -defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem" defs["enums"]["ImGuiHoveredFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiHoveredFlags_"][10] = {} defs["enums"]["ImGuiHoveredFlags_"][10]["calc_value"] = 512 -defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" +defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][10]["value"] = "1 << 9" defs["enums"]["ImGuiHoveredFlags_"][11] = {} defs["enums"]["ImGuiHoveredFlags_"][11]["calc_value"] = 1024 -defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" defs["enums"]["ImGuiHoveredFlags_"][11]["value"] = "1 << 10" defs["enums"]["ImGuiHoveredFlags_"][12] = {} -defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 416 -defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_RectOnly" -defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 2048 +defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "1 << 11" defs["enums"]["ImGuiHoveredFlags_"][13] = {} -defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 3 -defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" -defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 768 +defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][14] = {} -defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 2048 -defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_DelayNormal" -defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "1 << 11" +defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 928 +defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_RectOnly" +defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" defs["enums"]["ImGuiHoveredFlags_"][15] = {} -defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 4096 -defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_DelayShort" -defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 3 +defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" defs["enums"]["ImGuiHoveredFlags_"][16] = {} -defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 8192 -defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_NoSharedDelay" -defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 4096 +defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_ForTooltip" +defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][17] = {} +defs["enums"]["ImGuiHoveredFlags_"][17]["calc_value"] = 8192 +defs["enums"]["ImGuiHoveredFlags_"][17]["name"] = "ImGuiHoveredFlags_Stationary" +defs["enums"]["ImGuiHoveredFlags_"][17]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][18] = {} +defs["enums"]["ImGuiHoveredFlags_"][18]["calc_value"] = 16384 +defs["enums"]["ImGuiHoveredFlags_"][18]["name"] = "ImGuiHoveredFlags_DelayNone" +defs["enums"]["ImGuiHoveredFlags_"][18]["value"] = "1 << 14" +defs["enums"]["ImGuiHoveredFlags_"][19] = {} +defs["enums"]["ImGuiHoveredFlags_"][19]["calc_value"] = 32768 +defs["enums"]["ImGuiHoveredFlags_"][19]["name"] = "ImGuiHoveredFlags_DelayShort" +defs["enums"]["ImGuiHoveredFlags_"][19]["value"] = "1 << 15" +defs["enums"]["ImGuiHoveredFlags_"][20] = {} +defs["enums"]["ImGuiHoveredFlags_"][20]["calc_value"] = 65536 +defs["enums"]["ImGuiHoveredFlags_"][20]["name"] = "ImGuiHoveredFlags_DelayNormal" +defs["enums"]["ImGuiHoveredFlags_"][20]["value"] = "1 << 16" +defs["enums"]["ImGuiHoveredFlags_"][21] = {} +defs["enums"]["ImGuiHoveredFlags_"][21]["calc_value"] = 131072 +defs["enums"]["ImGuiHoveredFlags_"][21]["name"] = "ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlags_"][21]["value"] = "1 << 17" defs["enums"]["ImGuiInputEventType"] = {} defs["enums"]["ImGuiInputEventType"][1] = {} defs["enums"]["ImGuiInputEventType"][1]["calc_value"] = 0 @@ -1232,6 +1367,103 @@ defs["enums"]["ImGuiInputEventType"][9] = {} defs["enums"]["ImGuiInputEventType"][9]["calc_value"] = 8 defs["enums"]["ImGuiInputEventType"][9]["name"] = "ImGuiInputEventType_COUNT" defs["enums"]["ImGuiInputEventType"][9]["value"] = "8" +defs["enums"]["ImGuiInputFlagsPrivate_"] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][1] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][1]["calc_value"] = 2 +defs["enums"]["ImGuiInputFlagsPrivate_"][1]["name"] = "ImGuiInputFlags_RepeatRateDefault" +defs["enums"]["ImGuiInputFlagsPrivate_"][1]["value"] = "1 << 1" +defs["enums"]["ImGuiInputFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][2]["calc_value"] = 4 +defs["enums"]["ImGuiInputFlagsPrivate_"][2]["name"] = "ImGuiInputFlags_RepeatRateNavMove" +defs["enums"]["ImGuiInputFlagsPrivate_"][2]["value"] = "1 << 2" +defs["enums"]["ImGuiInputFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][3]["calc_value"] = 8 +defs["enums"]["ImGuiInputFlagsPrivate_"][3]["name"] = "ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlagsPrivate_"][3]["value"] = "1 << 3" +defs["enums"]["ImGuiInputFlagsPrivate_"][4] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][4]["calc_value"] = 16 +defs["enums"]["ImGuiInputFlagsPrivate_"][4]["name"] = "ImGuiInputFlags_RepeatUntilRelease" +defs["enums"]["ImGuiInputFlagsPrivate_"][4]["value"] = "1 << 4" +defs["enums"]["ImGuiInputFlagsPrivate_"][5] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][5]["calc_value"] = 32 +defs["enums"]["ImGuiInputFlagsPrivate_"][5]["name"] = "ImGuiInputFlags_RepeatUntilKeyModsChange" +defs["enums"]["ImGuiInputFlagsPrivate_"][5]["value"] = "1 << 5" +defs["enums"]["ImGuiInputFlagsPrivate_"][6] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][6]["calc_value"] = 64 +defs["enums"]["ImGuiInputFlagsPrivate_"][6]["name"] = "ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone" +defs["enums"]["ImGuiInputFlagsPrivate_"][6]["value"] = "1 << 6" +defs["enums"]["ImGuiInputFlagsPrivate_"][7] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][7]["calc_value"] = 128 +defs["enums"]["ImGuiInputFlagsPrivate_"][7]["name"] = "ImGuiInputFlags_RepeatUntilOtherKeyPress" +defs["enums"]["ImGuiInputFlagsPrivate_"][7]["value"] = "1 << 7" +defs["enums"]["ImGuiInputFlagsPrivate_"][8] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][8]["calc_value"] = 1048576 +defs["enums"]["ImGuiInputFlagsPrivate_"][8]["name"] = "ImGuiInputFlags_LockThisFrame" +defs["enums"]["ImGuiInputFlagsPrivate_"][8]["value"] = "1 << 20" +defs["enums"]["ImGuiInputFlagsPrivate_"][9] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][9]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputFlagsPrivate_"][9]["name"] = "ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlagsPrivate_"][9]["value"] = "1 << 21" +defs["enums"]["ImGuiInputFlagsPrivate_"][10] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][10]["calc_value"] = 4194304 +defs["enums"]["ImGuiInputFlagsPrivate_"][10]["name"] = "ImGuiInputFlags_CondHovered" +defs["enums"]["ImGuiInputFlagsPrivate_"][10]["value"] = "1 << 22" +defs["enums"]["ImGuiInputFlagsPrivate_"][11] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][11]["calc_value"] = 8388608 +defs["enums"]["ImGuiInputFlagsPrivate_"][11]["name"] = "ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlagsPrivate_"][11]["value"] = "1 << 23" +defs["enums"]["ImGuiInputFlagsPrivate_"][12] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][12]["calc_value"] = 12582912 +defs["enums"]["ImGuiInputFlagsPrivate_"][12]["name"] = "ImGuiInputFlags_CondDefault_" +defs["enums"]["ImGuiInputFlagsPrivate_"][12]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlagsPrivate_"][13] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][13]["calc_value"] = 14 +defs["enums"]["ImGuiInputFlagsPrivate_"][13]["name"] = "ImGuiInputFlags_RepeatRateMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][13]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlagsPrivate_"][14] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][14]["calc_value"] = 240 +defs["enums"]["ImGuiInputFlagsPrivate_"][14]["name"] = "ImGuiInputFlags_RepeatUntilMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][14]["value"] = "ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress" +defs["enums"]["ImGuiInputFlagsPrivate_"][15] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][15]["calc_value"] = 255 +defs["enums"]["ImGuiInputFlagsPrivate_"][15]["name"] = "ImGuiInputFlags_RepeatMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][15]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][16] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][16]["calc_value"] = 12582912 +defs["enums"]["ImGuiInputFlagsPrivate_"][16]["name"] = "ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][16]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlagsPrivate_"][17] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][17]["calc_value"] = 15360 +defs["enums"]["ImGuiInputFlagsPrivate_"][17]["name"] = "ImGuiInputFlags_RouteTypeMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][17]["value"] = "ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlagsPrivate_"][18] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][18]["calc_value"] = 245760 +defs["enums"]["ImGuiInputFlagsPrivate_"][18]["name"] = "ImGuiInputFlags_RouteOptionsMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][18]["value"] = "ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow" +defs["enums"]["ImGuiInputFlagsPrivate_"][19] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][19]["calc_value"] = 255 +defs["enums"]["ImGuiInputFlagsPrivate_"][19]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" +defs["enums"]["ImGuiInputFlagsPrivate_"][19]["value"] = "ImGuiInputFlags_RepeatMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][20] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][20]["calc_value"] = 1 +defs["enums"]["ImGuiInputFlagsPrivate_"][20]["name"] = "ImGuiInputFlags_SupportedByIsMouseClicked" +defs["enums"]["ImGuiInputFlagsPrivate_"][20]["value"] = "ImGuiInputFlags_Repeat" +defs["enums"]["ImGuiInputFlagsPrivate_"][21] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][21]["calc_value"] = 261375 +defs["enums"]["ImGuiInputFlagsPrivate_"][21]["name"] = "ImGuiInputFlags_SupportedByShortcut" +defs["enums"]["ImGuiInputFlagsPrivate_"][21]["value"] = "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][22] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][22]["calc_value"] = 523519 +defs["enums"]["ImGuiInputFlagsPrivate_"][22]["name"] = "ImGuiInputFlags_SupportedBySetNextItemShortcut" +defs["enums"]["ImGuiInputFlagsPrivate_"][22]["value"] = "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip" +defs["enums"]["ImGuiInputFlagsPrivate_"][23] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][23]["calc_value"] = 3145728 +defs["enums"]["ImGuiInputFlagsPrivate_"][23]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" +defs["enums"]["ImGuiInputFlagsPrivate_"][23]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlagsPrivate_"][24] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][24]["calc_value"] = 15728640 +defs["enums"]["ImGuiInputFlagsPrivate_"][24]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" +defs["enums"]["ImGuiInputFlagsPrivate_"][24]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" defs["enums"]["ImGuiInputFlags_"] = {} defs["enums"]["ImGuiInputFlags_"][1] = {} defs["enums"]["ImGuiInputFlags_"][1]["calc_value"] = 0 @@ -1242,93 +1474,41 @@ defs["enums"]["ImGuiInputFlags_"][2]["calc_value"] = 1 defs["enums"]["ImGuiInputFlags_"][2]["name"] = "ImGuiInputFlags_Repeat" defs["enums"]["ImGuiInputFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiInputFlags_"][3] = {} -defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RepeatRateDefault" -defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 1024 +defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RouteActive" +defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 10" defs["enums"]["ImGuiInputFlags_"][4] = {} -defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RepeatRateNavMove" -defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 2048 +defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RouteFocused" +defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 11" defs["enums"]["ImGuiInputFlags_"][5] = {} -defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RepeatRateNavTweak" -defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 4096 +defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RouteGlobal" +defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 12" defs["enums"]["ImGuiInputFlags_"][6] = {} -defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 14 -defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RepeatRateMask_" -defs["enums"]["ImGuiInputFlags_"][6]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 8192 +defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlags_"][6]["value"] = "1 << 13" defs["enums"]["ImGuiInputFlags_"][7] = {} -defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16 -defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_CondHovered" -defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 4" +defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16384 +defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_RouteOverFocused" +defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 14" defs["enums"]["ImGuiInputFlags_"][8] = {} -defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32 -defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_CondActive" -defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 5" +defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32768 +defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_RouteOverActive" +defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 15" defs["enums"]["ImGuiInputFlags_"][9] = {} -defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 48 -defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_CondDefault_" -defs["enums"]["ImGuiInputFlags_"][9]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 65536 +defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][9]["value"] = "1 << 16" defs["enums"]["ImGuiInputFlags_"][10] = {} -defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 48 -defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_CondMask_" -defs["enums"]["ImGuiInputFlags_"][10]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 131072 +defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_RouteFromRootWindow" +defs["enums"]["ImGuiInputFlags_"][10]["value"] = "1 << 17" defs["enums"]["ImGuiInputFlags_"][11] = {} -defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_LockThisFrame" -defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 6" -defs["enums"]["ImGuiInputFlags_"][12] = {} -defs["enums"]["ImGuiInputFlags_"][12]["calc_value"] = 128 -defs["enums"]["ImGuiInputFlags_"][12]["name"] = "ImGuiInputFlags_LockUntilRelease" -defs["enums"]["ImGuiInputFlags_"][12]["value"] = "1 << 7" -defs["enums"]["ImGuiInputFlags_"][13] = {} -defs["enums"]["ImGuiInputFlags_"][13]["calc_value"] = 256 -defs["enums"]["ImGuiInputFlags_"][13]["name"] = "ImGuiInputFlags_RouteFocused" -defs["enums"]["ImGuiInputFlags_"][13]["value"] = "1 << 8" -defs["enums"]["ImGuiInputFlags_"][14] = {} -defs["enums"]["ImGuiInputFlags_"][14]["calc_value"] = 512 -defs["enums"]["ImGuiInputFlags_"][14]["name"] = "ImGuiInputFlags_RouteGlobalLow" -defs["enums"]["ImGuiInputFlags_"][14]["value"] = "1 << 9" -defs["enums"]["ImGuiInputFlags_"][15] = {} -defs["enums"]["ImGuiInputFlags_"][15]["calc_value"] = 1024 -defs["enums"]["ImGuiInputFlags_"][15]["name"] = "ImGuiInputFlags_RouteGlobal" -defs["enums"]["ImGuiInputFlags_"][15]["value"] = "1 << 10" -defs["enums"]["ImGuiInputFlags_"][16] = {} -defs["enums"]["ImGuiInputFlags_"][16]["calc_value"] = 2048 -defs["enums"]["ImGuiInputFlags_"][16]["name"] = "ImGuiInputFlags_RouteGlobalHigh" -defs["enums"]["ImGuiInputFlags_"][16]["value"] = "1 << 11" -defs["enums"]["ImGuiInputFlags_"][17] = {} -defs["enums"]["ImGuiInputFlags_"][17]["calc_value"] = 3840 -defs["enums"]["ImGuiInputFlags_"][17]["name"] = "ImGuiInputFlags_RouteMask_" -defs["enums"]["ImGuiInputFlags_"][17]["value"] = "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" -defs["enums"]["ImGuiInputFlags_"][18] = {} -defs["enums"]["ImGuiInputFlags_"][18]["calc_value"] = 4096 -defs["enums"]["ImGuiInputFlags_"][18]["name"] = "ImGuiInputFlags_RouteAlways" -defs["enums"]["ImGuiInputFlags_"][18]["value"] = "1 << 12" -defs["enums"]["ImGuiInputFlags_"][19] = {} -defs["enums"]["ImGuiInputFlags_"][19]["calc_value"] = 8192 -defs["enums"]["ImGuiInputFlags_"][19]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" -defs["enums"]["ImGuiInputFlags_"][19]["value"] = "1 << 13" -defs["enums"]["ImGuiInputFlags_"][20] = {} -defs["enums"]["ImGuiInputFlags_"][20]["calc_value"] = 12288 -defs["enums"]["ImGuiInputFlags_"][20]["name"] = "ImGuiInputFlags_RouteExtraMask_" -defs["enums"]["ImGuiInputFlags_"][20]["value"] = "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" -defs["enums"]["ImGuiInputFlags_"][21] = {} -defs["enums"]["ImGuiInputFlags_"][21]["calc_value"] = 15 -defs["enums"]["ImGuiInputFlags_"][21]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" -defs["enums"]["ImGuiInputFlags_"][21]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_" -defs["enums"]["ImGuiInputFlags_"][22] = {} -defs["enums"]["ImGuiInputFlags_"][22]["calc_value"] = 16143 -defs["enums"]["ImGuiInputFlags_"][22]["name"] = "ImGuiInputFlags_SupportedByShortcut" -defs["enums"]["ImGuiInputFlags_"][22]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" -defs["enums"]["ImGuiInputFlags_"][23] = {} -defs["enums"]["ImGuiInputFlags_"][23]["calc_value"] = 192 -defs["enums"]["ImGuiInputFlags_"][23]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" -defs["enums"]["ImGuiInputFlags_"][23]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" -defs["enums"]["ImGuiInputFlags_"][24] = {} -defs["enums"]["ImGuiInputFlags_"][24]["calc_value"] = 240 -defs["enums"]["ImGuiInputFlags_"][24]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" -defs["enums"]["ImGuiInputFlags_"][24]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 262144 +defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_Tooltip" +defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 18" defs["enums"]["ImGuiInputSource"] = {} defs["enums"]["ImGuiInputSource"][1] = {} defs["enums"]["ImGuiInputSource"][1]["calc_value"] = 0 @@ -1348,16 +1528,8 @@ defs["enums"]["ImGuiInputSource"][4]["name"] = "ImGuiInputSource_Gamepad" defs["enums"]["ImGuiInputSource"][4]["value"] = "3" defs["enums"]["ImGuiInputSource"][5] = {} defs["enums"]["ImGuiInputSource"][5]["calc_value"] = 4 -defs["enums"]["ImGuiInputSource"][5]["name"] = "ImGuiInputSource_Clipboard" +defs["enums"]["ImGuiInputSource"][5]["name"] = "ImGuiInputSource_COUNT" defs["enums"]["ImGuiInputSource"][5]["value"] = "4" -defs["enums"]["ImGuiInputSource"][6] = {} -defs["enums"]["ImGuiInputSource"][6]["calc_value"] = 5 -defs["enums"]["ImGuiInputSource"][6]["name"] = "ImGuiInputSource_Nav" -defs["enums"]["ImGuiInputSource"][6]["value"] = "5" -defs["enums"]["ImGuiInputSource"][7] = {} -defs["enums"]["ImGuiInputSource"][7]["calc_value"] = 6 -defs["enums"]["ImGuiInputSource"][7]["name"] = "ImGuiInputSource_COUNT" -defs["enums"]["ImGuiInputSource"][7]["value"] = "6" defs["enums"]["ImGuiInputTextFlagsPrivate_"] = {} defs["enums"]["ImGuiInputTextFlagsPrivate_"][1] = {} defs["enums"]["ImGuiInputTextFlagsPrivate_"][1]["calc_value"] = 67108864 @@ -1371,6 +1543,10 @@ defs["enums"]["ImGuiInputTextFlagsPrivate_"][3] = {} defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["calc_value"] = 268435456 defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["name"] = "ImGuiInputTextFlags_MergedItem" defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["value"] = "1 << 28" +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4] = {} +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["calc_value"] = 536870912 +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["name"] = "ImGuiInputTextFlags_LocalizeDecimalPoint" +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["value"] = "1 << 29" defs["enums"]["ImGuiInputTextFlags_"] = {} defs["enums"]["ImGuiInputTextFlags_"][1] = {} defs["enums"]["ImGuiInputTextFlags_"][1]["calc_value"] = 0 @@ -1386,59 +1562,59 @@ defs["enums"]["ImGuiInputTextFlags_"][3]["name"] = "ImGuiInputTextFlags_CharsHex defs["enums"]["ImGuiInputTextFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiInputTextFlags_"][4] = {} defs["enums"]["ImGuiInputTextFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsUppercase" +defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsScientific" defs["enums"]["ImGuiInputTextFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiInputTextFlags_"][5] = {} defs["enums"]["ImGuiInputTextFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsNoBlank" +defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsUppercase" defs["enums"]["ImGuiInputTextFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiInputTextFlags_"][6] = {} defs["enums"]["ImGuiInputTextFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_AutoSelectAll" +defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_CharsNoBlank" defs["enums"]["ImGuiInputTextFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiInputTextFlags_"][7] = {} defs["enums"]["ImGuiInputTextFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" +defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_AllowTabInput" defs["enums"]["ImGuiInputTextFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiInputTextFlags_"][8] = {} defs["enums"]["ImGuiInputTextFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_CallbackCompletion" +defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" defs["enums"]["ImGuiInputTextFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiInputTextFlags_"][9] = {} defs["enums"]["ImGuiInputTextFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_CallbackHistory" +defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" defs["enums"]["ImGuiInputTextFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiInputTextFlags_"][10] = {} defs["enums"]["ImGuiInputTextFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CallbackAlways" +defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" defs["enums"]["ImGuiInputTextFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiInputTextFlags_"][11] = {} defs["enums"]["ImGuiInputTextFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" +defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_ReadOnly" defs["enums"]["ImGuiInputTextFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiInputTextFlags_"][12] = {} defs["enums"]["ImGuiInputTextFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_AllowTabInput" +defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_Password" defs["enums"]["ImGuiInputTextFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiInputTextFlags_"][13] = {} defs["enums"]["ImGuiInputTextFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" +defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" defs["enums"]["ImGuiInputTextFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiInputTextFlags_"][14] = {} defs["enums"]["ImGuiInputTextFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" +defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_AutoSelectAll" defs["enums"]["ImGuiInputTextFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiInputTextFlags_"][15] = {} defs["enums"]["ImGuiInputTextFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" +defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_ParseEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiInputTextFlags_"][16] = {} defs["enums"]["ImGuiInputTextFlags_"][16]["calc_value"] = 16384 -defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_ReadOnly" +defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_DisplayEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][16]["value"] = "1 << 14" defs["enums"]["ImGuiInputTextFlags_"][17] = {} defs["enums"]["ImGuiInputTextFlags_"][17]["calc_value"] = 32768 -defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_Password" +defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" defs["enums"]["ImGuiInputTextFlags_"][17]["value"] = "1 << 15" defs["enums"]["ImGuiInputTextFlags_"][18] = {} defs["enums"]["ImGuiInputTextFlags_"][18]["calc_value"] = 65536 @@ -1446,20 +1622,65 @@ defs["enums"]["ImGuiInputTextFlags_"][18]["name"] = "ImGuiInputTextFlags_NoUndoR defs["enums"]["ImGuiInputTextFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiInputTextFlags_"][19] = {} defs["enums"]["ImGuiInputTextFlags_"][19]["calc_value"] = 131072 -defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CharsScientific" +defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CallbackCompletion" defs["enums"]["ImGuiInputTextFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiInputTextFlags_"][20] = {} defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 -defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackHistory" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackAlways" defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][23] = {} +defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" +defs["enums"]["ImGuiInputTextFlags_"][24] = {} +defs["enums"]["ImGuiInputTextFlags_"][24]["calc_value"] = 4194304 +defs["enums"]["ImGuiInputTextFlags_"][24]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][24]["value"] = "1 << 22" +defs["enums"]["ImGuiItemFlagsPrivate_"] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][1] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][1]["calc_value"] = 1024 +defs["enums"]["ImGuiItemFlagsPrivate_"][1]["name"] = "ImGuiItemFlags_Disabled" +defs["enums"]["ImGuiItemFlagsPrivate_"][1]["value"] = "1 << 10" +defs["enums"]["ImGuiItemFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][2]["calc_value"] = 2048 +defs["enums"]["ImGuiItemFlagsPrivate_"][2]["name"] = "ImGuiItemFlags_ReadOnly" +defs["enums"]["ImGuiItemFlagsPrivate_"][2]["value"] = "1 << 11" +defs["enums"]["ImGuiItemFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][3]["calc_value"] = 4096 +defs["enums"]["ImGuiItemFlagsPrivate_"][3]["name"] = "ImGuiItemFlags_MixedValue" +defs["enums"]["ImGuiItemFlagsPrivate_"][3]["value"] = "1 << 12" +defs["enums"]["ImGuiItemFlagsPrivate_"][4] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][4]["calc_value"] = 8192 +defs["enums"]["ImGuiItemFlagsPrivate_"][4]["name"] = "ImGuiItemFlags_NoWindowHoverableCheck" +defs["enums"]["ImGuiItemFlagsPrivate_"][4]["value"] = "1 << 13" +defs["enums"]["ImGuiItemFlagsPrivate_"][5] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][5]["calc_value"] = 16384 +defs["enums"]["ImGuiItemFlagsPrivate_"][5]["name"] = "ImGuiItemFlags_AllowOverlap" +defs["enums"]["ImGuiItemFlagsPrivate_"][5]["value"] = "1 << 14" +defs["enums"]["ImGuiItemFlagsPrivate_"][6] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][6]["calc_value"] = 1048576 +defs["enums"]["ImGuiItemFlagsPrivate_"][6]["name"] = "ImGuiItemFlags_Inputable" +defs["enums"]["ImGuiItemFlagsPrivate_"][6]["value"] = "1 << 20" +defs["enums"]["ImGuiItemFlagsPrivate_"][7] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][7]["calc_value"] = 2097152 +defs["enums"]["ImGuiItemFlagsPrivate_"][7]["name"] = "ImGuiItemFlags_HasSelectionUserData" +defs["enums"]["ImGuiItemFlagsPrivate_"][7]["value"] = "1 << 21" +defs["enums"]["ImGuiItemFlagsPrivate_"][8] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][8]["calc_value"] = 4194304 +defs["enums"]["ImGuiItemFlagsPrivate_"][8]["name"] = "ImGuiItemFlags_IsMultiSelect" +defs["enums"]["ImGuiItemFlagsPrivate_"][8]["value"] = "1 << 22" +defs["enums"]["ImGuiItemFlagsPrivate_"][9] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][9]["calc_value"] = 16 +defs["enums"]["ImGuiItemFlagsPrivate_"][9]["name"] = "ImGuiItemFlags_Default_" +defs["enums"]["ImGuiItemFlagsPrivate_"][9]["value"] = "ImGuiItemFlags_AutoClosePopups" defs["enums"]["ImGuiItemFlags_"] = {} defs["enums"]["ImGuiItemFlags_"][1] = {} defs["enums"]["ImGuiItemFlags_"][1]["calc_value"] = 0 @@ -1471,40 +1692,24 @@ defs["enums"]["ImGuiItemFlags_"][2]["name"] = "ImGuiItemFlags_NoTabStop" defs["enums"]["ImGuiItemFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiItemFlags_"][3] = {} defs["enums"]["ImGuiItemFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiItemFlags_"][3]["name"] = "ImGuiItemFlags_ButtonRepeat" +defs["enums"]["ImGuiItemFlags_"][3]["name"] = "ImGuiItemFlags_NoNav" defs["enums"]["ImGuiItemFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiItemFlags_"][4] = {} defs["enums"]["ImGuiItemFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiItemFlags_"][4]["name"] = "ImGuiItemFlags_Disabled" +defs["enums"]["ImGuiItemFlags_"][4]["name"] = "ImGuiItemFlags_NoNavDefaultFocus" defs["enums"]["ImGuiItemFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiItemFlags_"][5] = {} defs["enums"]["ImGuiItemFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiItemFlags_"][5]["name"] = "ImGuiItemFlags_NoNav" +defs["enums"]["ImGuiItemFlags_"][5]["name"] = "ImGuiItemFlags_ButtonRepeat" defs["enums"]["ImGuiItemFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiItemFlags_"][6] = {} defs["enums"]["ImGuiItemFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiItemFlags_"][6]["name"] = "ImGuiItemFlags_NoNavDefaultFocus" +defs["enums"]["ImGuiItemFlags_"][6]["name"] = "ImGuiItemFlags_AutoClosePopups" defs["enums"]["ImGuiItemFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiItemFlags_"][7] = {} defs["enums"]["ImGuiItemFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiItemFlags_"][7]["name"] = "ImGuiItemFlags_SelectableDontClosePopup" +defs["enums"]["ImGuiItemFlags_"][7]["name"] = "ImGuiItemFlags_AllowDuplicateId" defs["enums"]["ImGuiItemFlags_"][7]["value"] = "1 << 5" -defs["enums"]["ImGuiItemFlags_"][8] = {} -defs["enums"]["ImGuiItemFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiItemFlags_"][8]["name"] = "ImGuiItemFlags_MixedValue" -defs["enums"]["ImGuiItemFlags_"][8]["value"] = "1 << 6" -defs["enums"]["ImGuiItemFlags_"][9] = {} -defs["enums"]["ImGuiItemFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiItemFlags_"][9]["name"] = "ImGuiItemFlags_ReadOnly" -defs["enums"]["ImGuiItemFlags_"][9]["value"] = "1 << 7" -defs["enums"]["ImGuiItemFlags_"][10] = {} -defs["enums"]["ImGuiItemFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiItemFlags_"][10]["name"] = "ImGuiItemFlags_NoWindowHoverableCheck" -defs["enums"]["ImGuiItemFlags_"][10]["value"] = "1 << 8" -defs["enums"]["ImGuiItemFlags_"][11] = {} -defs["enums"]["ImGuiItemFlags_"][11]["calc_value"] = 1024 -defs["enums"]["ImGuiItemFlags_"][11]["name"] = "ImGuiItemFlags_Inputable" -defs["enums"]["ImGuiItemFlags_"][11]["value"] = "1 << 10" defs["enums"]["ImGuiItemStatusFlags_"] = {} defs["enums"]["ImGuiItemStatusFlags_"][1] = {} defs["enums"]["ImGuiItemStatusFlags_"][1]["calc_value"] = 0 @@ -1544,12 +1749,16 @@ defs["enums"]["ImGuiItemStatusFlags_"][9]["name"] = "ImGuiItemStatusFlags_Hovere defs["enums"]["ImGuiItemStatusFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiItemStatusFlags_"][10] = {} defs["enums"]["ImGuiItemStatusFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiItemStatusFlags_"][10]["name"] = "ImGuiItemStatusFlags_FocusedByTabbing" +defs["enums"]["ImGuiItemStatusFlags_"][10]["name"] = "ImGuiItemStatusFlags_Visible" defs["enums"]["ImGuiItemStatusFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiItemStatusFlags_"][11] = {} defs["enums"]["ImGuiItemStatusFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiItemStatusFlags_"][11]["name"] = "ImGuiItemStatusFlags_Visible" +defs["enums"]["ImGuiItemStatusFlags_"][11]["name"] = "ImGuiItemStatusFlags_HasClipRect" defs["enums"]["ImGuiItemStatusFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiItemStatusFlags_"][12] = {} +defs["enums"]["ImGuiItemStatusFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiItemStatusFlags_"][12]["name"] = "ImGuiItemStatusFlags_HasShortcut" +defs["enums"]["ImGuiItemStatusFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiKey"] = {} defs["enums"]["ImGuiKey"][1] = {} defs["enums"]["ImGuiKey"][1]["calc_value"] = 0 @@ -1845,328 +2054,380 @@ defs["enums"]["ImGuiKey"][73]["name"] = "ImGuiKey_F12" defs["enums"]["ImGuiKey"][73]["value"] = "583" defs["enums"]["ImGuiKey"][74] = {} defs["enums"]["ImGuiKey"][74]["calc_value"] = 584 -defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_Apostrophe" +defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_F13" defs["enums"]["ImGuiKey"][74]["value"] = "584" defs["enums"]["ImGuiKey"][75] = {} defs["enums"]["ImGuiKey"][75]["calc_value"] = 585 -defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_Comma" +defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_F14" defs["enums"]["ImGuiKey"][75]["value"] = "585" defs["enums"]["ImGuiKey"][76] = {} defs["enums"]["ImGuiKey"][76]["calc_value"] = 586 -defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_Minus" +defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_F15" defs["enums"]["ImGuiKey"][76]["value"] = "586" defs["enums"]["ImGuiKey"][77] = {} defs["enums"]["ImGuiKey"][77]["calc_value"] = 587 -defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_Period" +defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_F16" defs["enums"]["ImGuiKey"][77]["value"] = "587" defs["enums"]["ImGuiKey"][78] = {} defs["enums"]["ImGuiKey"][78]["calc_value"] = 588 -defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_Slash" +defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_F17" defs["enums"]["ImGuiKey"][78]["value"] = "588" defs["enums"]["ImGuiKey"][79] = {} defs["enums"]["ImGuiKey"][79]["calc_value"] = 589 -defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_Semicolon" +defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_F18" defs["enums"]["ImGuiKey"][79]["value"] = "589" defs["enums"]["ImGuiKey"][80] = {} defs["enums"]["ImGuiKey"][80]["calc_value"] = 590 -defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_Equal" +defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_F19" defs["enums"]["ImGuiKey"][80]["value"] = "590" defs["enums"]["ImGuiKey"][81] = {} defs["enums"]["ImGuiKey"][81]["calc_value"] = 591 -defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_LeftBracket" +defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_F20" defs["enums"]["ImGuiKey"][81]["value"] = "591" defs["enums"]["ImGuiKey"][82] = {} defs["enums"]["ImGuiKey"][82]["calc_value"] = 592 -defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_Backslash" +defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_F21" defs["enums"]["ImGuiKey"][82]["value"] = "592" defs["enums"]["ImGuiKey"][83] = {} defs["enums"]["ImGuiKey"][83]["calc_value"] = 593 -defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_RightBracket" +defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_F22" defs["enums"]["ImGuiKey"][83]["value"] = "593" defs["enums"]["ImGuiKey"][84] = {} defs["enums"]["ImGuiKey"][84]["calc_value"] = 594 -defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_GraveAccent" +defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_F23" defs["enums"]["ImGuiKey"][84]["value"] = "594" defs["enums"]["ImGuiKey"][85] = {} defs["enums"]["ImGuiKey"][85]["calc_value"] = 595 -defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_CapsLock" +defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_F24" defs["enums"]["ImGuiKey"][85]["value"] = "595" defs["enums"]["ImGuiKey"][86] = {} defs["enums"]["ImGuiKey"][86]["calc_value"] = 596 -defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_ScrollLock" +defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_Apostrophe" defs["enums"]["ImGuiKey"][86]["value"] = "596" defs["enums"]["ImGuiKey"][87] = {} defs["enums"]["ImGuiKey"][87]["calc_value"] = 597 -defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_NumLock" +defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_Comma" defs["enums"]["ImGuiKey"][87]["value"] = "597" defs["enums"]["ImGuiKey"][88] = {} defs["enums"]["ImGuiKey"][88]["calc_value"] = 598 -defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_PrintScreen" +defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_Minus" defs["enums"]["ImGuiKey"][88]["value"] = "598" defs["enums"]["ImGuiKey"][89] = {} defs["enums"]["ImGuiKey"][89]["calc_value"] = 599 -defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Pause" +defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Period" defs["enums"]["ImGuiKey"][89]["value"] = "599" defs["enums"]["ImGuiKey"][90] = {} defs["enums"]["ImGuiKey"][90]["calc_value"] = 600 -defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Keypad0" +defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Slash" defs["enums"]["ImGuiKey"][90]["value"] = "600" defs["enums"]["ImGuiKey"][91] = {} defs["enums"]["ImGuiKey"][91]["calc_value"] = 601 -defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Keypad1" +defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Semicolon" defs["enums"]["ImGuiKey"][91]["value"] = "601" defs["enums"]["ImGuiKey"][92] = {} defs["enums"]["ImGuiKey"][92]["calc_value"] = 602 -defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Keypad2" +defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Equal" defs["enums"]["ImGuiKey"][92]["value"] = "602" defs["enums"]["ImGuiKey"][93] = {} defs["enums"]["ImGuiKey"][93]["calc_value"] = 603 -defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_Keypad3" +defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_LeftBracket" defs["enums"]["ImGuiKey"][93]["value"] = "603" defs["enums"]["ImGuiKey"][94] = {} defs["enums"]["ImGuiKey"][94]["calc_value"] = 604 -defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Keypad4" +defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Backslash" defs["enums"]["ImGuiKey"][94]["value"] = "604" defs["enums"]["ImGuiKey"][95] = {} defs["enums"]["ImGuiKey"][95]["calc_value"] = 605 -defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_Keypad5" +defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_RightBracket" defs["enums"]["ImGuiKey"][95]["value"] = "605" defs["enums"]["ImGuiKey"][96] = {} defs["enums"]["ImGuiKey"][96]["calc_value"] = 606 -defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_Keypad6" +defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_GraveAccent" defs["enums"]["ImGuiKey"][96]["value"] = "606" defs["enums"]["ImGuiKey"][97] = {} defs["enums"]["ImGuiKey"][97]["calc_value"] = 607 -defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_Keypad7" +defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_CapsLock" defs["enums"]["ImGuiKey"][97]["value"] = "607" defs["enums"]["ImGuiKey"][98] = {} defs["enums"]["ImGuiKey"][98]["calc_value"] = 608 -defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_Keypad8" +defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_ScrollLock" defs["enums"]["ImGuiKey"][98]["value"] = "608" defs["enums"]["ImGuiKey"][99] = {} defs["enums"]["ImGuiKey"][99]["calc_value"] = 609 -defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_Keypad9" +defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_NumLock" defs["enums"]["ImGuiKey"][99]["value"] = "609" defs["enums"]["ImGuiKey"][100] = {} defs["enums"]["ImGuiKey"][100]["calc_value"] = 610 -defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_KeypadDecimal" +defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_PrintScreen" defs["enums"]["ImGuiKey"][100]["value"] = "610" defs["enums"]["ImGuiKey"][101] = {} defs["enums"]["ImGuiKey"][101]["calc_value"] = 611 -defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_KeypadDivide" +defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_Pause" defs["enums"]["ImGuiKey"][101]["value"] = "611" defs["enums"]["ImGuiKey"][102] = {} defs["enums"]["ImGuiKey"][102]["calc_value"] = 612 -defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_KeypadMultiply" +defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_Keypad0" defs["enums"]["ImGuiKey"][102]["value"] = "612" defs["enums"]["ImGuiKey"][103] = {} defs["enums"]["ImGuiKey"][103]["calc_value"] = 613 -defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_KeypadSubtract" +defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_Keypad1" defs["enums"]["ImGuiKey"][103]["value"] = "613" defs["enums"]["ImGuiKey"][104] = {} defs["enums"]["ImGuiKey"][104]["calc_value"] = 614 -defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_KeypadAdd" +defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_Keypad2" defs["enums"]["ImGuiKey"][104]["value"] = "614" defs["enums"]["ImGuiKey"][105] = {} defs["enums"]["ImGuiKey"][105]["calc_value"] = 615 -defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_KeypadEnter" +defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_Keypad3" defs["enums"]["ImGuiKey"][105]["value"] = "615" defs["enums"]["ImGuiKey"][106] = {} defs["enums"]["ImGuiKey"][106]["calc_value"] = 616 -defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_KeypadEqual" +defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_Keypad4" defs["enums"]["ImGuiKey"][106]["value"] = "616" defs["enums"]["ImGuiKey"][107] = {} defs["enums"]["ImGuiKey"][107]["calc_value"] = 617 -defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_GamepadStart" +defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_Keypad5" defs["enums"]["ImGuiKey"][107]["value"] = "617" defs["enums"]["ImGuiKey"][108] = {} defs["enums"]["ImGuiKey"][108]["calc_value"] = 618 -defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_GamepadBack" +defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_Keypad6" defs["enums"]["ImGuiKey"][108]["value"] = "618" defs["enums"]["ImGuiKey"][109] = {} defs["enums"]["ImGuiKey"][109]["calc_value"] = 619 -defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_GamepadFaceLeft" +defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_Keypad7" defs["enums"]["ImGuiKey"][109]["value"] = "619" defs["enums"]["ImGuiKey"][110] = {} defs["enums"]["ImGuiKey"][110]["calc_value"] = 620 -defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_GamepadFaceRight" +defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_Keypad8" defs["enums"]["ImGuiKey"][110]["value"] = "620" defs["enums"]["ImGuiKey"][111] = {} defs["enums"]["ImGuiKey"][111]["calc_value"] = 621 -defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_GamepadFaceUp" +defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_Keypad9" defs["enums"]["ImGuiKey"][111]["value"] = "621" defs["enums"]["ImGuiKey"][112] = {} defs["enums"]["ImGuiKey"][112]["calc_value"] = 622 -defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_GamepadFaceDown" +defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_KeypadDecimal" defs["enums"]["ImGuiKey"][112]["value"] = "622" defs["enums"]["ImGuiKey"][113] = {} defs["enums"]["ImGuiKey"][113]["calc_value"] = 623 -defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_GamepadDpadLeft" +defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_KeypadDivide" defs["enums"]["ImGuiKey"][113]["value"] = "623" defs["enums"]["ImGuiKey"][114] = {} defs["enums"]["ImGuiKey"][114]["calc_value"] = 624 -defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_GamepadDpadRight" +defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_KeypadMultiply" defs["enums"]["ImGuiKey"][114]["value"] = "624" defs["enums"]["ImGuiKey"][115] = {} defs["enums"]["ImGuiKey"][115]["calc_value"] = 625 -defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_GamepadDpadUp" +defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_KeypadSubtract" defs["enums"]["ImGuiKey"][115]["value"] = "625" defs["enums"]["ImGuiKey"][116] = {} defs["enums"]["ImGuiKey"][116]["calc_value"] = 626 -defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_GamepadDpadDown" +defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_KeypadAdd" defs["enums"]["ImGuiKey"][116]["value"] = "626" defs["enums"]["ImGuiKey"][117] = {} defs["enums"]["ImGuiKey"][117]["calc_value"] = 627 -defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_GamepadL1" +defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_KeypadEnter" defs["enums"]["ImGuiKey"][117]["value"] = "627" defs["enums"]["ImGuiKey"][118] = {} defs["enums"]["ImGuiKey"][118]["calc_value"] = 628 -defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_GamepadR1" +defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_KeypadEqual" defs["enums"]["ImGuiKey"][118]["value"] = "628" defs["enums"]["ImGuiKey"][119] = {} defs["enums"]["ImGuiKey"][119]["calc_value"] = 629 -defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_GamepadL2" +defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_AppBack" defs["enums"]["ImGuiKey"][119]["value"] = "629" defs["enums"]["ImGuiKey"][120] = {} defs["enums"]["ImGuiKey"][120]["calc_value"] = 630 -defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_GamepadR2" +defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_AppForward" defs["enums"]["ImGuiKey"][120]["value"] = "630" defs["enums"]["ImGuiKey"][121] = {} defs["enums"]["ImGuiKey"][121]["calc_value"] = 631 -defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadL3" +defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadStart" defs["enums"]["ImGuiKey"][121]["value"] = "631" defs["enums"]["ImGuiKey"][122] = {} defs["enums"]["ImGuiKey"][122]["calc_value"] = 632 -defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadR3" +defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadBack" defs["enums"]["ImGuiKey"][122]["value"] = "632" defs["enums"]["ImGuiKey"][123] = {} defs["enums"]["ImGuiKey"][123]["calc_value"] = 633 -defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadLStickLeft" +defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadFaceLeft" defs["enums"]["ImGuiKey"][123]["value"] = "633" defs["enums"]["ImGuiKey"][124] = {} defs["enums"]["ImGuiKey"][124]["calc_value"] = 634 -defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadLStickRight" +defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadFaceRight" defs["enums"]["ImGuiKey"][124]["value"] = "634" defs["enums"]["ImGuiKey"][125] = {} defs["enums"]["ImGuiKey"][125]["calc_value"] = 635 -defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadLStickUp" +defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadFaceUp" defs["enums"]["ImGuiKey"][125]["value"] = "635" defs["enums"]["ImGuiKey"][126] = {} defs["enums"]["ImGuiKey"][126]["calc_value"] = 636 -defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadLStickDown" +defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadFaceDown" defs["enums"]["ImGuiKey"][126]["value"] = "636" defs["enums"]["ImGuiKey"][127] = {} defs["enums"]["ImGuiKey"][127]["calc_value"] = 637 -defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadRStickLeft" +defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadDpadLeft" defs["enums"]["ImGuiKey"][127]["value"] = "637" defs["enums"]["ImGuiKey"][128] = {} defs["enums"]["ImGuiKey"][128]["calc_value"] = 638 -defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadRStickRight" +defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadDpadRight" defs["enums"]["ImGuiKey"][128]["value"] = "638" defs["enums"]["ImGuiKey"][129] = {} defs["enums"]["ImGuiKey"][129]["calc_value"] = 639 -defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadDpadUp" defs["enums"]["ImGuiKey"][129]["value"] = "639" defs["enums"]["ImGuiKey"][130] = {} defs["enums"]["ImGuiKey"][130]["calc_value"] = 640 -defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadDpadDown" defs["enums"]["ImGuiKey"][130]["value"] = "640" defs["enums"]["ImGuiKey"][131] = {} defs["enums"]["ImGuiKey"][131]["calc_value"] = 641 -defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_GamepadL1" defs["enums"]["ImGuiKey"][131]["value"] = "641" defs["enums"]["ImGuiKey"][132] = {} defs["enums"]["ImGuiKey"][132]["calc_value"] = 642 -defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_GamepadR1" defs["enums"]["ImGuiKey"][132]["value"] = "642" defs["enums"]["ImGuiKey"][133] = {} defs["enums"]["ImGuiKey"][133]["calc_value"] = 643 -defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_GamepadL2" defs["enums"]["ImGuiKey"][133]["value"] = "643" defs["enums"]["ImGuiKey"][134] = {} defs["enums"]["ImGuiKey"][134]["calc_value"] = 644 -defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_GamepadR2" defs["enums"]["ImGuiKey"][134]["value"] = "644" defs["enums"]["ImGuiKey"][135] = {} defs["enums"]["ImGuiKey"][135]["calc_value"] = 645 -defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_GamepadL3" defs["enums"]["ImGuiKey"][135]["value"] = "645" defs["enums"]["ImGuiKey"][136] = {} defs["enums"]["ImGuiKey"][136]["calc_value"] = 646 -defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_GamepadR3" defs["enums"]["ImGuiKey"][136]["value"] = "646" defs["enums"]["ImGuiKey"][137] = {} defs["enums"]["ImGuiKey"][137]["calc_value"] = 647 -defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_GamepadLStickLeft" defs["enums"]["ImGuiKey"][137]["value"] = "647" defs["enums"]["ImGuiKey"][138] = {} defs["enums"]["ImGuiKey"][138]["calc_value"] = 648 -defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_GamepadLStickRight" defs["enums"]["ImGuiKey"][138]["value"] = "648" defs["enums"]["ImGuiKey"][139] = {} defs["enums"]["ImGuiKey"][139]["calc_value"] = 649 -defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_GamepadLStickUp" defs["enums"]["ImGuiKey"][139]["value"] = "649" defs["enums"]["ImGuiKey"][140] = {} defs["enums"]["ImGuiKey"][140]["calc_value"] = 650 -defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_GamepadLStickDown" defs["enums"]["ImGuiKey"][140]["value"] = "650" defs["enums"]["ImGuiKey"][141] = {} defs["enums"]["ImGuiKey"][141]["calc_value"] = 651 -defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_GamepadRStickLeft" defs["enums"]["ImGuiKey"][141]["value"] = "651" defs["enums"]["ImGuiKey"][142] = {} defs["enums"]["ImGuiKey"][142]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_GamepadRStickRight" defs["enums"]["ImGuiKey"][142]["value"] = "652" defs["enums"]["ImGuiKey"][143] = {} -defs["enums"]["ImGuiKey"][143]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiMod_None" -defs["enums"]["ImGuiKey"][143]["value"] = "0" +defs["enums"]["ImGuiKey"][143]["calc_value"] = 653 +defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][143]["value"] = "653" defs["enums"]["ImGuiKey"][144] = {} -defs["enums"]["ImGuiKey"][144]["calc_value"] = 4096 -defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiMod_Ctrl" -defs["enums"]["ImGuiKey"][144]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][144]["calc_value"] = 654 +defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][144]["value"] = "654" defs["enums"]["ImGuiKey"][145] = {} -defs["enums"]["ImGuiKey"][145]["calc_value"] = 8192 -defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiMod_Shift" -defs["enums"]["ImGuiKey"][145]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][145]["calc_value"] = 655 +defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][145]["value"] = "655" defs["enums"]["ImGuiKey"][146] = {} -defs["enums"]["ImGuiKey"][146]["calc_value"] = 16384 -defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiMod_Alt" -defs["enums"]["ImGuiKey"][146]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][146]["calc_value"] = 656 +defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][146]["value"] = "656" defs["enums"]["ImGuiKey"][147] = {} -defs["enums"]["ImGuiKey"][147]["calc_value"] = 32768 -defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiMod_Super" -defs["enums"]["ImGuiKey"][147]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][147]["calc_value"] = 657 +defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][147]["value"] = "657" defs["enums"]["ImGuiKey"][148] = {} -defs["enums"]["ImGuiKey"][148]["calc_value"] = 2048 -defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiMod_Shortcut" -defs["enums"]["ImGuiKey"][148]["value"] = "1 << 11" +defs["enums"]["ImGuiKey"][148]["calc_value"] = 658 +defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][148]["value"] = "658" defs["enums"]["ImGuiKey"][149] = {} -defs["enums"]["ImGuiKey"][149]["calc_value"] = 63488 -defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiMod_Mask_" -defs["enums"]["ImGuiKey"][149]["value"] = "0xF800" +defs["enums"]["ImGuiKey"][149]["calc_value"] = 659 +defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][149]["value"] = "659" defs["enums"]["ImGuiKey"][150] = {} -defs["enums"]["ImGuiKey"][150]["calc_value"] = 512 -defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_NamedKey_BEGIN" -defs["enums"]["ImGuiKey"][150]["value"] = "512" +defs["enums"]["ImGuiKey"][150]["calc_value"] = 660 +defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][150]["value"] = "660" defs["enums"]["ImGuiKey"][151] = {} -defs["enums"]["ImGuiKey"][151]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_NamedKey_END" -defs["enums"]["ImGuiKey"][151]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][151]["calc_value"] = 661 +defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][151]["value"] = "661" defs["enums"]["ImGuiKey"][152] = {} -defs["enums"]["ImGuiKey"][152]["calc_value"] = 140 -defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_NamedKey_COUNT" -defs["enums"]["ImGuiKey"][152]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][152]["calc_value"] = 662 +defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][152]["value"] = "662" defs["enums"]["ImGuiKey"][153] = {} -defs["enums"]["ImGuiKey"][153]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_KeysData_SIZE" -defs["enums"]["ImGuiKey"][153]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][153]["calc_value"] = 663 +defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][153]["value"] = "663" defs["enums"]["ImGuiKey"][154] = {} -defs["enums"]["ImGuiKey"][154]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_KeysData_OFFSET" -defs["enums"]["ImGuiKey"][154]["value"] = "0" +defs["enums"]["ImGuiKey"][154]["calc_value"] = 664 +defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][154]["value"] = "664" +defs["enums"]["ImGuiKey"][155] = {} +defs["enums"]["ImGuiKey"][155]["calc_value"] = 665 +defs["enums"]["ImGuiKey"][155]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][155]["value"] = "665" +defs["enums"]["ImGuiKey"][156] = {} +defs["enums"]["ImGuiKey"][156]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][156]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][156]["value"] = "666" +defs["enums"]["ImGuiKey"][157] = {} +defs["enums"]["ImGuiKey"][157]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][157]["name"] = "ImGuiMod_None" +defs["enums"]["ImGuiKey"][157]["value"] = "0" +defs["enums"]["ImGuiKey"][158] = {} +defs["enums"]["ImGuiKey"][158]["calc_value"] = 4096 +defs["enums"]["ImGuiKey"][158]["name"] = "ImGuiMod_Ctrl" +defs["enums"]["ImGuiKey"][158]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][159] = {} +defs["enums"]["ImGuiKey"][159]["calc_value"] = 8192 +defs["enums"]["ImGuiKey"][159]["name"] = "ImGuiMod_Shift" +defs["enums"]["ImGuiKey"][159]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][160] = {} +defs["enums"]["ImGuiKey"][160]["calc_value"] = 16384 +defs["enums"]["ImGuiKey"][160]["name"] = "ImGuiMod_Alt" +defs["enums"]["ImGuiKey"][160]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][161] = {} +defs["enums"]["ImGuiKey"][161]["calc_value"] = 32768 +defs["enums"]["ImGuiKey"][161]["name"] = "ImGuiMod_Super" +defs["enums"]["ImGuiKey"][161]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][162] = {} +defs["enums"]["ImGuiKey"][162]["calc_value"] = 61440 +defs["enums"]["ImGuiKey"][162]["name"] = "ImGuiMod_Mask_" +defs["enums"]["ImGuiKey"][162]["value"] = "0xF000" +defs["enums"]["ImGuiKey"][163] = {} +defs["enums"]["ImGuiKey"][163]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][163]["name"] = "ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][163]["value"] = "512" +defs["enums"]["ImGuiKey"][164] = {} +defs["enums"]["ImGuiKey"][164]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][164]["name"] = "ImGuiKey_NamedKey_END" +defs["enums"]["ImGuiKey"][164]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][165] = {} +defs["enums"]["ImGuiKey"][165]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][165]["name"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][165]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][166] = {} +defs["enums"]["ImGuiKey"][166]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][166]["name"] = "ImGuiKey_KeysData_SIZE" +defs["enums"]["ImGuiKey"][166]["value"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][167] = {} +defs["enums"]["ImGuiKey"][167]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][167]["name"] = "ImGuiKey_KeysData_OFFSET" +defs["enums"]["ImGuiKey"][167]["value"] = "ImGuiKey_NamedKey_BEGIN" defs["enums"]["ImGuiLayoutType_"] = {} defs["enums"]["ImGuiLayoutType_"][1] = {} defs["enums"]["ImGuiLayoutType_"][1]["calc_value"] = 0 @@ -2179,40 +2440,60 @@ defs["enums"]["ImGuiLayoutType_"][2]["value"] = "1" defs["enums"]["ImGuiLocKey"] = {} defs["enums"]["ImGuiLocKey"][1] = {} defs["enums"]["ImGuiLocKey"][1]["calc_value"] = 0 -defs["enums"]["ImGuiLocKey"][1]["name"] = "ImGuiLocKey_TableSizeOne" +defs["enums"]["ImGuiLocKey"][1]["name"] = "ImGuiLocKey_VersionStr" defs["enums"]["ImGuiLocKey"][1]["value"] = "0" defs["enums"]["ImGuiLocKey"][2] = {} defs["enums"]["ImGuiLocKey"][2]["calc_value"] = 1 -defs["enums"]["ImGuiLocKey"][2]["name"] = "ImGuiLocKey_TableSizeAllFit" +defs["enums"]["ImGuiLocKey"][2]["name"] = "ImGuiLocKey_TableSizeOne" defs["enums"]["ImGuiLocKey"][2]["value"] = "1" defs["enums"]["ImGuiLocKey"][3] = {} defs["enums"]["ImGuiLocKey"][3]["calc_value"] = 2 -defs["enums"]["ImGuiLocKey"][3]["name"] = "ImGuiLocKey_TableSizeAllDefault" +defs["enums"]["ImGuiLocKey"][3]["name"] = "ImGuiLocKey_TableSizeAllFit" defs["enums"]["ImGuiLocKey"][3]["value"] = "2" defs["enums"]["ImGuiLocKey"][4] = {} defs["enums"]["ImGuiLocKey"][4]["calc_value"] = 3 -defs["enums"]["ImGuiLocKey"][4]["name"] = "ImGuiLocKey_TableResetOrder" +defs["enums"]["ImGuiLocKey"][4]["name"] = "ImGuiLocKey_TableSizeAllDefault" defs["enums"]["ImGuiLocKey"][4]["value"] = "3" defs["enums"]["ImGuiLocKey"][5] = {} defs["enums"]["ImGuiLocKey"][5]["calc_value"] = 4 -defs["enums"]["ImGuiLocKey"][5]["name"] = "ImGuiLocKey_WindowingMainMenuBar" +defs["enums"]["ImGuiLocKey"][5]["name"] = "ImGuiLocKey_TableResetOrder" defs["enums"]["ImGuiLocKey"][5]["value"] = "4" defs["enums"]["ImGuiLocKey"][6] = {} defs["enums"]["ImGuiLocKey"][6]["calc_value"] = 5 -defs["enums"]["ImGuiLocKey"][6]["name"] = "ImGuiLocKey_WindowingPopup" +defs["enums"]["ImGuiLocKey"][6]["name"] = "ImGuiLocKey_WindowingMainMenuBar" defs["enums"]["ImGuiLocKey"][6]["value"] = "5" defs["enums"]["ImGuiLocKey"][7] = {} defs["enums"]["ImGuiLocKey"][7]["calc_value"] = 6 -defs["enums"]["ImGuiLocKey"][7]["name"] = "ImGuiLocKey_WindowingUntitled" +defs["enums"]["ImGuiLocKey"][7]["name"] = "ImGuiLocKey_WindowingPopup" defs["enums"]["ImGuiLocKey"][7]["value"] = "6" defs["enums"]["ImGuiLocKey"][8] = {} defs["enums"]["ImGuiLocKey"][8]["calc_value"] = 7 -defs["enums"]["ImGuiLocKey"][8]["name"] = "ImGuiLocKey_DockingHideTabBar" +defs["enums"]["ImGuiLocKey"][8]["name"] = "ImGuiLocKey_WindowingUntitled" defs["enums"]["ImGuiLocKey"][8]["value"] = "7" defs["enums"]["ImGuiLocKey"][9] = {} defs["enums"]["ImGuiLocKey"][9]["calc_value"] = 8 -defs["enums"]["ImGuiLocKey"][9]["name"] = "ImGuiLocKey_COUNT" +defs["enums"]["ImGuiLocKey"][9]["name"] = "ImGuiLocKey_OpenLink_s" defs["enums"]["ImGuiLocKey"][9]["value"] = "8" +defs["enums"]["ImGuiLocKey"][10] = {} +defs["enums"]["ImGuiLocKey"][10]["calc_value"] = 9 +defs["enums"]["ImGuiLocKey"][10]["name"] = "ImGuiLocKey_CopyLink" +defs["enums"]["ImGuiLocKey"][10]["value"] = "9" +defs["enums"]["ImGuiLocKey"][11] = {} +defs["enums"]["ImGuiLocKey"][11]["calc_value"] = 10 +defs["enums"]["ImGuiLocKey"][11]["name"] = "ImGuiLocKey_DockingHideTabBar" +defs["enums"]["ImGuiLocKey"][11]["value"] = "10" +defs["enums"]["ImGuiLocKey"][12] = {} +defs["enums"]["ImGuiLocKey"][12]["calc_value"] = 11 +defs["enums"]["ImGuiLocKey"][12]["name"] = "ImGuiLocKey_DockingHoldShiftToDock" +defs["enums"]["ImGuiLocKey"][12]["value"] = "11" +defs["enums"]["ImGuiLocKey"][13] = {} +defs["enums"]["ImGuiLocKey"][13]["calc_value"] = 12 +defs["enums"]["ImGuiLocKey"][13]["name"] = "ImGuiLocKey_DockingDragToUndockOrMoveNode" +defs["enums"]["ImGuiLocKey"][13]["value"] = "12" +defs["enums"]["ImGuiLocKey"][14] = {} +defs["enums"]["ImGuiLocKey"][14]["calc_value"] = 13 +defs["enums"]["ImGuiLocKey"][14]["name"] = "ImGuiLocKey_COUNT" +defs["enums"]["ImGuiLocKey"][14]["value"] = "13" defs["enums"]["ImGuiLogType"] = {} defs["enums"]["ImGuiLogType"][1] = {} defs["enums"]["ImGuiLogType"][1]["calc_value"] = 0 @@ -2296,96 +2577,109 @@ defs["enums"]["ImGuiMouseCursor_"][11] = {} defs["enums"]["ImGuiMouseCursor_"][11]["calc_value"] = 9 defs["enums"]["ImGuiMouseCursor_"][11]["name"] = "ImGuiMouseCursor_COUNT" defs["enums"]["ImGuiMouseCursor_"][11]["value"] = "9" +defs["enums"]["ImGuiMouseSource"] = {} +defs["enums"]["ImGuiMouseSource"][1] = {} +defs["enums"]["ImGuiMouseSource"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMouseSource"][1]["name"] = "ImGuiMouseSource_Mouse" +defs["enums"]["ImGuiMouseSource"][1]["value"] = "0" +defs["enums"]["ImGuiMouseSource"][2] = {} +defs["enums"]["ImGuiMouseSource"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMouseSource"][2]["name"] = "ImGuiMouseSource_TouchScreen" +defs["enums"]["ImGuiMouseSource"][2]["value"] = "1" +defs["enums"]["ImGuiMouseSource"][3] = {} +defs["enums"]["ImGuiMouseSource"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMouseSource"][3]["name"] = "ImGuiMouseSource_Pen" +defs["enums"]["ImGuiMouseSource"][3]["value"] = "2" +defs["enums"]["ImGuiMouseSource"][4] = {} +defs["enums"]["ImGuiMouseSource"][4]["calc_value"] = 3 +defs["enums"]["ImGuiMouseSource"][4]["name"] = "ImGuiMouseSource_COUNT" +defs["enums"]["ImGuiMouseSource"][4]["value"] = "3" +defs["enums"]["ImGuiMultiSelectFlags_"] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMultiSelectFlags_"][1]["name"] = "ImGuiMultiSelectFlags_None" +defs["enums"]["ImGuiMultiSelectFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiMultiSelectFlags_"][2] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMultiSelectFlags_"][2]["name"] = "ImGuiMultiSelectFlags_SingleSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiMultiSelectFlags_"][3] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMultiSelectFlags_"][3]["name"] = "ImGuiMultiSelectFlags_NoSelectAll" +defs["enums"]["ImGuiMultiSelectFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiMultiSelectFlags_"][4] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiMultiSelectFlags_"][4]["name"] = "ImGuiMultiSelectFlags_NoRangeSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiMultiSelectFlags_"][5] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiMultiSelectFlags_"][5]["name"] = "ImGuiMultiSelectFlags_NoAutoSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiMultiSelectFlags_"][6] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiMultiSelectFlags_"][6]["name"] = "ImGuiMultiSelectFlags_NoAutoClear" +defs["enums"]["ImGuiMultiSelectFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiMultiSelectFlags_"][7] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiMultiSelectFlags_"][7]["name"] = "ImGuiMultiSelectFlags_NoAutoClearOnReselect" +defs["enums"]["ImGuiMultiSelectFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiMultiSelectFlags_"][8] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiMultiSelectFlags_"][8]["name"] = "ImGuiMultiSelectFlags_BoxSelect1d" +defs["enums"]["ImGuiMultiSelectFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiMultiSelectFlags_"][9] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiMultiSelectFlags_"][9]["name"] = "ImGuiMultiSelectFlags_BoxSelect2d" +defs["enums"]["ImGuiMultiSelectFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiMultiSelectFlags_"][10] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiMultiSelectFlags_"][10]["name"] = "ImGuiMultiSelectFlags_BoxSelectNoScroll" +defs["enums"]["ImGuiMultiSelectFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiMultiSelectFlags_"][11] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiMultiSelectFlags_"][11]["name"] = "ImGuiMultiSelectFlags_ClearOnEscape" +defs["enums"]["ImGuiMultiSelectFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiMultiSelectFlags_"][12] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiMultiSelectFlags_"][12]["name"] = "ImGuiMultiSelectFlags_ClearOnClickVoid" +defs["enums"]["ImGuiMultiSelectFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiMultiSelectFlags_"][13] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiMultiSelectFlags_"][13]["name"] = "ImGuiMultiSelectFlags_ScopeWindow" +defs["enums"]["ImGuiMultiSelectFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiMultiSelectFlags_"][14] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiMultiSelectFlags_"][14]["name"] = "ImGuiMultiSelectFlags_ScopeRect" +defs["enums"]["ImGuiMultiSelectFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiMultiSelectFlags_"][15] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiMultiSelectFlags_"][15]["name"] = "ImGuiMultiSelectFlags_SelectOnClick" +defs["enums"]["ImGuiMultiSelectFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiMultiSelectFlags_"][16] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiMultiSelectFlags_"][16]["name"] = "ImGuiMultiSelectFlags_SelectOnClickRelease" +defs["enums"]["ImGuiMultiSelectFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiMultiSelectFlags_"][17] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][17]["calc_value"] = 65536 +defs["enums"]["ImGuiMultiSelectFlags_"][17]["name"] = "ImGuiMultiSelectFlags_NavWrapX" +defs["enums"]["ImGuiMultiSelectFlags_"][17]["value"] = "1 << 16" defs["enums"]["ImGuiNavHighlightFlags_"] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1]["calc_value"] = 0 defs["enums"]["ImGuiNavHighlightFlags_"][1]["name"] = "ImGuiNavHighlightFlags_None" defs["enums"]["ImGuiNavHighlightFlags_"][1]["value"] = "0" defs["enums"]["ImGuiNavHighlightFlags_"][2] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavHighlightFlags_"][2]["name"] = "ImGuiNavHighlightFlags_TypeDefault" -defs["enums"]["ImGuiNavHighlightFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiNavHighlightFlags_"][2]["calc_value"] = 2 +defs["enums"]["ImGuiNavHighlightFlags_"][2]["name"] = "ImGuiNavHighlightFlags_Compact" +defs["enums"]["ImGuiNavHighlightFlags_"][2]["value"] = "1 << 1" defs["enums"]["ImGuiNavHighlightFlags_"][3] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavHighlightFlags_"][3]["name"] = "ImGuiNavHighlightFlags_TypeThin" -defs["enums"]["ImGuiNavHighlightFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiNavHighlightFlags_"][3]["calc_value"] = 4 +defs["enums"]["ImGuiNavHighlightFlags_"][3]["name"] = "ImGuiNavHighlightFlags_AlwaysDraw" +defs["enums"]["ImGuiNavHighlightFlags_"][3]["value"] = "1 << 2" defs["enums"]["ImGuiNavHighlightFlags_"][4] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiNavHighlightFlags_"][4]["name"] = "ImGuiNavHighlightFlags_AlwaysDraw" -defs["enums"]["ImGuiNavHighlightFlags_"][4]["value"] = "1 << 2" -defs["enums"]["ImGuiNavHighlightFlags_"][5] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiNavHighlightFlags_"][5]["name"] = "ImGuiNavHighlightFlags_NoRounding" -defs["enums"]["ImGuiNavHighlightFlags_"][5]["value"] = "1 << 3" -defs["enums"]["ImGuiNavInput"] = {} -defs["enums"]["ImGuiNavInput"][1] = {} -defs["enums"]["ImGuiNavInput"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavInput"][1]["name"] = "ImGuiNavInput_Activate" -defs["enums"]["ImGuiNavInput"][1]["value"] = "0" -defs["enums"]["ImGuiNavInput"][2] = {} -defs["enums"]["ImGuiNavInput"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavInput"][2]["name"] = "ImGuiNavInput_Cancel" -defs["enums"]["ImGuiNavInput"][2]["value"] = "1" -defs["enums"]["ImGuiNavInput"][3] = {} -defs["enums"]["ImGuiNavInput"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavInput"][3]["name"] = "ImGuiNavInput_Input" -defs["enums"]["ImGuiNavInput"][3]["value"] = "2" -defs["enums"]["ImGuiNavInput"][4] = {} -defs["enums"]["ImGuiNavInput"][4]["calc_value"] = 3 -defs["enums"]["ImGuiNavInput"][4]["name"] = "ImGuiNavInput_Menu" -defs["enums"]["ImGuiNavInput"][4]["value"] = "3" -defs["enums"]["ImGuiNavInput"][5] = {} -defs["enums"]["ImGuiNavInput"][5]["calc_value"] = 4 -defs["enums"]["ImGuiNavInput"][5]["name"] = "ImGuiNavInput_DpadLeft" -defs["enums"]["ImGuiNavInput"][5]["value"] = "4" -defs["enums"]["ImGuiNavInput"][6] = {} -defs["enums"]["ImGuiNavInput"][6]["calc_value"] = 5 -defs["enums"]["ImGuiNavInput"][6]["name"] = "ImGuiNavInput_DpadRight" -defs["enums"]["ImGuiNavInput"][6]["value"] = "5" -defs["enums"]["ImGuiNavInput"][7] = {} -defs["enums"]["ImGuiNavInput"][7]["calc_value"] = 6 -defs["enums"]["ImGuiNavInput"][7]["name"] = "ImGuiNavInput_DpadUp" -defs["enums"]["ImGuiNavInput"][7]["value"] = "6" -defs["enums"]["ImGuiNavInput"][8] = {} -defs["enums"]["ImGuiNavInput"][8]["calc_value"] = 7 -defs["enums"]["ImGuiNavInput"][8]["name"] = "ImGuiNavInput_DpadDown" -defs["enums"]["ImGuiNavInput"][8]["value"] = "7" -defs["enums"]["ImGuiNavInput"][9] = {} -defs["enums"]["ImGuiNavInput"][9]["calc_value"] = 8 -defs["enums"]["ImGuiNavInput"][9]["name"] = "ImGuiNavInput_LStickLeft" -defs["enums"]["ImGuiNavInput"][9]["value"] = "8" -defs["enums"]["ImGuiNavInput"][10] = {} -defs["enums"]["ImGuiNavInput"][10]["calc_value"] = 9 -defs["enums"]["ImGuiNavInput"][10]["name"] = "ImGuiNavInput_LStickRight" -defs["enums"]["ImGuiNavInput"][10]["value"] = "9" -defs["enums"]["ImGuiNavInput"][11] = {} -defs["enums"]["ImGuiNavInput"][11]["calc_value"] = 10 -defs["enums"]["ImGuiNavInput"][11]["name"] = "ImGuiNavInput_LStickUp" -defs["enums"]["ImGuiNavInput"][11]["value"] = "10" -defs["enums"]["ImGuiNavInput"][12] = {} -defs["enums"]["ImGuiNavInput"][12]["calc_value"] = 11 -defs["enums"]["ImGuiNavInput"][12]["name"] = "ImGuiNavInput_LStickDown" -defs["enums"]["ImGuiNavInput"][12]["value"] = "11" -defs["enums"]["ImGuiNavInput"][13] = {} -defs["enums"]["ImGuiNavInput"][13]["calc_value"] = 12 -defs["enums"]["ImGuiNavInput"][13]["name"] = "ImGuiNavInput_FocusPrev" -defs["enums"]["ImGuiNavInput"][13]["value"] = "12" -defs["enums"]["ImGuiNavInput"][14] = {} -defs["enums"]["ImGuiNavInput"][14]["calc_value"] = 13 -defs["enums"]["ImGuiNavInput"][14]["name"] = "ImGuiNavInput_FocusNext" -defs["enums"]["ImGuiNavInput"][14]["value"] = "13" -defs["enums"]["ImGuiNavInput"][15] = {} -defs["enums"]["ImGuiNavInput"][15]["calc_value"] = 14 -defs["enums"]["ImGuiNavInput"][15]["name"] = "ImGuiNavInput_TweakSlow" -defs["enums"]["ImGuiNavInput"][15]["value"] = "14" -defs["enums"]["ImGuiNavInput"][16] = {} -defs["enums"]["ImGuiNavInput"][16]["calc_value"] = 15 -defs["enums"]["ImGuiNavInput"][16]["name"] = "ImGuiNavInput_TweakFast" -defs["enums"]["ImGuiNavInput"][16]["value"] = "15" -defs["enums"]["ImGuiNavInput"][17] = {} -defs["enums"]["ImGuiNavInput"][17]["calc_value"] = 16 -defs["enums"]["ImGuiNavInput"][17]["name"] = "ImGuiNavInput_COUNT" -defs["enums"]["ImGuiNavInput"][17]["value"] = "16" +defs["enums"]["ImGuiNavHighlightFlags_"][4]["calc_value"] = 8 +defs["enums"]["ImGuiNavHighlightFlags_"][4]["name"] = "ImGuiNavHighlightFlags_NoRounding" +defs["enums"]["ImGuiNavHighlightFlags_"][4]["value"] = "1 << 3" defs["enums"]["ImGuiNavLayer"] = {} defs["enums"]["ImGuiNavLayer"][1] = {} defs["enums"]["ImGuiNavLayer"][1]["calc_value"] = 0 @@ -2421,41 +2715,57 @@ defs["enums"]["ImGuiNavMoveFlags_"][5]["calc_value"] = 8 defs["enums"]["ImGuiNavMoveFlags_"][5]["name"] = "ImGuiNavMoveFlags_WrapY" defs["enums"]["ImGuiNavMoveFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiNavMoveFlags_"][6] = {} -defs["enums"]["ImGuiNavMoveFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiNavMoveFlags_"][6]["name"] = "ImGuiNavMoveFlags_AllowCurrentNavId" -defs["enums"]["ImGuiNavMoveFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiNavMoveFlags_"][6]["calc_value"] = 15 +defs["enums"]["ImGuiNavMoveFlags_"][6]["name"] = "ImGuiNavMoveFlags_WrapMask_" +defs["enums"]["ImGuiNavMoveFlags_"][6]["value"] = "ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY" defs["enums"]["ImGuiNavMoveFlags_"][7] = {} -defs["enums"]["ImGuiNavMoveFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiNavMoveFlags_"][7]["name"] = "ImGuiNavMoveFlags_AlsoScoreVisibleSet" -defs["enums"]["ImGuiNavMoveFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiNavMoveFlags_"][7]["calc_value"] = 16 +defs["enums"]["ImGuiNavMoveFlags_"][7]["name"] = "ImGuiNavMoveFlags_AllowCurrentNavId" +defs["enums"]["ImGuiNavMoveFlags_"][7]["value"] = "1 << 4" defs["enums"]["ImGuiNavMoveFlags_"][8] = {} -defs["enums"]["ImGuiNavMoveFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiNavMoveFlags_"][8]["name"] = "ImGuiNavMoveFlags_ScrollToEdgeY" -defs["enums"]["ImGuiNavMoveFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiNavMoveFlags_"][8]["calc_value"] = 32 +defs["enums"]["ImGuiNavMoveFlags_"][8]["name"] = "ImGuiNavMoveFlags_AlsoScoreVisibleSet" +defs["enums"]["ImGuiNavMoveFlags_"][8]["value"] = "1 << 5" defs["enums"]["ImGuiNavMoveFlags_"][9] = {} -defs["enums"]["ImGuiNavMoveFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiNavMoveFlags_"][9]["name"] = "ImGuiNavMoveFlags_Forwarded" -defs["enums"]["ImGuiNavMoveFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiNavMoveFlags_"][9]["calc_value"] = 64 +defs["enums"]["ImGuiNavMoveFlags_"][9]["name"] = "ImGuiNavMoveFlags_ScrollToEdgeY" +defs["enums"]["ImGuiNavMoveFlags_"][9]["value"] = "1 << 6" defs["enums"]["ImGuiNavMoveFlags_"][10] = {} -defs["enums"]["ImGuiNavMoveFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiNavMoveFlags_"][10]["name"] = "ImGuiNavMoveFlags_DebugNoResult" -defs["enums"]["ImGuiNavMoveFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiNavMoveFlags_"][10]["calc_value"] = 128 +defs["enums"]["ImGuiNavMoveFlags_"][10]["name"] = "ImGuiNavMoveFlags_Forwarded" +defs["enums"]["ImGuiNavMoveFlags_"][10]["value"] = "1 << 7" defs["enums"]["ImGuiNavMoveFlags_"][11] = {} -defs["enums"]["ImGuiNavMoveFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiNavMoveFlags_"][11]["name"] = "ImGuiNavMoveFlags_FocusApi" -defs["enums"]["ImGuiNavMoveFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiNavMoveFlags_"][11]["calc_value"] = 256 +defs["enums"]["ImGuiNavMoveFlags_"][11]["name"] = "ImGuiNavMoveFlags_DebugNoResult" +defs["enums"]["ImGuiNavMoveFlags_"][11]["value"] = "1 << 8" defs["enums"]["ImGuiNavMoveFlags_"][12] = {} -defs["enums"]["ImGuiNavMoveFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiNavMoveFlags_"][12]["name"] = "ImGuiNavMoveFlags_Tabbing" -defs["enums"]["ImGuiNavMoveFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiNavMoveFlags_"][12]["calc_value"] = 512 +defs["enums"]["ImGuiNavMoveFlags_"][12]["name"] = "ImGuiNavMoveFlags_FocusApi" +defs["enums"]["ImGuiNavMoveFlags_"][12]["value"] = "1 << 9" defs["enums"]["ImGuiNavMoveFlags_"][13] = {} -defs["enums"]["ImGuiNavMoveFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiNavMoveFlags_"][13]["name"] = "ImGuiNavMoveFlags_Activate" -defs["enums"]["ImGuiNavMoveFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiNavMoveFlags_"][13]["calc_value"] = 1024 +defs["enums"]["ImGuiNavMoveFlags_"][13]["name"] = "ImGuiNavMoveFlags_IsTabbing" +defs["enums"]["ImGuiNavMoveFlags_"][13]["value"] = "1 << 10" defs["enums"]["ImGuiNavMoveFlags_"][14] = {} -defs["enums"]["ImGuiNavMoveFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiNavMoveFlags_"][14]["name"] = "ImGuiNavMoveFlags_DontSetNavHighlight" -defs["enums"]["ImGuiNavMoveFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiNavMoveFlags_"][14]["calc_value"] = 2048 +defs["enums"]["ImGuiNavMoveFlags_"][14]["name"] = "ImGuiNavMoveFlags_IsPageMove" +defs["enums"]["ImGuiNavMoveFlags_"][14]["value"] = "1 << 11" +defs["enums"]["ImGuiNavMoveFlags_"][15] = {} +defs["enums"]["ImGuiNavMoveFlags_"][15]["calc_value"] = 4096 +defs["enums"]["ImGuiNavMoveFlags_"][15]["name"] = "ImGuiNavMoveFlags_Activate" +defs["enums"]["ImGuiNavMoveFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiNavMoveFlags_"][16] = {} +defs["enums"]["ImGuiNavMoveFlags_"][16]["calc_value"] = 8192 +defs["enums"]["ImGuiNavMoveFlags_"][16]["name"] = "ImGuiNavMoveFlags_NoSelect" +defs["enums"]["ImGuiNavMoveFlags_"][16]["value"] = "1 << 13" +defs["enums"]["ImGuiNavMoveFlags_"][17] = {} +defs["enums"]["ImGuiNavMoveFlags_"][17]["calc_value"] = 16384 +defs["enums"]["ImGuiNavMoveFlags_"][17]["name"] = "ImGuiNavMoveFlags_NoSetNavHighlight" +defs["enums"]["ImGuiNavMoveFlags_"][17]["value"] = "1 << 14" +defs["enums"]["ImGuiNavMoveFlags_"][18] = {} +defs["enums"]["ImGuiNavMoveFlags_"][18]["calc_value"] = 32768 +defs["enums"]["ImGuiNavMoveFlags_"][18]["name"] = "ImGuiNavMoveFlags_NoClearActiveId" +defs["enums"]["ImGuiNavMoveFlags_"][18]["value"] = "1 << 15" defs["enums"]["ImGuiNextItemDataFlags_"] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1]["calc_value"] = 0 @@ -2469,6 +2779,18 @@ defs["enums"]["ImGuiNextItemDataFlags_"][3] = {} defs["enums"]["ImGuiNextItemDataFlags_"][3]["calc_value"] = 2 defs["enums"]["ImGuiNextItemDataFlags_"][3]["name"] = "ImGuiNextItemDataFlags_HasOpen" defs["enums"]["ImGuiNextItemDataFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiNextItemDataFlags_"][4] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiNextItemDataFlags_"][4]["name"] = "ImGuiNextItemDataFlags_HasShortcut" +defs["enums"]["ImGuiNextItemDataFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiNextItemDataFlags_"][5] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiNextItemDataFlags_"][5]["name"] = "ImGuiNextItemDataFlags_HasRefVal" +defs["enums"]["ImGuiNextItemDataFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiNextItemDataFlags_"][6] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiNextItemDataFlags_"][6]["name"] = "ImGuiNextItemDataFlags_HasStorageID" +defs["enums"]["ImGuiNextItemDataFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiNextWindowDataFlags_"] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][1] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][1]["calc_value"] = 0 @@ -2508,16 +2830,24 @@ defs["enums"]["ImGuiNextWindowDataFlags_"][9]["name"] = "ImGuiNextWindowDataFlag defs["enums"]["ImGuiNextWindowDataFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiNextWindowDataFlags_"][10] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiNextWindowDataFlags_"][10]["name"] = "ImGuiNextWindowDataFlags_HasViewport" +defs["enums"]["ImGuiNextWindowDataFlags_"][10]["name"] = "ImGuiNextWindowDataFlags_HasChildFlags" defs["enums"]["ImGuiNextWindowDataFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiNextWindowDataFlags_"][11] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiNextWindowDataFlags_"][11]["name"] = "ImGuiNextWindowDataFlags_HasDock" +defs["enums"]["ImGuiNextWindowDataFlags_"][11]["name"] = "ImGuiNextWindowDataFlags_HasRefreshPolicy" defs["enums"]["ImGuiNextWindowDataFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiNextWindowDataFlags_"][12] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiNextWindowDataFlags_"][12]["name"] = "ImGuiNextWindowDataFlags_HasWindowClass" +defs["enums"]["ImGuiNextWindowDataFlags_"][12]["name"] = "ImGuiNextWindowDataFlags_HasViewport" defs["enums"]["ImGuiNextWindowDataFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiNextWindowDataFlags_"][13] = {} +defs["enums"]["ImGuiNextWindowDataFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiNextWindowDataFlags_"][13]["name"] = "ImGuiNextWindowDataFlags_HasDock" +defs["enums"]["ImGuiNextWindowDataFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiNextWindowDataFlags_"][14] = {} +defs["enums"]["ImGuiNextWindowDataFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiNextWindowDataFlags_"][14]["name"] = "ImGuiNextWindowDataFlags_HasWindowClass" +defs["enums"]["ImGuiNextWindowDataFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiOldColumnFlags_"] = {} defs["enums"]["ImGuiOldColumnFlags_"][1] = {} defs["enums"]["ImGuiOldColumnFlags_"][1]["calc_value"] = 0 @@ -2579,24 +2909,28 @@ defs["enums"]["ImGuiPopupFlags_"][6]["name"] = "ImGuiPopupFlags_MouseButtonDefau defs["enums"]["ImGuiPopupFlags_"][6]["value"] = "1" defs["enums"]["ImGuiPopupFlags_"][7] = {} defs["enums"]["ImGuiPopupFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoReopen" defs["enums"]["ImGuiPopupFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiPopupFlags_"][8] = {} -defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverItems" -defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiPopupFlags_"][9] = {} -defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_AnyPopupId" -defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 256 +defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_NoOpenOverItems" +defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiPopupFlags_"][10] = {} -defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupLevel" -defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupId" +defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiPopupFlags_"][11] = {} -defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 384 -defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopup" -defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiPopupFlags_"][12] = {} +defs["enums"]["ImGuiPopupFlags_"][12]["calc_value"] = 3072 +defs["enums"]["ImGuiPopupFlags_"][12]["name"] = "ImGuiPopupFlags_AnyPopup" +defs["enums"]["ImGuiPopupFlags_"][12]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" defs["enums"]["ImGuiPopupPositionPolicy"] = {} defs["enums"]["ImGuiPopupPositionPolicy"][1] = {} defs["enums"]["ImGuiPopupPositionPolicy"][1]["calc_value"] = 0 @@ -2691,7 +3025,7 @@ defs["enums"]["ImGuiSelectableFlags_"][1]["name"] = "ImGuiSelectableFlags_None" defs["enums"]["ImGuiSelectableFlags_"][1]["value"] = "0" defs["enums"]["ImGuiSelectableFlags_"][2] = {} defs["enums"]["ImGuiSelectableFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_DontClosePopups" +defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_NoAutoClosePopups" defs["enums"]["ImGuiSelectableFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiSelectableFlags_"][3] = {} defs["enums"]["ImGuiSelectableFlags_"][3]["calc_value"] = 2 @@ -2707,8 +3041,25 @@ defs["enums"]["ImGuiSelectableFlags_"][5]["name"] = "ImGuiSelectableFlags_Disabl defs["enums"]["ImGuiSelectableFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiSelectableFlags_"][6] = {} defs["enums"]["ImGuiSelectableFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowItemOverlap" +defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowOverlap" defs["enums"]["ImGuiSelectableFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiSelectableFlags_"][7] = {} +defs["enums"]["ImGuiSelectableFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiSelectableFlags_"][7]["name"] = "ImGuiSelectableFlags_Highlight" +defs["enums"]["ImGuiSelectableFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiSelectionRequestType"] = {} +defs["enums"]["ImGuiSelectionRequestType"][1] = {} +defs["enums"]["ImGuiSelectionRequestType"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSelectionRequestType"][1]["name"] = "ImGuiSelectionRequestType_None" +defs["enums"]["ImGuiSelectionRequestType"][1]["value"] = "0" +defs["enums"]["ImGuiSelectionRequestType"][2] = {} +defs["enums"]["ImGuiSelectionRequestType"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSelectionRequestType"][2]["name"] = "ImGuiSelectionRequestType_SetAll" +defs["enums"]["ImGuiSelectionRequestType"][2]["value"] = "1" +defs["enums"]["ImGuiSelectionRequestType"][3] = {} +defs["enums"]["ImGuiSelectionRequestType"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSelectionRequestType"][3]["name"] = "ImGuiSelectionRequestType_SetRange" +defs["enums"]["ImGuiSelectionRequestType"][3]["value"] = "2" defs["enums"]["ImGuiSeparatorFlags_"] = {} defs["enums"]["ImGuiSeparatorFlags_"][1] = {} defs["enums"]["ImGuiSeparatorFlags_"][1]["calc_value"] = 0 @@ -2757,22 +3108,26 @@ defs["enums"]["ImGuiSliderFlags_"][5]["calc_value"] = 128 defs["enums"]["ImGuiSliderFlags_"][5]["name"] = "ImGuiSliderFlags_NoInput" defs["enums"]["ImGuiSliderFlags_"][5]["value"] = "1 << 7" defs["enums"]["ImGuiSliderFlags_"][6] = {} -defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 1879048207 -defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_InvalidMask_" -defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "0x7000000F" -defs["enums"]["ImGuiSortDirection_"] = {} -defs["enums"]["ImGuiSortDirection_"][1] = {} -defs["enums"]["ImGuiSortDirection_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiSortDirection_"][1]["name"] = "ImGuiSortDirection_None" -defs["enums"]["ImGuiSortDirection_"][1]["value"] = "0" -defs["enums"]["ImGuiSortDirection_"][2] = {} -defs["enums"]["ImGuiSortDirection_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSortDirection_"][2]["name"] = "ImGuiSortDirection_Ascending" -defs["enums"]["ImGuiSortDirection_"][2]["value"] = "1" -defs["enums"]["ImGuiSortDirection_"][3] = {} -defs["enums"]["ImGuiSortDirection_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiSortDirection_"][3]["name"] = "ImGuiSortDirection_Descending" -defs["enums"]["ImGuiSortDirection_"][3]["value"] = "2" +defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 256 +defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_WrapAround" +defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "1 << 8" +defs["enums"]["ImGuiSliderFlags_"][7] = {} +defs["enums"]["ImGuiSliderFlags_"][7]["calc_value"] = 1879048207 +defs["enums"]["ImGuiSliderFlags_"][7]["name"] = "ImGuiSliderFlags_InvalidMask_" +defs["enums"]["ImGuiSliderFlags_"][7]["value"] = "0x7000000F" +defs["enums"]["ImGuiSortDirection"] = {} +defs["enums"]["ImGuiSortDirection"][1] = {} +defs["enums"]["ImGuiSortDirection"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSortDirection"][1]["name"] = "ImGuiSortDirection_None" +defs["enums"]["ImGuiSortDirection"][1]["value"] = "0" +defs["enums"]["ImGuiSortDirection"][2] = {} +defs["enums"]["ImGuiSortDirection"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSortDirection"][2]["name"] = "ImGuiSortDirection_Ascending" +defs["enums"]["ImGuiSortDirection"][2]["value"] = "1" +defs["enums"]["ImGuiSortDirection"][3] = {} +defs["enums"]["ImGuiSortDirection"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSortDirection"][3]["name"] = "ImGuiSortDirection_Descending" +defs["enums"]["ImGuiSortDirection"][3]["value"] = "2" defs["enums"]["ImGuiStyleVar_"] = {} defs["enums"]["ImGuiStyleVar_"][1] = {} defs["enums"]["ImGuiStyleVar_"][1]["calc_value"] = 0 @@ -2868,16 +3223,52 @@ defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_TabRounding" defs["enums"]["ImGuiStyleVar_"][23]["value"] = "22" defs["enums"]["ImGuiStyleVar_"][24] = {} defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23 -defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_TabBorderSize" defs["enums"]["ImGuiStyleVar_"][24]["value"] = "23" defs["enums"]["ImGuiStyleVar_"][25] = {} defs["enums"]["ImGuiStyleVar_"][25]["calc_value"] = 24 -defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_TabBarBorderSize" defs["enums"]["ImGuiStyleVar_"][25]["value"] = "24" defs["enums"]["ImGuiStyleVar_"][26] = {} defs["enums"]["ImGuiStyleVar_"][26]["calc_value"] = 25 -defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_TabBarOverlineSize" defs["enums"]["ImGuiStyleVar_"][26]["value"] = "25" +defs["enums"]["ImGuiStyleVar_"][27] = {} +defs["enums"]["ImGuiStyleVar_"][27]["calc_value"] = 26 +defs["enums"]["ImGuiStyleVar_"][27]["name"] = "ImGuiStyleVar_TableAngledHeadersAngle" +defs["enums"]["ImGuiStyleVar_"][27]["value"] = "26" +defs["enums"]["ImGuiStyleVar_"][28] = {} +defs["enums"]["ImGuiStyleVar_"][28]["calc_value"] = 27 +defs["enums"]["ImGuiStyleVar_"][28]["name"] = "ImGuiStyleVar_TableAngledHeadersTextAlign" +defs["enums"]["ImGuiStyleVar_"][28]["value"] = "27" +defs["enums"]["ImGuiStyleVar_"][29] = {} +defs["enums"]["ImGuiStyleVar_"][29]["calc_value"] = 28 +defs["enums"]["ImGuiStyleVar_"][29]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][29]["value"] = "28" +defs["enums"]["ImGuiStyleVar_"][30] = {} +defs["enums"]["ImGuiStyleVar_"][30]["calc_value"] = 29 +defs["enums"]["ImGuiStyleVar_"][30]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][30]["value"] = "29" +defs["enums"]["ImGuiStyleVar_"][31] = {} +defs["enums"]["ImGuiStyleVar_"][31]["calc_value"] = 30 +defs["enums"]["ImGuiStyleVar_"][31]["name"] = "ImGuiStyleVar_SeparatorTextBorderSize" +defs["enums"]["ImGuiStyleVar_"][31]["value"] = "30" +defs["enums"]["ImGuiStyleVar_"][32] = {} +defs["enums"]["ImGuiStyleVar_"][32]["calc_value"] = 31 +defs["enums"]["ImGuiStyleVar_"][32]["name"] = "ImGuiStyleVar_SeparatorTextAlign" +defs["enums"]["ImGuiStyleVar_"][32]["value"] = "31" +defs["enums"]["ImGuiStyleVar_"][33] = {} +defs["enums"]["ImGuiStyleVar_"][33]["calc_value"] = 32 +defs["enums"]["ImGuiStyleVar_"][33]["name"] = "ImGuiStyleVar_SeparatorTextPadding" +defs["enums"]["ImGuiStyleVar_"][33]["value"] = "32" +defs["enums"]["ImGuiStyleVar_"][34] = {} +defs["enums"]["ImGuiStyleVar_"][34]["calc_value"] = 33 +defs["enums"]["ImGuiStyleVar_"][34]["name"] = "ImGuiStyleVar_DockingSeparatorSize" +defs["enums"]["ImGuiStyleVar_"][34]["value"] = "33" +defs["enums"]["ImGuiStyleVar_"][35] = {} +defs["enums"]["ImGuiStyleVar_"][35]["calc_value"] = 34 +defs["enums"]["ImGuiStyleVar_"][35]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][35]["value"] = "34" defs["enums"]["ImGuiTabBarFlagsPrivate_"] = {} defs["enums"]["ImGuiTabBarFlagsPrivate_"][1] = {} defs["enums"]["ImGuiTabBarFlagsPrivate_"][1]["calc_value"] = 1048576 @@ -2922,20 +3313,24 @@ defs["enums"]["ImGuiTabBarFlags_"][7]["name"] = "ImGuiTabBarFlags_NoTooltip" defs["enums"]["ImGuiTabBarFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiTabBarFlags_"][8] = {} defs["enums"]["ImGuiTabBarFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_DrawSelectedOverline" defs["enums"]["ImGuiTabBarFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiTabBarFlags_"][9] = {} defs["enums"]["ImGuiTabBarFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabBarFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTabBarFlags_"][10] = {} -defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 192 -defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" -defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTabBarFlags_"][11] = {} -defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" -defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 384 +defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" +defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][12] = {} +defs["enums"]["ImGuiTabBarFlags_"][12]["calc_value"] = 128 +defs["enums"]["ImGuiTabBarFlags_"][12]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" +defs["enums"]["ImGuiTabBarFlags_"][12]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabItemFlagsPrivate_"] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1]["calc_value"] = 192 @@ -2953,10 +3348,6 @@ defs["enums"]["ImGuiTabItemFlagsPrivate_"][4] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][4]["calc_value"] = 4194304 defs["enums"]["ImGuiTabItemFlagsPrivate_"][4]["name"] = "ImGuiTabItemFlags_Unsorted" defs["enums"]["ImGuiTabItemFlagsPrivate_"][4]["value"] = "1 << 22" -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5] = {} -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5]["calc_value"] = 8388608 -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5]["name"] = "ImGuiTabItemFlags_Preview" -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5]["value"] = "1 << 23" defs["enums"]["ImGuiTabItemFlags_"] = {} defs["enums"]["ImGuiTabItemFlags_"][1] = {} defs["enums"]["ImGuiTabItemFlags_"][1]["calc_value"] = 0 @@ -2994,6 +3385,10 @@ defs["enums"]["ImGuiTabItemFlags_"][9] = {} defs["enums"]["ImGuiTabItemFlags_"][9]["calc_value"] = 128 defs["enums"]["ImGuiTabItemFlags_"][9]["name"] = "ImGuiTabItemFlags_Trailing" defs["enums"]["ImGuiTabItemFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiTabItemFlags_"][10] = {} +defs["enums"]["ImGuiTabItemFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabItemFlags_"][10]["name"] = "ImGuiTabItemFlags_NoAssumedClosure" +defs["enums"]["ImGuiTabItemFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTableBgTarget_"] = {} defs["enums"]["ImGuiTableBgTarget_"][1] = {} defs["enums"]["ImGuiTableBgTarget_"][1]["calc_value"] = 0 @@ -3089,37 +3484,41 @@ defs["enums"]["ImGuiTableColumnFlags_"][19]["calc_value"] = 131072 defs["enums"]["ImGuiTableColumnFlags_"][19]["name"] = "ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiTableColumnFlags_"][20] = {} -defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 16777216 -defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_IsEnabled" -defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 24" +defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_AngledHeader" +defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiTableColumnFlags_"][21] = {} -defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 33554432 -defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsVisible" -defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 25" +defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 16777216 +defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsEnabled" +defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 24" defs["enums"]["ImGuiTableColumnFlags_"][22] = {} -defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 67108864 -defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsSorted" -defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 26" +defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 33554432 +defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsVisible" +defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 25" defs["enums"]["ImGuiTableColumnFlags_"][23] = {} -defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 134217728 -defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsHovered" -defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 27" +defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 67108864 +defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsSorted" +defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 26" defs["enums"]["ImGuiTableColumnFlags_"][24] = {} -defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 24 -defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_WidthMask_" -defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" +defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 134217728 +defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "1 << 27" defs["enums"]["ImGuiTableColumnFlags_"][25] = {} -defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 196608 -defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_IndentMask_" -defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" +defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 24 +defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_WidthMask_" +defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" defs["enums"]["ImGuiTableColumnFlags_"][26] = {} -defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 251658240 -defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_StatusMask_" -defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 196608 +defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_IndentMask_" +defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][27] = {} -defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 1073741824 -defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" -defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "1 << 30" +defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 251658240 +defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_StatusMask_" +defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][28] = {} +defs["enums"]["ImGuiTableColumnFlags_"][28]["calc_value"] = 1073741824 +defs["enums"]["ImGuiTableColumnFlags_"][28]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" +defs["enums"]["ImGuiTableColumnFlags_"][28]["value"] = "1 << 30" defs["enums"]["ImGuiTableFlags_"] = {} defs["enums"]["ImGuiTableFlags_"][1] = {} defs["enums"]["ImGuiTableFlags_"][1]["calc_value"] = 0 @@ -3262,9 +3661,13 @@ defs["enums"]["ImGuiTableFlags_"][35]["calc_value"] = 134217728 defs["enums"]["ImGuiTableFlags_"][35]["name"] = "ImGuiTableFlags_SortTristate" defs["enums"]["ImGuiTableFlags_"][35]["value"] = "1 << 27" defs["enums"]["ImGuiTableFlags_"][36] = {} -defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 57344 -defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_SizingMask_" -defs["enums"]["ImGuiTableFlags_"][36]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" +defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 268435456 +defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_HighlightHoveredColumn" +defs["enums"]["ImGuiTableFlags_"][36]["value"] = "1 << 28" +defs["enums"]["ImGuiTableFlags_"][37] = {} +defs["enums"]["ImGuiTableFlags_"][37]["calc_value"] = 57344 +defs["enums"]["ImGuiTableFlags_"][37]["name"] = "ImGuiTableFlags_SizingMask_" +defs["enums"]["ImGuiTableFlags_"][37]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" defs["enums"]["ImGuiTableRowFlags_"] = {} defs["enums"]["ImGuiTableRowFlags_"][1] = {} defs["enums"]["ImGuiTableRowFlags_"][1]["calc_value"] = 0 @@ -3289,14 +3692,22 @@ defs["enums"]["ImGuiTooltipFlags_"][1]["calc_value"] = 0 defs["enums"]["ImGuiTooltipFlags_"][1]["name"] = "ImGuiTooltipFlags_None" defs["enums"]["ImGuiTooltipFlags_"][1]["value"] = "0" defs["enums"]["ImGuiTooltipFlags_"][2] = {} -defs["enums"]["ImGuiTooltipFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiTooltipFlags_"][2]["name"] = "ImGuiTooltipFlags_OverridePreviousTooltip" -defs["enums"]["ImGuiTooltipFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiTooltipFlags_"][2]["calc_value"] = 2 +defs["enums"]["ImGuiTooltipFlags_"][2]["name"] = "ImGuiTooltipFlags_OverridePrevious" +defs["enums"]["ImGuiTooltipFlags_"][2]["value"] = "1 << 1" defs["enums"]["ImGuiTreeNodeFlagsPrivate_"] = {} defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1] = {} -defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["calc_value"] = 1048576 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["calc_value"] = 268435456 defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["name"] = "ImGuiTreeNodeFlags_ClipLabelForTrailingButton" -defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["value"] = "1 << 20" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["value"] = "1 << 28" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["calc_value"] = 536870912 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["name"] = "ImGuiTreeNodeFlags_UpsideDownArrow" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["value"] = "1 << 29" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["calc_value"] = 192 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["name"] = "ImGuiTreeNodeFlags_OpenOnMask_" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["value"] = "ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow" defs["enums"]["ImGuiTreeNodeFlags_"] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1]["calc_value"] = 0 @@ -3312,7 +3723,7 @@ defs["enums"]["ImGuiTreeNodeFlags_"][3]["name"] = "ImGuiTreeNodeFlags_Framed" defs["enums"]["ImGuiTreeNodeFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiTreeNodeFlags_"][4] = {} defs["enums"]["ImGuiTreeNodeFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowItemOverlap" +defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowOverlap" defs["enums"]["ImGuiTreeNodeFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiTreeNodeFlags_"][5] = {} defs["enums"]["ImGuiTreeNodeFlags_"][5]["calc_value"] = 8 @@ -3356,12 +3767,33 @@ defs["enums"]["ImGuiTreeNodeFlags_"][14]["name"] = "ImGuiTreeNodeFlags_SpanFullW defs["enums"]["ImGuiTreeNodeFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiTreeNodeFlags_"][15] = {} defs["enums"]["ImGuiTreeNodeFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_SpanTextWidth" defs["enums"]["ImGuiTreeNodeFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiTreeNodeFlags_"][16] = {} -defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 26 -defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" -defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_SpanAllColumns" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiTreeNodeFlags_"][17] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][17]["calc_value"] = 32768 +defs["enums"]["ImGuiTreeNodeFlags_"][17]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][17]["value"] = "1 << 15" +defs["enums"]["ImGuiTreeNodeFlags_"][18] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][18]["calc_value"] = 26 +defs["enums"]["ImGuiTreeNodeFlags_"][18]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" +defs["enums"]["ImGuiTreeNodeFlags_"][18]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" +defs["enums"]["ImGuiTypingSelectFlags_"] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][1] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiTypingSelectFlags_"][1]["name"] = "ImGuiTypingSelectFlags_None" +defs["enums"]["ImGuiTypingSelectFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiTypingSelectFlags_"][2] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiTypingSelectFlags_"][2]["name"] = "ImGuiTypingSelectFlags_AllowBackspace" +defs["enums"]["ImGuiTypingSelectFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiTypingSelectFlags_"][3] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiTypingSelectFlags_"][3]["name"] = "ImGuiTypingSelectFlags_AllowSingleCharMode" +defs["enums"]["ImGuiTypingSelectFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiViewportFlags_"] = {} defs["enums"]["ImGuiViewportFlags_"][1] = {} defs["enums"]["ImGuiViewportFlags_"][1]["calc_value"] = 0 @@ -3405,20 +3837,24 @@ defs["enums"]["ImGuiViewportFlags_"][10]["name"] = "ImGuiViewportFlags_NoRendere defs["enums"]["ImGuiViewportFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiViewportFlags_"][11] = {} defs["enums"]["ImGuiViewportFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiViewportFlags_"][11]["name"] = "ImGuiViewportFlags_TopMost" +defs["enums"]["ImGuiViewportFlags_"][11]["name"] = "ImGuiViewportFlags_NoAutoMerge" defs["enums"]["ImGuiViewportFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiViewportFlags_"][12] = {} defs["enums"]["ImGuiViewportFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiViewportFlags_"][12]["name"] = "ImGuiViewportFlags_Minimized" +defs["enums"]["ImGuiViewportFlags_"][12]["name"] = "ImGuiViewportFlags_TopMost" defs["enums"]["ImGuiViewportFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiViewportFlags_"][13] = {} defs["enums"]["ImGuiViewportFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiViewportFlags_"][13]["name"] = "ImGuiViewportFlags_NoAutoMerge" +defs["enums"]["ImGuiViewportFlags_"][13]["name"] = "ImGuiViewportFlags_CanHostOtherWindows" defs["enums"]["ImGuiViewportFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiViewportFlags_"][14] = {} defs["enums"]["ImGuiViewportFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiViewportFlags_"][14]["name"] = "ImGuiViewportFlags_CanHostOtherWindows" +defs["enums"]["ImGuiViewportFlags_"][14]["name"] = "ImGuiViewportFlags_IsMinimized" defs["enums"]["ImGuiViewportFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiViewportFlags_"][15] = {} +defs["enums"]["ImGuiViewportFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiViewportFlags_"][15]["name"] = "ImGuiViewportFlags_IsFocused" +defs["enums"]["ImGuiViewportFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiWindowDockStyleCol"] = {} defs["enums"]["ImGuiWindowDockStyleCol"][1] = {} defs["enums"]["ImGuiWindowDockStyleCol"][1]["calc_value"] = 0 @@ -3426,28 +3862,36 @@ defs["enums"]["ImGuiWindowDockStyleCol"][1]["name"] = "ImGuiWindowDockStyleCol_T defs["enums"]["ImGuiWindowDockStyleCol"][1]["value"] = "0" defs["enums"]["ImGuiWindowDockStyleCol"][2] = {} defs["enums"]["ImGuiWindowDockStyleCol"][2]["calc_value"] = 1 -defs["enums"]["ImGuiWindowDockStyleCol"][2]["name"] = "ImGuiWindowDockStyleCol_Tab" +defs["enums"]["ImGuiWindowDockStyleCol"][2]["name"] = "ImGuiWindowDockStyleCol_TabHovered" defs["enums"]["ImGuiWindowDockStyleCol"][2]["value"] = "1" defs["enums"]["ImGuiWindowDockStyleCol"][3] = {} defs["enums"]["ImGuiWindowDockStyleCol"][3]["calc_value"] = 2 -defs["enums"]["ImGuiWindowDockStyleCol"][3]["name"] = "ImGuiWindowDockStyleCol_TabHovered" +defs["enums"]["ImGuiWindowDockStyleCol"][3]["name"] = "ImGuiWindowDockStyleCol_TabFocused" defs["enums"]["ImGuiWindowDockStyleCol"][3]["value"] = "2" defs["enums"]["ImGuiWindowDockStyleCol"][4] = {} defs["enums"]["ImGuiWindowDockStyleCol"][4]["calc_value"] = 3 -defs["enums"]["ImGuiWindowDockStyleCol"][4]["name"] = "ImGuiWindowDockStyleCol_TabActive" +defs["enums"]["ImGuiWindowDockStyleCol"][4]["name"] = "ImGuiWindowDockStyleCol_TabSelected" defs["enums"]["ImGuiWindowDockStyleCol"][4]["value"] = "3" defs["enums"]["ImGuiWindowDockStyleCol"][5] = {} defs["enums"]["ImGuiWindowDockStyleCol"][5]["calc_value"] = 4 -defs["enums"]["ImGuiWindowDockStyleCol"][5]["name"] = "ImGuiWindowDockStyleCol_TabUnfocused" +defs["enums"]["ImGuiWindowDockStyleCol"][5]["name"] = "ImGuiWindowDockStyleCol_TabSelectedOverline" defs["enums"]["ImGuiWindowDockStyleCol"][5]["value"] = "4" defs["enums"]["ImGuiWindowDockStyleCol"][6] = {} defs["enums"]["ImGuiWindowDockStyleCol"][6]["calc_value"] = 5 -defs["enums"]["ImGuiWindowDockStyleCol"][6]["name"] = "ImGuiWindowDockStyleCol_TabUnfocusedActive" +defs["enums"]["ImGuiWindowDockStyleCol"][6]["name"] = "ImGuiWindowDockStyleCol_TabDimmed" defs["enums"]["ImGuiWindowDockStyleCol"][6]["value"] = "5" defs["enums"]["ImGuiWindowDockStyleCol"][7] = {} defs["enums"]["ImGuiWindowDockStyleCol"][7]["calc_value"] = 6 -defs["enums"]["ImGuiWindowDockStyleCol"][7]["name"] = "ImGuiWindowDockStyleCol_COUNT" +defs["enums"]["ImGuiWindowDockStyleCol"][7]["name"] = "ImGuiWindowDockStyleCol_TabDimmedSelected" defs["enums"]["ImGuiWindowDockStyleCol"][7]["value"] = "6" +defs["enums"]["ImGuiWindowDockStyleCol"][8] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][8]["calc_value"] = 7 +defs["enums"]["ImGuiWindowDockStyleCol"][8]["name"] = "ImGuiWindowDockStyleCol_TabDimmedSelectedOverline" +defs["enums"]["ImGuiWindowDockStyleCol"][8]["value"] = "7" +defs["enums"]["ImGuiWindowDockStyleCol"][9] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][9]["calc_value"] = 8 +defs["enums"]["ImGuiWindowDockStyleCol"][9]["name"] = "ImGuiWindowDockStyleCol_COUNT" +defs["enums"]["ImGuiWindowDockStyleCol"][9]["value"] = "8" defs["enums"]["ImGuiWindowFlags_"] = {} defs["enums"]["ImGuiWindowFlags_"][1] = {} defs["enums"]["ImGuiWindowFlags_"][1]["calc_value"] = 0 @@ -3519,244 +3963,277 @@ defs["enums"]["ImGuiWindowFlags_"][17]["name"] = "ImGuiWindowFlags_AlwaysHorizon defs["enums"]["ImGuiWindowFlags_"][17]["value"] = "1<< 15" defs["enums"]["ImGuiWindowFlags_"][18] = {} defs["enums"]["ImGuiWindowFlags_"][18]["calc_value"] = 65536 -defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_NoNavInputs" defs["enums"]["ImGuiWindowFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiWindowFlags_"][19] = {} -defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 262144 -defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavInputs" -defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 18" +defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 131072 +defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiWindowFlags_"][20] = {} -defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 524288 -defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_NoNavFocus" -defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 19" +defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_UnsavedDocument" +defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiWindowFlags_"][21] = {} -defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 1048576 -defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_UnsavedDocument" -defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "1 << 20" +defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 524288 +defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_NoDocking" +defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiWindowFlags_"][22] = {} -defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 2097152 -defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoDocking" -defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "1 << 21" +defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 196608 +defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoNav" +defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][23] = {} -defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 786432 -defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoNav" -defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 43 +defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoDecoration" +defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" defs["enums"]["ImGuiWindowFlags_"][24] = {} -defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 43 -defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_NoDecoration" -defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" +defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 197120 +defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_NoInputs" +defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][25] = {} -defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 786944 -defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_NoInputs" -defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 16777216 +defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_ChildWindow" +defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "1 << 24" defs["enums"]["ImGuiWindowFlags_"][26] = {} -defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 8388608 -defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_NavFlattened" -defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 23" +defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 33554432 +defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_Tooltip" +defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 25" defs["enums"]["ImGuiWindowFlags_"][27] = {} -defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 16777216 -defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_ChildWindow" -defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 24" +defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 67108864 +defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_Popup" +defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 26" defs["enums"]["ImGuiWindowFlags_"][28] = {} -defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 33554432 -defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_Tooltip" -defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 25" +defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 134217728 +defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_Modal" +defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 27" defs["enums"]["ImGuiWindowFlags_"][29] = {} -defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 67108864 -defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_Popup" -defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 26" +defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 268435456 +defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_ChildMenu" +defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 28" defs["enums"]["ImGuiWindowFlags_"][30] = {} -defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 134217728 -defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_Modal" -defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 27" -defs["enums"]["ImGuiWindowFlags_"][31] = {} -defs["enums"]["ImGuiWindowFlags_"][31]["calc_value"] = 268435456 -defs["enums"]["ImGuiWindowFlags_"][31]["name"] = "ImGuiWindowFlags_ChildMenu" -defs["enums"]["ImGuiWindowFlags_"][31]["value"] = "1 << 28" -defs["enums"]["ImGuiWindowFlags_"][32] = {} -defs["enums"]["ImGuiWindowFlags_"][32]["calc_value"] = 536870912 -defs["enums"]["ImGuiWindowFlags_"][32]["name"] = "ImGuiWindowFlags_DockNodeHost" -defs["enums"]["ImGuiWindowFlags_"][32]["value"] = "1 << 29" +defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 536870912 +defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_DockNodeHost" +defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 29" +defs["enums"]["ImGuiWindowRefreshFlags_"] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][1] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiWindowRefreshFlags_"][1]["name"] = "ImGuiWindowRefreshFlags_None" +defs["enums"]["ImGuiWindowRefreshFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiWindowRefreshFlags_"][2] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiWindowRefreshFlags_"][2]["name"] = "ImGuiWindowRefreshFlags_TryToAvoidRefresh" +defs["enums"]["ImGuiWindowRefreshFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiWindowRefreshFlags_"][3] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiWindowRefreshFlags_"][3]["name"] = "ImGuiWindowRefreshFlags_RefreshOnHover" +defs["enums"]["ImGuiWindowRefreshFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiWindowRefreshFlags_"][4] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiWindowRefreshFlags_"][4]["name"] = "ImGuiWindowRefreshFlags_RefreshOnFocus" +defs["enums"]["ImGuiWindowRefreshFlags_"][4]["value"] = "1 << 2" defs["enumtypes"] = {} +defs["enumtypes"]["ImGuiDir"] = "int" defs["enumtypes"]["ImGuiKey"] = "int" defs["enumtypes"]["ImGuiLocKey"] = "int" +defs["enumtypes"]["ImGuiMouseSource"] = "int" +defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:598" -defs["locations"]["ImColor"] = "imgui:2455" -defs["locations"]["ImDrawChannel"] = "imgui:2545" -defs["locations"]["ImDrawCmd"] = "imgui:2504" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2537" -defs["locations"]["ImDrawData"] = "imgui:2737" -defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:787" -defs["locations"]["ImDrawFlags_"] = "imgui:2571" -defs["locations"]["ImDrawList"] = "imgui:2609" -defs["locations"]["ImDrawListFlags_"] = "imgui:2591" -defs["locations"]["ImDrawListSharedData"] = "imgui_internal:764" -defs["locations"]["ImDrawListSplitter"] = "imgui:2554" -defs["locations"]["ImDrawVert"] = "imgui:2522" -defs["locations"]["ImFont"] = "imgui:2957" -defs["locations"]["ImFontAtlas"] = "imgui:2854" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2816" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2829" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3497" -defs["locations"]["ImFontConfig"] = "imgui:2760" -defs["locations"]["ImFontGlyph"] = "imgui:2789" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2801" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1433" -defs["locations"]["ImGuiAxis"] = "imgui_internal:953" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1576" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:858" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1690" -defs["locations"]["ImGuiCol_"] = "imgui:1591" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1703" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:996" -defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:883" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1124" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1013" -defs["locations"]["ImGuiCond_"] = "imgui:1794" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1551" -defs["locations"]["ImGuiContext"] = "imgui_internal:1910" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:1895" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1893" -defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1604" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:979" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:988" -defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:973" -defs["locations"]["ImGuiDataType_"] = "imgui:1376" -defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1825" -defs["locations"]["ImGuiDir_"] = "imgui:1392" -defs["locations"]["ImGuiDockContext"] = "imgui_internal:1702" -defs["locations"]["ImGuiDockNode"] = "imgui_internal:1620" -defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1579" -defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1341" -defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1611" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1354" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1301" +defs["locations"]["ImBitVector"] = "imgui_internal:607" +defs["locations"]["ImColor"] = "imgui:2845" +defs["locations"]["ImDrawChannel"] = "imgui:3083" +defs["locations"]["ImDrawCmd"] = "imgui:3042" +defs["locations"]["ImDrawCmdHeader"] = "imgui:3075" +defs["locations"]["ImDrawData"] = "imgui:3288" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:796" +defs["locations"]["ImDrawFlags_"] = "imgui:3109" +defs["locations"]["ImDrawList"] = "imgui:3147" +defs["locations"]["ImDrawListFlags_"] = "imgui:3129" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:772" +defs["locations"]["ImDrawListSplitter"] = "imgui:3092" +defs["locations"]["ImDrawVert"] = "imgui:3060" +defs["locations"]["ImFont"] = "imgui:3511" +defs["locations"]["ImFontAtlas"] = "imgui:3407" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3369" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:3382" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3983" +defs["locations"]["ImFontConfig"] = "imgui:3312" +defs["locations"]["ImFontGlyph"] = "imgui:3342" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3354" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1550" +defs["locations"]["ImGuiAxis"] = "imgui_internal:1018" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1679" +defs["locations"]["ImGuiBoxSelectState"] = "imgui_internal:1733" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:911" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1812" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1148" +defs["locations"]["ImGuiCol_"] = "imgui:1694" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1823" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:1032" +defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:936" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1291" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1049" +defs["locations"]["ImGuiCond_"] = "imgui:1925" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1653" +defs["locations"]["ImGuiContext"] = "imgui_internal:2184" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:2169" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2167" +defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1844" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:822" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:831" +defs["locations"]["ImGuiDataTypeStorage"] = "imgui_internal:816" +defs["locations"]["ImGuiDataType_"] = "imgui:1439" +defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:808" +defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2103" +defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2110" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2083" +defs["locations"]["ImGuiDir"] = "imgui:1456" +defs["locations"]["ImGuiDockContext"] = "imgui_internal:1946" +defs["locations"]["ImGuiDockNode"] = "imgui_internal:1860" +defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1814" +defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1392" +defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1851" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1411" +defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:981" +defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1630" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1338" defs["locations"]["ImGuiFreeTypeBuilderFlags"] = "imgui_freetype:19" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:1026" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1315" -defs["locations"]["ImGuiIO"] = "imgui:1971" -defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1291" -defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1289" -defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1287" -defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1285" -defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1283" -defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1286" -defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1284" -defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1288" -defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1257" -defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1354" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:1270" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2159" -defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:849" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1036" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1061" -defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:806" -defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:826" -defs["locations"]["ImGuiKey"] = "imgui:1414" -defs["locations"]["ImGuiKeyData"] = "imgui:1963" -defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1342" -defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1317" -defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1330" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1176" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:937" -defs["locations"]["ImGuiListClipper"] = "imgui:2404" -defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1417" -defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1404" -defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1814" -defs["locations"]["ImGuiLocKey"] = "imgui_internal:1801" -defs["locations"]["ImGuiLogType"] = "imgui_internal:943" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1042" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1841" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1766" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1776" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1456" -defs["locations"]["ImGuiNavInput"] = "imgui:1542" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1490" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1483" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1465" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1163" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1156" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1129" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1112" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1530" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1510" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1540" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2279" -defs["locations"]["ImGuiPayload"] = "imgui:2220" -defs["locations"]["ImGuiPlatformIO"] = "imgui:3122" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:3194" -defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3185" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:960" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1098" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1097" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:966" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1220" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1442" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:896" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1113" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:915" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1781" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1213" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2190" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:889" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1749" -defs["locations"]["ImGuiSortDirection_"] = "imgui:1403" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1864" -defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1188" -defs["locations"]["ImGuiStackTool"] = "imgui_internal:1876" -defs["locations"]["ImGuiStorage"] = "imgui:2341" -defs["locations"]["ImGuiStoragePair"] = "imgui:2344" -defs["locations"]["ImGuiStyle"] = "imgui:1906" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1003" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1658" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:2625" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2587" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1138" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2605" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2595" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1154" -defs["locations"]["ImGuiTable"] = "imgui_internal:2762" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1292" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2745" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2686" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1240" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2899" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2242" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1189" -defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2752" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1277" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2923" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2256" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2878" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2314" -defs["locations"]["ImGuiTextFilter"] = "imgui:2287" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:923" -defs["locations"]["ImGuiTextIndex"] = "imgui_internal:721" -defs["locations"]["ImGuiTextRange"] = "imgui:2297" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:929" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:910" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1068" -defs["locations"]["ImGuiViewport"] = "imgui:3038" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:3013" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1719" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2440" -defs["locations"]["ImGuiWindowClass"] = "imgui:2205" -defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1697" -defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1686" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:995" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1764" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1206" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2392" -defs["locations"]["ImRect"] = "imgui_internal:526" -defs["locations"]["ImVec1"] = "imgui_internal:508" -defs["locations"]["ImVec2"] = "imgui:259" -defs["locations"]["ImVec2ih"] = "imgui_internal:516" -defs["locations"]["ImVec4"] = "imgui:272" -defs["locations"]["STB_TexteditState"] = "imstb_textedit:320" -defs["locations"]["StbTexteditRow"] = "imstb_textedit:367" -defs["locations"]["StbUndoRecord"] = "imstb_textedit:302" -defs["locations"]["StbUndoState"] = "imstb_textedit:311" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1062" +defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:893" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1352" +defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2150" +defs["locations"]["ImGuiIO"] = "imgui:2298" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1410" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1408" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1406" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1404" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1402" +defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1405" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1403" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1407" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1378" +defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1477" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1618" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1391" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2524" +defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1098" +defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:901" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1182" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1120" +defs["locations"]["ImGuiItemFlagsPrivate_"] = "imgui_internal:845" +defs["locations"]["ImGuiItemFlags_"] = "imgui:1169" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:867" +defs["locations"]["ImGuiKey"] = "imgui:1485" +defs["locations"]["ImGuiKeyData"] = "imgui:2290" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1464" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1438" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1452" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1254" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:1002" +defs["locations"]["ImGuiListClipper"] = "imgui:2753" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1534" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1521" +defs["locations"]["ImGuiLocEntry"] = "imgui_internal:2072" +defs["locations"]["ImGuiLocKey"] = "imgui_internal:2054" +defs["locations"]["ImGuiLogType"] = "imgui_internal:1008" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1080" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2120" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1885" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1895" +defs["locations"]["ImGuiMouseSource"] = "imgui:1914" +defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2903" +defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2930" +defs["locations"]["ImGuiMultiSelectState"] = "imgui_internal:1790" +defs["locations"]["ImGuiMultiSelectTempData"] = "imgui_internal:1765" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1575" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1613" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1605" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1583" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1234" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1224" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1195" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1176" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1698" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1678" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1708" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2624" +defs["locations"]["ImGuiPayload"] = "imgui:2589" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3682" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3781" +defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3771" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:1025" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1335" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1256" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1327" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1314" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1561" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:949" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1274" +defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2976" +defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2999" +defs["locations"]["ImGuiSelectionRequest"] = "imgui:2950" +defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2942" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:970" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:2034" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1307" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2558" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:942" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1869" +defs["locations"]["ImGuiSortDirection"] = "imgui:1467" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2138" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1281" +defs["locations"]["ImGuiStorage"] = "imgui:2696" +defs["locations"]["ImGuiStoragePair"] = "imgui:2679" +defs["locations"]["ImGuiStyle"] = "imgui:2212" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1039" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1771" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:3013" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2976" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1306" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2993" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2984" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1323" +defs["locations"]["ImGuiTable"] = "imgui_internal:3159" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:2066" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3127" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:3067" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:2013" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3306" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2088" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1960" +defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:3136" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3146" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:2051" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3330" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2078" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3283" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2659" +defs["locations"]["ImGuiTextFilter"] = "imgui:2632" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:988" +defs["locations"]["ImGuiTextIndex"] = "imgui_internal:727" +defs["locations"]["ImGuiTextRange"] = "imgui:2642" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:994" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:963" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1221" +defs["locations"]["ImGuiTreeNodeStackData"] = "imgui_internal:1273" +defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1641" +defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1649" +defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1660" +defs["locations"]["ImGuiViewport"] = "imgui:3597" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3569" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1963" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2824" +defs["locations"]["ImGuiWindowClass"] = "imgui:2573" +defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1941" +defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1927" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1097" +defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1167" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:2015" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1299" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2774" +defs["locations"]["ImRect"] = "imgui_internal:529" +defs["locations"]["ImVec1"] = "imgui_internal:511" +defs["locations"]["ImVec2"] = "imgui:293" +defs["locations"]["ImVec2ih"] = "imgui_internal:519" +defs["locations"]["ImVec4"] = "imgui:306" defs["structs"] = {} defs["structs"]["ImBitVector"] = {} defs["structs"]["ImBitVector"][1] = {} @@ -3823,7 +4300,8 @@ defs["structs"]["ImDrawData"][4]["name"] = "TotalVtxCount" defs["structs"]["ImDrawData"][4]["type"] = "int" defs["structs"]["ImDrawData"][5] = {} defs["structs"]["ImDrawData"][5]["name"] = "CmdLists" -defs["structs"]["ImDrawData"][5]["type"] = "ImDrawList**" +defs["structs"]["ImDrawData"][5]["template_type"] = "ImDrawList*" +defs["structs"]["ImDrawData"][5]["type"] = "ImVector_ImDrawListPtr" defs["structs"]["ImDrawData"][6] = {} defs["structs"]["ImDrawData"][6]["name"] = "DisplayPos" defs["structs"]["ImDrawData"][6]["type"] = "ImVec2" @@ -3841,7 +4319,11 @@ defs["structs"]["ImDrawDataBuilder"][1] = {} defs["structs"]["ImDrawDataBuilder"][1]["name"] = "Layers[2]" defs["structs"]["ImDrawDataBuilder"][1]["size"] = 2 defs["structs"]["ImDrawDataBuilder"][1]["template_type"] = "ImDrawList*" -defs["structs"]["ImDrawDataBuilder"][1]["type"] = "ImVector_ImDrawListPtr" +defs["structs"]["ImDrawDataBuilder"][1]["type"] = "ImVector_ImDrawListPtr*" +defs["structs"]["ImDrawDataBuilder"][2] = {} +defs["structs"]["ImDrawDataBuilder"][2]["name"] = "LayerData1" +defs["structs"]["ImDrawDataBuilder"][2]["template_type"] = "ImDrawList*" +defs["structs"]["ImDrawDataBuilder"][2]["type"] = "ImVector_ImDrawListPtr" defs["structs"]["ImDrawList"] = {} defs["structs"]["ImDrawList"][1] = {} defs["structs"]["ImDrawList"][1]["name"] = "CmdBuffer" @@ -3865,35 +4347,35 @@ defs["structs"]["ImDrawList"][6] = {} defs["structs"]["ImDrawList"][6]["name"] = "_Data" defs["structs"]["ImDrawList"][6]["type"] = "ImDrawListSharedData*" defs["structs"]["ImDrawList"][7] = {} -defs["structs"]["ImDrawList"][7]["name"] = "_OwnerName" -defs["structs"]["ImDrawList"][7]["type"] = "const char*" +defs["structs"]["ImDrawList"][7]["name"] = "_VtxWritePtr" +defs["structs"]["ImDrawList"][7]["type"] = "ImDrawVert*" defs["structs"]["ImDrawList"][8] = {} -defs["structs"]["ImDrawList"][8]["name"] = "_VtxWritePtr" -defs["structs"]["ImDrawList"][8]["type"] = "ImDrawVert*" +defs["structs"]["ImDrawList"][8]["name"] = "_IdxWritePtr" +defs["structs"]["ImDrawList"][8]["type"] = "ImDrawIdx*" defs["structs"]["ImDrawList"][9] = {} -defs["structs"]["ImDrawList"][9]["name"] = "_IdxWritePtr" -defs["structs"]["ImDrawList"][9]["type"] = "ImDrawIdx*" +defs["structs"]["ImDrawList"][9]["name"] = "_Path" +defs["structs"]["ImDrawList"][9]["template_type"] = "ImVec2" +defs["structs"]["ImDrawList"][9]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawList"][10] = {} -defs["structs"]["ImDrawList"][10]["name"] = "_ClipRectStack" -defs["structs"]["ImDrawList"][10]["template_type"] = "ImVec4" -defs["structs"]["ImDrawList"][10]["type"] = "ImVector_ImVec4" +defs["structs"]["ImDrawList"][10]["name"] = "_CmdHeader" +defs["structs"]["ImDrawList"][10]["type"] = "ImDrawCmdHeader" defs["structs"]["ImDrawList"][11] = {} -defs["structs"]["ImDrawList"][11]["name"] = "_TextureIdStack" -defs["structs"]["ImDrawList"][11]["template_type"] = "ImTextureID" -defs["structs"]["ImDrawList"][11]["type"] = "ImVector_ImTextureID" +defs["structs"]["ImDrawList"][11]["name"] = "_Splitter" +defs["structs"]["ImDrawList"][11]["type"] = "ImDrawListSplitter" defs["structs"]["ImDrawList"][12] = {} -defs["structs"]["ImDrawList"][12]["name"] = "_Path" -defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec2" -defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawList"][12]["name"] = "_ClipRectStack" +defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec4" +defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec4" defs["structs"]["ImDrawList"][13] = {} -defs["structs"]["ImDrawList"][13]["name"] = "_CmdHeader" -defs["structs"]["ImDrawList"][13]["type"] = "ImDrawCmdHeader" +defs["structs"]["ImDrawList"][13]["name"] = "_TextureIdStack" +defs["structs"]["ImDrawList"][13]["template_type"] = "ImTextureID" +defs["structs"]["ImDrawList"][13]["type"] = "ImVector_ImTextureID" defs["structs"]["ImDrawList"][14] = {} -defs["structs"]["ImDrawList"][14]["name"] = "_Splitter" -defs["structs"]["ImDrawList"][14]["type"] = "ImDrawListSplitter" +defs["structs"]["ImDrawList"][14]["name"] = "_FringeScale" +defs["structs"]["ImDrawList"][14]["type"] = "float" defs["structs"]["ImDrawList"][15] = {} -defs["structs"]["ImDrawList"][15]["name"] = "_FringeScale" -defs["structs"]["ImDrawList"][15]["type"] = "float" +defs["structs"]["ImDrawList"][15]["name"] = "_OwnerName" +defs["structs"]["ImDrawList"][15]["type"] = "const char*" defs["structs"]["ImDrawListSharedData"] = {} defs["structs"]["ImDrawListSharedData"][1] = {} defs["structs"]["ImDrawListSharedData"][1]["name"] = "TexUvWhitePixel" @@ -3905,35 +4387,38 @@ defs["structs"]["ImDrawListSharedData"][3] = {} defs["structs"]["ImDrawListSharedData"][3]["name"] = "FontSize" defs["structs"]["ImDrawListSharedData"][3]["type"] = "float" defs["structs"]["ImDrawListSharedData"][4] = {} -defs["structs"]["ImDrawListSharedData"][4]["name"] = "CurveTessellationTol" +defs["structs"]["ImDrawListSharedData"][4]["name"] = "FontScale" defs["structs"]["ImDrawListSharedData"][4]["type"] = "float" defs["structs"]["ImDrawListSharedData"][5] = {} -defs["structs"]["ImDrawListSharedData"][5]["name"] = "CircleSegmentMaxError" +defs["structs"]["ImDrawListSharedData"][5]["name"] = "CurveTessellationTol" defs["structs"]["ImDrawListSharedData"][5]["type"] = "float" defs["structs"]["ImDrawListSharedData"][6] = {} -defs["structs"]["ImDrawListSharedData"][6]["name"] = "ClipRectFullscreen" -defs["structs"]["ImDrawListSharedData"][6]["type"] = "ImVec4" +defs["structs"]["ImDrawListSharedData"][6]["name"] = "CircleSegmentMaxError" +defs["structs"]["ImDrawListSharedData"][6]["type"] = "float" defs["structs"]["ImDrawListSharedData"][7] = {} -defs["structs"]["ImDrawListSharedData"][7]["name"] = "InitialFlags" -defs["structs"]["ImDrawListSharedData"][7]["type"] = "ImDrawListFlags" +defs["structs"]["ImDrawListSharedData"][7]["name"] = "ClipRectFullscreen" +defs["structs"]["ImDrawListSharedData"][7]["type"] = "ImVec4" defs["structs"]["ImDrawListSharedData"][8] = {} -defs["structs"]["ImDrawListSharedData"][8]["name"] = "TempBuffer" -defs["structs"]["ImDrawListSharedData"][8]["template_type"] = "ImVec2" -defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawListSharedData"][8]["name"] = "InitialFlags" +defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImDrawListFlags" defs["structs"]["ImDrawListSharedData"][9] = {} -defs["structs"]["ImDrawListSharedData"][9]["name"] = "ArcFastVtx[48]" -defs["structs"]["ImDrawListSharedData"][9]["size"] = 48 -defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][9]["name"] = "TempBuffer" +defs["structs"]["ImDrawListSharedData"][9]["template_type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawListSharedData"][10] = {} -defs["structs"]["ImDrawListSharedData"][10]["name"] = "ArcFastRadiusCutoff" -defs["structs"]["ImDrawListSharedData"][10]["type"] = "float" +defs["structs"]["ImDrawListSharedData"][10]["name"] = "ArcFastVtx[48]" +defs["structs"]["ImDrawListSharedData"][10]["size"] = 48 +defs["structs"]["ImDrawListSharedData"][10]["type"] = "ImVec2" defs["structs"]["ImDrawListSharedData"][11] = {} -defs["structs"]["ImDrawListSharedData"][11]["name"] = "CircleSegmentCounts[64]" -defs["structs"]["ImDrawListSharedData"][11]["size"] = 64 -defs["structs"]["ImDrawListSharedData"][11]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][11]["name"] = "ArcFastRadiusCutoff" +defs["structs"]["ImDrawListSharedData"][11]["type"] = "float" defs["structs"]["ImDrawListSharedData"][12] = {} -defs["structs"]["ImDrawListSharedData"][12]["name"] = "TexUvLines" -defs["structs"]["ImDrawListSharedData"][12]["type"] = "const ImVec4*" +defs["structs"]["ImDrawListSharedData"][12]["name"] = "CircleSegmentCounts[64]" +defs["structs"]["ImDrawListSharedData"][12]["size"] = 64 +defs["structs"]["ImDrawListSharedData"][12]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][13] = {} +defs["structs"]["ImDrawListSharedData"][13]["name"] = "TexUvLines" +defs["structs"]["ImDrawListSharedData"][13]["type"] = "const ImVec4*" defs["structs"]["ImDrawListSplitter"] = {} defs["structs"]["ImDrawListSplitter"][1] = {} defs["structs"]["ImDrawListSplitter"][1]["name"] = "_Current" @@ -3993,27 +4478,33 @@ defs["structs"]["ImFont"][11] = {} defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "DotChar" -defs["structs"]["ImFont"][12]["type"] = "ImWchar" +defs["structs"]["ImFont"][12]["name"] = "EllipsisCharCount" +defs["structs"]["ImFont"][12]["type"] = "short" defs["structs"]["ImFont"][13] = {} -defs["structs"]["ImFont"][13]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][13]["type"] = "bool" +defs["structs"]["ImFont"][13]["name"] = "EllipsisWidth" +defs["structs"]["ImFont"][13]["type"] = "float" defs["structs"]["ImFont"][14] = {} -defs["structs"]["ImFont"][14]["name"] = "Scale" +defs["structs"]["ImFont"][14]["name"] = "EllipsisCharStep" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "Ascent" -defs["structs"]["ImFont"][15]["type"] = "float" +defs["structs"]["ImFont"][15]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][15]["type"] = "bool" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "Descent" +defs["structs"]["ImFont"][16]["name"] = "Scale" defs["structs"]["ImFont"][16]["type"] = "float" defs["structs"]["ImFont"][17] = {} -defs["structs"]["ImFont"][17]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][17]["type"] = "int" +defs["structs"]["ImFont"][17]["name"] = "Ascent" +defs["structs"]["ImFont"][17]["type"] = "float" defs["structs"]["ImFont"][18] = {} -defs["structs"]["ImFont"][18]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" -defs["structs"]["ImFont"][18]["size"] = 34 -defs["structs"]["ImFont"][18]["type"] = "ImU8" +defs["structs"]["ImFont"][18]["name"] = "Descent" +defs["structs"]["ImFont"][18]["type"] = "float" +defs["structs"]["ImFont"][19] = {} +defs["structs"]["ImFont"][19]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][19]["type"] = "int" +defs["structs"]["ImFont"][20] = {} +defs["structs"]["ImFont"][20]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" +defs["structs"]["ImFont"][20]["size"] = 34 +defs["structs"]["ImFont"][20]["type"] = "ImU8" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Flags" @@ -4164,15 +4655,18 @@ defs["structs"]["ImFontConfig"][16] = {} defs["structs"]["ImFontConfig"][16]["name"] = "RasterizerMultiply" defs["structs"]["ImFontConfig"][16]["type"] = "float" defs["structs"]["ImFontConfig"][17] = {} -defs["structs"]["ImFontConfig"][17]["name"] = "EllipsisChar" -defs["structs"]["ImFontConfig"][17]["type"] = "ImWchar" +defs["structs"]["ImFontConfig"][17]["name"] = "RasterizerDensity" +defs["structs"]["ImFontConfig"][17]["type"] = "float" defs["structs"]["ImFontConfig"][18] = {} -defs["structs"]["ImFontConfig"][18]["name"] = "Name[40]" -defs["structs"]["ImFontConfig"][18]["size"] = 40 -defs["structs"]["ImFontConfig"][18]["type"] = "char" +defs["structs"]["ImFontConfig"][18]["name"] = "EllipsisChar" +defs["structs"]["ImFontConfig"][18]["type"] = "ImWchar" defs["structs"]["ImFontConfig"][19] = {} -defs["structs"]["ImFontConfig"][19]["name"] = "DstFont" -defs["structs"]["ImFontConfig"][19]["type"] = "ImFont*" +defs["structs"]["ImFontConfig"][19]["name"] = "Name[40]" +defs["structs"]["ImFontConfig"][19]["size"] = 40 +defs["structs"]["ImFontConfig"][19]["type"] = "char" +defs["structs"]["ImFontConfig"][20] = {} +defs["structs"]["ImFontConfig"][20]["name"] = "DstFont" +defs["structs"]["ImFontConfig"][20]["type"] = "ImFont*" defs["structs"]["ImFontGlyph"] = {} defs["structs"]["ImFontGlyph"][1] = {} defs["structs"]["ImFontGlyph"][1]["bitfield"] = "1" @@ -4218,6 +4712,53 @@ defs["structs"]["ImFontGlyphRangesBuilder"][1] = {} defs["structs"]["ImFontGlyphRangesBuilder"][1]["name"] = "UsedChars" defs["structs"]["ImFontGlyphRangesBuilder"][1]["template_type"] = "ImU32" defs["structs"]["ImFontGlyphRangesBuilder"][1]["type"] = "ImVector_ImU32" +defs["structs"]["ImGuiBoxSelectState"] = {} +defs["structs"]["ImGuiBoxSelectState"][1] = {} +defs["structs"]["ImGuiBoxSelectState"][1]["name"] = "ID" +defs["structs"]["ImGuiBoxSelectState"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiBoxSelectState"][2] = {} +defs["structs"]["ImGuiBoxSelectState"][2]["name"] = "IsActive" +defs["structs"]["ImGuiBoxSelectState"][2]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][3] = {} +defs["structs"]["ImGuiBoxSelectState"][3]["name"] = "IsStarting" +defs["structs"]["ImGuiBoxSelectState"][3]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][4] = {} +defs["structs"]["ImGuiBoxSelectState"][4]["name"] = "IsStartedFromVoid" +defs["structs"]["ImGuiBoxSelectState"][4]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][5] = {} +defs["structs"]["ImGuiBoxSelectState"][5]["name"] = "IsStartedSetNavIdOnce" +defs["structs"]["ImGuiBoxSelectState"][5]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][6] = {} +defs["structs"]["ImGuiBoxSelectState"][6]["name"] = "RequestClear" +defs["structs"]["ImGuiBoxSelectState"][6]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][7] = {} +defs["structs"]["ImGuiBoxSelectState"][7]["bitfield"] = "16" +defs["structs"]["ImGuiBoxSelectState"][7]["name"] = "KeyMods" +defs["structs"]["ImGuiBoxSelectState"][7]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiBoxSelectState"][8] = {} +defs["structs"]["ImGuiBoxSelectState"][8]["name"] = "StartPosRel" +defs["structs"]["ImGuiBoxSelectState"][8]["type"] = "ImVec2" +defs["structs"]["ImGuiBoxSelectState"][9] = {} +defs["structs"]["ImGuiBoxSelectState"][9]["name"] = "EndPosRel" +defs["structs"]["ImGuiBoxSelectState"][9]["type"] = "ImVec2" +defs["structs"]["ImGuiBoxSelectState"][10] = {} +defs["structs"]["ImGuiBoxSelectState"][10]["name"] = "ScrollAccum" +defs["structs"]["ImGuiBoxSelectState"][10]["type"] = "ImVec2" +defs["structs"]["ImGuiBoxSelectState"][11] = {} +defs["structs"]["ImGuiBoxSelectState"][11]["name"] = "Window" +defs["structs"]["ImGuiBoxSelectState"][11]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiBoxSelectState"][12] = {} +defs["structs"]["ImGuiBoxSelectState"][12]["name"] = "UnclipMode" +defs["structs"]["ImGuiBoxSelectState"][12]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][13] = {} +defs["structs"]["ImGuiBoxSelectState"][13]["name"] = "UnclipRect" +defs["structs"]["ImGuiBoxSelectState"][13]["type"] = "ImRect" +defs["structs"]["ImGuiBoxSelectState"][14] = {} +defs["structs"]["ImGuiBoxSelectState"][14]["name"] = "BoxSelectRectPrev" +defs["structs"]["ImGuiBoxSelectState"][14]["type"] = "ImRect" +defs["structs"]["ImGuiBoxSelectState"][15] = {} +defs["structs"]["ImGuiBoxSelectState"][15]["name"] = "BoxSelectRectCurr" +defs["structs"]["ImGuiBoxSelectState"][15]["type"] = "ImRect" defs["structs"]["ImGuiColorMod"] = {} defs["structs"]["ImGuiColorMod"][1] = {} defs["structs"]["ImGuiColorMod"][1]["name"] = "Col" @@ -4258,30 +4799,28 @@ defs["structs"]["ImGuiContext"][4] = {} defs["structs"]["ImGuiContext"][4]["name"] = "PlatformIO" defs["structs"]["ImGuiContext"][4]["type"] = "ImGuiPlatformIO" defs["structs"]["ImGuiContext"][5] = {} -defs["structs"]["ImGuiContext"][5]["name"] = "InputEventsQueue" -defs["structs"]["ImGuiContext"][5]["template_type"] = "ImGuiInputEvent" -defs["structs"]["ImGuiContext"][5]["type"] = "ImVector_ImGuiInputEvent" +defs["structs"]["ImGuiContext"][5]["name"] = "Style" +defs["structs"]["ImGuiContext"][5]["type"] = "ImGuiStyle" defs["structs"]["ImGuiContext"][6] = {} -defs["structs"]["ImGuiContext"][6]["name"] = "InputEventsTrail" -defs["structs"]["ImGuiContext"][6]["template_type"] = "ImGuiInputEvent" -defs["structs"]["ImGuiContext"][6]["type"] = "ImVector_ImGuiInputEvent" +defs["structs"]["ImGuiContext"][6]["name"] = "ConfigFlagsCurrFrame" +defs["structs"]["ImGuiContext"][6]["type"] = "ImGuiConfigFlags" defs["structs"]["ImGuiContext"][7] = {} -defs["structs"]["ImGuiContext"][7]["name"] = "Style" -defs["structs"]["ImGuiContext"][7]["type"] = "ImGuiStyle" +defs["structs"]["ImGuiContext"][7]["name"] = "ConfigFlagsLastFrame" +defs["structs"]["ImGuiContext"][7]["type"] = "ImGuiConfigFlags" defs["structs"]["ImGuiContext"][8] = {} -defs["structs"]["ImGuiContext"][8]["name"] = "ConfigFlagsCurrFrame" -defs["structs"]["ImGuiContext"][8]["type"] = "ImGuiConfigFlags" +defs["structs"]["ImGuiContext"][8]["name"] = "Font" +defs["structs"]["ImGuiContext"][8]["type"] = "ImFont*" defs["structs"]["ImGuiContext"][9] = {} -defs["structs"]["ImGuiContext"][9]["name"] = "ConfigFlagsLastFrame" -defs["structs"]["ImGuiContext"][9]["type"] = "ImGuiConfigFlags" +defs["structs"]["ImGuiContext"][9]["name"] = "FontSize" +defs["structs"]["ImGuiContext"][9]["type"] = "float" defs["structs"]["ImGuiContext"][10] = {} -defs["structs"]["ImGuiContext"][10]["name"] = "Font" -defs["structs"]["ImGuiContext"][10]["type"] = "ImFont*" +defs["structs"]["ImGuiContext"][10]["name"] = "FontBaseSize" +defs["structs"]["ImGuiContext"][10]["type"] = "float" defs["structs"]["ImGuiContext"][11] = {} -defs["structs"]["ImGuiContext"][11]["name"] = "FontSize" +defs["structs"]["ImGuiContext"][11]["name"] = "FontScale" defs["structs"]["ImGuiContext"][11]["type"] = "float" defs["structs"]["ImGuiContext"][12] = {} -defs["structs"]["ImGuiContext"][12]["name"] = "FontBaseSize" +defs["structs"]["ImGuiContext"][12]["name"] = "CurrentDpiScale" defs["structs"]["ImGuiContext"][12]["type"] = "float" defs["structs"]["ImGuiContext"][13] = {} defs["structs"]["ImGuiContext"][13]["name"] = "DrawListSharedData" @@ -4320,707 +4859,884 @@ defs["structs"]["ImGuiContext"][24] = {} defs["structs"]["ImGuiContext"][24]["name"] = "TestEngine" defs["structs"]["ImGuiContext"][24]["type"] = "void*" defs["structs"]["ImGuiContext"][25] = {} -defs["structs"]["ImGuiContext"][25]["name"] = "Windows" -defs["structs"]["ImGuiContext"][25]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiContext"][25]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][25]["name"] = "ContextName[16]" +defs["structs"]["ImGuiContext"][25]["size"] = 16 +defs["structs"]["ImGuiContext"][25]["type"] = "char" defs["structs"]["ImGuiContext"][26] = {} -defs["structs"]["ImGuiContext"][26]["name"] = "WindowsFocusOrder" -defs["structs"]["ImGuiContext"][26]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiContext"][26]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][26]["name"] = "InputEventsQueue" +defs["structs"]["ImGuiContext"][26]["template_type"] = "ImGuiInputEvent" +defs["structs"]["ImGuiContext"][26]["type"] = "ImVector_ImGuiInputEvent" defs["structs"]["ImGuiContext"][27] = {} -defs["structs"]["ImGuiContext"][27]["name"] = "WindowsTempSortBuffer" -defs["structs"]["ImGuiContext"][27]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiContext"][27]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][27]["name"] = "InputEventsTrail" +defs["structs"]["ImGuiContext"][27]["template_type"] = "ImGuiInputEvent" +defs["structs"]["ImGuiContext"][27]["type"] = "ImVector_ImGuiInputEvent" defs["structs"]["ImGuiContext"][28] = {} -defs["structs"]["ImGuiContext"][28]["name"] = "CurrentWindowStack" -defs["structs"]["ImGuiContext"][28]["template_type"] = "ImGuiWindowStackData" -defs["structs"]["ImGuiContext"][28]["type"] = "ImVector_ImGuiWindowStackData" +defs["structs"]["ImGuiContext"][28]["name"] = "InputEventsNextMouseSource" +defs["structs"]["ImGuiContext"][28]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiContext"][29] = {} -defs["structs"]["ImGuiContext"][29]["name"] = "WindowsById" -defs["structs"]["ImGuiContext"][29]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiContext"][29]["name"] = "InputEventsNextEventId" +defs["structs"]["ImGuiContext"][29]["type"] = "ImU32" defs["structs"]["ImGuiContext"][30] = {} -defs["structs"]["ImGuiContext"][30]["name"] = "WindowsActiveCount" -defs["structs"]["ImGuiContext"][30]["type"] = "int" +defs["structs"]["ImGuiContext"][30]["name"] = "Windows" +defs["structs"]["ImGuiContext"][30]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][30]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiContext"][31] = {} -defs["structs"]["ImGuiContext"][31]["name"] = "WindowsHoverPadding" -defs["structs"]["ImGuiContext"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][31]["name"] = "WindowsFocusOrder" +defs["structs"]["ImGuiContext"][31]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][31]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiContext"][32] = {} -defs["structs"]["ImGuiContext"][32]["name"] = "CurrentWindow" -defs["structs"]["ImGuiContext"][32]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][32]["name"] = "WindowsTempSortBuffer" +defs["structs"]["ImGuiContext"][32]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][32]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiContext"][33] = {} -defs["structs"]["ImGuiContext"][33]["name"] = "HoveredWindow" -defs["structs"]["ImGuiContext"][33]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][33]["name"] = "CurrentWindowStack" +defs["structs"]["ImGuiContext"][33]["template_type"] = "ImGuiWindowStackData" +defs["structs"]["ImGuiContext"][33]["type"] = "ImVector_ImGuiWindowStackData" defs["structs"]["ImGuiContext"][34] = {} -defs["structs"]["ImGuiContext"][34]["name"] = "HoveredWindowUnderMovingWindow" -defs["structs"]["ImGuiContext"][34]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][34]["name"] = "WindowsById" +defs["structs"]["ImGuiContext"][34]["type"] = "ImGuiStorage" defs["structs"]["ImGuiContext"][35] = {} -defs["structs"]["ImGuiContext"][35]["name"] = "MovingWindow" -defs["structs"]["ImGuiContext"][35]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][35]["name"] = "WindowsActiveCount" +defs["structs"]["ImGuiContext"][35]["type"] = "int" defs["structs"]["ImGuiContext"][36] = {} -defs["structs"]["ImGuiContext"][36]["name"] = "WheelingWindow" -defs["structs"]["ImGuiContext"][36]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][36]["name"] = "WindowsHoverPadding" +defs["structs"]["ImGuiContext"][36]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][37] = {} -defs["structs"]["ImGuiContext"][37]["name"] = "WheelingWindowRefMousePos" -defs["structs"]["ImGuiContext"][37]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][37]["name"] = "DebugBreakInWindow" +defs["structs"]["ImGuiContext"][37]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][38] = {} -defs["structs"]["ImGuiContext"][38]["name"] = "WheelingWindowStartFrame" -defs["structs"]["ImGuiContext"][38]["type"] = "int" +defs["structs"]["ImGuiContext"][38]["name"] = "CurrentWindow" +defs["structs"]["ImGuiContext"][38]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][39] = {} -defs["structs"]["ImGuiContext"][39]["name"] = "WheelingWindowReleaseTimer" -defs["structs"]["ImGuiContext"][39]["type"] = "float" +defs["structs"]["ImGuiContext"][39]["name"] = "HoveredWindow" +defs["structs"]["ImGuiContext"][39]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][40] = {} -defs["structs"]["ImGuiContext"][40]["name"] = "WheelingWindowWheelRemainder" -defs["structs"]["ImGuiContext"][40]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][40]["name"] = "HoveredWindowUnderMovingWindow" +defs["structs"]["ImGuiContext"][40]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][41] = {} -defs["structs"]["ImGuiContext"][41]["name"] = "WheelingAxisAvg" -defs["structs"]["ImGuiContext"][41]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][41]["name"] = "HoveredWindowBeforeClear" +defs["structs"]["ImGuiContext"][41]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][42] = {} -defs["structs"]["ImGuiContext"][42]["name"] = "DebugHookIdInfo" -defs["structs"]["ImGuiContext"][42]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][42]["name"] = "MovingWindow" +defs["structs"]["ImGuiContext"][42]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][43] = {} -defs["structs"]["ImGuiContext"][43]["name"] = "HoveredId" -defs["structs"]["ImGuiContext"][43]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][43]["name"] = "WheelingWindow" +defs["structs"]["ImGuiContext"][43]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][44] = {} -defs["structs"]["ImGuiContext"][44]["name"] = "HoveredIdPreviousFrame" -defs["structs"]["ImGuiContext"][44]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][44]["name"] = "WheelingWindowRefMousePos" +defs["structs"]["ImGuiContext"][44]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][45] = {} -defs["structs"]["ImGuiContext"][45]["name"] = "HoveredIdAllowOverlap" -defs["structs"]["ImGuiContext"][45]["type"] = "bool" +defs["structs"]["ImGuiContext"][45]["name"] = "WheelingWindowStartFrame" +defs["structs"]["ImGuiContext"][45]["type"] = "int" defs["structs"]["ImGuiContext"][46] = {} -defs["structs"]["ImGuiContext"][46]["name"] = "HoveredIdDisabled" -defs["structs"]["ImGuiContext"][46]["type"] = "bool" +defs["structs"]["ImGuiContext"][46]["name"] = "WheelingWindowScrolledFrame" +defs["structs"]["ImGuiContext"][46]["type"] = "int" defs["structs"]["ImGuiContext"][47] = {} -defs["structs"]["ImGuiContext"][47]["name"] = "HoveredIdTimer" +defs["structs"]["ImGuiContext"][47]["name"] = "WheelingWindowReleaseTimer" defs["structs"]["ImGuiContext"][47]["type"] = "float" defs["structs"]["ImGuiContext"][48] = {} -defs["structs"]["ImGuiContext"][48]["name"] = "HoveredIdNotActiveTimer" -defs["structs"]["ImGuiContext"][48]["type"] = "float" +defs["structs"]["ImGuiContext"][48]["name"] = "WheelingWindowWheelRemainder" +defs["structs"]["ImGuiContext"][48]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][49] = {} -defs["structs"]["ImGuiContext"][49]["name"] = "ActiveId" -defs["structs"]["ImGuiContext"][49]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][49]["name"] = "WheelingAxisAvg" +defs["structs"]["ImGuiContext"][49]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][50] = {} -defs["structs"]["ImGuiContext"][50]["name"] = "ActiveIdIsAlive" +defs["structs"]["ImGuiContext"][50]["name"] = "DebugDrawIdConflicts" defs["structs"]["ImGuiContext"][50]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][51] = {} -defs["structs"]["ImGuiContext"][51]["name"] = "ActiveIdTimer" -defs["structs"]["ImGuiContext"][51]["type"] = "float" +defs["structs"]["ImGuiContext"][51]["name"] = "DebugHookIdInfo" +defs["structs"]["ImGuiContext"][51]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][52] = {} -defs["structs"]["ImGuiContext"][52]["name"] = "ActiveIdIsJustActivated" -defs["structs"]["ImGuiContext"][52]["type"] = "bool" +defs["structs"]["ImGuiContext"][52]["name"] = "HoveredId" +defs["structs"]["ImGuiContext"][52]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][53] = {} -defs["structs"]["ImGuiContext"][53]["name"] = "ActiveIdAllowOverlap" -defs["structs"]["ImGuiContext"][53]["type"] = "bool" +defs["structs"]["ImGuiContext"][53]["name"] = "HoveredIdPreviousFrame" +defs["structs"]["ImGuiContext"][53]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][54] = {} -defs["structs"]["ImGuiContext"][54]["name"] = "ActiveIdNoClearOnFocusLoss" -defs["structs"]["ImGuiContext"][54]["type"] = "bool" +defs["structs"]["ImGuiContext"][54]["name"] = "HoveredIdPreviousFrameItemCount" +defs["structs"]["ImGuiContext"][54]["type"] = "int" defs["structs"]["ImGuiContext"][55] = {} -defs["structs"]["ImGuiContext"][55]["name"] = "ActiveIdHasBeenPressedBefore" -defs["structs"]["ImGuiContext"][55]["type"] = "bool" +defs["structs"]["ImGuiContext"][55]["name"] = "HoveredIdTimer" +defs["structs"]["ImGuiContext"][55]["type"] = "float" defs["structs"]["ImGuiContext"][56] = {} -defs["structs"]["ImGuiContext"][56]["name"] = "ActiveIdHasBeenEditedBefore" -defs["structs"]["ImGuiContext"][56]["type"] = "bool" +defs["structs"]["ImGuiContext"][56]["name"] = "HoveredIdNotActiveTimer" +defs["structs"]["ImGuiContext"][56]["type"] = "float" defs["structs"]["ImGuiContext"][57] = {} -defs["structs"]["ImGuiContext"][57]["name"] = "ActiveIdHasBeenEditedThisFrame" +defs["structs"]["ImGuiContext"][57]["name"] = "HoveredIdAllowOverlap" defs["structs"]["ImGuiContext"][57]["type"] = "bool" defs["structs"]["ImGuiContext"][58] = {} -defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdClickOffset" -defs["structs"]["ImGuiContext"][58]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][58]["name"] = "HoveredIdIsDisabled" +defs["structs"]["ImGuiContext"][58]["type"] = "bool" defs["structs"]["ImGuiContext"][59] = {} -defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdWindow" -defs["structs"]["ImGuiContext"][59]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][59]["name"] = "ItemUnclipByLog" +defs["structs"]["ImGuiContext"][59]["type"] = "bool" defs["structs"]["ImGuiContext"][60] = {} -defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdSource" -defs["structs"]["ImGuiContext"][60]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][60]["name"] = "ActiveId" +defs["structs"]["ImGuiContext"][60]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][61] = {} -defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdMouseButton" -defs["structs"]["ImGuiContext"][61]["type"] = "int" +defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdIsAlive" +defs["structs"]["ImGuiContext"][61]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][62] = {} -defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdPreviousFrame" -defs["structs"]["ImGuiContext"][62]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdTimer" +defs["structs"]["ImGuiContext"][62]["type"] = "float" defs["structs"]["ImGuiContext"][63] = {} -defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdPreviousFrameIsAlive" +defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdIsJustActivated" defs["structs"]["ImGuiContext"][63]["type"] = "bool" defs["structs"]["ImGuiContext"][64] = {} -defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdAllowOverlap" defs["structs"]["ImGuiContext"][64]["type"] = "bool" defs["structs"]["ImGuiContext"][65] = {} -defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdPreviousFrameWindow" -defs["structs"]["ImGuiContext"][65]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdNoClearOnFocusLoss" +defs["structs"]["ImGuiContext"][65]["type"] = "bool" defs["structs"]["ImGuiContext"][66] = {} -defs["structs"]["ImGuiContext"][66]["name"] = "LastActiveId" -defs["structs"]["ImGuiContext"][66]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][66]["name"] = "ActiveIdHasBeenPressedBefore" +defs["structs"]["ImGuiContext"][66]["type"] = "bool" defs["structs"]["ImGuiContext"][67] = {} -defs["structs"]["ImGuiContext"][67]["name"] = "LastActiveIdTimer" -defs["structs"]["ImGuiContext"][67]["type"] = "float" +defs["structs"]["ImGuiContext"][67]["name"] = "ActiveIdHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][67]["type"] = "bool" defs["structs"]["ImGuiContext"][68] = {} -defs["structs"]["ImGuiContext"][68]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" -defs["structs"]["ImGuiContext"][68]["size"] = 140 -defs["structs"]["ImGuiContext"][68]["type"] = "ImGuiKeyOwnerData" +defs["structs"]["ImGuiContext"][68]["name"] = "ActiveIdHasBeenEditedThisFrame" +defs["structs"]["ImGuiContext"][68]["type"] = "bool" defs["structs"]["ImGuiContext"][69] = {} -defs["structs"]["ImGuiContext"][69]["name"] = "KeysRoutingTable" -defs["structs"]["ImGuiContext"][69]["type"] = "ImGuiKeyRoutingTable" +defs["structs"]["ImGuiContext"][69]["name"] = "ActiveIdFromShortcut" +defs["structs"]["ImGuiContext"][69]["type"] = "bool" defs["structs"]["ImGuiContext"][70] = {} -defs["structs"]["ImGuiContext"][70]["name"] = "ActiveIdUsingNavDirMask" -defs["structs"]["ImGuiContext"][70]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][70]["bitfield"] = "8" +defs["structs"]["ImGuiContext"][70]["name"] = "ActiveIdMouseButton" +defs["structs"]["ImGuiContext"][70]["type"] = "int" defs["structs"]["ImGuiContext"][71] = {} -defs["structs"]["ImGuiContext"][71]["name"] = "ActiveIdUsingAllKeyboardKeys" -defs["structs"]["ImGuiContext"][71]["type"] = "bool" +defs["structs"]["ImGuiContext"][71]["name"] = "ActiveIdClickOffset" +defs["structs"]["ImGuiContext"][71]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][72] = {} -defs["structs"]["ImGuiContext"][72]["name"] = "ActiveIdUsingNavInputMask" -defs["structs"]["ImGuiContext"][72]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][72]["name"] = "ActiveIdWindow" +defs["structs"]["ImGuiContext"][72]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][73] = {} -defs["structs"]["ImGuiContext"][73]["name"] = "CurrentFocusScopeId" -defs["structs"]["ImGuiContext"][73]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][73]["name"] = "ActiveIdSource" +defs["structs"]["ImGuiContext"][73]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][74] = {} -defs["structs"]["ImGuiContext"][74]["name"] = "CurrentItemFlags" -defs["structs"]["ImGuiContext"][74]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][74]["name"] = "ActiveIdPreviousFrame" +defs["structs"]["ImGuiContext"][74]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][75] = {} -defs["structs"]["ImGuiContext"][75]["name"] = "DebugLocateId" -defs["structs"]["ImGuiContext"][75]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][75]["name"] = "ActiveIdPreviousFrameIsAlive" +defs["structs"]["ImGuiContext"][75]["type"] = "bool" defs["structs"]["ImGuiContext"][76] = {} -defs["structs"]["ImGuiContext"][76]["name"] = "NextItemData" -defs["structs"]["ImGuiContext"][76]["type"] = "ImGuiNextItemData" +defs["structs"]["ImGuiContext"][76]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][76]["type"] = "bool" defs["structs"]["ImGuiContext"][77] = {} -defs["structs"]["ImGuiContext"][77]["name"] = "LastItemData" -defs["structs"]["ImGuiContext"][77]["type"] = "ImGuiLastItemData" +defs["structs"]["ImGuiContext"][77]["name"] = "ActiveIdPreviousFrameWindow" +defs["structs"]["ImGuiContext"][77]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][78] = {} -defs["structs"]["ImGuiContext"][78]["name"] = "NextWindowData" -defs["structs"]["ImGuiContext"][78]["type"] = "ImGuiNextWindowData" +defs["structs"]["ImGuiContext"][78]["name"] = "LastActiveId" +defs["structs"]["ImGuiContext"][78]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][79] = {} -defs["structs"]["ImGuiContext"][79]["name"] = "ColorStack" -defs["structs"]["ImGuiContext"][79]["template_type"] = "ImGuiColorMod" -defs["structs"]["ImGuiContext"][79]["type"] = "ImVector_ImGuiColorMod" +defs["structs"]["ImGuiContext"][79]["name"] = "LastActiveIdTimer" +defs["structs"]["ImGuiContext"][79]["type"] = "float" defs["structs"]["ImGuiContext"][80] = {} -defs["structs"]["ImGuiContext"][80]["name"] = "StyleVarStack" -defs["structs"]["ImGuiContext"][80]["template_type"] = "ImGuiStyleMod" -defs["structs"]["ImGuiContext"][80]["type"] = "ImVector_ImGuiStyleMod" +defs["structs"]["ImGuiContext"][80]["name"] = "LastKeyModsChangeTime" +defs["structs"]["ImGuiContext"][80]["type"] = "double" defs["structs"]["ImGuiContext"][81] = {} -defs["structs"]["ImGuiContext"][81]["name"] = "FontStack" -defs["structs"]["ImGuiContext"][81]["template_type"] = "ImFont*" -defs["structs"]["ImGuiContext"][81]["type"] = "ImVector_ImFontPtr" +defs["structs"]["ImGuiContext"][81]["name"] = "LastKeyModsChangeFromNoneTime" +defs["structs"]["ImGuiContext"][81]["type"] = "double" defs["structs"]["ImGuiContext"][82] = {} -defs["structs"]["ImGuiContext"][82]["name"] = "FocusScopeStack" -defs["structs"]["ImGuiContext"][82]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][82]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][82]["name"] = "LastKeyboardKeyPressTime" +defs["structs"]["ImGuiContext"][82]["type"] = "double" defs["structs"]["ImGuiContext"][83] = {} -defs["structs"]["ImGuiContext"][83]["name"] = "ItemFlagsStack" -defs["structs"]["ImGuiContext"][83]["template_type"] = "ImGuiItemFlags" -defs["structs"]["ImGuiContext"][83]["type"] = "ImVector_ImGuiItemFlags" +defs["structs"]["ImGuiContext"][83]["name"] = "KeysMayBeCharInput" +defs["structs"]["ImGuiContext"][83]["type"] = "ImBitArrayForNamedKeys" defs["structs"]["ImGuiContext"][84] = {} -defs["structs"]["ImGuiContext"][84]["name"] = "GroupStack" -defs["structs"]["ImGuiContext"][84]["template_type"] = "ImGuiGroupData" -defs["structs"]["ImGuiContext"][84]["type"] = "ImVector_ImGuiGroupData" +defs["structs"]["ImGuiContext"][84]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" +defs["structs"]["ImGuiContext"][84]["size"] = 154 +defs["structs"]["ImGuiContext"][84]["type"] = "ImGuiKeyOwnerData" defs["structs"]["ImGuiContext"][85] = {} -defs["structs"]["ImGuiContext"][85]["name"] = "OpenPopupStack" -defs["structs"]["ImGuiContext"][85]["template_type"] = "ImGuiPopupData" -defs["structs"]["ImGuiContext"][85]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][85]["name"] = "KeysRoutingTable" +defs["structs"]["ImGuiContext"][85]["type"] = "ImGuiKeyRoutingTable" defs["structs"]["ImGuiContext"][86] = {} -defs["structs"]["ImGuiContext"][86]["name"] = "BeginPopupStack" -defs["structs"]["ImGuiContext"][86]["template_type"] = "ImGuiPopupData" -defs["structs"]["ImGuiContext"][86]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][86]["name"] = "ActiveIdUsingNavDirMask" +defs["structs"]["ImGuiContext"][86]["type"] = "ImU32" defs["structs"]["ImGuiContext"][87] = {} -defs["structs"]["ImGuiContext"][87]["name"] = "BeginMenuCount" -defs["structs"]["ImGuiContext"][87]["type"] = "int" +defs["structs"]["ImGuiContext"][87]["name"] = "ActiveIdUsingAllKeyboardKeys" +defs["structs"]["ImGuiContext"][87]["type"] = "bool" defs["structs"]["ImGuiContext"][88] = {} -defs["structs"]["ImGuiContext"][88]["name"] = "Viewports" -defs["structs"]["ImGuiContext"][88]["template_type"] = "ImGuiViewportP*" -defs["structs"]["ImGuiContext"][88]["type"] = "ImVector_ImGuiViewportPPtr" +defs["structs"]["ImGuiContext"][88]["name"] = "DebugBreakInShortcutRouting" +defs["structs"]["ImGuiContext"][88]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][89] = {} -defs["structs"]["ImGuiContext"][89]["name"] = "CurrentDpiScale" -defs["structs"]["ImGuiContext"][89]["type"] = "float" +defs["structs"]["ImGuiContext"][89]["name"] = "CurrentFocusScopeId" +defs["structs"]["ImGuiContext"][89]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][90] = {} -defs["structs"]["ImGuiContext"][90]["name"] = "CurrentViewport" -defs["structs"]["ImGuiContext"][90]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][90]["name"] = "CurrentItemFlags" +defs["structs"]["ImGuiContext"][90]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiContext"][91] = {} -defs["structs"]["ImGuiContext"][91]["name"] = "MouseViewport" -defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][91]["name"] = "DebugLocateId" +defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][92] = {} -defs["structs"]["ImGuiContext"][92]["name"] = "MouseLastHoveredViewport" -defs["structs"]["ImGuiContext"][92]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][92]["name"] = "NextItemData" +defs["structs"]["ImGuiContext"][92]["type"] = "ImGuiNextItemData" defs["structs"]["ImGuiContext"][93] = {} -defs["structs"]["ImGuiContext"][93]["name"] = "PlatformLastFocusedViewportId" -defs["structs"]["ImGuiContext"][93]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][93]["name"] = "LastItemData" +defs["structs"]["ImGuiContext"][93]["type"] = "ImGuiLastItemData" defs["structs"]["ImGuiContext"][94] = {} -defs["structs"]["ImGuiContext"][94]["name"] = "FallbackMonitor" -defs["structs"]["ImGuiContext"][94]["type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiContext"][94]["name"] = "NextWindowData" +defs["structs"]["ImGuiContext"][94]["type"] = "ImGuiNextWindowData" defs["structs"]["ImGuiContext"][95] = {} -defs["structs"]["ImGuiContext"][95]["name"] = "ViewportFrontMostStampCount" -defs["structs"]["ImGuiContext"][95]["type"] = "int" +defs["structs"]["ImGuiContext"][95]["name"] = "DebugShowGroupRects" +defs["structs"]["ImGuiContext"][95]["type"] = "bool" defs["structs"]["ImGuiContext"][96] = {} -defs["structs"]["ImGuiContext"][96]["name"] = "NavWindow" -defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][96]["name"] = "DebugFlashStyleColorIdx" +defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiCol" defs["structs"]["ImGuiContext"][97] = {} -defs["structs"]["ImGuiContext"][97]["name"] = "NavId" -defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][97]["name"] = "ColorStack" +defs["structs"]["ImGuiContext"][97]["template_type"] = "ImGuiColorMod" +defs["structs"]["ImGuiContext"][97]["type"] = "ImVector_ImGuiColorMod" defs["structs"]["ImGuiContext"][98] = {} -defs["structs"]["ImGuiContext"][98]["name"] = "NavFocusScopeId" -defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][98]["name"] = "StyleVarStack" +defs["structs"]["ImGuiContext"][98]["template_type"] = "ImGuiStyleMod" +defs["structs"]["ImGuiContext"][98]["type"] = "ImVector_ImGuiStyleMod" defs["structs"]["ImGuiContext"][99] = {} -defs["structs"]["ImGuiContext"][99]["name"] = "NavActivateId" -defs["structs"]["ImGuiContext"][99]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][99]["name"] = "FontStack" +defs["structs"]["ImGuiContext"][99]["template_type"] = "ImFont*" +defs["structs"]["ImGuiContext"][99]["type"] = "ImVector_ImFontPtr" defs["structs"]["ImGuiContext"][100] = {} -defs["structs"]["ImGuiContext"][100]["name"] = "NavActivateDownId" -defs["structs"]["ImGuiContext"][100]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][100]["name"] = "FocusScopeStack" +defs["structs"]["ImGuiContext"][100]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][100]["type"] = "ImVector_ImGuiFocusScopeData" defs["structs"]["ImGuiContext"][101] = {} -defs["structs"]["ImGuiContext"][101]["name"] = "NavActivatePressedId" -defs["structs"]["ImGuiContext"][101]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][101]["name"] = "ItemFlagsStack" +defs["structs"]["ImGuiContext"][101]["template_type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][101]["type"] = "ImVector_ImGuiItemFlags" defs["structs"]["ImGuiContext"][102] = {} -defs["structs"]["ImGuiContext"][102]["name"] = "NavActivateInputId" -defs["structs"]["ImGuiContext"][102]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][102]["name"] = "GroupStack" +defs["structs"]["ImGuiContext"][102]["template_type"] = "ImGuiGroupData" +defs["structs"]["ImGuiContext"][102]["type"] = "ImVector_ImGuiGroupData" defs["structs"]["ImGuiContext"][103] = {} -defs["structs"]["ImGuiContext"][103]["name"] = "NavActivateFlags" -defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][103]["name"] = "OpenPopupStack" +defs["structs"]["ImGuiContext"][103]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][103]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][104] = {} -defs["structs"]["ImGuiContext"][104]["name"] = "NavJustMovedToId" -defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][104]["name"] = "BeginPopupStack" +defs["structs"]["ImGuiContext"][104]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][104]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][105] = {} -defs["structs"]["ImGuiContext"][105]["name"] = "NavJustMovedToFocusScopeId" -defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][105]["name"] = "TreeNodeStack" +defs["structs"]["ImGuiContext"][105]["template_type"] = "ImGuiTreeNodeStackData" +defs["structs"]["ImGuiContext"][105]["type"] = "ImVector_ImGuiTreeNodeStackData" defs["structs"]["ImGuiContext"][106] = {} -defs["structs"]["ImGuiContext"][106]["name"] = "NavJustMovedToKeyMods" -defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][106]["name"] = "Viewports" +defs["structs"]["ImGuiContext"][106]["template_type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][106]["type"] = "ImVector_ImGuiViewportPPtr" defs["structs"]["ImGuiContext"][107] = {} -defs["structs"]["ImGuiContext"][107]["name"] = "NavNextActivateId" -defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][107]["name"] = "CurrentViewport" +defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][108] = {} -defs["structs"]["ImGuiContext"][108]["name"] = "NavNextActivateFlags" -defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][108]["name"] = "MouseViewport" +defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][109] = {} -defs["structs"]["ImGuiContext"][109]["name"] = "NavInputSource" -defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][109]["name"] = "MouseLastHoveredViewport" +defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][110] = {} -defs["structs"]["ImGuiContext"][110]["name"] = "NavLayer" -defs["structs"]["ImGuiContext"][110]["type"] = "ImGuiNavLayer" +defs["structs"]["ImGuiContext"][110]["name"] = "PlatformLastFocusedViewportId" +defs["structs"]["ImGuiContext"][110]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][111] = {} -defs["structs"]["ImGuiContext"][111]["name"] = "NavIdIsAlive" -defs["structs"]["ImGuiContext"][111]["type"] = "bool" +defs["structs"]["ImGuiContext"][111]["name"] = "FallbackMonitor" +defs["structs"]["ImGuiContext"][111]["type"] = "ImGuiPlatformMonitor" defs["structs"]["ImGuiContext"][112] = {} -defs["structs"]["ImGuiContext"][112]["name"] = "NavMousePosDirty" -defs["structs"]["ImGuiContext"][112]["type"] = "bool" +defs["structs"]["ImGuiContext"][112]["name"] = "PlatformMonitorsFullWorkRect" +defs["structs"]["ImGuiContext"][112]["type"] = "ImRect" defs["structs"]["ImGuiContext"][113] = {} -defs["structs"]["ImGuiContext"][113]["name"] = "NavDisableHighlight" -defs["structs"]["ImGuiContext"][113]["type"] = "bool" +defs["structs"]["ImGuiContext"][113]["name"] = "ViewportCreatedCount" +defs["structs"]["ImGuiContext"][113]["type"] = "int" defs["structs"]["ImGuiContext"][114] = {} -defs["structs"]["ImGuiContext"][114]["name"] = "NavDisableMouseHover" -defs["structs"]["ImGuiContext"][114]["type"] = "bool" +defs["structs"]["ImGuiContext"][114]["name"] = "PlatformWindowsCreatedCount" +defs["structs"]["ImGuiContext"][114]["type"] = "int" defs["structs"]["ImGuiContext"][115] = {} -defs["structs"]["ImGuiContext"][115]["name"] = "NavAnyRequest" -defs["structs"]["ImGuiContext"][115]["type"] = "bool" +defs["structs"]["ImGuiContext"][115]["name"] = "ViewportFocusedStampCount" +defs["structs"]["ImGuiContext"][115]["type"] = "int" defs["structs"]["ImGuiContext"][116] = {} -defs["structs"]["ImGuiContext"][116]["name"] = "NavInitRequest" -defs["structs"]["ImGuiContext"][116]["type"] = "bool" +defs["structs"]["ImGuiContext"][116]["name"] = "NavWindow" +defs["structs"]["ImGuiContext"][116]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][117] = {} -defs["structs"]["ImGuiContext"][117]["name"] = "NavInitRequestFromMove" -defs["structs"]["ImGuiContext"][117]["type"] = "bool" +defs["structs"]["ImGuiContext"][117]["name"] = "NavId" +defs["structs"]["ImGuiContext"][117]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][118] = {} -defs["structs"]["ImGuiContext"][118]["name"] = "NavInitResultId" +defs["structs"]["ImGuiContext"][118]["name"] = "NavFocusScopeId" defs["structs"]["ImGuiContext"][118]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][119] = {} -defs["structs"]["ImGuiContext"][119]["name"] = "NavInitResultRectRel" -defs["structs"]["ImGuiContext"][119]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][119]["name"] = "NavLayer" +defs["structs"]["ImGuiContext"][119]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiContext"][120] = {} -defs["structs"]["ImGuiContext"][120]["name"] = "NavMoveSubmitted" -defs["structs"]["ImGuiContext"][120]["type"] = "bool" +defs["structs"]["ImGuiContext"][120]["name"] = "NavActivateId" +defs["structs"]["ImGuiContext"][120]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][121] = {} -defs["structs"]["ImGuiContext"][121]["name"] = "NavMoveScoringItems" -defs["structs"]["ImGuiContext"][121]["type"] = "bool" +defs["structs"]["ImGuiContext"][121]["name"] = "NavActivateDownId" +defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][122] = {} -defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveForwardToNextFrame" -defs["structs"]["ImGuiContext"][122]["type"] = "bool" +defs["structs"]["ImGuiContext"][122]["name"] = "NavActivatePressedId" +defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][123] = {} -defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveFlags" -defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][123]["name"] = "NavActivateFlags" +defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][124] = {} -defs["structs"]["ImGuiContext"][124]["name"] = "NavMoveScrollFlags" -defs["structs"]["ImGuiContext"][124]["type"] = "ImGuiScrollFlags" +defs["structs"]["ImGuiContext"][124]["name"] = "NavFocusRoute" +defs["structs"]["ImGuiContext"][124]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][124]["type"] = "ImVector_ImGuiFocusScopeData" defs["structs"]["ImGuiContext"][125] = {} -defs["structs"]["ImGuiContext"][125]["name"] = "NavMoveKeyMods" -defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][125]["name"] = "NavHighlightActivatedId" +defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][126] = {} -defs["structs"]["ImGuiContext"][126]["name"] = "NavMoveDir" -defs["structs"]["ImGuiContext"][126]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][126]["name"] = "NavHighlightActivatedTimer" +defs["structs"]["ImGuiContext"][126]["type"] = "float" defs["structs"]["ImGuiContext"][127] = {} -defs["structs"]["ImGuiContext"][127]["name"] = "NavMoveDirForDebug" -defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][127]["name"] = "NavNextActivateId" +defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][128] = {} -defs["structs"]["ImGuiContext"][128]["name"] = "NavMoveClipDir" -defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][128]["name"] = "NavNextActivateFlags" +defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][129] = {} -defs["structs"]["ImGuiContext"][129]["name"] = "NavScoringRect" -defs["structs"]["ImGuiContext"][129]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][129]["name"] = "NavInputSource" +defs["structs"]["ImGuiContext"][129]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][130] = {} -defs["structs"]["ImGuiContext"][130]["name"] = "NavScoringNoClipRect" -defs["structs"]["ImGuiContext"][130]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][130]["name"] = "NavLastValidSelectionUserData" +defs["structs"]["ImGuiContext"][130]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiContext"][131] = {} -defs["structs"]["ImGuiContext"][131]["name"] = "NavScoringDebugCount" -defs["structs"]["ImGuiContext"][131]["type"] = "int" +defs["structs"]["ImGuiContext"][131]["name"] = "NavIdIsAlive" +defs["structs"]["ImGuiContext"][131]["type"] = "bool" defs["structs"]["ImGuiContext"][132] = {} -defs["structs"]["ImGuiContext"][132]["name"] = "NavTabbingDir" -defs["structs"]["ImGuiContext"][132]["type"] = "int" +defs["structs"]["ImGuiContext"][132]["name"] = "NavMousePosDirty" +defs["structs"]["ImGuiContext"][132]["type"] = "bool" defs["structs"]["ImGuiContext"][133] = {} -defs["structs"]["ImGuiContext"][133]["name"] = "NavTabbingCounter" -defs["structs"]["ImGuiContext"][133]["type"] = "int" +defs["structs"]["ImGuiContext"][133]["name"] = "NavDisableHighlight" +defs["structs"]["ImGuiContext"][133]["type"] = "bool" defs["structs"]["ImGuiContext"][134] = {} -defs["structs"]["ImGuiContext"][134]["name"] = "NavMoveResultLocal" -defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][134]["name"] = "NavDisableMouseHover" +defs["structs"]["ImGuiContext"][134]["type"] = "bool" defs["structs"]["ImGuiContext"][135] = {} -defs["structs"]["ImGuiContext"][135]["name"] = "NavMoveResultLocalVisible" -defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][135]["name"] = "NavAnyRequest" +defs["structs"]["ImGuiContext"][135]["type"] = "bool" defs["structs"]["ImGuiContext"][136] = {} -defs["structs"]["ImGuiContext"][136]["name"] = "NavMoveResultOther" -defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][136]["name"] = "NavInitRequest" +defs["structs"]["ImGuiContext"][136]["type"] = "bool" defs["structs"]["ImGuiContext"][137] = {} -defs["structs"]["ImGuiContext"][137]["name"] = "NavTabbingResultFirst" -defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][137]["name"] = "NavInitRequestFromMove" +defs["structs"]["ImGuiContext"][137]["type"] = "bool" defs["structs"]["ImGuiContext"][138] = {} -defs["structs"]["ImGuiContext"][138]["name"] = "ConfigNavWindowingKeyNext" -defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][138]["name"] = "NavInitResult" +defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][139] = {} -defs["structs"]["ImGuiContext"][139]["name"] = "ConfigNavWindowingKeyPrev" -defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][139]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][139]["type"] = "bool" defs["structs"]["ImGuiContext"][140] = {} -defs["structs"]["ImGuiContext"][140]["name"] = "NavWindowingTarget" -defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][140]["name"] = "NavMoveScoringItems" +defs["structs"]["ImGuiContext"][140]["type"] = "bool" defs["structs"]["ImGuiContext"][141] = {} -defs["structs"]["ImGuiContext"][141]["name"] = "NavWindowingTargetAnim" -defs["structs"]["ImGuiContext"][141]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][141]["name"] = "NavMoveForwardToNextFrame" +defs["structs"]["ImGuiContext"][141]["type"] = "bool" defs["structs"]["ImGuiContext"][142] = {} -defs["structs"]["ImGuiContext"][142]["name"] = "NavWindowingListWindow" -defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][142]["name"] = "NavMoveFlags" +defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][143] = {} -defs["structs"]["ImGuiContext"][143]["name"] = "NavWindowingTimer" -defs["structs"]["ImGuiContext"][143]["type"] = "float" +defs["structs"]["ImGuiContext"][143]["name"] = "NavMoveScrollFlags" +defs["structs"]["ImGuiContext"][143]["type"] = "ImGuiScrollFlags" defs["structs"]["ImGuiContext"][144] = {} -defs["structs"]["ImGuiContext"][144]["name"] = "NavWindowingHighlightAlpha" -defs["structs"]["ImGuiContext"][144]["type"] = "float" +defs["structs"]["ImGuiContext"][144]["name"] = "NavMoveKeyMods" +defs["structs"]["ImGuiContext"][144]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][145] = {} -defs["structs"]["ImGuiContext"][145]["name"] = "NavWindowingToggleLayer" -defs["structs"]["ImGuiContext"][145]["type"] = "bool" +defs["structs"]["ImGuiContext"][145]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][145]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][146] = {} -defs["structs"]["ImGuiContext"][146]["name"] = "NavWindowingAccumDeltaPos" -defs["structs"]["ImGuiContext"][146]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][146]["name"] = "NavMoveDirForDebug" +defs["structs"]["ImGuiContext"][146]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][147] = {} -defs["structs"]["ImGuiContext"][147]["name"] = "NavWindowingAccumDeltaSize" -defs["structs"]["ImGuiContext"][147]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][147]["name"] = "NavMoveClipDir" +defs["structs"]["ImGuiContext"][147]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][148] = {} -defs["structs"]["ImGuiContext"][148]["name"] = "DimBgRatio" -defs["structs"]["ImGuiContext"][148]["type"] = "float" +defs["structs"]["ImGuiContext"][148]["name"] = "NavScoringRect" +defs["structs"]["ImGuiContext"][148]["type"] = "ImRect" defs["structs"]["ImGuiContext"][149] = {} -defs["structs"]["ImGuiContext"][149]["name"] = "MouseCursor" -defs["structs"]["ImGuiContext"][149]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][149]["name"] = "NavScoringNoClipRect" +defs["structs"]["ImGuiContext"][149]["type"] = "ImRect" defs["structs"]["ImGuiContext"][150] = {} -defs["structs"]["ImGuiContext"][150]["name"] = "DragDropActive" -defs["structs"]["ImGuiContext"][150]["type"] = "bool" +defs["structs"]["ImGuiContext"][150]["name"] = "NavScoringDebugCount" +defs["structs"]["ImGuiContext"][150]["type"] = "int" defs["structs"]["ImGuiContext"][151] = {} -defs["structs"]["ImGuiContext"][151]["name"] = "DragDropWithinSource" -defs["structs"]["ImGuiContext"][151]["type"] = "bool" +defs["structs"]["ImGuiContext"][151]["name"] = "NavTabbingDir" +defs["structs"]["ImGuiContext"][151]["type"] = "int" defs["structs"]["ImGuiContext"][152] = {} -defs["structs"]["ImGuiContext"][152]["name"] = "DragDropWithinTarget" -defs["structs"]["ImGuiContext"][152]["type"] = "bool" +defs["structs"]["ImGuiContext"][152]["name"] = "NavTabbingCounter" +defs["structs"]["ImGuiContext"][152]["type"] = "int" defs["structs"]["ImGuiContext"][153] = {} -defs["structs"]["ImGuiContext"][153]["name"] = "DragDropSourceFlags" -defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][153]["name"] = "NavMoveResultLocal" +defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][154] = {} -defs["structs"]["ImGuiContext"][154]["name"] = "DragDropSourceFrameCount" -defs["structs"]["ImGuiContext"][154]["type"] = "int" +defs["structs"]["ImGuiContext"][154]["name"] = "NavMoveResultLocalVisible" +defs["structs"]["ImGuiContext"][154]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][155] = {} -defs["structs"]["ImGuiContext"][155]["name"] = "DragDropMouseButton" -defs["structs"]["ImGuiContext"][155]["type"] = "int" +defs["structs"]["ImGuiContext"][155]["name"] = "NavMoveResultOther" +defs["structs"]["ImGuiContext"][155]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][156] = {} -defs["structs"]["ImGuiContext"][156]["name"] = "DragDropPayload" -defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][156]["name"] = "NavTabbingResultFirst" +defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][157] = {} -defs["structs"]["ImGuiContext"][157]["name"] = "DragDropTargetRect" -defs["structs"]["ImGuiContext"][157]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][157]["name"] = "NavJustMovedFromFocusScopeId" +defs["structs"]["ImGuiContext"][157]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][158] = {} -defs["structs"]["ImGuiContext"][158]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][158]["name"] = "NavJustMovedToId" defs["structs"]["ImGuiContext"][158]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][159] = {} -defs["structs"]["ImGuiContext"][159]["name"] = "DragDropAcceptFlags" -defs["structs"]["ImGuiContext"][159]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][159]["name"] = "NavJustMovedToFocusScopeId" +defs["structs"]["ImGuiContext"][159]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][160] = {} -defs["structs"]["ImGuiContext"][160]["name"] = "DragDropAcceptIdCurrRectSurface" -defs["structs"]["ImGuiContext"][160]["type"] = "float" +defs["structs"]["ImGuiContext"][160]["name"] = "NavJustMovedToKeyMods" +defs["structs"]["ImGuiContext"][160]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][161] = {} -defs["structs"]["ImGuiContext"][161]["name"] = "DragDropAcceptIdCurr" -defs["structs"]["ImGuiContext"][161]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][161]["name"] = "NavJustMovedToIsTabbing" +defs["structs"]["ImGuiContext"][161]["type"] = "bool" defs["structs"]["ImGuiContext"][162] = {} -defs["structs"]["ImGuiContext"][162]["name"] = "DragDropAcceptIdPrev" -defs["structs"]["ImGuiContext"][162]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][162]["name"] = "NavJustMovedToHasSelectionData" +defs["structs"]["ImGuiContext"][162]["type"] = "bool" defs["structs"]["ImGuiContext"][163] = {} -defs["structs"]["ImGuiContext"][163]["name"] = "DragDropAcceptFrameCount" -defs["structs"]["ImGuiContext"][163]["type"] = "int" +defs["structs"]["ImGuiContext"][163]["name"] = "ConfigNavWindowingKeyNext" +defs["structs"]["ImGuiContext"][163]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][164] = {} -defs["structs"]["ImGuiContext"][164]["name"] = "DragDropHoldJustPressedId" -defs["structs"]["ImGuiContext"][164]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][164]["name"] = "ConfigNavWindowingKeyPrev" +defs["structs"]["ImGuiContext"][164]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][165] = {} -defs["structs"]["ImGuiContext"][165]["name"] = "DragDropPayloadBufHeap" -defs["structs"]["ImGuiContext"][165]["template_type"] = "unsigned char" -defs["structs"]["ImGuiContext"][165]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][165]["name"] = "NavWindowingTarget" +defs["structs"]["ImGuiContext"][165]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][166] = {} -defs["structs"]["ImGuiContext"][166]["name"] = "DragDropPayloadBufLocal[16]" -defs["structs"]["ImGuiContext"][166]["size"] = 16 -defs["structs"]["ImGuiContext"][166]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][166]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][166]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][167] = {} -defs["structs"]["ImGuiContext"][167]["name"] = "ClipperTempDataStacked" -defs["structs"]["ImGuiContext"][167]["type"] = "int" +defs["structs"]["ImGuiContext"][167]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][167]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][168] = {} -defs["structs"]["ImGuiContext"][168]["name"] = "ClipperTempData" -defs["structs"]["ImGuiContext"][168]["template_type"] = "ImGuiListClipperData" -defs["structs"]["ImGuiContext"][168]["type"] = "ImVector_ImGuiListClipperData" +defs["structs"]["ImGuiContext"][168]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][168]["type"] = "float" defs["structs"]["ImGuiContext"][169] = {} -defs["structs"]["ImGuiContext"][169]["name"] = "CurrentTable" -defs["structs"]["ImGuiContext"][169]["type"] = "ImGuiTable*" +defs["structs"]["ImGuiContext"][169]["name"] = "NavWindowingHighlightAlpha" +defs["structs"]["ImGuiContext"][169]["type"] = "float" defs["structs"]["ImGuiContext"][170] = {} -defs["structs"]["ImGuiContext"][170]["name"] = "TablesTempDataStacked" -defs["structs"]["ImGuiContext"][170]["type"] = "int" +defs["structs"]["ImGuiContext"][170]["name"] = "NavWindowingToggleLayer" +defs["structs"]["ImGuiContext"][170]["type"] = "bool" defs["structs"]["ImGuiContext"][171] = {} -defs["structs"]["ImGuiContext"][171]["name"] = "TablesTempData" -defs["structs"]["ImGuiContext"][171]["template_type"] = "ImGuiTableTempData" -defs["structs"]["ImGuiContext"][171]["type"] = "ImVector_ImGuiTableTempData" +defs["structs"]["ImGuiContext"][171]["name"] = "NavWindowingToggleKey" +defs["structs"]["ImGuiContext"][171]["type"] = "ImGuiKey" defs["structs"]["ImGuiContext"][172] = {} -defs["structs"]["ImGuiContext"][172]["name"] = "Tables" -defs["structs"]["ImGuiContext"][172]["template_type"] = "ImGuiTable" -defs["structs"]["ImGuiContext"][172]["type"] = "ImPool_ImGuiTable" +defs["structs"]["ImGuiContext"][172]["name"] = "NavWindowingAccumDeltaPos" +defs["structs"]["ImGuiContext"][172]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][173] = {} -defs["structs"]["ImGuiContext"][173]["name"] = "TablesLastTimeActive" -defs["structs"]["ImGuiContext"][173]["template_type"] = "float" -defs["structs"]["ImGuiContext"][173]["type"] = "ImVector_float" +defs["structs"]["ImGuiContext"][173]["name"] = "NavWindowingAccumDeltaSize" +defs["structs"]["ImGuiContext"][173]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][174] = {} -defs["structs"]["ImGuiContext"][174]["name"] = "DrawChannelsTempMergeBuffer" -defs["structs"]["ImGuiContext"][174]["template_type"] = "ImDrawChannel" -defs["structs"]["ImGuiContext"][174]["type"] = "ImVector_ImDrawChannel" +defs["structs"]["ImGuiContext"][174]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][174]["type"] = "float" defs["structs"]["ImGuiContext"][175] = {} -defs["structs"]["ImGuiContext"][175]["name"] = "CurrentTabBar" -defs["structs"]["ImGuiContext"][175]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][175]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][175]["type"] = "bool" defs["structs"]["ImGuiContext"][176] = {} -defs["structs"]["ImGuiContext"][176]["name"] = "TabBars" -defs["structs"]["ImGuiContext"][176]["template_type"] = "ImGuiTabBar" -defs["structs"]["ImGuiContext"][176]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][176]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][176]["type"] = "bool" defs["structs"]["ImGuiContext"][177] = {} -defs["structs"]["ImGuiContext"][177]["name"] = "CurrentTabBarStack" -defs["structs"]["ImGuiContext"][177]["template_type"] = "ImGuiPtrOrIndex" -defs["structs"]["ImGuiContext"][177]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][177]["name"] = "DragDropWithinTarget" +defs["structs"]["ImGuiContext"][177]["type"] = "bool" defs["structs"]["ImGuiContext"][178] = {} -defs["structs"]["ImGuiContext"][178]["name"] = "ShrinkWidthBuffer" -defs["structs"]["ImGuiContext"][178]["template_type"] = "ImGuiShrinkWidthItem" -defs["structs"]["ImGuiContext"][178]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][178]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][178]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][179] = {} -defs["structs"]["ImGuiContext"][179]["name"] = "HoverDelayId" -defs["structs"]["ImGuiContext"][179]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][179]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][179]["type"] = "int" defs["structs"]["ImGuiContext"][180] = {} -defs["structs"]["ImGuiContext"][180]["name"] = "HoverDelayIdPreviousFrame" -defs["structs"]["ImGuiContext"][180]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][180]["name"] = "DragDropMouseButton" +defs["structs"]["ImGuiContext"][180]["type"] = "int" defs["structs"]["ImGuiContext"][181] = {} -defs["structs"]["ImGuiContext"][181]["name"] = "HoverDelayTimer" -defs["structs"]["ImGuiContext"][181]["type"] = "float" +defs["structs"]["ImGuiContext"][181]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][181]["type"] = "ImGuiPayload" defs["structs"]["ImGuiContext"][182] = {} -defs["structs"]["ImGuiContext"][182]["name"] = "HoverDelayClearTimer" -defs["structs"]["ImGuiContext"][182]["type"] = "float" +defs["structs"]["ImGuiContext"][182]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][182]["type"] = "ImRect" defs["structs"]["ImGuiContext"][183] = {} -defs["structs"]["ImGuiContext"][183]["name"] = "MouseLastValidPos" -defs["structs"]["ImGuiContext"][183]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][183]["name"] = "DragDropTargetClipRect" +defs["structs"]["ImGuiContext"][183]["type"] = "ImRect" defs["structs"]["ImGuiContext"][184] = {} -defs["structs"]["ImGuiContext"][184]["name"] = "InputTextState" -defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][184]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][185] = {} -defs["structs"]["ImGuiContext"][185]["name"] = "InputTextPasswordFont" -defs["structs"]["ImGuiContext"][185]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][185]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][185]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][186] = {} -defs["structs"]["ImGuiContext"][186]["name"] = "TempInputId" -defs["structs"]["ImGuiContext"][186]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][186]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][186]["type"] = "float" defs["structs"]["ImGuiContext"][187] = {} -defs["structs"]["ImGuiContext"][187]["name"] = "ColorEditOptions" -defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][187]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][188] = {} -defs["structs"]["ImGuiContext"][188]["name"] = "ColorEditLastHue" -defs["structs"]["ImGuiContext"][188]["type"] = "float" +defs["structs"]["ImGuiContext"][188]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][188]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][189] = {} -defs["structs"]["ImGuiContext"][189]["name"] = "ColorEditLastSat" -defs["structs"]["ImGuiContext"][189]["type"] = "float" +defs["structs"]["ImGuiContext"][189]["name"] = "DragDropAcceptFrameCount" +defs["structs"]["ImGuiContext"][189]["type"] = "int" defs["structs"]["ImGuiContext"][190] = {} -defs["structs"]["ImGuiContext"][190]["name"] = "ColorEditLastColor" -defs["structs"]["ImGuiContext"][190]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][190]["name"] = "DragDropHoldJustPressedId" +defs["structs"]["ImGuiContext"][190]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][191] = {} -defs["structs"]["ImGuiContext"][191]["name"] = "ColorPickerRef" -defs["structs"]["ImGuiContext"][191]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][191]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][191]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][191]["type"] = "ImVector_unsigned_char" defs["structs"]["ImGuiContext"][192] = {} -defs["structs"]["ImGuiContext"][192]["name"] = "ComboPreviewData" -defs["structs"]["ImGuiContext"][192]["type"] = "ImGuiComboPreviewData" +defs["structs"]["ImGuiContext"][192]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][192]["size"] = 16 +defs["structs"]["ImGuiContext"][192]["type"] = "unsigned char" defs["structs"]["ImGuiContext"][193] = {} -defs["structs"]["ImGuiContext"][193]["name"] = "SliderGrabClickOffset" -defs["structs"]["ImGuiContext"][193]["type"] = "float" +defs["structs"]["ImGuiContext"][193]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][193]["type"] = "int" defs["structs"]["ImGuiContext"][194] = {} -defs["structs"]["ImGuiContext"][194]["name"] = "SliderCurrentAccum" -defs["structs"]["ImGuiContext"][194]["type"] = "float" +defs["structs"]["ImGuiContext"][194]["name"] = "ClipperTempData" +defs["structs"]["ImGuiContext"][194]["template_type"] = "ImGuiListClipperData" +defs["structs"]["ImGuiContext"][194]["type"] = "ImVector_ImGuiListClipperData" defs["structs"]["ImGuiContext"][195] = {} -defs["structs"]["ImGuiContext"][195]["name"] = "SliderCurrentAccumDirty" -defs["structs"]["ImGuiContext"][195]["type"] = "bool" +defs["structs"]["ImGuiContext"][195]["name"] = "CurrentTable" +defs["structs"]["ImGuiContext"][195]["type"] = "ImGuiTable*" defs["structs"]["ImGuiContext"][196] = {} -defs["structs"]["ImGuiContext"][196]["name"] = "DragCurrentAccumDirty" -defs["structs"]["ImGuiContext"][196]["type"] = "bool" +defs["structs"]["ImGuiContext"][196]["name"] = "DebugBreakInTable" +defs["structs"]["ImGuiContext"][196]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][197] = {} -defs["structs"]["ImGuiContext"][197]["name"] = "DragCurrentAccum" -defs["structs"]["ImGuiContext"][197]["type"] = "float" +defs["structs"]["ImGuiContext"][197]["name"] = "TablesTempDataStacked" +defs["structs"]["ImGuiContext"][197]["type"] = "int" defs["structs"]["ImGuiContext"][198] = {} -defs["structs"]["ImGuiContext"][198]["name"] = "DragSpeedDefaultRatio" -defs["structs"]["ImGuiContext"][198]["type"] = "float" +defs["structs"]["ImGuiContext"][198]["name"] = "TablesTempData" +defs["structs"]["ImGuiContext"][198]["template_type"] = "ImGuiTableTempData" +defs["structs"]["ImGuiContext"][198]["type"] = "ImVector_ImGuiTableTempData" defs["structs"]["ImGuiContext"][199] = {} -defs["structs"]["ImGuiContext"][199]["name"] = "ScrollbarClickDeltaToGrabCenter" -defs["structs"]["ImGuiContext"][199]["type"] = "float" +defs["structs"]["ImGuiContext"][199]["name"] = "Tables" +defs["structs"]["ImGuiContext"][199]["template_type"] = "ImGuiTable" +defs["structs"]["ImGuiContext"][199]["type"] = "ImPool_ImGuiTable" defs["structs"]["ImGuiContext"][200] = {} -defs["structs"]["ImGuiContext"][200]["name"] = "DisabledAlphaBackup" -defs["structs"]["ImGuiContext"][200]["type"] = "float" +defs["structs"]["ImGuiContext"][200]["name"] = "TablesLastTimeActive" +defs["structs"]["ImGuiContext"][200]["template_type"] = "float" +defs["structs"]["ImGuiContext"][200]["type"] = "ImVector_float" defs["structs"]["ImGuiContext"][201] = {} -defs["structs"]["ImGuiContext"][201]["name"] = "DisabledStackSize" -defs["structs"]["ImGuiContext"][201]["type"] = "short" +defs["structs"]["ImGuiContext"][201]["name"] = "DrawChannelsTempMergeBuffer" +defs["structs"]["ImGuiContext"][201]["template_type"] = "ImDrawChannel" +defs["structs"]["ImGuiContext"][201]["type"] = "ImVector_ImDrawChannel" defs["structs"]["ImGuiContext"][202] = {} -defs["structs"]["ImGuiContext"][202]["name"] = "TooltipOverrideCount" -defs["structs"]["ImGuiContext"][202]["type"] = "short" +defs["structs"]["ImGuiContext"][202]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][202]["type"] = "ImGuiTabBar*" defs["structs"]["ImGuiContext"][203] = {} -defs["structs"]["ImGuiContext"][203]["name"] = "ClipboardHandlerData" -defs["structs"]["ImGuiContext"][203]["template_type"] = "char" -defs["structs"]["ImGuiContext"][203]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][203]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][203]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][203]["type"] = "ImPool_ImGuiTabBar" defs["structs"]["ImGuiContext"][204] = {} -defs["structs"]["ImGuiContext"][204]["name"] = "MenusIdSubmittedThisFrame" -defs["structs"]["ImGuiContext"][204]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][204]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][204]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][204]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][204]["type"] = "ImVector_ImGuiPtrOrIndex" defs["structs"]["ImGuiContext"][205] = {} -defs["structs"]["ImGuiContext"][205]["name"] = "PlatformImeData" -defs["structs"]["ImGuiContext"][205]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][205]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][205]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][205]["type"] = "ImVector_ImGuiShrinkWidthItem" defs["structs"]["ImGuiContext"][206] = {} -defs["structs"]["ImGuiContext"][206]["name"] = "PlatformImeDataPrev" -defs["structs"]["ImGuiContext"][206]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][206]["name"] = "BoxSelectState" +defs["structs"]["ImGuiContext"][206]["type"] = "ImGuiBoxSelectState" defs["structs"]["ImGuiContext"][207] = {} -defs["structs"]["ImGuiContext"][207]["name"] = "PlatformImeViewport" -defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][207]["name"] = "CurrentMultiSelect" +defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiMultiSelectTempData*" defs["structs"]["ImGuiContext"][208] = {} -defs["structs"]["ImGuiContext"][208]["name"] = "PlatformLocaleDecimalPoint" -defs["structs"]["ImGuiContext"][208]["type"] = "char" +defs["structs"]["ImGuiContext"][208]["name"] = "MultiSelectTempDataStacked" +defs["structs"]["ImGuiContext"][208]["type"] = "int" defs["structs"]["ImGuiContext"][209] = {} -defs["structs"]["ImGuiContext"][209]["name"] = "DockContext" -defs["structs"]["ImGuiContext"][209]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][209]["name"] = "MultiSelectTempData" +defs["structs"]["ImGuiContext"][209]["template_type"] = "ImGuiMultiSelectTempData" +defs["structs"]["ImGuiContext"][209]["type"] = "ImVector_ImGuiMultiSelectTempData" defs["structs"]["ImGuiContext"][210] = {} -defs["structs"]["ImGuiContext"][210]["name"] = "SettingsLoaded" -defs["structs"]["ImGuiContext"][210]["type"] = "bool" +defs["structs"]["ImGuiContext"][210]["name"] = "MultiSelectStorage" +defs["structs"]["ImGuiContext"][210]["template_type"] = "ImGuiMultiSelectState" +defs["structs"]["ImGuiContext"][210]["type"] = "ImPool_ImGuiMultiSelectState" defs["structs"]["ImGuiContext"][211] = {} -defs["structs"]["ImGuiContext"][211]["name"] = "SettingsDirtyTimer" -defs["structs"]["ImGuiContext"][211]["type"] = "float" +defs["structs"]["ImGuiContext"][211]["name"] = "HoverItemDelayId" +defs["structs"]["ImGuiContext"][211]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][212] = {} -defs["structs"]["ImGuiContext"][212]["name"] = "SettingsIniData" -defs["structs"]["ImGuiContext"][212]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][212]["name"] = "HoverItemDelayIdPreviousFrame" +defs["structs"]["ImGuiContext"][212]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][213] = {} -defs["structs"]["ImGuiContext"][213]["name"] = "SettingsHandlers" -defs["structs"]["ImGuiContext"][213]["template_type"] = "ImGuiSettingsHandler" -defs["structs"]["ImGuiContext"][213]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][213]["name"] = "HoverItemDelayTimer" +defs["structs"]["ImGuiContext"][213]["type"] = "float" defs["structs"]["ImGuiContext"][214] = {} -defs["structs"]["ImGuiContext"][214]["name"] = "SettingsWindows" -defs["structs"]["ImGuiContext"][214]["template_type"] = "ImGuiWindowSettings" -defs["structs"]["ImGuiContext"][214]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][214]["name"] = "HoverItemDelayClearTimer" +defs["structs"]["ImGuiContext"][214]["type"] = "float" defs["structs"]["ImGuiContext"][215] = {} -defs["structs"]["ImGuiContext"][215]["name"] = "SettingsTables" -defs["structs"]["ImGuiContext"][215]["template_type"] = "ImGuiTableSettings" -defs["structs"]["ImGuiContext"][215]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][215]["name"] = "HoverItemUnlockedStationaryId" +defs["structs"]["ImGuiContext"][215]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][216] = {} -defs["structs"]["ImGuiContext"][216]["name"] = "Hooks" -defs["structs"]["ImGuiContext"][216]["template_type"] = "ImGuiContextHook" -defs["structs"]["ImGuiContext"][216]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][216]["name"] = "HoverWindowUnlockedStationaryId" +defs["structs"]["ImGuiContext"][216]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][217] = {} -defs["structs"]["ImGuiContext"][217]["name"] = "HookIdNext" -defs["structs"]["ImGuiContext"][217]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][217]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][217]["type"] = "ImGuiMouseCursor" defs["structs"]["ImGuiContext"][218] = {} -defs["structs"]["ImGuiContext"][218]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" -defs["structs"]["ImGuiContext"][218]["size"] = 8 -defs["structs"]["ImGuiContext"][218]["type"] = "const char*" +defs["structs"]["ImGuiContext"][218]["name"] = "MouseStationaryTimer" +defs["structs"]["ImGuiContext"][218]["type"] = "float" defs["structs"]["ImGuiContext"][219] = {} -defs["structs"]["ImGuiContext"][219]["name"] = "LogEnabled" -defs["structs"]["ImGuiContext"][219]["type"] = "bool" +defs["structs"]["ImGuiContext"][219]["name"] = "MouseLastValidPos" +defs["structs"]["ImGuiContext"][219]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][220] = {} -defs["structs"]["ImGuiContext"][220]["name"] = "LogType" -defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][220]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiInputTextState" defs["structs"]["ImGuiContext"][221] = {} -defs["structs"]["ImGuiContext"][221]["name"] = "LogFile" -defs["structs"]["ImGuiContext"][221]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][221]["name"] = "InputTextDeactivatedState" +defs["structs"]["ImGuiContext"][221]["type"] = "ImGuiInputTextDeactivatedState" defs["structs"]["ImGuiContext"][222] = {} -defs["structs"]["ImGuiContext"][222]["name"] = "LogBuffer" -defs["structs"]["ImGuiContext"][222]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][222]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][222]["type"] = "ImFont" defs["structs"]["ImGuiContext"][223] = {} -defs["structs"]["ImGuiContext"][223]["name"] = "LogNextPrefix" -defs["structs"]["ImGuiContext"][223]["type"] = "const char*" +defs["structs"]["ImGuiContext"][223]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][223]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][224] = {} -defs["structs"]["ImGuiContext"][224]["name"] = "LogNextSuffix" -defs["structs"]["ImGuiContext"][224]["type"] = "const char*" +defs["structs"]["ImGuiContext"][224]["name"] = "DataTypeZeroValue" +defs["structs"]["ImGuiContext"][224]["type"] = "ImGuiDataTypeStorage" defs["structs"]["ImGuiContext"][225] = {} -defs["structs"]["ImGuiContext"][225]["name"] = "LogLinePosY" -defs["structs"]["ImGuiContext"][225]["type"] = "float" +defs["structs"]["ImGuiContext"][225]["name"] = "BeginMenuDepth" +defs["structs"]["ImGuiContext"][225]["type"] = "int" defs["structs"]["ImGuiContext"][226] = {} -defs["structs"]["ImGuiContext"][226]["name"] = "LogLineFirstItem" -defs["structs"]["ImGuiContext"][226]["type"] = "bool" +defs["structs"]["ImGuiContext"][226]["name"] = "BeginComboDepth" +defs["structs"]["ImGuiContext"][226]["type"] = "int" defs["structs"]["ImGuiContext"][227] = {} -defs["structs"]["ImGuiContext"][227]["name"] = "LogDepthRef" -defs["structs"]["ImGuiContext"][227]["type"] = "int" +defs["structs"]["ImGuiContext"][227]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][227]["type"] = "ImGuiColorEditFlags" defs["structs"]["ImGuiContext"][228] = {} -defs["structs"]["ImGuiContext"][228]["name"] = "LogDepthToExpand" -defs["structs"]["ImGuiContext"][228]["type"] = "int" +defs["structs"]["ImGuiContext"][228]["name"] = "ColorEditCurrentID" +defs["structs"]["ImGuiContext"][228]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][229] = {} -defs["structs"]["ImGuiContext"][229]["name"] = "LogDepthToExpandDefault" -defs["structs"]["ImGuiContext"][229]["type"] = "int" +defs["structs"]["ImGuiContext"][229]["name"] = "ColorEditSavedID" +defs["structs"]["ImGuiContext"][229]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][230] = {} -defs["structs"]["ImGuiContext"][230]["name"] = "DebugLogFlags" -defs["structs"]["ImGuiContext"][230]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][230]["name"] = "ColorEditSavedHue" +defs["structs"]["ImGuiContext"][230]["type"] = "float" defs["structs"]["ImGuiContext"][231] = {} -defs["structs"]["ImGuiContext"][231]["name"] = "DebugLogBuf" -defs["structs"]["ImGuiContext"][231]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][231]["name"] = "ColorEditSavedSat" +defs["structs"]["ImGuiContext"][231]["type"] = "float" defs["structs"]["ImGuiContext"][232] = {} -defs["structs"]["ImGuiContext"][232]["name"] = "DebugLogIndex" -defs["structs"]["ImGuiContext"][232]["type"] = "ImGuiTextIndex" +defs["structs"]["ImGuiContext"][232]["name"] = "ColorEditSavedColor" +defs["structs"]["ImGuiContext"][232]["type"] = "ImU32" defs["structs"]["ImGuiContext"][233] = {} -defs["structs"]["ImGuiContext"][233]["name"] = "DebugLocateFrames" -defs["structs"]["ImGuiContext"][233]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][233]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][233]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][234] = {} -defs["structs"]["ImGuiContext"][234]["name"] = "DebugItemPickerActive" -defs["structs"]["ImGuiContext"][234]["type"] = "bool" +defs["structs"]["ImGuiContext"][234]["name"] = "ComboPreviewData" +defs["structs"]["ImGuiContext"][234]["type"] = "ImGuiComboPreviewData" defs["structs"]["ImGuiContext"][235] = {} -defs["structs"]["ImGuiContext"][235]["name"] = "DebugItemPickerMouseButton" -defs["structs"]["ImGuiContext"][235]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][235]["name"] = "WindowResizeBorderExpectedRect" +defs["structs"]["ImGuiContext"][235]["type"] = "ImRect" defs["structs"]["ImGuiContext"][236] = {} -defs["structs"]["ImGuiContext"][236]["name"] = "DebugItemPickerBreakId" -defs["structs"]["ImGuiContext"][236]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][236]["name"] = "WindowResizeRelativeMode" +defs["structs"]["ImGuiContext"][236]["type"] = "bool" defs["structs"]["ImGuiContext"][237] = {} -defs["structs"]["ImGuiContext"][237]["name"] = "DebugMetricsConfig" -defs["structs"]["ImGuiContext"][237]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][237]["name"] = "ScrollbarSeekMode" +defs["structs"]["ImGuiContext"][237]["type"] = "short" defs["structs"]["ImGuiContext"][238] = {} -defs["structs"]["ImGuiContext"][238]["name"] = "DebugStackTool" -defs["structs"]["ImGuiContext"][238]["type"] = "ImGuiStackTool" +defs["structs"]["ImGuiContext"][238]["name"] = "ScrollbarClickDeltaToGrabCenter" +defs["structs"]["ImGuiContext"][238]["type"] = "float" defs["structs"]["ImGuiContext"][239] = {} -defs["structs"]["ImGuiContext"][239]["name"] = "DebugHoveredDockNode" -defs["structs"]["ImGuiContext"][239]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][239]["name"] = "SliderGrabClickOffset" +defs["structs"]["ImGuiContext"][239]["type"] = "float" defs["structs"]["ImGuiContext"][240] = {} -defs["structs"]["ImGuiContext"][240]["name"] = "FramerateSecPerFrame[60]" -defs["structs"]["ImGuiContext"][240]["size"] = 60 +defs["structs"]["ImGuiContext"][240]["name"] = "SliderCurrentAccum" defs["structs"]["ImGuiContext"][240]["type"] = "float" defs["structs"]["ImGuiContext"][241] = {} -defs["structs"]["ImGuiContext"][241]["name"] = "FramerateSecPerFrameIdx" -defs["structs"]["ImGuiContext"][241]["type"] = "int" +defs["structs"]["ImGuiContext"][241]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][241]["type"] = "bool" defs["structs"]["ImGuiContext"][242] = {} -defs["structs"]["ImGuiContext"][242]["name"] = "FramerateSecPerFrameCount" -defs["structs"]["ImGuiContext"][242]["type"] = "int" +defs["structs"]["ImGuiContext"][242]["name"] = "DragCurrentAccumDirty" +defs["structs"]["ImGuiContext"][242]["type"] = "bool" defs["structs"]["ImGuiContext"][243] = {} -defs["structs"]["ImGuiContext"][243]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][243]["name"] = "DragCurrentAccum" defs["structs"]["ImGuiContext"][243]["type"] = "float" defs["structs"]["ImGuiContext"][244] = {} -defs["structs"]["ImGuiContext"][244]["name"] = "WantCaptureMouseNextFrame" -defs["structs"]["ImGuiContext"][244]["type"] = "int" +defs["structs"]["ImGuiContext"][244]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][244]["type"] = "float" defs["structs"]["ImGuiContext"][245] = {} -defs["structs"]["ImGuiContext"][245]["name"] = "WantCaptureKeyboardNextFrame" -defs["structs"]["ImGuiContext"][245]["type"] = "int" +defs["structs"]["ImGuiContext"][245]["name"] = "DisabledAlphaBackup" +defs["structs"]["ImGuiContext"][245]["type"] = "float" defs["structs"]["ImGuiContext"][246] = {} -defs["structs"]["ImGuiContext"][246]["name"] = "WantTextInputNextFrame" -defs["structs"]["ImGuiContext"][246]["type"] = "int" +defs["structs"]["ImGuiContext"][246]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][246]["type"] = "short" defs["structs"]["ImGuiContext"][247] = {} -defs["structs"]["ImGuiContext"][247]["name"] = "TempBuffer" -defs["structs"]["ImGuiContext"][247]["template_type"] = "char" -defs["structs"]["ImGuiContext"][247]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][247]["name"] = "LockMarkEdited" +defs["structs"]["ImGuiContext"][247]["type"] = "short" +defs["structs"]["ImGuiContext"][248] = {} +defs["structs"]["ImGuiContext"][248]["name"] = "TooltipOverrideCount" +defs["structs"]["ImGuiContext"][248]["type"] = "short" +defs["structs"]["ImGuiContext"][249] = {} +defs["structs"]["ImGuiContext"][249]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][249]["template_type"] = "char" +defs["structs"]["ImGuiContext"][249]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][250] = {} +defs["structs"]["ImGuiContext"][250]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][250]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][250]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][251] = {} +defs["structs"]["ImGuiContext"][251]["name"] = "TypingSelectState" +defs["structs"]["ImGuiContext"][251]["type"] = "ImGuiTypingSelectState" +defs["structs"]["ImGuiContext"][252] = {} +defs["structs"]["ImGuiContext"][252]["name"] = "PlatformImeData" +defs["structs"]["ImGuiContext"][252]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][253] = {} +defs["structs"]["ImGuiContext"][253]["name"] = "PlatformImeDataPrev" +defs["structs"]["ImGuiContext"][253]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][254] = {} +defs["structs"]["ImGuiContext"][254]["name"] = "PlatformImeViewport" +defs["structs"]["ImGuiContext"][254]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][255] = {} +defs["structs"]["ImGuiContext"][255]["name"] = "DockContext" +defs["structs"]["ImGuiContext"][255]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][256] = {} +defs["structs"]["ImGuiContext"][256]["name"] = "DockNodeWindowMenuHandler" +defs["structs"]["ImGuiContext"][256]["type"] = "void(*)(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["structs"]["ImGuiContext"][257] = {} +defs["structs"]["ImGuiContext"][257]["name"] = "SettingsLoaded" +defs["structs"]["ImGuiContext"][257]["type"] = "bool" +defs["structs"]["ImGuiContext"][258] = {} +defs["structs"]["ImGuiContext"][258]["name"] = "SettingsDirtyTimer" +defs["structs"]["ImGuiContext"][258]["type"] = "float" +defs["structs"]["ImGuiContext"][259] = {} +defs["structs"]["ImGuiContext"][259]["name"] = "SettingsIniData" +defs["structs"]["ImGuiContext"][259]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][260] = {} +defs["structs"]["ImGuiContext"][260]["name"] = "SettingsHandlers" +defs["structs"]["ImGuiContext"][260]["template_type"] = "ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][260]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][261] = {} +defs["structs"]["ImGuiContext"][261]["name"] = "SettingsWindows" +defs["structs"]["ImGuiContext"][261]["template_type"] = "ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][261]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][262] = {} +defs["structs"]["ImGuiContext"][262]["name"] = "SettingsTables" +defs["structs"]["ImGuiContext"][262]["template_type"] = "ImGuiTableSettings" +defs["structs"]["ImGuiContext"][262]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][263] = {} +defs["structs"]["ImGuiContext"][263]["name"] = "Hooks" +defs["structs"]["ImGuiContext"][263]["template_type"] = "ImGuiContextHook" +defs["structs"]["ImGuiContext"][263]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][264] = {} +defs["structs"]["ImGuiContext"][264]["name"] = "HookIdNext" +defs["structs"]["ImGuiContext"][264]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][265] = {} +defs["structs"]["ImGuiContext"][265]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" +defs["structs"]["ImGuiContext"][265]["size"] = 13 +defs["structs"]["ImGuiContext"][265]["type"] = "const char*" +defs["structs"]["ImGuiContext"][266] = {} +defs["structs"]["ImGuiContext"][266]["name"] = "LogEnabled" +defs["structs"]["ImGuiContext"][266]["type"] = "bool" +defs["structs"]["ImGuiContext"][267] = {} +defs["structs"]["ImGuiContext"][267]["name"] = "LogType" +defs["structs"]["ImGuiContext"][267]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][268] = {} +defs["structs"]["ImGuiContext"][268]["name"] = "LogFile" +defs["structs"]["ImGuiContext"][268]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][269] = {} +defs["structs"]["ImGuiContext"][269]["name"] = "LogBuffer" +defs["structs"]["ImGuiContext"][269]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][270] = {} +defs["structs"]["ImGuiContext"][270]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][270]["type"] = "const char*" +defs["structs"]["ImGuiContext"][271] = {} +defs["structs"]["ImGuiContext"][271]["name"] = "LogNextSuffix" +defs["structs"]["ImGuiContext"][271]["type"] = "const char*" +defs["structs"]["ImGuiContext"][272] = {} +defs["structs"]["ImGuiContext"][272]["name"] = "LogLinePosY" +defs["structs"]["ImGuiContext"][272]["type"] = "float" +defs["structs"]["ImGuiContext"][273] = {} +defs["structs"]["ImGuiContext"][273]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][273]["type"] = "bool" +defs["structs"]["ImGuiContext"][274] = {} +defs["structs"]["ImGuiContext"][274]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][274]["type"] = "int" +defs["structs"]["ImGuiContext"][275] = {} +defs["structs"]["ImGuiContext"][275]["name"] = "LogDepthToExpand" +defs["structs"]["ImGuiContext"][275]["type"] = "int" +defs["structs"]["ImGuiContext"][276] = {} +defs["structs"]["ImGuiContext"][276]["name"] = "LogDepthToExpandDefault" +defs["structs"]["ImGuiContext"][276]["type"] = "int" +defs["structs"]["ImGuiContext"][277] = {} +defs["structs"]["ImGuiContext"][277]["name"] = "DebugLogFlags" +defs["structs"]["ImGuiContext"][277]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][278] = {} +defs["structs"]["ImGuiContext"][278]["name"] = "DebugLogBuf" +defs["structs"]["ImGuiContext"][278]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][279] = {} +defs["structs"]["ImGuiContext"][279]["name"] = "DebugLogIndex" +defs["structs"]["ImGuiContext"][279]["type"] = "ImGuiTextIndex" +defs["structs"]["ImGuiContext"][280] = {} +defs["structs"]["ImGuiContext"][280]["name"] = "DebugLogAutoDisableFlags" +defs["structs"]["ImGuiContext"][280]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][281] = {} +defs["structs"]["ImGuiContext"][281]["name"] = "DebugLogAutoDisableFrames" +defs["structs"]["ImGuiContext"][281]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][282] = {} +defs["structs"]["ImGuiContext"][282]["name"] = "DebugLocateFrames" +defs["structs"]["ImGuiContext"][282]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][283] = {} +defs["structs"]["ImGuiContext"][283]["name"] = "DebugBreakInLocateId" +defs["structs"]["ImGuiContext"][283]["type"] = "bool" +defs["structs"]["ImGuiContext"][284] = {} +defs["structs"]["ImGuiContext"][284]["name"] = "DebugBreakKeyChord" +defs["structs"]["ImGuiContext"][284]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][285] = {} +defs["structs"]["ImGuiContext"][285]["name"] = "DebugBeginReturnValueCullDepth" +defs["structs"]["ImGuiContext"][285]["type"] = "ImS8" +defs["structs"]["ImGuiContext"][286] = {} +defs["structs"]["ImGuiContext"][286]["name"] = "DebugItemPickerActive" +defs["structs"]["ImGuiContext"][286]["type"] = "bool" +defs["structs"]["ImGuiContext"][287] = {} +defs["structs"]["ImGuiContext"][287]["name"] = "DebugItemPickerMouseButton" +defs["structs"]["ImGuiContext"][287]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][288] = {} +defs["structs"]["ImGuiContext"][288]["name"] = "DebugItemPickerBreakId" +defs["structs"]["ImGuiContext"][288]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][289] = {} +defs["structs"]["ImGuiContext"][289]["name"] = "DebugFlashStyleColorTime" +defs["structs"]["ImGuiContext"][289]["type"] = "float" +defs["structs"]["ImGuiContext"][290] = {} +defs["structs"]["ImGuiContext"][290]["name"] = "DebugFlashStyleColorBackup" +defs["structs"]["ImGuiContext"][290]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][291] = {} +defs["structs"]["ImGuiContext"][291]["name"] = "DebugMetricsConfig" +defs["structs"]["ImGuiContext"][291]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][292] = {} +defs["structs"]["ImGuiContext"][292]["name"] = "DebugIDStackTool" +defs["structs"]["ImGuiContext"][292]["type"] = "ImGuiIDStackTool" +defs["structs"]["ImGuiContext"][293] = {} +defs["structs"]["ImGuiContext"][293]["name"] = "DebugAllocInfo" +defs["structs"]["ImGuiContext"][293]["type"] = "ImGuiDebugAllocInfo" +defs["structs"]["ImGuiContext"][294] = {} +defs["structs"]["ImGuiContext"][294]["name"] = "DebugHoveredDockNode" +defs["structs"]["ImGuiContext"][294]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][295] = {} +defs["structs"]["ImGuiContext"][295]["name"] = "FramerateSecPerFrame[60]" +defs["structs"]["ImGuiContext"][295]["size"] = 60 +defs["structs"]["ImGuiContext"][295]["type"] = "float" +defs["structs"]["ImGuiContext"][296] = {} +defs["structs"]["ImGuiContext"][296]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][296]["type"] = "int" +defs["structs"]["ImGuiContext"][297] = {} +defs["structs"]["ImGuiContext"][297]["name"] = "FramerateSecPerFrameCount" +defs["structs"]["ImGuiContext"][297]["type"] = "int" +defs["structs"]["ImGuiContext"][298] = {} +defs["structs"]["ImGuiContext"][298]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][298]["type"] = "float" +defs["structs"]["ImGuiContext"][299] = {} +defs["structs"]["ImGuiContext"][299]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][299]["type"] = "int" +defs["structs"]["ImGuiContext"][300] = {} +defs["structs"]["ImGuiContext"][300]["name"] = "WantCaptureKeyboardNextFrame" +defs["structs"]["ImGuiContext"][300]["type"] = "int" +defs["structs"]["ImGuiContext"][301] = {} +defs["structs"]["ImGuiContext"][301]["name"] = "WantTextInputNextFrame" +defs["structs"]["ImGuiContext"][301]["type"] = "int" +defs["structs"]["ImGuiContext"][302] = {} +defs["structs"]["ImGuiContext"][302]["name"] = "TempBuffer" +defs["structs"]["ImGuiContext"][302]["template_type"] = "char" +defs["structs"]["ImGuiContext"][302]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][303] = {} +defs["structs"]["ImGuiContext"][303]["name"] = "TempKeychordName[64]" +defs["structs"]["ImGuiContext"][303]["size"] = 64 +defs["structs"]["ImGuiContext"][303]["type"] = "char" defs["structs"]["ImGuiContextHook"] = {} defs["structs"]["ImGuiContextHook"][1] = {} defs["structs"]["ImGuiContextHook"][1]["name"] = "HookId" @@ -5050,11 +5766,45 @@ defs["structs"]["ImGuiDataTypeInfo"][3]["type"] = "const char*" defs["structs"]["ImGuiDataTypeInfo"][4] = {} defs["structs"]["ImGuiDataTypeInfo"][4]["name"] = "ScanFmt" defs["structs"]["ImGuiDataTypeInfo"][4]["type"] = "const char*" -defs["structs"]["ImGuiDataTypeTempStorage"] = {} -defs["structs"]["ImGuiDataTypeTempStorage"][1] = {} -defs["structs"]["ImGuiDataTypeTempStorage"][1]["name"] = "Data[8]" -defs["structs"]["ImGuiDataTypeTempStorage"][1]["size"] = 8 -defs["structs"]["ImGuiDataTypeTempStorage"][1]["type"] = "ImU8" +defs["structs"]["ImGuiDataTypeStorage"] = {} +defs["structs"]["ImGuiDataTypeStorage"][1] = {} +defs["structs"]["ImGuiDataTypeStorage"][1]["name"] = "Data[8]" +defs["structs"]["ImGuiDataTypeStorage"][1]["size"] = 8 +defs["structs"]["ImGuiDataTypeStorage"][1]["type"] = "ImU8" +defs["structs"]["ImGuiDataVarInfo"] = {} +defs["structs"]["ImGuiDataVarInfo"][1] = {} +defs["structs"]["ImGuiDataVarInfo"][1]["name"] = "Type" +defs["structs"]["ImGuiDataVarInfo"][1]["type"] = "ImGuiDataType" +defs["structs"]["ImGuiDataVarInfo"][2] = {} +defs["structs"]["ImGuiDataVarInfo"][2]["name"] = "Count" +defs["structs"]["ImGuiDataVarInfo"][2]["type"] = "ImU32" +defs["structs"]["ImGuiDataVarInfo"][3] = {} +defs["structs"]["ImGuiDataVarInfo"][3]["name"] = "Offset" +defs["structs"]["ImGuiDataVarInfo"][3]["type"] = "ImU32" +defs["structs"]["ImGuiDebugAllocEntry"] = {} +defs["structs"]["ImGuiDebugAllocEntry"][1] = {} +defs["structs"]["ImGuiDebugAllocEntry"][1]["name"] = "FrameCount" +defs["structs"]["ImGuiDebugAllocEntry"][1]["type"] = "int" +defs["structs"]["ImGuiDebugAllocEntry"][2] = {} +defs["structs"]["ImGuiDebugAllocEntry"][2]["name"] = "AllocCount" +defs["structs"]["ImGuiDebugAllocEntry"][2]["type"] = "ImS16" +defs["structs"]["ImGuiDebugAllocEntry"][3] = {} +defs["structs"]["ImGuiDebugAllocEntry"][3]["name"] = "FreeCount" +defs["structs"]["ImGuiDebugAllocEntry"][3]["type"] = "ImS16" +defs["structs"]["ImGuiDebugAllocInfo"] = {} +defs["structs"]["ImGuiDebugAllocInfo"][1] = {} +defs["structs"]["ImGuiDebugAllocInfo"][1]["name"] = "TotalAllocCount" +defs["structs"]["ImGuiDebugAllocInfo"][1]["type"] = "int" +defs["structs"]["ImGuiDebugAllocInfo"][2] = {} +defs["structs"]["ImGuiDebugAllocInfo"][2]["name"] = "TotalFreeCount" +defs["structs"]["ImGuiDebugAllocInfo"][2]["type"] = "int" +defs["structs"]["ImGuiDebugAllocInfo"][3] = {} +defs["structs"]["ImGuiDebugAllocInfo"][3]["name"] = "LastEntriesIdx" +defs["structs"]["ImGuiDebugAllocInfo"][3]["type"] = "ImS16" +defs["structs"]["ImGuiDebugAllocInfo"][4] = {} +defs["structs"]["ImGuiDebugAllocInfo"][4]["name"] = "LastEntriesBuf[6]" +defs["structs"]["ImGuiDebugAllocInfo"][4]["size"] = 6 +defs["structs"]["ImGuiDebugAllocInfo"][4]["type"] = "ImGuiDebugAllocEntry" defs["structs"]["ImGuiDockContext"] = {} defs["structs"]["ImGuiDockContext"][1] = {} defs["structs"]["ImGuiDockContext"][1]["name"] = "Nodes" @@ -5155,61 +5905,71 @@ defs["structs"]["ImGuiDockNode"][27] = {} defs["structs"]["ImGuiDockNode"][27]["name"] = "WantCloseTabId" defs["structs"]["ImGuiDockNode"][27]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][28] = {} -defs["structs"]["ImGuiDockNode"][28]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][28]["name"] = "AuthorityForPos" -defs["structs"]["ImGuiDockNode"][28]["type"] = "ImGuiDataAuthority" +defs["structs"]["ImGuiDockNode"][28]["name"] = "RefViewportId" +defs["structs"]["ImGuiDockNode"][28]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][29] = {} defs["structs"]["ImGuiDockNode"][29]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][29]["name"] = "AuthorityForSize" +defs["structs"]["ImGuiDockNode"][29]["name"] = "AuthorityForPos" defs["structs"]["ImGuiDockNode"][29]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][30] = {} defs["structs"]["ImGuiDockNode"][30]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][30]["name"] = "AuthorityForViewport" +defs["structs"]["ImGuiDockNode"][30]["name"] = "AuthorityForSize" defs["structs"]["ImGuiDockNode"][30]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][31] = {} -defs["structs"]["ImGuiDockNode"][31]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][31]["name"] = "IsVisible" -defs["structs"]["ImGuiDockNode"][31]["type"] = "bool" +defs["structs"]["ImGuiDockNode"][31]["bitfield"] = "3" +defs["structs"]["ImGuiDockNode"][31]["name"] = "AuthorityForViewport" +defs["structs"]["ImGuiDockNode"][31]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][32] = {} defs["structs"]["ImGuiDockNode"][32]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][32]["name"] = "IsFocused" +defs["structs"]["ImGuiDockNode"][32]["name"] = "IsVisible" defs["structs"]["ImGuiDockNode"][32]["type"] = "bool" defs["structs"]["ImGuiDockNode"][33] = {} defs["structs"]["ImGuiDockNode"][33]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][33]["name"] = "IsBgDrawnThisFrame" +defs["structs"]["ImGuiDockNode"][33]["name"] = "IsFocused" defs["structs"]["ImGuiDockNode"][33]["type"] = "bool" defs["structs"]["ImGuiDockNode"][34] = {} defs["structs"]["ImGuiDockNode"][34]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][34]["name"] = "HasCloseButton" +defs["structs"]["ImGuiDockNode"][34]["name"] = "IsBgDrawnThisFrame" defs["structs"]["ImGuiDockNode"][34]["type"] = "bool" defs["structs"]["ImGuiDockNode"][35] = {} defs["structs"]["ImGuiDockNode"][35]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][35]["name"] = "HasWindowMenuButton" +defs["structs"]["ImGuiDockNode"][35]["name"] = "HasCloseButton" defs["structs"]["ImGuiDockNode"][35]["type"] = "bool" defs["structs"]["ImGuiDockNode"][36] = {} defs["structs"]["ImGuiDockNode"][36]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][36]["name"] = "HasCentralNodeChild" +defs["structs"]["ImGuiDockNode"][36]["name"] = "HasWindowMenuButton" defs["structs"]["ImGuiDockNode"][36]["type"] = "bool" defs["structs"]["ImGuiDockNode"][37] = {} defs["structs"]["ImGuiDockNode"][37]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][37]["name"] = "WantCloseAll" +defs["structs"]["ImGuiDockNode"][37]["name"] = "HasCentralNodeChild" defs["structs"]["ImGuiDockNode"][37]["type"] = "bool" defs["structs"]["ImGuiDockNode"][38] = {} defs["structs"]["ImGuiDockNode"][38]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][38]["name"] = "WantLockSizeOnce" +defs["structs"]["ImGuiDockNode"][38]["name"] = "WantCloseAll" defs["structs"]["ImGuiDockNode"][38]["type"] = "bool" defs["structs"]["ImGuiDockNode"][39] = {} defs["structs"]["ImGuiDockNode"][39]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][39]["name"] = "WantMouseMove" +defs["structs"]["ImGuiDockNode"][39]["name"] = "WantLockSizeOnce" defs["structs"]["ImGuiDockNode"][39]["type"] = "bool" defs["structs"]["ImGuiDockNode"][40] = {} defs["structs"]["ImGuiDockNode"][40]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][40]["name"] = "WantHiddenTabBarUpdate" +defs["structs"]["ImGuiDockNode"][40]["name"] = "WantMouseMove" defs["structs"]["ImGuiDockNode"][40]["type"] = "bool" defs["structs"]["ImGuiDockNode"][41] = {} defs["structs"]["ImGuiDockNode"][41]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][41]["name"] = "WantHiddenTabBarToggle" +defs["structs"]["ImGuiDockNode"][41]["name"] = "WantHiddenTabBarUpdate" defs["structs"]["ImGuiDockNode"][41]["type"] = "bool" +defs["structs"]["ImGuiDockNode"][42] = {} +defs["structs"]["ImGuiDockNode"][42]["bitfield"] = "1" +defs["structs"]["ImGuiDockNode"][42]["name"] = "WantHiddenTabBarToggle" +defs["structs"]["ImGuiDockNode"][42]["type"] = "bool" +defs["structs"]["ImGuiFocusScopeData"] = {} +defs["structs"]["ImGuiFocusScopeData"][1] = {} +defs["structs"]["ImGuiFocusScopeData"][1]["name"] = "ID" +defs["structs"]["ImGuiFocusScopeData"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiFocusScopeData"][2] = {} +defs["structs"]["ImGuiFocusScopeData"][2]["name"] = "WindowID" +defs["structs"]["ImGuiFocusScopeData"][2]["type"] = "ImGuiID" defs["structs"]["ImGuiGroupData"] = {} defs["structs"]["ImGuiGroupData"][1] = {} defs["structs"]["ImGuiGroupData"][1]["name"] = "WindowID" @@ -5221,29 +5981,55 @@ defs["structs"]["ImGuiGroupData"][3] = {} defs["structs"]["ImGuiGroupData"][3]["name"] = "BackupCursorMaxPos" defs["structs"]["ImGuiGroupData"][3]["type"] = "ImVec2" defs["structs"]["ImGuiGroupData"][4] = {} -defs["structs"]["ImGuiGroupData"][4]["name"] = "BackupIndent" -defs["structs"]["ImGuiGroupData"][4]["type"] = "ImVec1" +defs["structs"]["ImGuiGroupData"][4]["name"] = "BackupCursorPosPrevLine" +defs["structs"]["ImGuiGroupData"][4]["type"] = "ImVec2" defs["structs"]["ImGuiGroupData"][5] = {} -defs["structs"]["ImGuiGroupData"][5]["name"] = "BackupGroupOffset" +defs["structs"]["ImGuiGroupData"][5]["name"] = "BackupIndent" defs["structs"]["ImGuiGroupData"][5]["type"] = "ImVec1" defs["structs"]["ImGuiGroupData"][6] = {} -defs["structs"]["ImGuiGroupData"][6]["name"] = "BackupCurrLineSize" -defs["structs"]["ImGuiGroupData"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiGroupData"][6]["name"] = "BackupGroupOffset" +defs["structs"]["ImGuiGroupData"][6]["type"] = "ImVec1" defs["structs"]["ImGuiGroupData"][7] = {} -defs["structs"]["ImGuiGroupData"][7]["name"] = "BackupCurrLineTextBaseOffset" -defs["structs"]["ImGuiGroupData"][7]["type"] = "float" +defs["structs"]["ImGuiGroupData"][7]["name"] = "BackupCurrLineSize" +defs["structs"]["ImGuiGroupData"][7]["type"] = "ImVec2" defs["structs"]["ImGuiGroupData"][8] = {} -defs["structs"]["ImGuiGroupData"][8]["name"] = "BackupActiveIdIsAlive" -defs["structs"]["ImGuiGroupData"][8]["type"] = "ImGuiID" +defs["structs"]["ImGuiGroupData"][8]["name"] = "BackupCurrLineTextBaseOffset" +defs["structs"]["ImGuiGroupData"][8]["type"] = "float" defs["structs"]["ImGuiGroupData"][9] = {} -defs["structs"]["ImGuiGroupData"][9]["name"] = "BackupActiveIdPreviousFrameIsAlive" -defs["structs"]["ImGuiGroupData"][9]["type"] = "bool" +defs["structs"]["ImGuiGroupData"][9]["name"] = "BackupActiveIdIsAlive" +defs["structs"]["ImGuiGroupData"][9]["type"] = "ImGuiID" defs["structs"]["ImGuiGroupData"][10] = {} -defs["structs"]["ImGuiGroupData"][10]["name"] = "BackupHoveredIdIsAlive" +defs["structs"]["ImGuiGroupData"][10]["name"] = "BackupActiveIdPreviousFrameIsAlive" defs["structs"]["ImGuiGroupData"][10]["type"] = "bool" defs["structs"]["ImGuiGroupData"][11] = {} -defs["structs"]["ImGuiGroupData"][11]["name"] = "EmitItem" +defs["structs"]["ImGuiGroupData"][11]["name"] = "BackupHoveredIdIsAlive" defs["structs"]["ImGuiGroupData"][11]["type"] = "bool" +defs["structs"]["ImGuiGroupData"][12] = {} +defs["structs"]["ImGuiGroupData"][12]["name"] = "BackupIsSameLine" +defs["structs"]["ImGuiGroupData"][12]["type"] = "bool" +defs["structs"]["ImGuiGroupData"][13] = {} +defs["structs"]["ImGuiGroupData"][13]["name"] = "EmitItem" +defs["structs"]["ImGuiGroupData"][13]["type"] = "bool" +defs["structs"]["ImGuiIDStackTool"] = {} +defs["structs"]["ImGuiIDStackTool"][1] = {} +defs["structs"]["ImGuiIDStackTool"][1]["name"] = "LastActiveFrame" +defs["structs"]["ImGuiIDStackTool"][1]["type"] = "int" +defs["structs"]["ImGuiIDStackTool"][2] = {} +defs["structs"]["ImGuiIDStackTool"][2]["name"] = "StackLevel" +defs["structs"]["ImGuiIDStackTool"][2]["type"] = "int" +defs["structs"]["ImGuiIDStackTool"][3] = {} +defs["structs"]["ImGuiIDStackTool"][3]["name"] = "QueryId" +defs["structs"]["ImGuiIDStackTool"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiIDStackTool"][4] = {} +defs["structs"]["ImGuiIDStackTool"][4]["name"] = "Results" +defs["structs"]["ImGuiIDStackTool"][4]["template_type"] = "ImGuiStackLevelInfo" +defs["structs"]["ImGuiIDStackTool"][4]["type"] = "ImVector_ImGuiStackLevelInfo" +defs["structs"]["ImGuiIDStackTool"][5] = {} +defs["structs"]["ImGuiIDStackTool"][5]["name"] = "CopyToClipboardOnCtrlC" +defs["structs"]["ImGuiIDStackTool"][5]["type"] = "bool" +defs["structs"]["ImGuiIDStackTool"][6] = {} +defs["structs"]["ImGuiIDStackTool"][6]["name"] = "CopyToClipboardLastTime" +defs["structs"]["ImGuiIDStackTool"][6]["type"] = "float" defs["structs"]["ImGuiIO"] = {} defs["structs"]["ImGuiIO"][1] = {} defs["structs"]["ImGuiIO"][1]["name"] = "ConfigFlags" @@ -5267,124 +6053,124 @@ defs["structs"]["ImGuiIO"][7] = {} defs["structs"]["ImGuiIO"][7]["name"] = "LogFilename" defs["structs"]["ImGuiIO"][7]["type"] = "const char*" defs["structs"]["ImGuiIO"][8] = {} -defs["structs"]["ImGuiIO"][8]["name"] = "MouseDoubleClickTime" -defs["structs"]["ImGuiIO"][8]["type"] = "float" +defs["structs"]["ImGuiIO"][8]["name"] = "UserData" +defs["structs"]["ImGuiIO"][8]["type"] = "void*" defs["structs"]["ImGuiIO"][9] = {} -defs["structs"]["ImGuiIO"][9]["name"] = "MouseDoubleClickMaxDist" -defs["structs"]["ImGuiIO"][9]["type"] = "float" +defs["structs"]["ImGuiIO"][9]["name"] = "Fonts" +defs["structs"]["ImGuiIO"][9]["type"] = "ImFontAtlas*" defs["structs"]["ImGuiIO"][10] = {} -defs["structs"]["ImGuiIO"][10]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][10]["name"] = "FontGlobalScale" defs["structs"]["ImGuiIO"][10]["type"] = "float" defs["structs"]["ImGuiIO"][11] = {} -defs["structs"]["ImGuiIO"][11]["name"] = "KeyRepeatDelay" -defs["structs"]["ImGuiIO"][11]["type"] = "float" +defs["structs"]["ImGuiIO"][11]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][11]["type"] = "bool" defs["structs"]["ImGuiIO"][12] = {} -defs["structs"]["ImGuiIO"][12]["name"] = "KeyRepeatRate" -defs["structs"]["ImGuiIO"][12]["type"] = "float" +defs["structs"]["ImGuiIO"][12]["name"] = "FontDefault" +defs["structs"]["ImGuiIO"][12]["type"] = "ImFont*" defs["structs"]["ImGuiIO"][13] = {} -defs["structs"]["ImGuiIO"][13]["name"] = "HoverDelayNormal" -defs["structs"]["ImGuiIO"][13]["type"] = "float" +defs["structs"]["ImGuiIO"][13]["name"] = "DisplayFramebufferScale" +defs["structs"]["ImGuiIO"][13]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][14] = {} -defs["structs"]["ImGuiIO"][14]["name"] = "HoverDelayShort" -defs["structs"]["ImGuiIO"][14]["type"] = "float" +defs["structs"]["ImGuiIO"][14]["name"] = "ConfigDockingNoSplit" +defs["structs"]["ImGuiIO"][14]["type"] = "bool" defs["structs"]["ImGuiIO"][15] = {} -defs["structs"]["ImGuiIO"][15]["name"] = "UserData" -defs["structs"]["ImGuiIO"][15]["type"] = "void*" +defs["structs"]["ImGuiIO"][15]["name"] = "ConfigDockingWithShift" +defs["structs"]["ImGuiIO"][15]["type"] = "bool" defs["structs"]["ImGuiIO"][16] = {} -defs["structs"]["ImGuiIO"][16]["name"] = "Fonts" -defs["structs"]["ImGuiIO"][16]["type"] = "ImFontAtlas*" +defs["structs"]["ImGuiIO"][16]["name"] = "ConfigDockingAlwaysTabBar" +defs["structs"]["ImGuiIO"][16]["type"] = "bool" defs["structs"]["ImGuiIO"][17] = {} -defs["structs"]["ImGuiIO"][17]["name"] = "FontGlobalScale" -defs["structs"]["ImGuiIO"][17]["type"] = "float" +defs["structs"]["ImGuiIO"][17]["name"] = "ConfigDockingTransparentPayload" +defs["structs"]["ImGuiIO"][17]["type"] = "bool" defs["structs"]["ImGuiIO"][18] = {} -defs["structs"]["ImGuiIO"][18]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][18]["name"] = "ConfigViewportsNoAutoMerge" defs["structs"]["ImGuiIO"][18]["type"] = "bool" defs["structs"]["ImGuiIO"][19] = {} -defs["structs"]["ImGuiIO"][19]["name"] = "FontDefault" -defs["structs"]["ImGuiIO"][19]["type"] = "ImFont*" +defs["structs"]["ImGuiIO"][19]["name"] = "ConfigViewportsNoTaskBarIcon" +defs["structs"]["ImGuiIO"][19]["type"] = "bool" defs["structs"]["ImGuiIO"][20] = {} -defs["structs"]["ImGuiIO"][20]["name"] = "DisplayFramebufferScale" -defs["structs"]["ImGuiIO"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][20]["name"] = "ConfigViewportsNoDecoration" +defs["structs"]["ImGuiIO"][20]["type"] = "bool" defs["structs"]["ImGuiIO"][21] = {} -defs["structs"]["ImGuiIO"][21]["name"] = "ConfigDockingNoSplit" +defs["structs"]["ImGuiIO"][21]["name"] = "ConfigViewportsNoDefaultParent" defs["structs"]["ImGuiIO"][21]["type"] = "bool" defs["structs"]["ImGuiIO"][22] = {} -defs["structs"]["ImGuiIO"][22]["name"] = "ConfigDockingWithShift" +defs["structs"]["ImGuiIO"][22]["name"] = "MouseDrawCursor" defs["structs"]["ImGuiIO"][22]["type"] = "bool" defs["structs"]["ImGuiIO"][23] = {} -defs["structs"]["ImGuiIO"][23]["name"] = "ConfigDockingAlwaysTabBar" +defs["structs"]["ImGuiIO"][23]["name"] = "ConfigMacOSXBehaviors" defs["structs"]["ImGuiIO"][23]["type"] = "bool" defs["structs"]["ImGuiIO"][24] = {} -defs["structs"]["ImGuiIO"][24]["name"] = "ConfigDockingTransparentPayload" +defs["structs"]["ImGuiIO"][24]["name"] = "ConfigNavSwapGamepadButtons" defs["structs"]["ImGuiIO"][24]["type"] = "bool" defs["structs"]["ImGuiIO"][25] = {} -defs["structs"]["ImGuiIO"][25]["name"] = "ConfigViewportsNoAutoMerge" +defs["structs"]["ImGuiIO"][25]["name"] = "ConfigInputTrickleEventQueue" defs["structs"]["ImGuiIO"][25]["type"] = "bool" defs["structs"]["ImGuiIO"][26] = {} -defs["structs"]["ImGuiIO"][26]["name"] = "ConfigViewportsNoTaskBarIcon" +defs["structs"]["ImGuiIO"][26]["name"] = "ConfigInputTextCursorBlink" defs["structs"]["ImGuiIO"][26]["type"] = "bool" defs["structs"]["ImGuiIO"][27] = {} -defs["structs"]["ImGuiIO"][27]["name"] = "ConfigViewportsNoDecoration" +defs["structs"]["ImGuiIO"][27]["name"] = "ConfigInputTextEnterKeepActive" defs["structs"]["ImGuiIO"][27]["type"] = "bool" defs["structs"]["ImGuiIO"][28] = {} -defs["structs"]["ImGuiIO"][28]["name"] = "ConfigViewportsNoDefaultParent" +defs["structs"]["ImGuiIO"][28]["name"] = "ConfigDragClickToInputText" defs["structs"]["ImGuiIO"][28]["type"] = "bool" defs["structs"]["ImGuiIO"][29] = {} -defs["structs"]["ImGuiIO"][29]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][29]["name"] = "ConfigWindowsResizeFromEdges" defs["structs"]["ImGuiIO"][29]["type"] = "bool" defs["structs"]["ImGuiIO"][30] = {} -defs["structs"]["ImGuiIO"][30]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][30]["name"] = "ConfigWindowsMoveFromTitleBarOnly" defs["structs"]["ImGuiIO"][30]["type"] = "bool" defs["structs"]["ImGuiIO"][31] = {} -defs["structs"]["ImGuiIO"][31]["name"] = "ConfigInputTrickleEventQueue" -defs["structs"]["ImGuiIO"][31]["type"] = "bool" +defs["structs"]["ImGuiIO"][31]["name"] = "ConfigMemoryCompactTimer" +defs["structs"]["ImGuiIO"][31]["type"] = "float" defs["structs"]["ImGuiIO"][32] = {} -defs["structs"]["ImGuiIO"][32]["name"] = "ConfigInputTextCursorBlink" -defs["structs"]["ImGuiIO"][32]["type"] = "bool" +defs["structs"]["ImGuiIO"][32]["name"] = "MouseDoubleClickTime" +defs["structs"]["ImGuiIO"][32]["type"] = "float" defs["structs"]["ImGuiIO"][33] = {} -defs["structs"]["ImGuiIO"][33]["name"] = "ConfigInputTextEnterKeepActive" -defs["structs"]["ImGuiIO"][33]["type"] = "bool" +defs["structs"]["ImGuiIO"][33]["name"] = "MouseDoubleClickMaxDist" +defs["structs"]["ImGuiIO"][33]["type"] = "float" defs["structs"]["ImGuiIO"][34] = {} -defs["structs"]["ImGuiIO"][34]["name"] = "ConfigDragClickToInputText" -defs["structs"]["ImGuiIO"][34]["type"] = "bool" +defs["structs"]["ImGuiIO"][34]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][34]["type"] = "float" defs["structs"]["ImGuiIO"][35] = {} -defs["structs"]["ImGuiIO"][35]["name"] = "ConfigWindowsResizeFromEdges" -defs["structs"]["ImGuiIO"][35]["type"] = "bool" +defs["structs"]["ImGuiIO"][35]["name"] = "KeyRepeatDelay" +defs["structs"]["ImGuiIO"][35]["type"] = "float" defs["structs"]["ImGuiIO"][36] = {} -defs["structs"]["ImGuiIO"][36]["name"] = "ConfigWindowsMoveFromTitleBarOnly" -defs["structs"]["ImGuiIO"][36]["type"] = "bool" +defs["structs"]["ImGuiIO"][36]["name"] = "KeyRepeatRate" +defs["structs"]["ImGuiIO"][36]["type"] = "float" defs["structs"]["ImGuiIO"][37] = {} -defs["structs"]["ImGuiIO"][37]["name"] = "ConfigMemoryCompactTimer" -defs["structs"]["ImGuiIO"][37]["type"] = "float" +defs["structs"]["ImGuiIO"][37]["name"] = "ConfigDebugIsDebuggerPresent" +defs["structs"]["ImGuiIO"][37]["type"] = "bool" defs["structs"]["ImGuiIO"][38] = {} -defs["structs"]["ImGuiIO"][38]["name"] = "BackendPlatformName" -defs["structs"]["ImGuiIO"][38]["type"] = "const char*" +defs["structs"]["ImGuiIO"][38]["name"] = "ConfigDebugHighlightIdConflicts" +defs["structs"]["ImGuiIO"][38]["type"] = "bool" defs["structs"]["ImGuiIO"][39] = {} -defs["structs"]["ImGuiIO"][39]["name"] = "BackendRendererName" -defs["structs"]["ImGuiIO"][39]["type"] = "const char*" +defs["structs"]["ImGuiIO"][39]["name"] = "ConfigDebugBeginReturnValueOnce" +defs["structs"]["ImGuiIO"][39]["type"] = "bool" defs["structs"]["ImGuiIO"][40] = {} -defs["structs"]["ImGuiIO"][40]["name"] = "BackendPlatformUserData" -defs["structs"]["ImGuiIO"][40]["type"] = "void*" +defs["structs"]["ImGuiIO"][40]["name"] = "ConfigDebugBeginReturnValueLoop" +defs["structs"]["ImGuiIO"][40]["type"] = "bool" defs["structs"]["ImGuiIO"][41] = {} -defs["structs"]["ImGuiIO"][41]["name"] = "BackendRendererUserData" -defs["structs"]["ImGuiIO"][41]["type"] = "void*" +defs["structs"]["ImGuiIO"][41]["name"] = "ConfigDebugIgnoreFocusLoss" +defs["structs"]["ImGuiIO"][41]["type"] = "bool" defs["structs"]["ImGuiIO"][42] = {} -defs["structs"]["ImGuiIO"][42]["name"] = "BackendLanguageUserData" -defs["structs"]["ImGuiIO"][42]["type"] = "void*" +defs["structs"]["ImGuiIO"][42]["name"] = "ConfigDebugIniSettings" +defs["structs"]["ImGuiIO"][42]["type"] = "bool" defs["structs"]["ImGuiIO"][43] = {} -defs["structs"]["ImGuiIO"][43]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][43]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][43]["name"] = "BackendPlatformName" +defs["structs"]["ImGuiIO"][43]["type"] = "const char*" defs["structs"]["ImGuiIO"][44] = {} -defs["structs"]["ImGuiIO"][44]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][44]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][44]["name"] = "BackendRendererName" +defs["structs"]["ImGuiIO"][44]["type"] = "const char*" defs["structs"]["ImGuiIO"][45] = {} -defs["structs"]["ImGuiIO"][45]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][45]["name"] = "BackendPlatformUserData" defs["structs"]["ImGuiIO"][45]["type"] = "void*" defs["structs"]["ImGuiIO"][46] = {} -defs["structs"]["ImGuiIO"][46]["name"] = "SetPlatformImeDataFn" -defs["structs"]["ImGuiIO"][46]["type"] = "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiIO"][46]["name"] = "BackendRendererUserData" +defs["structs"]["ImGuiIO"][46]["type"] = "void*" defs["structs"]["ImGuiIO"][47] = {} -defs["structs"]["ImGuiIO"][47]["name"] = "_UnusedPadding" +defs["structs"]["ImGuiIO"][47]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][47]["type"] = "void*" defs["structs"]["ImGuiIO"][48] = {} defs["structs"]["ImGuiIO"][48]["name"] = "WantCaptureMouse" @@ -5423,99 +6209,96 @@ defs["structs"]["ImGuiIO"][59] = {} defs["structs"]["ImGuiIO"][59]["name"] = "MetricsActiveWindows" defs["structs"]["ImGuiIO"][59]["type"] = "int" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "MetricsActiveAllocations" -defs["structs"]["ImGuiIO"][60]["type"] = "int" +defs["structs"]["ImGuiIO"][60]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][60]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "MouseDelta" -defs["structs"]["ImGuiIO"][61]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][61]["name"] = "Ctx" +defs["structs"]["ImGuiIO"][61]["type"] = "ImGuiContext*" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "KeyMap[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][62]["size"] = 652 -defs["structs"]["ImGuiIO"][62]["type"] = "int" +defs["structs"]["ImGuiIO"][62]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][62]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "KeysDown[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][63]["size"] = 652 +defs["structs"]["ImGuiIO"][63]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][63]["size"] = 5 defs["structs"]["ImGuiIO"][63]["type"] = "bool" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "NavInputs[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][64]["size"] = 16 +defs["structs"]["ImGuiIO"][64]["name"] = "MouseWheel" defs["structs"]["ImGuiIO"][64]["type"] = "float" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][65]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][65]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][65]["type"] = "float" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][66]["size"] = 5 -defs["structs"]["ImGuiIO"][66]["type"] = "bool" +defs["structs"]["ImGuiIO"][66]["name"] = "MouseSource" +defs["structs"]["ImGuiIO"][66]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][67]["type"] = "float" +defs["structs"]["ImGuiIO"][67]["name"] = "MouseHoveredViewport" +defs["structs"]["ImGuiIO"][67]["type"] = "ImGuiID" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][68]["type"] = "float" +defs["structs"]["ImGuiIO"][68]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][68]["type"] = "bool" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "MouseHoveredViewport" -defs["structs"]["ImGuiIO"][69]["type"] = "ImGuiID" +defs["structs"]["ImGuiIO"][69]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][69]["type"] = "bool" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][70]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][70]["type"] = "bool" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][71]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][71]["type"] = "bool" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "KeyAlt" -defs["structs"]["ImGuiIO"][72]["type"] = "bool" +defs["structs"]["ImGuiIO"][72]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][72]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][73]["type"] = "bool" +defs["structs"]["ImGuiIO"][73]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][73]["size"] = 154 +defs["structs"]["ImGuiIO"][73]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][74]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiIO"][74]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][74]["type"] = "bool" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][75]["size"] = 652 -defs["structs"]["ImGuiIO"][75]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][75]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][75]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "WantCaptureMouseUnlessPopupClose" -defs["structs"]["ImGuiIO"][76]["type"] = "bool" +defs["structs"]["ImGuiIO"][76]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][76]["size"] = 5 +defs["structs"]["ImGuiIO"][76]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][77]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][77]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][77]["size"] = 5 +defs["structs"]["ImGuiIO"][77]["type"] = "double" defs["structs"]["ImGuiIO"][78] = {} -defs["structs"]["ImGuiIO"][78]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][78]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][78]["size"] = 5 -defs["structs"]["ImGuiIO"][78]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][78]["type"] = "bool" defs["structs"]["ImGuiIO"][79] = {} -defs["structs"]["ImGuiIO"][79]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][79]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][79]["size"] = 5 -defs["structs"]["ImGuiIO"][79]["type"] = "double" +defs["structs"]["ImGuiIO"][79]["type"] = "bool" defs["structs"]["ImGuiIO"][80] = {} -defs["structs"]["ImGuiIO"][80]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][80]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][80]["size"] = 5 -defs["structs"]["ImGuiIO"][80]["type"] = "bool" +defs["structs"]["ImGuiIO"][80]["type"] = "ImU16" defs["structs"]["ImGuiIO"][81] = {} -defs["structs"]["ImGuiIO"][81]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][81]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][81]["size"] = 5 -defs["structs"]["ImGuiIO"][81]["type"] = "bool" +defs["structs"]["ImGuiIO"][81]["type"] = "ImU16" defs["structs"]["ImGuiIO"][82] = {} -defs["structs"]["ImGuiIO"][82]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][82]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][82]["size"] = 5 -defs["structs"]["ImGuiIO"][82]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][82]["type"] = "bool" defs["structs"]["ImGuiIO"][83] = {} -defs["structs"]["ImGuiIO"][83]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][83]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][83]["size"] = 5 -defs["structs"]["ImGuiIO"][83]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][83]["type"] = "bool" defs["structs"]["ImGuiIO"][84] = {} -defs["structs"]["ImGuiIO"][84]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][84]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][84]["size"] = 5 defs["structs"]["ImGuiIO"][84]["type"] = "bool" defs["structs"]["ImGuiIO"][85] = {} -defs["structs"]["ImGuiIO"][85]["name"] = "MouseDownOwned[5]" -defs["structs"]["ImGuiIO"][85]["size"] = 5 +defs["structs"]["ImGuiIO"][85]["name"] = "MouseWheelRequestAxisSwap" defs["structs"]["ImGuiIO"][85]["type"] = "bool" defs["structs"]["ImGuiIO"][86] = {} -defs["structs"]["ImGuiIO"][86]["name"] = "MouseDownOwnedUnlessPopupClose[5]" -defs["structs"]["ImGuiIO"][86]["size"] = 5 +defs["structs"]["ImGuiIO"][86]["name"] = "MouseCtrlLeftAsRightClick" defs["structs"]["ImGuiIO"][86]["type"] = "bool" defs["structs"]["ImGuiIO"][87] = {} defs["structs"]["ImGuiIO"][87]["name"] = "MouseDownDuration[5]" @@ -5563,11 +6346,14 @@ defs["structs"]["ImGuiInputEvent"][2] = {} defs["structs"]["ImGuiInputEvent"][2]["name"] = "Source" defs["structs"]["ImGuiInputEvent"][2]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiInputEvent"][3] = {} -defs["structs"]["ImGuiInputEvent"][3]["name"] = "" -defs["structs"]["ImGuiInputEvent"][3]["type"] = "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventMouseViewport MouseViewport; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}" +defs["structs"]["ImGuiInputEvent"][3]["name"] = "EventId" +defs["structs"]["ImGuiInputEvent"][3]["type"] = "ImU32" defs["structs"]["ImGuiInputEvent"][4] = {} -defs["structs"]["ImGuiInputEvent"][4]["name"] = "AddedByTestEngine" -defs["structs"]["ImGuiInputEvent"][4]["type"] = "bool" +defs["structs"]["ImGuiInputEvent"][4]["name"] = "" +defs["structs"]["ImGuiInputEvent"][4]["type"] = "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventMouseViewport MouseViewport; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}" +defs["structs"]["ImGuiInputEvent"][5] = {} +defs["structs"]["ImGuiInputEvent"][5]["name"] = "AddedByTestEngine" +defs["structs"]["ImGuiInputEvent"][5]["type"] = "bool" defs["structs"]["ImGuiInputEventAppFocused"] = {} defs["structs"]["ImGuiInputEventAppFocused"][1] = {} defs["structs"]["ImGuiInputEventAppFocused"][1]["name"] = "Focused" @@ -5589,6 +6375,9 @@ defs["structs"]["ImGuiInputEventMouseButton"][1]["type"] = "int" defs["structs"]["ImGuiInputEventMouseButton"][2] = {} defs["structs"]["ImGuiInputEventMouseButton"][2]["name"] = "Down" defs["structs"]["ImGuiInputEventMouseButton"][2]["type"] = "bool" +defs["structs"]["ImGuiInputEventMouseButton"][3] = {} +defs["structs"]["ImGuiInputEventMouseButton"][3]["name"] = "MouseSource" +defs["structs"]["ImGuiInputEventMouseButton"][3]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiInputEventMousePos"] = {} defs["structs"]["ImGuiInputEventMousePos"][1] = {} defs["structs"]["ImGuiInputEventMousePos"][1]["name"] = "PosX" @@ -5596,6 +6385,9 @@ defs["structs"]["ImGuiInputEventMousePos"][1]["type"] = "float" defs["structs"]["ImGuiInputEventMousePos"][2] = {} defs["structs"]["ImGuiInputEventMousePos"][2]["name"] = "PosY" defs["structs"]["ImGuiInputEventMousePos"][2]["type"] = "float" +defs["structs"]["ImGuiInputEventMousePos"][3] = {} +defs["structs"]["ImGuiInputEventMousePos"][3]["name"] = "MouseSource" +defs["structs"]["ImGuiInputEventMousePos"][3]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiInputEventMouseViewport"] = {} defs["structs"]["ImGuiInputEventMouseViewport"][1] = {} defs["structs"]["ImGuiInputEventMouseViewport"][1]["name"] = "HoveredViewportID" @@ -5607,99 +6399,116 @@ defs["structs"]["ImGuiInputEventMouseWheel"][1]["type"] = "float" defs["structs"]["ImGuiInputEventMouseWheel"][2] = {} defs["structs"]["ImGuiInputEventMouseWheel"][2]["name"] = "WheelY" defs["structs"]["ImGuiInputEventMouseWheel"][2]["type"] = "float" +defs["structs"]["ImGuiInputEventMouseWheel"][3] = {} +defs["structs"]["ImGuiInputEventMouseWheel"][3]["name"] = "MouseSource" +defs["structs"]["ImGuiInputEventMouseWheel"][3]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiInputEventText"] = {} defs["structs"]["ImGuiInputEventText"][1] = {} defs["structs"]["ImGuiInputEventText"][1]["name"] = "Char" defs["structs"]["ImGuiInputEventText"][1]["type"] = "unsigned int" defs["structs"]["ImGuiInputTextCallbackData"] = {} defs["structs"]["ImGuiInputTextCallbackData"][1] = {} -defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "EventFlag" -defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "Ctx" +defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiInputTextCallbackData"][2] = {} -defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "EventFlag" defs["structs"]["ImGuiInputTextCallbackData"][2]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][3] = {} -defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "UserData" -defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "void*" +defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][4] = {} -defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "EventChar" -defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "ImWchar" +defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "UserData" +defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "void*" defs["structs"]["ImGuiInputTextCallbackData"][5] = {} -defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventKey" -defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImGuiKey" +defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventChar" +defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImWchar" defs["structs"]["ImGuiInputTextCallbackData"][6] = {} -defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "Buf" -defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "char*" +defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "EventKey" +defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "ImGuiKey" defs["structs"]["ImGuiInputTextCallbackData"][7] = {} -defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "BufTextLen" -defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "Buf" +defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "char*" defs["structs"]["ImGuiInputTextCallbackData"][8] = {} -defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufTextLen" defs["structs"]["ImGuiInputTextCallbackData"][8]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][9] = {} -defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufDirty" -defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "bool" +defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][10] = {} -defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "CursorPos" -defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "BufDirty" +defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "bool" defs["structs"]["ImGuiInputTextCallbackData"][11] = {} -defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "SelectionStart" +defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "CursorPos" defs["structs"]["ImGuiInputTextCallbackData"][11]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][12] = {} -defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionStart" defs["structs"]["ImGuiInputTextCallbackData"][12]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][13] = {} +defs["structs"]["ImGuiInputTextCallbackData"][13]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][13]["type"] = "int" +defs["structs"]["ImGuiInputTextDeactivatedState"] = {} +defs["structs"]["ImGuiInputTextDeactivatedState"][1] = {} +defs["structs"]["ImGuiInputTextDeactivatedState"][1]["name"] = "ID" +defs["structs"]["ImGuiInputTextDeactivatedState"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiInputTextDeactivatedState"][2] = {} +defs["structs"]["ImGuiInputTextDeactivatedState"][2]["name"] = "TextA" +defs["structs"]["ImGuiInputTextDeactivatedState"][2]["template_type"] = "char" +defs["structs"]["ImGuiInputTextDeactivatedState"][2]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"] = {} defs["structs"]["ImGuiInputTextState"][1] = {} defs["structs"]["ImGuiInputTextState"][1]["name"] = "Ctx" defs["structs"]["ImGuiInputTextState"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiInputTextState"][2] = {} -defs["structs"]["ImGuiInputTextState"][2]["name"] = "ID" -defs["structs"]["ImGuiInputTextState"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiInputTextState"][2]["name"] = "Stb" +defs["structs"]["ImGuiInputTextState"][2]["type"] = "ImStbTexteditState*" defs["structs"]["ImGuiInputTextState"][3] = {} -defs["structs"]["ImGuiInputTextState"][3]["name"] = "CurLenW" -defs["structs"]["ImGuiInputTextState"][3]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][3]["name"] = "ID" +defs["structs"]["ImGuiInputTextState"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiInputTextState"][4] = {} defs["structs"]["ImGuiInputTextState"][4]["name"] = "CurLenA" defs["structs"]["ImGuiInputTextState"][4]["type"] = "int" defs["structs"]["ImGuiInputTextState"][5] = {} -defs["structs"]["ImGuiInputTextState"][5]["name"] = "TextW" -defs["structs"]["ImGuiInputTextState"][5]["template_type"] = "ImWchar" -defs["structs"]["ImGuiInputTextState"][5]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiInputTextState"][5]["name"] = "TextA" +defs["structs"]["ImGuiInputTextState"][5]["template_type"] = "char" +defs["structs"]["ImGuiInputTextState"][5]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"][6] = {} -defs["structs"]["ImGuiInputTextState"][6]["name"] = "TextA" +defs["structs"]["ImGuiInputTextState"][6]["name"] = "InitialTextA" defs["structs"]["ImGuiInputTextState"][6]["template_type"] = "char" defs["structs"]["ImGuiInputTextState"][6]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"][7] = {} -defs["structs"]["ImGuiInputTextState"][7]["name"] = "InitialTextA" +defs["structs"]["ImGuiInputTextState"][7]["name"] = "CallbackTextBackup" defs["structs"]["ImGuiInputTextState"][7]["template_type"] = "char" defs["structs"]["ImGuiInputTextState"][7]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"][8] = {} -defs["structs"]["ImGuiInputTextState"][8]["name"] = "TextAIsValid" -defs["structs"]["ImGuiInputTextState"][8]["type"] = "bool" +defs["structs"]["ImGuiInputTextState"][8]["name"] = "BufCapacityA" +defs["structs"]["ImGuiInputTextState"][8]["type"] = "int" defs["structs"]["ImGuiInputTextState"][9] = {} -defs["structs"]["ImGuiInputTextState"][9]["name"] = "BufCapacityA" -defs["structs"]["ImGuiInputTextState"][9]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][9]["name"] = "Scroll" +defs["structs"]["ImGuiInputTextState"][9]["type"] = "ImVec2" defs["structs"]["ImGuiInputTextState"][10] = {} -defs["structs"]["ImGuiInputTextState"][10]["name"] = "ScrollX" +defs["structs"]["ImGuiInputTextState"][10]["name"] = "CursorAnim" defs["structs"]["ImGuiInputTextState"][10]["type"] = "float" defs["structs"]["ImGuiInputTextState"][11] = {} -defs["structs"]["ImGuiInputTextState"][11]["name"] = "Stb" -defs["structs"]["ImGuiInputTextState"][11]["type"] = "STB_TexteditState" +defs["structs"]["ImGuiInputTextState"][11]["name"] = "CursorFollow" +defs["structs"]["ImGuiInputTextState"][11]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][12] = {} -defs["structs"]["ImGuiInputTextState"][12]["name"] = "CursorAnim" -defs["structs"]["ImGuiInputTextState"][12]["type"] = "float" +defs["structs"]["ImGuiInputTextState"][12]["name"] = "SelectedAllMouseLock" +defs["structs"]["ImGuiInputTextState"][12]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][13] = {} -defs["structs"]["ImGuiInputTextState"][13]["name"] = "CursorFollow" +defs["structs"]["ImGuiInputTextState"][13]["name"] = "Edited" defs["structs"]["ImGuiInputTextState"][13]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][14] = {} -defs["structs"]["ImGuiInputTextState"][14]["name"] = "SelectedAllMouseLock" -defs["structs"]["ImGuiInputTextState"][14]["type"] = "bool" +defs["structs"]["ImGuiInputTextState"][14]["name"] = "Flags" +defs["structs"]["ImGuiInputTextState"][14]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextState"][15] = {} -defs["structs"]["ImGuiInputTextState"][15]["name"] = "Edited" +defs["structs"]["ImGuiInputTextState"][15]["name"] = "ReloadUserBuf" defs["structs"]["ImGuiInputTextState"][15]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][16] = {} -defs["structs"]["ImGuiInputTextState"][16]["name"] = "Flags" -defs["structs"]["ImGuiInputTextState"][16]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextState"][16]["name"] = "ReloadSelectionStart" +defs["structs"]["ImGuiInputTextState"][16]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][17] = {} +defs["structs"]["ImGuiInputTextState"][17]["name"] = "ReloadSelectionEnd" +defs["structs"]["ImGuiInputTextState"][17]["type"] = "int" defs["structs"]["ImGuiKeyData"] = {} defs["structs"]["ImGuiKeyData"][1] = {} defs["structs"]["ImGuiKeyData"][1]["name"] = "Down" @@ -5734,18 +6543,21 @@ defs["structs"]["ImGuiKeyRoutingData"][2] = {} defs["structs"]["ImGuiKeyRoutingData"][2]["name"] = "Mods" defs["structs"]["ImGuiKeyRoutingData"][2]["type"] = "ImU16" defs["structs"]["ImGuiKeyRoutingData"][3] = {} -defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingCurrScore" defs["structs"]["ImGuiKeyRoutingData"][3]["type"] = "ImU8" defs["structs"]["ImGuiKeyRoutingData"][4] = {} -defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingCurr" -defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImU8" defs["structs"]["ImGuiKeyRoutingData"][5] = {} -defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingCurr" defs["structs"]["ImGuiKeyRoutingData"][5]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][6] = {} +defs["structs"]["ImGuiKeyRoutingData"][6]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][6]["type"] = "ImGuiID" defs["structs"]["ImGuiKeyRoutingTable"] = {} defs["structs"]["ImGuiKeyRoutingTable"][1] = {} defs["structs"]["ImGuiKeyRoutingTable"][1]["name"] = "Index[ImGuiKey_NamedKey_COUNT]" -defs["structs"]["ImGuiKeyRoutingTable"][1]["size"] = 140 +defs["structs"]["ImGuiKeyRoutingTable"][1]["size"] = 154 defs["structs"]["ImGuiKeyRoutingTable"][1]["type"] = "ImGuiKeyRoutingIndex" defs["structs"]["ImGuiKeyRoutingTable"][2] = {} defs["structs"]["ImGuiKeyRoutingTable"][2]["name"] = "Entries" @@ -5774,25 +6586,37 @@ defs["structs"]["ImGuiLastItemData"][5]["type"] = "ImRect" defs["structs"]["ImGuiLastItemData"][6] = {} defs["structs"]["ImGuiLastItemData"][6]["name"] = "DisplayRect" defs["structs"]["ImGuiLastItemData"][6]["type"] = "ImRect" +defs["structs"]["ImGuiLastItemData"][7] = {} +defs["structs"]["ImGuiLastItemData"][7]["name"] = "ClipRect" +defs["structs"]["ImGuiLastItemData"][7]["type"] = "ImRect" +defs["structs"]["ImGuiLastItemData"][8] = {} +defs["structs"]["ImGuiLastItemData"][8]["name"] = "Shortcut" +defs["structs"]["ImGuiLastItemData"][8]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiListClipper"] = {} defs["structs"]["ImGuiListClipper"][1] = {} -defs["structs"]["ImGuiListClipper"][1]["name"] = "DisplayStart" -defs["structs"]["ImGuiListClipper"][1]["type"] = "int" +defs["structs"]["ImGuiListClipper"][1]["name"] = "Ctx" +defs["structs"]["ImGuiListClipper"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiListClipper"][2] = {} -defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayEnd" +defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayStart" defs["structs"]["ImGuiListClipper"][2]["type"] = "int" defs["structs"]["ImGuiListClipper"][3] = {} -defs["structs"]["ImGuiListClipper"][3]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][3]["name"] = "DisplayEnd" defs["structs"]["ImGuiListClipper"][3]["type"] = "int" defs["structs"]["ImGuiListClipper"][4] = {} -defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsHeight" -defs["structs"]["ImGuiListClipper"][4]["type"] = "float" +defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][4]["type"] = "int" defs["structs"]["ImGuiListClipper"][5] = {} -defs["structs"]["ImGuiListClipper"][5]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][5]["name"] = "ItemsHeight" defs["structs"]["ImGuiListClipper"][5]["type"] = "float" defs["structs"]["ImGuiListClipper"][6] = {} -defs["structs"]["ImGuiListClipper"][6]["name"] = "TempData" -defs["structs"]["ImGuiListClipper"][6]["type"] = "void*" +defs["structs"]["ImGuiListClipper"][6]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][6]["type"] = "float" +defs["structs"]["ImGuiListClipper"][7] = {} +defs["structs"]["ImGuiListClipper"][7]["name"] = "StartSeekOffsetY" +defs["structs"]["ImGuiListClipper"][7]["type"] = "double" +defs["structs"]["ImGuiListClipper"][8] = {} +defs["structs"]["ImGuiListClipper"][8]["name"] = "TempData" +defs["structs"]["ImGuiListClipper"][8]["type"] = "void*" defs["structs"]["ImGuiListClipperData"] = {} defs["structs"]["ImGuiListClipperData"][1] = {} defs["structs"]["ImGuiListClipperData"][1]["name"] = "ListClipper" @@ -5864,7 +6688,7 @@ defs["structs"]["ImGuiMetricsConfig"][1] = {} defs["structs"]["ImGuiMetricsConfig"][1]["name"] = "ShowDebugLog" defs["structs"]["ImGuiMetricsConfig"][1]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][2] = {} -defs["structs"]["ImGuiMetricsConfig"][2]["name"] = "ShowStackTool" +defs["structs"]["ImGuiMetricsConfig"][2]["name"] = "ShowIDStackTool" defs["structs"]["ImGuiMetricsConfig"][2]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][3] = {} defs["structs"]["ImGuiMetricsConfig"][3]["name"] = "ShowWindowsRects" @@ -5882,14 +6706,120 @@ defs["structs"]["ImGuiMetricsConfig"][7] = {} defs["structs"]["ImGuiMetricsConfig"][7]["name"] = "ShowDrawCmdBoundingBoxes" defs["structs"]["ImGuiMetricsConfig"][7]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][8] = {} -defs["structs"]["ImGuiMetricsConfig"][8]["name"] = "ShowDockingNodes" +defs["structs"]["ImGuiMetricsConfig"][8]["name"] = "ShowTextEncodingViewer" defs["structs"]["ImGuiMetricsConfig"][8]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][9] = {} -defs["structs"]["ImGuiMetricsConfig"][9]["name"] = "ShowWindowsRectsType" -defs["structs"]["ImGuiMetricsConfig"][9]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][9]["name"] = "ShowAtlasTintedWithTextColor" +defs["structs"]["ImGuiMetricsConfig"][9]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][10] = {} -defs["structs"]["ImGuiMetricsConfig"][10]["name"] = "ShowTablesRectsType" -defs["structs"]["ImGuiMetricsConfig"][10]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][10]["name"] = "ShowDockingNodes" +defs["structs"]["ImGuiMetricsConfig"][10]["type"] = "bool" +defs["structs"]["ImGuiMetricsConfig"][11] = {} +defs["structs"]["ImGuiMetricsConfig"][11]["name"] = "ShowWindowsRectsType" +defs["structs"]["ImGuiMetricsConfig"][11]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][12] = {} +defs["structs"]["ImGuiMetricsConfig"][12]["name"] = "ShowTablesRectsType" +defs["structs"]["ImGuiMetricsConfig"][12]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][13] = {} +defs["structs"]["ImGuiMetricsConfig"][13]["name"] = "HighlightMonitorIdx" +defs["structs"]["ImGuiMetricsConfig"][13]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][14] = {} +defs["structs"]["ImGuiMetricsConfig"][14]["name"] = "HighlightViewportID" +defs["structs"]["ImGuiMetricsConfig"][14]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectIO"] = {} +defs["structs"]["ImGuiMultiSelectIO"][1] = {} +defs["structs"]["ImGuiMultiSelectIO"][1]["name"] = "Requests" +defs["structs"]["ImGuiMultiSelectIO"][1]["template_type"] = "ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][1]["type"] = "ImVector_ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][2] = {} +defs["structs"]["ImGuiMultiSelectIO"][2]["name"] = "RangeSrcItem" +defs["structs"]["ImGuiMultiSelectIO"][2]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][3] = {} +defs["structs"]["ImGuiMultiSelectIO"][3]["name"] = "NavIdItem" +defs["structs"]["ImGuiMultiSelectIO"][3]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][4] = {} +defs["structs"]["ImGuiMultiSelectIO"][4]["name"] = "NavIdSelected" +defs["structs"]["ImGuiMultiSelectIO"][4]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][5] = {} +defs["structs"]["ImGuiMultiSelectIO"][5]["name"] = "RangeSrcReset" +defs["structs"]["ImGuiMultiSelectIO"][5]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][6] = {} +defs["structs"]["ImGuiMultiSelectIO"][6]["name"] = "ItemsCount" +defs["structs"]["ImGuiMultiSelectIO"][6]["type"] = "int" +defs["structs"]["ImGuiMultiSelectState"] = {} +defs["structs"]["ImGuiMultiSelectState"][1] = {} +defs["structs"]["ImGuiMultiSelectState"][1]["name"] = "Window" +defs["structs"]["ImGuiMultiSelectState"][1]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiMultiSelectState"][2] = {} +defs["structs"]["ImGuiMultiSelectState"][2]["name"] = "ID" +defs["structs"]["ImGuiMultiSelectState"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectState"][3] = {} +defs["structs"]["ImGuiMultiSelectState"][3]["name"] = "LastFrameActive" +defs["structs"]["ImGuiMultiSelectState"][3]["type"] = "int" +defs["structs"]["ImGuiMultiSelectState"][4] = {} +defs["structs"]["ImGuiMultiSelectState"][4]["name"] = "LastSelectionSize" +defs["structs"]["ImGuiMultiSelectState"][4]["type"] = "int" +defs["structs"]["ImGuiMultiSelectState"][5] = {} +defs["structs"]["ImGuiMultiSelectState"][5]["name"] = "RangeSelected" +defs["structs"]["ImGuiMultiSelectState"][5]["type"] = "ImS8" +defs["structs"]["ImGuiMultiSelectState"][6] = {} +defs["structs"]["ImGuiMultiSelectState"][6]["name"] = "NavIdSelected" +defs["structs"]["ImGuiMultiSelectState"][6]["type"] = "ImS8" +defs["structs"]["ImGuiMultiSelectState"][7] = {} +defs["structs"]["ImGuiMultiSelectState"][7]["name"] = "RangeSrcItem" +defs["structs"]["ImGuiMultiSelectState"][7]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectState"][8] = {} +defs["structs"]["ImGuiMultiSelectState"][8]["name"] = "NavIdItem" +defs["structs"]["ImGuiMultiSelectState"][8]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectTempData"] = {} +defs["structs"]["ImGuiMultiSelectTempData"][1] = {} +defs["structs"]["ImGuiMultiSelectTempData"][1]["name"] = "IO" +defs["structs"]["ImGuiMultiSelectTempData"][1]["type"] = "ImGuiMultiSelectIO" +defs["structs"]["ImGuiMultiSelectTempData"][2] = {} +defs["structs"]["ImGuiMultiSelectTempData"][2]["name"] = "Storage" +defs["structs"]["ImGuiMultiSelectTempData"][2]["type"] = "ImGuiMultiSelectState*" +defs["structs"]["ImGuiMultiSelectTempData"][3] = {} +defs["structs"]["ImGuiMultiSelectTempData"][3]["name"] = "FocusScopeId" +defs["structs"]["ImGuiMultiSelectTempData"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectTempData"][4] = {} +defs["structs"]["ImGuiMultiSelectTempData"][4]["name"] = "Flags" +defs["structs"]["ImGuiMultiSelectTempData"][4]["type"] = "ImGuiMultiSelectFlags" +defs["structs"]["ImGuiMultiSelectTempData"][5] = {} +defs["structs"]["ImGuiMultiSelectTempData"][5]["name"] = "ScopeRectMin" +defs["structs"]["ImGuiMultiSelectTempData"][5]["type"] = "ImVec2" +defs["structs"]["ImGuiMultiSelectTempData"][6] = {} +defs["structs"]["ImGuiMultiSelectTempData"][6]["name"] = "BackupCursorMaxPos" +defs["structs"]["ImGuiMultiSelectTempData"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiMultiSelectTempData"][7] = {} +defs["structs"]["ImGuiMultiSelectTempData"][7]["name"] = "LastSubmittedItem" +defs["structs"]["ImGuiMultiSelectTempData"][7]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectTempData"][8] = {} +defs["structs"]["ImGuiMultiSelectTempData"][8]["name"] = "BoxSelectId" +defs["structs"]["ImGuiMultiSelectTempData"][8]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectTempData"][9] = {} +defs["structs"]["ImGuiMultiSelectTempData"][9]["name"] = "KeyMods" +defs["structs"]["ImGuiMultiSelectTempData"][9]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiMultiSelectTempData"][10] = {} +defs["structs"]["ImGuiMultiSelectTempData"][10]["name"] = "LoopRequestSetAll" +defs["structs"]["ImGuiMultiSelectTempData"][10]["type"] = "ImS8" +defs["structs"]["ImGuiMultiSelectTempData"][11] = {} +defs["structs"]["ImGuiMultiSelectTempData"][11]["name"] = "IsEndIO" +defs["structs"]["ImGuiMultiSelectTempData"][11]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][12] = {} +defs["structs"]["ImGuiMultiSelectTempData"][12]["name"] = "IsFocused" +defs["structs"]["ImGuiMultiSelectTempData"][12]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][13] = {} +defs["structs"]["ImGuiMultiSelectTempData"][13]["name"] = "IsKeyboardSetRange" +defs["structs"]["ImGuiMultiSelectTempData"][13]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][14] = {} +defs["structs"]["ImGuiMultiSelectTempData"][14]["name"] = "NavIdPassedBy" +defs["structs"]["ImGuiMultiSelectTempData"][14]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][15] = {} +defs["structs"]["ImGuiMultiSelectTempData"][15]["name"] = "RangeSrcPassedBy" +defs["structs"]["ImGuiMultiSelectTempData"][15]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][16] = {} +defs["structs"]["ImGuiMultiSelectTempData"][16]["name"] = "RangeDstPassedBy" +defs["structs"]["ImGuiMultiSelectTempData"][16]["type"] = "bool" defs["structs"]["ImGuiNavItemData"] = {} defs["structs"]["ImGuiNavItemData"][1] = {} defs["structs"]["ImGuiNavItemData"][1]["name"] = "Window" @@ -5915,22 +6845,43 @@ defs["structs"]["ImGuiNavItemData"][7]["type"] = "float" defs["structs"]["ImGuiNavItemData"][8] = {} defs["structs"]["ImGuiNavItemData"][8]["name"] = "DistAxial" defs["structs"]["ImGuiNavItemData"][8]["type"] = "float" +defs["structs"]["ImGuiNavItemData"][9] = {} +defs["structs"]["ImGuiNavItemData"][9]["name"] = "SelectionUserData" +defs["structs"]["ImGuiNavItemData"][9]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiNextItemData"] = {} defs["structs"]["ImGuiNextItemData"][1] = {} defs["structs"]["ImGuiNextItemData"][1]["name"] = "Flags" defs["structs"]["ImGuiNextItemData"][1]["type"] = "ImGuiNextItemDataFlags" defs["structs"]["ImGuiNextItemData"][2] = {} -defs["structs"]["ImGuiNextItemData"][2]["name"] = "Width" -defs["structs"]["ImGuiNextItemData"][2]["type"] = "float" +defs["structs"]["ImGuiNextItemData"][2]["name"] = "ItemFlags" +defs["structs"]["ImGuiNextItemData"][2]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiNextItemData"][3] = {} defs["structs"]["ImGuiNextItemData"][3]["name"] = "FocusScopeId" defs["structs"]["ImGuiNextItemData"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiNextItemData"][4] = {} -defs["structs"]["ImGuiNextItemData"][4]["name"] = "OpenCond" -defs["structs"]["ImGuiNextItemData"][4]["type"] = "ImGuiCond" +defs["structs"]["ImGuiNextItemData"][4]["name"] = "SelectionUserData" +defs["structs"]["ImGuiNextItemData"][4]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiNextItemData"][5] = {} -defs["structs"]["ImGuiNextItemData"][5]["name"] = "OpenVal" -defs["structs"]["ImGuiNextItemData"][5]["type"] = "bool" +defs["structs"]["ImGuiNextItemData"][5]["name"] = "Width" +defs["structs"]["ImGuiNextItemData"][5]["type"] = "float" +defs["structs"]["ImGuiNextItemData"][6] = {} +defs["structs"]["ImGuiNextItemData"][6]["name"] = "Shortcut" +defs["structs"]["ImGuiNextItemData"][6]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiNextItemData"][7] = {} +defs["structs"]["ImGuiNextItemData"][7]["name"] = "ShortcutFlags" +defs["structs"]["ImGuiNextItemData"][7]["type"] = "ImGuiInputFlags" +defs["structs"]["ImGuiNextItemData"][8] = {} +defs["structs"]["ImGuiNextItemData"][8]["name"] = "OpenVal" +defs["structs"]["ImGuiNextItemData"][8]["type"] = "bool" +defs["structs"]["ImGuiNextItemData"][9] = {} +defs["structs"]["ImGuiNextItemData"][9]["name"] = "OpenCond" +defs["structs"]["ImGuiNextItemData"][9]["type"] = "ImU8" +defs["structs"]["ImGuiNextItemData"][10] = {} +defs["structs"]["ImGuiNextItemData"][10]["name"] = "RefVal" +defs["structs"]["ImGuiNextItemData"][10]["type"] = "ImGuiDataTypeStorage" +defs["structs"]["ImGuiNextItemData"][11] = {} +defs["structs"]["ImGuiNextItemData"][11]["name"] = "StorageId" +defs["structs"]["ImGuiNextItemData"][11]["type"] = "ImGuiID" defs["structs"]["ImGuiNextWindowData"] = {} defs["structs"]["ImGuiNextWindowData"][1] = {} defs["structs"]["ImGuiNextWindowData"][1]["name"] = "Flags" @@ -5963,35 +6914,41 @@ defs["structs"]["ImGuiNextWindowData"][10] = {} defs["structs"]["ImGuiNextWindowData"][10]["name"] = "ScrollVal" defs["structs"]["ImGuiNextWindowData"][10]["type"] = "ImVec2" defs["structs"]["ImGuiNextWindowData"][11] = {} -defs["structs"]["ImGuiNextWindowData"][11]["name"] = "PosUndock" -defs["structs"]["ImGuiNextWindowData"][11]["type"] = "bool" +defs["structs"]["ImGuiNextWindowData"][11]["name"] = "ChildFlags" +defs["structs"]["ImGuiNextWindowData"][11]["type"] = "ImGuiChildFlags" defs["structs"]["ImGuiNextWindowData"][12] = {} -defs["structs"]["ImGuiNextWindowData"][12]["name"] = "CollapsedVal" +defs["structs"]["ImGuiNextWindowData"][12]["name"] = "PosUndock" defs["structs"]["ImGuiNextWindowData"][12]["type"] = "bool" defs["structs"]["ImGuiNextWindowData"][13] = {} -defs["structs"]["ImGuiNextWindowData"][13]["name"] = "SizeConstraintRect" -defs["structs"]["ImGuiNextWindowData"][13]["type"] = "ImRect" +defs["structs"]["ImGuiNextWindowData"][13]["name"] = "CollapsedVal" +defs["structs"]["ImGuiNextWindowData"][13]["type"] = "bool" defs["structs"]["ImGuiNextWindowData"][14] = {} -defs["structs"]["ImGuiNextWindowData"][14]["name"] = "SizeCallback" -defs["structs"]["ImGuiNextWindowData"][14]["type"] = "ImGuiSizeCallback" +defs["structs"]["ImGuiNextWindowData"][14]["name"] = "SizeConstraintRect" +defs["structs"]["ImGuiNextWindowData"][14]["type"] = "ImRect" defs["structs"]["ImGuiNextWindowData"][15] = {} -defs["structs"]["ImGuiNextWindowData"][15]["name"] = "SizeCallbackUserData" -defs["structs"]["ImGuiNextWindowData"][15]["type"] = "void*" +defs["structs"]["ImGuiNextWindowData"][15]["name"] = "SizeCallback" +defs["structs"]["ImGuiNextWindowData"][15]["type"] = "ImGuiSizeCallback" defs["structs"]["ImGuiNextWindowData"][16] = {} -defs["structs"]["ImGuiNextWindowData"][16]["name"] = "BgAlphaVal" -defs["structs"]["ImGuiNextWindowData"][16]["type"] = "float" +defs["structs"]["ImGuiNextWindowData"][16]["name"] = "SizeCallbackUserData" +defs["structs"]["ImGuiNextWindowData"][16]["type"] = "void*" defs["structs"]["ImGuiNextWindowData"][17] = {} -defs["structs"]["ImGuiNextWindowData"][17]["name"] = "ViewportId" -defs["structs"]["ImGuiNextWindowData"][17]["type"] = "ImGuiID" +defs["structs"]["ImGuiNextWindowData"][17]["name"] = "BgAlphaVal" +defs["structs"]["ImGuiNextWindowData"][17]["type"] = "float" defs["structs"]["ImGuiNextWindowData"][18] = {} -defs["structs"]["ImGuiNextWindowData"][18]["name"] = "DockId" +defs["structs"]["ImGuiNextWindowData"][18]["name"] = "ViewportId" defs["structs"]["ImGuiNextWindowData"][18]["type"] = "ImGuiID" defs["structs"]["ImGuiNextWindowData"][19] = {} -defs["structs"]["ImGuiNextWindowData"][19]["name"] = "WindowClass" -defs["structs"]["ImGuiNextWindowData"][19]["type"] = "ImGuiWindowClass" +defs["structs"]["ImGuiNextWindowData"][19]["name"] = "DockId" +defs["structs"]["ImGuiNextWindowData"][19]["type"] = "ImGuiID" defs["structs"]["ImGuiNextWindowData"][20] = {} -defs["structs"]["ImGuiNextWindowData"][20]["name"] = "MenuBarOffsetMinVal" -defs["structs"]["ImGuiNextWindowData"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiNextWindowData"][20]["name"] = "WindowClass" +defs["structs"]["ImGuiNextWindowData"][20]["type"] = "ImGuiWindowClass" +defs["structs"]["ImGuiNextWindowData"][21] = {} +defs["structs"]["ImGuiNextWindowData"][21]["name"] = "MenuBarOffsetMinVal" +defs["structs"]["ImGuiNextWindowData"][21]["type"] = "ImVec2" +defs["structs"]["ImGuiNextWindowData"][22] = {} +defs["structs"]["ImGuiNextWindowData"][22]["name"] = "RefreshFlagsVal" +defs["structs"]["ImGuiNextWindowData"][22]["type"] = "ImGuiWindowRefreshFlags" defs["structs"]["ImGuiOldColumnData"] = {} defs["structs"]["ImGuiOldColumnData"][1] = {} defs["structs"]["ImGuiOldColumnData"][1]["name"] = "OffsetNorm" @@ -6090,82 +7047,109 @@ defs["structs"]["ImGuiPayload"][8]["name"] = "Delivery" defs["structs"]["ImGuiPayload"][8]["type"] = "bool" defs["structs"]["ImGuiPlatformIO"] = {} defs["structs"]["ImGuiPlatformIO"][1] = {} -defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_CreateWindow" -defs["structs"]["ImGuiPlatformIO"][1]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_GetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][1]["type"] = "const char*(*)(ImGuiContext* ctx)" defs["structs"]["ImGuiPlatformIO"][2] = {} -defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_DestroyWindow" -defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_SetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiContext* ctx,const char* text)" defs["structs"]["ImGuiPlatformIO"][3] = {} -defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ShowWindow" -defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ClipboardUserData" +defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][4] = {} -defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_SetWindowPos" -defs["structs"]["ImGuiPlatformIO"][4]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 pos)" +defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_OpenInShellFn" +defs["structs"]["ImGuiPlatformIO"][4]["type"] = "bool(*)(ImGuiContext* ctx,const char* path)" defs["structs"]["ImGuiPlatformIO"][5] = {} -defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_GetWindowPos" -defs["structs"]["ImGuiPlatformIO"][5]["type"] = "ImVec2(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_OpenInShellUserData" +defs["structs"]["ImGuiPlatformIO"][5]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][6] = {} -defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetWindowSize" -defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetImeDataFn" +defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" defs["structs"]["ImGuiPlatformIO"][7] = {} -defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_GetWindowSize" -defs["structs"]["ImGuiPlatformIO"][7]["type"] = "ImVec2(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_ImeUserData" +defs["structs"]["ImGuiPlatformIO"][7]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][8] = {} -defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_SetWindowFocus" -defs["structs"]["ImGuiPlatformIO"][8]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_LocaleDecimalPoint" +defs["structs"]["ImGuiPlatformIO"][8]["type"] = "ImWchar" defs["structs"]["ImGuiPlatformIO"][9] = {} -defs["structs"]["ImGuiPlatformIO"][9]["name"] = "Platform_GetWindowFocus" -defs["structs"]["ImGuiPlatformIO"][9]["type"] = "bool(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][9]["name"] = "Platform_CreateWindow" +defs["structs"]["ImGuiPlatformIO"][9]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][10] = {} -defs["structs"]["ImGuiPlatformIO"][10]["name"] = "Platform_GetWindowMinimized" -defs["structs"]["ImGuiPlatformIO"][10]["type"] = "bool(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][10]["name"] = "Platform_DestroyWindow" +defs["structs"]["ImGuiPlatformIO"][10]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][11] = {} -defs["structs"]["ImGuiPlatformIO"][11]["name"] = "Platform_SetWindowTitle" -defs["structs"]["ImGuiPlatformIO"][11]["type"] = "void(*)(ImGuiViewport* vp,const char* str)" +defs["structs"]["ImGuiPlatformIO"][11]["name"] = "Platform_ShowWindow" +defs["structs"]["ImGuiPlatformIO"][11]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][12] = {} -defs["structs"]["ImGuiPlatformIO"][12]["name"] = "Platform_SetWindowAlpha" -defs["structs"]["ImGuiPlatformIO"][12]["type"] = "void(*)(ImGuiViewport* vp,float alpha)" +defs["structs"]["ImGuiPlatformIO"][12]["name"] = "Platform_SetWindowPos" +defs["structs"]["ImGuiPlatformIO"][12]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 pos)" defs["structs"]["ImGuiPlatformIO"][13] = {} -defs["structs"]["ImGuiPlatformIO"][13]["name"] = "Platform_UpdateWindow" -defs["structs"]["ImGuiPlatformIO"][13]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][13]["name"] = "Platform_GetWindowPos" +defs["structs"]["ImGuiPlatformIO"][13]["type"] = "ImVec2(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][14] = {} -defs["structs"]["ImGuiPlatformIO"][14]["name"] = "Platform_RenderWindow" -defs["structs"]["ImGuiPlatformIO"][14]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][14]["name"] = "Platform_SetWindowSize" +defs["structs"]["ImGuiPlatformIO"][14]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" defs["structs"]["ImGuiPlatformIO"][15] = {} -defs["structs"]["ImGuiPlatformIO"][15]["name"] = "Platform_SwapBuffers" -defs["structs"]["ImGuiPlatformIO"][15]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][15]["name"] = "Platform_GetWindowSize" +defs["structs"]["ImGuiPlatformIO"][15]["type"] = "ImVec2(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][16] = {} -defs["structs"]["ImGuiPlatformIO"][16]["name"] = "Platform_GetWindowDpiScale" -defs["structs"]["ImGuiPlatformIO"][16]["type"] = "float(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][16]["name"] = "Platform_SetWindowFocus" +defs["structs"]["ImGuiPlatformIO"][16]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][17] = {} -defs["structs"]["ImGuiPlatformIO"][17]["name"] = "Platform_OnChangedViewport" -defs["structs"]["ImGuiPlatformIO"][17]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][17]["name"] = "Platform_GetWindowFocus" +defs["structs"]["ImGuiPlatformIO"][17]["type"] = "bool(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][18] = {} -defs["structs"]["ImGuiPlatformIO"][18]["name"] = "Platform_CreateVkSurface" -defs["structs"]["ImGuiPlatformIO"][18]["type"] = "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" +defs["structs"]["ImGuiPlatformIO"][18]["name"] = "Platform_GetWindowMinimized" +defs["structs"]["ImGuiPlatformIO"][18]["type"] = "bool(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][19] = {} -defs["structs"]["ImGuiPlatformIO"][19]["name"] = "Renderer_CreateWindow" -defs["structs"]["ImGuiPlatformIO"][19]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][19]["name"] = "Platform_SetWindowTitle" +defs["structs"]["ImGuiPlatformIO"][19]["type"] = "void(*)(ImGuiViewport* vp,const char* str)" defs["structs"]["ImGuiPlatformIO"][20] = {} -defs["structs"]["ImGuiPlatformIO"][20]["name"] = "Renderer_DestroyWindow" -defs["structs"]["ImGuiPlatformIO"][20]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][20]["name"] = "Platform_SetWindowAlpha" +defs["structs"]["ImGuiPlatformIO"][20]["type"] = "void(*)(ImGuiViewport* vp,float alpha)" defs["structs"]["ImGuiPlatformIO"][21] = {} -defs["structs"]["ImGuiPlatformIO"][21]["name"] = "Renderer_SetWindowSize" -defs["structs"]["ImGuiPlatformIO"][21]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][21]["name"] = "Platform_UpdateWindow" +defs["structs"]["ImGuiPlatformIO"][21]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][22] = {} -defs["structs"]["ImGuiPlatformIO"][22]["name"] = "Renderer_RenderWindow" +defs["structs"]["ImGuiPlatformIO"][22]["name"] = "Platform_RenderWindow" defs["structs"]["ImGuiPlatformIO"][22]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" defs["structs"]["ImGuiPlatformIO"][23] = {} -defs["structs"]["ImGuiPlatformIO"][23]["name"] = "Renderer_SwapBuffers" +defs["structs"]["ImGuiPlatformIO"][23]["name"] = "Platform_SwapBuffers" defs["structs"]["ImGuiPlatformIO"][23]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" defs["structs"]["ImGuiPlatformIO"][24] = {} -defs["structs"]["ImGuiPlatformIO"][24]["name"] = "Monitors" -defs["structs"]["ImGuiPlatformIO"][24]["template_type"] = "ImGuiPlatformMonitor" -defs["structs"]["ImGuiPlatformIO"][24]["type"] = "ImVector_ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][24]["name"] = "Platform_GetWindowDpiScale" +defs["structs"]["ImGuiPlatformIO"][24]["type"] = "float(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][25] = {} -defs["structs"]["ImGuiPlatformIO"][25]["name"] = "Viewports" -defs["structs"]["ImGuiPlatformIO"][25]["template_type"] = "ImGuiViewport*" -defs["structs"]["ImGuiPlatformIO"][25]["type"] = "ImVector_ImGuiViewportPtr" +defs["structs"]["ImGuiPlatformIO"][25]["name"] = "Platform_OnChangedViewport" +defs["structs"]["ImGuiPlatformIO"][25]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][26] = {} +defs["structs"]["ImGuiPlatformIO"][26]["name"] = "Platform_GetWindowWorkAreaInsets" +defs["structs"]["ImGuiPlatformIO"][26]["type"] = "ImVec4(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][27] = {} +defs["structs"]["ImGuiPlatformIO"][27]["name"] = "Platform_CreateVkSurface" +defs["structs"]["ImGuiPlatformIO"][27]["type"] = "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" +defs["structs"]["ImGuiPlatformIO"][28] = {} +defs["structs"]["ImGuiPlatformIO"][28]["name"] = "Renderer_CreateWindow" +defs["structs"]["ImGuiPlatformIO"][28]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][29] = {} +defs["structs"]["ImGuiPlatformIO"][29]["name"] = "Renderer_DestroyWindow" +defs["structs"]["ImGuiPlatformIO"][29]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][30] = {} +defs["structs"]["ImGuiPlatformIO"][30]["name"] = "Renderer_SetWindowSize" +defs["structs"]["ImGuiPlatformIO"][30]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][31] = {} +defs["structs"]["ImGuiPlatformIO"][31]["name"] = "Renderer_RenderWindow" +defs["structs"]["ImGuiPlatformIO"][31]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][32] = {} +defs["structs"]["ImGuiPlatformIO"][32]["name"] = "Renderer_SwapBuffers" +defs["structs"]["ImGuiPlatformIO"][32]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][33] = {} +defs["structs"]["ImGuiPlatformIO"][33]["name"] = "Monitors" +defs["structs"]["ImGuiPlatformIO"][33]["template_type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][33]["type"] = "ImVector_ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][34] = {} +defs["structs"]["ImGuiPlatformIO"][34]["name"] = "Viewports" +defs["structs"]["ImGuiPlatformIO"][34]["template_type"] = "ImGuiViewport*" +defs["structs"]["ImGuiPlatformIO"][34]["type"] = "ImVector_ImGuiViewportPtr" defs["structs"]["ImGuiPlatformImeData"] = {} defs["structs"]["ImGuiPlatformImeData"][1] = {} defs["structs"]["ImGuiPlatformImeData"][1]["name"] = "WantVisible" @@ -6192,6 +7176,9 @@ defs["structs"]["ImGuiPlatformMonitor"][4]["type"] = "ImVec2" defs["structs"]["ImGuiPlatformMonitor"][5] = {} defs["structs"]["ImGuiPlatformMonitor"][5]["name"] = "DpiScale" defs["structs"]["ImGuiPlatformMonitor"][5]["type"] = "float" +defs["structs"]["ImGuiPlatformMonitor"][6] = {} +defs["structs"]["ImGuiPlatformMonitor"][6]["name"] = "PlatformHandle" +defs["structs"]["ImGuiPlatformMonitor"][6]["type"] = "void*" defs["structs"]["ImGuiPopupData"] = {} defs["structs"]["ImGuiPopupData"][1] = {} defs["structs"]["ImGuiPopupData"][1]["name"] = "PopupId" @@ -6200,7 +7187,7 @@ defs["structs"]["ImGuiPopupData"][2] = {} defs["structs"]["ImGuiPopupData"][2]["name"] = "Window" defs["structs"]["ImGuiPopupData"][2]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiPopupData"][3] = {} -defs["structs"]["ImGuiPopupData"][3]["name"] = "BackupNavWindow" +defs["structs"]["ImGuiPopupData"][3]["name"] = "RestoreNavWindow" defs["structs"]["ImGuiPopupData"][3]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiPopupData"][4] = {} defs["structs"]["ImGuiPopupData"][4]["name"] = "ParentNavLayer" @@ -6224,6 +7211,48 @@ defs["structs"]["ImGuiPtrOrIndex"][1]["type"] = "void*" defs["structs"]["ImGuiPtrOrIndex"][2] = {} defs["structs"]["ImGuiPtrOrIndex"][2]["name"] = "Index" defs["structs"]["ImGuiPtrOrIndex"][2]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1]["name"] = "Size" +defs["structs"]["ImGuiSelectionBasicStorage"][1]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][2] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][2]["name"] = "PreserveOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionBasicStorage"][3] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][3]["name"] = "UserData" +defs["structs"]["ImGuiSelectionBasicStorage"][3]["type"] = "void*" +defs["structs"]["ImGuiSelectionBasicStorage"][4] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][4]["name"] = "AdapterIndexToStorageId" +defs["structs"]["ImGuiSelectionBasicStorage"][4]["type"] = "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" +defs["structs"]["ImGuiSelectionBasicStorage"][5] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][5]["name"] = "_SelectionOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][5]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][6] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][6]["name"] = "_Storage" +defs["structs"]["ImGuiSelectionBasicStorage"][6]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiSelectionExternalStorage"] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1]["name"] = "UserData" +defs["structs"]["ImGuiSelectionExternalStorage"][1]["type"] = "void*" +defs["structs"]["ImGuiSelectionExternalStorage"][2] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][2]["name"] = "AdapterSetItemSelected" +defs["structs"]["ImGuiSelectionExternalStorage"][2]["type"] = "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" +defs["structs"]["ImGuiSelectionRequest"] = {} +defs["structs"]["ImGuiSelectionRequest"][1] = {} +defs["structs"]["ImGuiSelectionRequest"][1]["name"] = "Type" +defs["structs"]["ImGuiSelectionRequest"][1]["type"] = "ImGuiSelectionRequestType" +defs["structs"]["ImGuiSelectionRequest"][2] = {} +defs["structs"]["ImGuiSelectionRequest"][2]["name"] = "Selected" +defs["structs"]["ImGuiSelectionRequest"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionRequest"][3] = {} +defs["structs"]["ImGuiSelectionRequest"][3]["name"] = "RangeDirection" +defs["structs"]["ImGuiSelectionRequest"][3]["type"] = "ImS8" +defs["structs"]["ImGuiSelectionRequest"][4] = {} +defs["structs"]["ImGuiSelectionRequest"][4]["name"] = "RangeFirstItem" +defs["structs"]["ImGuiSelectionRequest"][4]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiSelectionRequest"][5] = {} +defs["structs"]["ImGuiSelectionRequest"][5]["name"] = "RangeLastItem" +defs["structs"]["ImGuiSelectionRequest"][5]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiSettingsHandler"] = {} defs["structs"]["ImGuiSettingsHandler"][1] = {} defs["structs"]["ImGuiSettingsHandler"][1]["name"] = "TypeName" @@ -6321,26 +7350,6 @@ defs["structs"]["ImGuiStackSizes"][8]["type"] = "short" defs["structs"]["ImGuiStackSizes"][9] = {} defs["structs"]["ImGuiStackSizes"][9]["name"] = "SizeOfDisabledStack" defs["structs"]["ImGuiStackSizes"][9]["type"] = "short" -defs["structs"]["ImGuiStackTool"] = {} -defs["structs"]["ImGuiStackTool"][1] = {} -defs["structs"]["ImGuiStackTool"][1]["name"] = "LastActiveFrame" -defs["structs"]["ImGuiStackTool"][1]["type"] = "int" -defs["structs"]["ImGuiStackTool"][2] = {} -defs["structs"]["ImGuiStackTool"][2]["name"] = "StackLevel" -defs["structs"]["ImGuiStackTool"][2]["type"] = "int" -defs["structs"]["ImGuiStackTool"][3] = {} -defs["structs"]["ImGuiStackTool"][3]["name"] = "QueryId" -defs["structs"]["ImGuiStackTool"][3]["type"] = "ImGuiID" -defs["structs"]["ImGuiStackTool"][4] = {} -defs["structs"]["ImGuiStackTool"][4]["name"] = "Results" -defs["structs"]["ImGuiStackTool"][4]["template_type"] = "ImGuiStackLevelInfo" -defs["structs"]["ImGuiStackTool"][4]["type"] = "ImVector_ImGuiStackLevelInfo" -defs["structs"]["ImGuiStackTool"][5] = {} -defs["structs"]["ImGuiStackTool"][5]["name"] = "CopyToClipboardOnCtrlC" -defs["structs"]["ImGuiStackTool"][5]["type"] = "bool" -defs["structs"]["ImGuiStackTool"][6] = {} -defs["structs"]["ImGuiStackTool"][6]["name"] = "CopyToClipboardLastTime" -defs["structs"]["ImGuiStackTool"][6]["type"] = "float" defs["structs"]["ImGuiStorage"] = {} defs["structs"]["ImGuiStorage"][1] = {} defs["structs"]["ImGuiStorage"][1]["name"] = "Data" @@ -6442,42 +7451,81 @@ defs["structs"]["ImGuiStyle"][29] = {} defs["structs"]["ImGuiStyle"][29]["name"] = "TabMinWidthForCloseButton" defs["structs"]["ImGuiStyle"][29]["type"] = "float" defs["structs"]["ImGuiStyle"][30] = {} -defs["structs"]["ImGuiStyle"][30]["name"] = "ColorButtonPosition" -defs["structs"]["ImGuiStyle"][30]["type"] = "ImGuiDir" +defs["structs"]["ImGuiStyle"][30]["name"] = "TabBarBorderSize" +defs["structs"]["ImGuiStyle"][30]["type"] = "float" defs["structs"]["ImGuiStyle"][31] = {} -defs["structs"]["ImGuiStyle"][31]["name"] = "ButtonTextAlign" -defs["structs"]["ImGuiStyle"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][31]["name"] = "TabBarOverlineSize" +defs["structs"]["ImGuiStyle"][31]["type"] = "float" defs["structs"]["ImGuiStyle"][32] = {} -defs["structs"]["ImGuiStyle"][32]["name"] = "SelectableTextAlign" -defs["structs"]["ImGuiStyle"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][32]["name"] = "TableAngledHeadersAngle" +defs["structs"]["ImGuiStyle"][32]["type"] = "float" defs["structs"]["ImGuiStyle"][33] = {} -defs["structs"]["ImGuiStyle"][33]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][33]["name"] = "TableAngledHeadersTextAlign" defs["structs"]["ImGuiStyle"][33]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][34] = {} -defs["structs"]["ImGuiStyle"][34]["name"] = "DisplaySafeAreaPadding" -defs["structs"]["ImGuiStyle"][34]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][34]["name"] = "ColorButtonPosition" +defs["structs"]["ImGuiStyle"][34]["type"] = "ImGuiDir" defs["structs"]["ImGuiStyle"][35] = {} -defs["structs"]["ImGuiStyle"][35]["name"] = "MouseCursorScale" -defs["structs"]["ImGuiStyle"][35]["type"] = "float" +defs["structs"]["ImGuiStyle"][35]["name"] = "ButtonTextAlign" +defs["structs"]["ImGuiStyle"][35]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][36] = {} -defs["structs"]["ImGuiStyle"][36]["name"] = "AntiAliasedLines" -defs["structs"]["ImGuiStyle"][36]["type"] = "bool" +defs["structs"]["ImGuiStyle"][36]["name"] = "SelectableTextAlign" +defs["structs"]["ImGuiStyle"][36]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][37] = {} -defs["structs"]["ImGuiStyle"][37]["name"] = "AntiAliasedLinesUseTex" -defs["structs"]["ImGuiStyle"][37]["type"] = "bool" +defs["structs"]["ImGuiStyle"][37]["name"] = "SeparatorTextBorderSize" +defs["structs"]["ImGuiStyle"][37]["type"] = "float" defs["structs"]["ImGuiStyle"][38] = {} -defs["structs"]["ImGuiStyle"][38]["name"] = "AntiAliasedFill" -defs["structs"]["ImGuiStyle"][38]["type"] = "bool" +defs["structs"]["ImGuiStyle"][38]["name"] = "SeparatorTextAlign" +defs["structs"]["ImGuiStyle"][38]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][39] = {} -defs["structs"]["ImGuiStyle"][39]["name"] = "CurveTessellationTol" -defs["structs"]["ImGuiStyle"][39]["type"] = "float" +defs["structs"]["ImGuiStyle"][39]["name"] = "SeparatorTextPadding" +defs["structs"]["ImGuiStyle"][39]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][40] = {} -defs["structs"]["ImGuiStyle"][40]["name"] = "CircleTessellationMaxError" -defs["structs"]["ImGuiStyle"][40]["type"] = "float" +defs["structs"]["ImGuiStyle"][40]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][40]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][41] = {} -defs["structs"]["ImGuiStyle"][41]["name"] = "Colors[ImGuiCol_COUNT]" -defs["structs"]["ImGuiStyle"][41]["size"] = 55 -defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][41]["name"] = "DisplaySafeAreaPadding" +defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][42] = {} +defs["structs"]["ImGuiStyle"][42]["name"] = "DockingSeparatorSize" +defs["structs"]["ImGuiStyle"][42]["type"] = "float" +defs["structs"]["ImGuiStyle"][43] = {} +defs["structs"]["ImGuiStyle"][43]["name"] = "MouseCursorScale" +defs["structs"]["ImGuiStyle"][43]["type"] = "float" +defs["structs"]["ImGuiStyle"][44] = {} +defs["structs"]["ImGuiStyle"][44]["name"] = "AntiAliasedLines" +defs["structs"]["ImGuiStyle"][44]["type"] = "bool" +defs["structs"]["ImGuiStyle"][45] = {} +defs["structs"]["ImGuiStyle"][45]["name"] = "AntiAliasedLinesUseTex" +defs["structs"]["ImGuiStyle"][45]["type"] = "bool" +defs["structs"]["ImGuiStyle"][46] = {} +defs["structs"]["ImGuiStyle"][46]["name"] = "AntiAliasedFill" +defs["structs"]["ImGuiStyle"][46]["type"] = "bool" +defs["structs"]["ImGuiStyle"][47] = {} +defs["structs"]["ImGuiStyle"][47]["name"] = "CurveTessellationTol" +defs["structs"]["ImGuiStyle"][47]["type"] = "float" +defs["structs"]["ImGuiStyle"][48] = {} +defs["structs"]["ImGuiStyle"][48]["name"] = "CircleTessellationMaxError" +defs["structs"]["ImGuiStyle"][48]["type"] = "float" +defs["structs"]["ImGuiStyle"][49] = {} +defs["structs"]["ImGuiStyle"][49]["name"] = "Colors[ImGuiCol_COUNT]" +defs["structs"]["ImGuiStyle"][49]["size"] = 58 +defs["structs"]["ImGuiStyle"][49]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][50] = {} +defs["structs"]["ImGuiStyle"][50]["name"] = "HoverStationaryDelay" +defs["structs"]["ImGuiStyle"][50]["type"] = "float" +defs["structs"]["ImGuiStyle"][51] = {} +defs["structs"]["ImGuiStyle"][51]["name"] = "HoverDelayShort" +defs["structs"]["ImGuiStyle"][51]["type"] = "float" +defs["structs"]["ImGuiStyle"][52] = {} +defs["structs"]["ImGuiStyle"][52]["name"] = "HoverDelayNormal" +defs["structs"]["ImGuiStyle"][52]["type"] = "float" +defs["structs"]["ImGuiStyle"][53] = {} +defs["structs"]["ImGuiStyle"][53]["name"] = "HoverFlagsForTooltipMouse" +defs["structs"]["ImGuiStyle"][53]["type"] = "ImGuiHoveredFlags" +defs["structs"]["ImGuiStyle"][54] = {} +defs["structs"]["ImGuiStyle"][54]["name"] = "HoverFlagsForTooltipNav" +defs["structs"]["ImGuiStyle"][54]["type"] = "ImGuiHoveredFlags" defs["structs"]["ImGuiStyleMod"] = {} defs["structs"]["ImGuiStyleMod"][1] = {} defs["structs"]["ImGuiStyleMod"][1]["name"] = "VarIdx" @@ -6545,41 +7593,47 @@ defs["structs"]["ImGuiTabBar"][19] = {} defs["structs"]["ImGuiTabBar"][19]["name"] = "ScrollingRectMaxX" defs["structs"]["ImGuiTabBar"][19]["type"] = "float" defs["structs"]["ImGuiTabBar"][20] = {} -defs["structs"]["ImGuiTabBar"][20]["name"] = "ReorderRequestTabId" -defs["structs"]["ImGuiTabBar"][20]["type"] = "ImGuiID" +defs["structs"]["ImGuiTabBar"][20]["name"] = "SeparatorMinX" +defs["structs"]["ImGuiTabBar"][20]["type"] = "float" defs["structs"]["ImGuiTabBar"][21] = {} -defs["structs"]["ImGuiTabBar"][21]["name"] = "ReorderRequestOffset" -defs["structs"]["ImGuiTabBar"][21]["type"] = "ImS16" +defs["structs"]["ImGuiTabBar"][21]["name"] = "SeparatorMaxX" +defs["structs"]["ImGuiTabBar"][21]["type"] = "float" defs["structs"]["ImGuiTabBar"][22] = {} -defs["structs"]["ImGuiTabBar"][22]["name"] = "BeginCount" -defs["structs"]["ImGuiTabBar"][22]["type"] = "ImS8" +defs["structs"]["ImGuiTabBar"][22]["name"] = "ReorderRequestTabId" +defs["structs"]["ImGuiTabBar"][22]["type"] = "ImGuiID" defs["structs"]["ImGuiTabBar"][23] = {} -defs["structs"]["ImGuiTabBar"][23]["name"] = "WantLayout" -defs["structs"]["ImGuiTabBar"][23]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][23]["name"] = "ReorderRequestOffset" +defs["structs"]["ImGuiTabBar"][23]["type"] = "ImS16" defs["structs"]["ImGuiTabBar"][24] = {} -defs["structs"]["ImGuiTabBar"][24]["name"] = "VisibleTabWasSubmitted" -defs["structs"]["ImGuiTabBar"][24]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][24]["name"] = "BeginCount" +defs["structs"]["ImGuiTabBar"][24]["type"] = "ImS8" defs["structs"]["ImGuiTabBar"][25] = {} -defs["structs"]["ImGuiTabBar"][25]["name"] = "TabsAddedNew" +defs["structs"]["ImGuiTabBar"][25]["name"] = "WantLayout" defs["structs"]["ImGuiTabBar"][25]["type"] = "bool" defs["structs"]["ImGuiTabBar"][26] = {} -defs["structs"]["ImGuiTabBar"][26]["name"] = "TabsActiveCount" -defs["structs"]["ImGuiTabBar"][26]["type"] = "ImS16" +defs["structs"]["ImGuiTabBar"][26]["name"] = "VisibleTabWasSubmitted" +defs["structs"]["ImGuiTabBar"][26]["type"] = "bool" defs["structs"]["ImGuiTabBar"][27] = {} -defs["structs"]["ImGuiTabBar"][27]["name"] = "LastTabItemIdx" -defs["structs"]["ImGuiTabBar"][27]["type"] = "ImS16" +defs["structs"]["ImGuiTabBar"][27]["name"] = "TabsAddedNew" +defs["structs"]["ImGuiTabBar"][27]["type"] = "bool" defs["structs"]["ImGuiTabBar"][28] = {} -defs["structs"]["ImGuiTabBar"][28]["name"] = "ItemSpacingY" -defs["structs"]["ImGuiTabBar"][28]["type"] = "float" +defs["structs"]["ImGuiTabBar"][28]["name"] = "TabsActiveCount" +defs["structs"]["ImGuiTabBar"][28]["type"] = "ImS16" defs["structs"]["ImGuiTabBar"][29] = {} -defs["structs"]["ImGuiTabBar"][29]["name"] = "FramePadding" -defs["structs"]["ImGuiTabBar"][29]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][29]["name"] = "LastTabItemIdx" +defs["structs"]["ImGuiTabBar"][29]["type"] = "ImS16" defs["structs"]["ImGuiTabBar"][30] = {} -defs["structs"]["ImGuiTabBar"][30]["name"] = "BackupCursorPos" -defs["structs"]["ImGuiTabBar"][30]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][30]["name"] = "ItemSpacingY" +defs["structs"]["ImGuiTabBar"][30]["type"] = "float" defs["structs"]["ImGuiTabBar"][31] = {} -defs["structs"]["ImGuiTabBar"][31]["name"] = "TabsNames" -defs["structs"]["ImGuiTabBar"][31]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiTabBar"][31]["name"] = "FramePadding" +defs["structs"]["ImGuiTabBar"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][32] = {} +defs["structs"]["ImGuiTabBar"][32]["name"] = "BackupCursorPos" +defs["structs"]["ImGuiTabBar"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][33] = {} +defs["structs"]["ImGuiTabBar"][33]["name"] = "TabsNames" +defs["structs"]["ImGuiTabBar"][33]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiTabItem"] = {} defs["structs"]["ImGuiTabItem"][1] = {} defs["structs"]["ImGuiTabItem"][1]["name"] = "ID" @@ -6647,48 +7701,48 @@ defs["structs"]["ImGuiTable"][7]["template_type"] = "ImGuiTableCellData" defs["structs"]["ImGuiTable"][7]["type"] = "ImSpan_ImGuiTableCellData" defs["structs"]["ImGuiTable"][8] = {} defs["structs"]["ImGuiTable"][8]["name"] = "EnabledMaskByDisplayOrder" -defs["structs"]["ImGuiTable"][8]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][8]["type"] = "ImBitArrayPtr" defs["structs"]["ImGuiTable"][9] = {} defs["structs"]["ImGuiTable"][9]["name"] = "EnabledMaskByIndex" -defs["structs"]["ImGuiTable"][9]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][9]["type"] = "ImBitArrayPtr" defs["structs"]["ImGuiTable"][10] = {} defs["structs"]["ImGuiTable"][10]["name"] = "VisibleMaskByIndex" -defs["structs"]["ImGuiTable"][10]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][10]["type"] = "ImBitArrayPtr" defs["structs"]["ImGuiTable"][11] = {} -defs["structs"]["ImGuiTable"][11]["name"] = "RequestOutputMaskByIndex" -defs["structs"]["ImGuiTable"][11]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][11]["name"] = "SettingsLoadedFlags" +defs["structs"]["ImGuiTable"][11]["type"] = "ImGuiTableFlags" defs["structs"]["ImGuiTable"][12] = {} -defs["structs"]["ImGuiTable"][12]["name"] = "SettingsLoadedFlags" -defs["structs"]["ImGuiTable"][12]["type"] = "ImGuiTableFlags" +defs["structs"]["ImGuiTable"][12]["name"] = "SettingsOffset" +defs["structs"]["ImGuiTable"][12]["type"] = "int" defs["structs"]["ImGuiTable"][13] = {} -defs["structs"]["ImGuiTable"][13]["name"] = "SettingsOffset" +defs["structs"]["ImGuiTable"][13]["name"] = "LastFrameActive" defs["structs"]["ImGuiTable"][13]["type"] = "int" defs["structs"]["ImGuiTable"][14] = {} -defs["structs"]["ImGuiTable"][14]["name"] = "LastFrameActive" +defs["structs"]["ImGuiTable"][14]["name"] = "ColumnsCount" defs["structs"]["ImGuiTable"][14]["type"] = "int" defs["structs"]["ImGuiTable"][15] = {} -defs["structs"]["ImGuiTable"][15]["name"] = "ColumnsCount" +defs["structs"]["ImGuiTable"][15]["name"] = "CurrentRow" defs["structs"]["ImGuiTable"][15]["type"] = "int" defs["structs"]["ImGuiTable"][16] = {} -defs["structs"]["ImGuiTable"][16]["name"] = "CurrentRow" +defs["structs"]["ImGuiTable"][16]["name"] = "CurrentColumn" defs["structs"]["ImGuiTable"][16]["type"] = "int" defs["structs"]["ImGuiTable"][17] = {} -defs["structs"]["ImGuiTable"][17]["name"] = "CurrentColumn" -defs["structs"]["ImGuiTable"][17]["type"] = "int" +defs["structs"]["ImGuiTable"][17]["name"] = "InstanceCurrent" +defs["structs"]["ImGuiTable"][17]["type"] = "ImS16" defs["structs"]["ImGuiTable"][18] = {} -defs["structs"]["ImGuiTable"][18]["name"] = "InstanceCurrent" +defs["structs"]["ImGuiTable"][18]["name"] = "InstanceInteracted" defs["structs"]["ImGuiTable"][18]["type"] = "ImS16" defs["structs"]["ImGuiTable"][19] = {} -defs["structs"]["ImGuiTable"][19]["name"] = "InstanceInteracted" -defs["structs"]["ImGuiTable"][19]["type"] = "ImS16" +defs["structs"]["ImGuiTable"][19]["name"] = "RowPosY1" +defs["structs"]["ImGuiTable"][19]["type"] = "float" defs["structs"]["ImGuiTable"][20] = {} -defs["structs"]["ImGuiTable"][20]["name"] = "RowPosY1" +defs["structs"]["ImGuiTable"][20]["name"] = "RowPosY2" defs["structs"]["ImGuiTable"][20]["type"] = "float" defs["structs"]["ImGuiTable"][21] = {} -defs["structs"]["ImGuiTable"][21]["name"] = "RowPosY2" +defs["structs"]["ImGuiTable"][21]["name"] = "RowMinHeight" defs["structs"]["ImGuiTable"][21]["type"] = "float" defs["structs"]["ImGuiTable"][22] = {} -defs["structs"]["ImGuiTable"][22]["name"] = "RowMinHeight" +defs["structs"]["ImGuiTable"][22]["name"] = "RowCellPaddingY" defs["structs"]["ImGuiTable"][22]["type"] = "float" defs["structs"]["ImGuiTable"][23] = {} defs["structs"]["ImGuiTable"][23]["name"] = "RowTextBaseline" @@ -6736,217 +7790,235 @@ defs["structs"]["ImGuiTable"][36] = {} defs["structs"]["ImGuiTable"][36]["name"] = "CellPaddingX" defs["structs"]["ImGuiTable"][36]["type"] = "float" defs["structs"]["ImGuiTable"][37] = {} -defs["structs"]["ImGuiTable"][37]["name"] = "CellPaddingY" +defs["structs"]["ImGuiTable"][37]["name"] = "CellSpacingX1" defs["structs"]["ImGuiTable"][37]["type"] = "float" defs["structs"]["ImGuiTable"][38] = {} -defs["structs"]["ImGuiTable"][38]["name"] = "CellSpacingX1" +defs["structs"]["ImGuiTable"][38]["name"] = "CellSpacingX2" defs["structs"]["ImGuiTable"][38]["type"] = "float" defs["structs"]["ImGuiTable"][39] = {} -defs["structs"]["ImGuiTable"][39]["name"] = "CellSpacingX2" +defs["structs"]["ImGuiTable"][39]["name"] = "InnerWidth" defs["structs"]["ImGuiTable"][39]["type"] = "float" defs["structs"]["ImGuiTable"][40] = {} -defs["structs"]["ImGuiTable"][40]["name"] = "InnerWidth" +defs["structs"]["ImGuiTable"][40]["name"] = "ColumnsGivenWidth" defs["structs"]["ImGuiTable"][40]["type"] = "float" defs["structs"]["ImGuiTable"][41] = {} -defs["structs"]["ImGuiTable"][41]["name"] = "ColumnsGivenWidth" +defs["structs"]["ImGuiTable"][41]["name"] = "ColumnsAutoFitWidth" defs["structs"]["ImGuiTable"][41]["type"] = "float" defs["structs"]["ImGuiTable"][42] = {} -defs["structs"]["ImGuiTable"][42]["name"] = "ColumnsAutoFitWidth" +defs["structs"]["ImGuiTable"][42]["name"] = "ColumnsStretchSumWeights" defs["structs"]["ImGuiTable"][42]["type"] = "float" defs["structs"]["ImGuiTable"][43] = {} -defs["structs"]["ImGuiTable"][43]["name"] = "ColumnsStretchSumWeights" +defs["structs"]["ImGuiTable"][43]["name"] = "ResizedColumnNextWidth" defs["structs"]["ImGuiTable"][43]["type"] = "float" defs["structs"]["ImGuiTable"][44] = {} -defs["structs"]["ImGuiTable"][44]["name"] = "ResizedColumnNextWidth" +defs["structs"]["ImGuiTable"][44]["name"] = "ResizeLockMinContentsX2" defs["structs"]["ImGuiTable"][44]["type"] = "float" defs["structs"]["ImGuiTable"][45] = {} -defs["structs"]["ImGuiTable"][45]["name"] = "ResizeLockMinContentsX2" +defs["structs"]["ImGuiTable"][45]["name"] = "RefScale" defs["structs"]["ImGuiTable"][45]["type"] = "float" defs["structs"]["ImGuiTable"][46] = {} -defs["structs"]["ImGuiTable"][46]["name"] = "RefScale" +defs["structs"]["ImGuiTable"][46]["name"] = "AngledHeadersHeight" defs["structs"]["ImGuiTable"][46]["type"] = "float" defs["structs"]["ImGuiTable"][47] = {} -defs["structs"]["ImGuiTable"][47]["name"] = "OuterRect" -defs["structs"]["ImGuiTable"][47]["type"] = "ImRect" +defs["structs"]["ImGuiTable"][47]["name"] = "AngledHeadersSlope" +defs["structs"]["ImGuiTable"][47]["type"] = "float" defs["structs"]["ImGuiTable"][48] = {} -defs["structs"]["ImGuiTable"][48]["name"] = "InnerRect" +defs["structs"]["ImGuiTable"][48]["name"] = "OuterRect" defs["structs"]["ImGuiTable"][48]["type"] = "ImRect" defs["structs"]["ImGuiTable"][49] = {} -defs["structs"]["ImGuiTable"][49]["name"] = "WorkRect" +defs["structs"]["ImGuiTable"][49]["name"] = "InnerRect" defs["structs"]["ImGuiTable"][49]["type"] = "ImRect" defs["structs"]["ImGuiTable"][50] = {} -defs["structs"]["ImGuiTable"][50]["name"] = "InnerClipRect" +defs["structs"]["ImGuiTable"][50]["name"] = "WorkRect" defs["structs"]["ImGuiTable"][50]["type"] = "ImRect" defs["structs"]["ImGuiTable"][51] = {} -defs["structs"]["ImGuiTable"][51]["name"] = "BgClipRect" +defs["structs"]["ImGuiTable"][51]["name"] = "InnerClipRect" defs["structs"]["ImGuiTable"][51]["type"] = "ImRect" defs["structs"]["ImGuiTable"][52] = {} -defs["structs"]["ImGuiTable"][52]["name"] = "Bg0ClipRectForDrawCmd" +defs["structs"]["ImGuiTable"][52]["name"] = "BgClipRect" defs["structs"]["ImGuiTable"][52]["type"] = "ImRect" defs["structs"]["ImGuiTable"][53] = {} -defs["structs"]["ImGuiTable"][53]["name"] = "Bg2ClipRectForDrawCmd" +defs["structs"]["ImGuiTable"][53]["name"] = "Bg0ClipRectForDrawCmd" defs["structs"]["ImGuiTable"][53]["type"] = "ImRect" defs["structs"]["ImGuiTable"][54] = {} -defs["structs"]["ImGuiTable"][54]["name"] = "HostClipRect" +defs["structs"]["ImGuiTable"][54]["name"] = "Bg2ClipRectForDrawCmd" defs["structs"]["ImGuiTable"][54]["type"] = "ImRect" defs["structs"]["ImGuiTable"][55] = {} -defs["structs"]["ImGuiTable"][55]["name"] = "HostBackupInnerClipRect" +defs["structs"]["ImGuiTable"][55]["name"] = "HostClipRect" defs["structs"]["ImGuiTable"][55]["type"] = "ImRect" defs["structs"]["ImGuiTable"][56] = {} -defs["structs"]["ImGuiTable"][56]["name"] = "OuterWindow" -defs["structs"]["ImGuiTable"][56]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiTable"][56]["name"] = "HostBackupInnerClipRect" +defs["structs"]["ImGuiTable"][56]["type"] = "ImRect" defs["structs"]["ImGuiTable"][57] = {} -defs["structs"]["ImGuiTable"][57]["name"] = "InnerWindow" +defs["structs"]["ImGuiTable"][57]["name"] = "OuterWindow" defs["structs"]["ImGuiTable"][57]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiTable"][58] = {} -defs["structs"]["ImGuiTable"][58]["name"] = "ColumnsNames" -defs["structs"]["ImGuiTable"][58]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiTable"][58]["name"] = "InnerWindow" +defs["structs"]["ImGuiTable"][58]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiTable"][59] = {} -defs["structs"]["ImGuiTable"][59]["name"] = "DrawSplitter" -defs["structs"]["ImGuiTable"][59]["type"] = "ImDrawListSplitter*" +defs["structs"]["ImGuiTable"][59]["name"] = "ColumnsNames" +defs["structs"]["ImGuiTable"][59]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiTable"][60] = {} -defs["structs"]["ImGuiTable"][60]["name"] = "InstanceDataFirst" -defs["structs"]["ImGuiTable"][60]["type"] = "ImGuiTableInstanceData" +defs["structs"]["ImGuiTable"][60]["name"] = "DrawSplitter" +defs["structs"]["ImGuiTable"][60]["type"] = "ImDrawListSplitter*" defs["structs"]["ImGuiTable"][61] = {} -defs["structs"]["ImGuiTable"][61]["name"] = "InstanceDataExtra" -defs["structs"]["ImGuiTable"][61]["template_type"] = "ImGuiTableInstanceData" -defs["structs"]["ImGuiTable"][61]["type"] = "ImVector_ImGuiTableInstanceData" +defs["structs"]["ImGuiTable"][61]["name"] = "InstanceDataFirst" +defs["structs"]["ImGuiTable"][61]["type"] = "ImGuiTableInstanceData" defs["structs"]["ImGuiTable"][62] = {} -defs["structs"]["ImGuiTable"][62]["name"] = "SortSpecsSingle" -defs["structs"]["ImGuiTable"][62]["type"] = "ImGuiTableColumnSortSpecs" +defs["structs"]["ImGuiTable"][62]["name"] = "InstanceDataExtra" +defs["structs"]["ImGuiTable"][62]["template_type"] = "ImGuiTableInstanceData" +defs["structs"]["ImGuiTable"][62]["type"] = "ImVector_ImGuiTableInstanceData" defs["structs"]["ImGuiTable"][63] = {} -defs["structs"]["ImGuiTable"][63]["name"] = "SortSpecsMulti" -defs["structs"]["ImGuiTable"][63]["template_type"] = "ImGuiTableColumnSortSpecs" -defs["structs"]["ImGuiTable"][63]["type"] = "ImVector_ImGuiTableColumnSortSpecs" +defs["structs"]["ImGuiTable"][63]["name"] = "SortSpecsSingle" +defs["structs"]["ImGuiTable"][63]["type"] = "ImGuiTableColumnSortSpecs" defs["structs"]["ImGuiTable"][64] = {} -defs["structs"]["ImGuiTable"][64]["name"] = "SortSpecs" -defs["structs"]["ImGuiTable"][64]["type"] = "ImGuiTableSortSpecs" +defs["structs"]["ImGuiTable"][64]["name"] = "SortSpecsMulti" +defs["structs"]["ImGuiTable"][64]["template_type"] = "ImGuiTableColumnSortSpecs" +defs["structs"]["ImGuiTable"][64]["type"] = "ImVector_ImGuiTableColumnSortSpecs" defs["structs"]["ImGuiTable"][65] = {} -defs["structs"]["ImGuiTable"][65]["name"] = "SortSpecsCount" -defs["structs"]["ImGuiTable"][65]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTable"][65]["name"] = "SortSpecs" +defs["structs"]["ImGuiTable"][65]["type"] = "ImGuiTableSortSpecs" defs["structs"]["ImGuiTable"][66] = {} -defs["structs"]["ImGuiTable"][66]["name"] = "ColumnsEnabledCount" +defs["structs"]["ImGuiTable"][66]["name"] = "SortSpecsCount" defs["structs"]["ImGuiTable"][66]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][67] = {} -defs["structs"]["ImGuiTable"][67]["name"] = "ColumnsEnabledFixedCount" +defs["structs"]["ImGuiTable"][67]["name"] = "ColumnsEnabledCount" defs["structs"]["ImGuiTable"][67]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][68] = {} -defs["structs"]["ImGuiTable"][68]["name"] = "DeclColumnsCount" +defs["structs"]["ImGuiTable"][68]["name"] = "ColumnsEnabledFixedCount" defs["structs"]["ImGuiTable"][68]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][69] = {} -defs["structs"]["ImGuiTable"][69]["name"] = "HoveredColumnBody" +defs["structs"]["ImGuiTable"][69]["name"] = "DeclColumnsCount" defs["structs"]["ImGuiTable"][69]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][70] = {} -defs["structs"]["ImGuiTable"][70]["name"] = "HoveredColumnBorder" +defs["structs"]["ImGuiTable"][70]["name"] = "AngledHeadersCount" defs["structs"]["ImGuiTable"][70]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][71] = {} -defs["structs"]["ImGuiTable"][71]["name"] = "AutoFitSingleColumn" +defs["structs"]["ImGuiTable"][71]["name"] = "HoveredColumnBody" defs["structs"]["ImGuiTable"][71]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][72] = {} -defs["structs"]["ImGuiTable"][72]["name"] = "ResizedColumn" +defs["structs"]["ImGuiTable"][72]["name"] = "HoveredColumnBorder" defs["structs"]["ImGuiTable"][72]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][73] = {} -defs["structs"]["ImGuiTable"][73]["name"] = "LastResizedColumn" +defs["structs"]["ImGuiTable"][73]["name"] = "HighlightColumnHeader" defs["structs"]["ImGuiTable"][73]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][74] = {} -defs["structs"]["ImGuiTable"][74]["name"] = "HeldHeaderColumn" +defs["structs"]["ImGuiTable"][74]["name"] = "AutoFitSingleColumn" defs["structs"]["ImGuiTable"][74]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][75] = {} -defs["structs"]["ImGuiTable"][75]["name"] = "ReorderColumn" +defs["structs"]["ImGuiTable"][75]["name"] = "ResizedColumn" defs["structs"]["ImGuiTable"][75]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][76] = {} -defs["structs"]["ImGuiTable"][76]["name"] = "ReorderColumnDir" +defs["structs"]["ImGuiTable"][76]["name"] = "LastResizedColumn" defs["structs"]["ImGuiTable"][76]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][77] = {} -defs["structs"]["ImGuiTable"][77]["name"] = "LeftMostEnabledColumn" +defs["structs"]["ImGuiTable"][77]["name"] = "HeldHeaderColumn" defs["structs"]["ImGuiTable"][77]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][78] = {} -defs["structs"]["ImGuiTable"][78]["name"] = "RightMostEnabledColumn" +defs["structs"]["ImGuiTable"][78]["name"] = "ReorderColumn" defs["structs"]["ImGuiTable"][78]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][79] = {} -defs["structs"]["ImGuiTable"][79]["name"] = "LeftMostStretchedColumn" +defs["structs"]["ImGuiTable"][79]["name"] = "ReorderColumnDir" defs["structs"]["ImGuiTable"][79]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][80] = {} -defs["structs"]["ImGuiTable"][80]["name"] = "RightMostStretchedColumn" +defs["structs"]["ImGuiTable"][80]["name"] = "LeftMostEnabledColumn" defs["structs"]["ImGuiTable"][80]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][81] = {} -defs["structs"]["ImGuiTable"][81]["name"] = "ContextPopupColumn" +defs["structs"]["ImGuiTable"][81]["name"] = "RightMostEnabledColumn" defs["structs"]["ImGuiTable"][81]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][82] = {} -defs["structs"]["ImGuiTable"][82]["name"] = "FreezeRowsRequest" +defs["structs"]["ImGuiTable"][82]["name"] = "LeftMostStretchedColumn" defs["structs"]["ImGuiTable"][82]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][83] = {} -defs["structs"]["ImGuiTable"][83]["name"] = "FreezeRowsCount" +defs["structs"]["ImGuiTable"][83]["name"] = "RightMostStretchedColumn" defs["structs"]["ImGuiTable"][83]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][84] = {} -defs["structs"]["ImGuiTable"][84]["name"] = "FreezeColumnsRequest" +defs["structs"]["ImGuiTable"][84]["name"] = "ContextPopupColumn" defs["structs"]["ImGuiTable"][84]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][85] = {} -defs["structs"]["ImGuiTable"][85]["name"] = "FreezeColumnsCount" +defs["structs"]["ImGuiTable"][85]["name"] = "FreezeRowsRequest" defs["structs"]["ImGuiTable"][85]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][86] = {} -defs["structs"]["ImGuiTable"][86]["name"] = "RowCellDataCurrent" +defs["structs"]["ImGuiTable"][86]["name"] = "FreezeRowsCount" defs["structs"]["ImGuiTable"][86]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][87] = {} -defs["structs"]["ImGuiTable"][87]["name"] = "DummyDrawChannel" -defs["structs"]["ImGuiTable"][87]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTable"][87]["name"] = "FreezeColumnsRequest" +defs["structs"]["ImGuiTable"][87]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][88] = {} -defs["structs"]["ImGuiTable"][88]["name"] = "Bg2DrawChannelCurrent" -defs["structs"]["ImGuiTable"][88]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTable"][88]["name"] = "FreezeColumnsCount" +defs["structs"]["ImGuiTable"][88]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][89] = {} -defs["structs"]["ImGuiTable"][89]["name"] = "Bg2DrawChannelUnfrozen" -defs["structs"]["ImGuiTable"][89]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTable"][89]["name"] = "RowCellDataCurrent" +defs["structs"]["ImGuiTable"][89]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][90] = {} -defs["structs"]["ImGuiTable"][90]["name"] = "IsLayoutLocked" -defs["structs"]["ImGuiTable"][90]["type"] = "bool" +defs["structs"]["ImGuiTable"][90]["name"] = "DummyDrawChannel" +defs["structs"]["ImGuiTable"][90]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTable"][91] = {} -defs["structs"]["ImGuiTable"][91]["name"] = "IsInsideRow" -defs["structs"]["ImGuiTable"][91]["type"] = "bool" +defs["structs"]["ImGuiTable"][91]["name"] = "Bg2DrawChannelCurrent" +defs["structs"]["ImGuiTable"][91]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTable"][92] = {} -defs["structs"]["ImGuiTable"][92]["name"] = "IsInitializing" -defs["structs"]["ImGuiTable"][92]["type"] = "bool" +defs["structs"]["ImGuiTable"][92]["name"] = "Bg2DrawChannelUnfrozen" +defs["structs"]["ImGuiTable"][92]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTable"][93] = {} -defs["structs"]["ImGuiTable"][93]["name"] = "IsSortSpecsDirty" +defs["structs"]["ImGuiTable"][93]["name"] = "IsLayoutLocked" defs["structs"]["ImGuiTable"][93]["type"] = "bool" defs["structs"]["ImGuiTable"][94] = {} -defs["structs"]["ImGuiTable"][94]["name"] = "IsUsingHeaders" +defs["structs"]["ImGuiTable"][94]["name"] = "IsInsideRow" defs["structs"]["ImGuiTable"][94]["type"] = "bool" defs["structs"]["ImGuiTable"][95] = {} -defs["structs"]["ImGuiTable"][95]["name"] = "IsContextPopupOpen" +defs["structs"]["ImGuiTable"][95]["name"] = "IsInitializing" defs["structs"]["ImGuiTable"][95]["type"] = "bool" defs["structs"]["ImGuiTable"][96] = {} -defs["structs"]["ImGuiTable"][96]["name"] = "IsSettingsRequestLoad" +defs["structs"]["ImGuiTable"][96]["name"] = "IsSortSpecsDirty" defs["structs"]["ImGuiTable"][96]["type"] = "bool" defs["structs"]["ImGuiTable"][97] = {} -defs["structs"]["ImGuiTable"][97]["name"] = "IsSettingsDirty" +defs["structs"]["ImGuiTable"][97]["name"] = "IsUsingHeaders" defs["structs"]["ImGuiTable"][97]["type"] = "bool" defs["structs"]["ImGuiTable"][98] = {} -defs["structs"]["ImGuiTable"][98]["name"] = "IsDefaultDisplayOrder" +defs["structs"]["ImGuiTable"][98]["name"] = "IsContextPopupOpen" defs["structs"]["ImGuiTable"][98]["type"] = "bool" defs["structs"]["ImGuiTable"][99] = {} -defs["structs"]["ImGuiTable"][99]["name"] = "IsResetAllRequest" +defs["structs"]["ImGuiTable"][99]["name"] = "DisableDefaultContextMenu" defs["structs"]["ImGuiTable"][99]["type"] = "bool" defs["structs"]["ImGuiTable"][100] = {} -defs["structs"]["ImGuiTable"][100]["name"] = "IsResetDisplayOrderRequest" +defs["structs"]["ImGuiTable"][100]["name"] = "IsSettingsRequestLoad" defs["structs"]["ImGuiTable"][100]["type"] = "bool" defs["structs"]["ImGuiTable"][101] = {} -defs["structs"]["ImGuiTable"][101]["name"] = "IsUnfrozenRows" +defs["structs"]["ImGuiTable"][101]["name"] = "IsSettingsDirty" defs["structs"]["ImGuiTable"][101]["type"] = "bool" defs["structs"]["ImGuiTable"][102] = {} -defs["structs"]["ImGuiTable"][102]["name"] = "IsDefaultSizingPolicy" +defs["structs"]["ImGuiTable"][102]["name"] = "IsDefaultDisplayOrder" defs["structs"]["ImGuiTable"][102]["type"] = "bool" defs["structs"]["ImGuiTable"][103] = {} -defs["structs"]["ImGuiTable"][103]["name"] = "HasScrollbarYCurr" +defs["structs"]["ImGuiTable"][103]["name"] = "IsResetAllRequest" defs["structs"]["ImGuiTable"][103]["type"] = "bool" defs["structs"]["ImGuiTable"][104] = {} -defs["structs"]["ImGuiTable"][104]["name"] = "HasScrollbarYPrev" +defs["structs"]["ImGuiTable"][104]["name"] = "IsResetDisplayOrderRequest" defs["structs"]["ImGuiTable"][104]["type"] = "bool" defs["structs"]["ImGuiTable"][105] = {} -defs["structs"]["ImGuiTable"][105]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiTable"][105]["name"] = "IsUnfrozenRows" defs["structs"]["ImGuiTable"][105]["type"] = "bool" defs["structs"]["ImGuiTable"][106] = {} -defs["structs"]["ImGuiTable"][106]["name"] = "HostSkipItems" +defs["structs"]["ImGuiTable"][106]["name"] = "IsDefaultSizingPolicy" defs["structs"]["ImGuiTable"][106]["type"] = "bool" +defs["structs"]["ImGuiTable"][107] = {} +defs["structs"]["ImGuiTable"][107]["name"] = "IsActiveIdAliveBeforeTable" +defs["structs"]["ImGuiTable"][107]["type"] = "bool" +defs["structs"]["ImGuiTable"][108] = {} +defs["structs"]["ImGuiTable"][108]["name"] = "IsActiveIdInTable" +defs["structs"]["ImGuiTable"][108]["type"] = "bool" +defs["structs"]["ImGuiTable"][109] = {} +defs["structs"]["ImGuiTable"][109]["name"] = "HasScrollbarYCurr" +defs["structs"]["ImGuiTable"][109]["type"] = "bool" +defs["structs"]["ImGuiTable"][110] = {} +defs["structs"]["ImGuiTable"][110]["name"] = "HasScrollbarYPrev" +defs["structs"]["ImGuiTable"][110]["type"] = "bool" +defs["structs"]["ImGuiTable"][111] = {} +defs["structs"]["ImGuiTable"][111]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiTable"][111]["type"] = "bool" +defs["structs"]["ImGuiTable"][112] = {} +defs["structs"]["ImGuiTable"][112]["name"] = "HostSkipItems" +defs["structs"]["ImGuiTable"][112]["type"] = "bool" defs["structs"]["ImGuiTableCellData"] = {} defs["structs"]["ImGuiTableCellData"][1] = {} defs["structs"]["ImGuiTableCellData"][1]["name"] = "BgColor" @@ -6974,113 +8046,116 @@ defs["structs"]["ImGuiTableColumn"][6] = {} defs["structs"]["ImGuiTableColumn"][6]["name"] = "WidthAuto" defs["structs"]["ImGuiTableColumn"][6]["type"] = "float" defs["structs"]["ImGuiTableColumn"][7] = {} -defs["structs"]["ImGuiTableColumn"][7]["name"] = "StretchWeight" +defs["structs"]["ImGuiTableColumn"][7]["name"] = "WidthMax" defs["structs"]["ImGuiTableColumn"][7]["type"] = "float" defs["structs"]["ImGuiTableColumn"][8] = {} -defs["structs"]["ImGuiTableColumn"][8]["name"] = "InitStretchWeightOrWidth" +defs["structs"]["ImGuiTableColumn"][8]["name"] = "StretchWeight" defs["structs"]["ImGuiTableColumn"][8]["type"] = "float" defs["structs"]["ImGuiTableColumn"][9] = {} -defs["structs"]["ImGuiTableColumn"][9]["name"] = "ClipRect" -defs["structs"]["ImGuiTableColumn"][9]["type"] = "ImRect" +defs["structs"]["ImGuiTableColumn"][9]["name"] = "InitStretchWeightOrWidth" +defs["structs"]["ImGuiTableColumn"][9]["type"] = "float" defs["structs"]["ImGuiTableColumn"][10] = {} -defs["structs"]["ImGuiTableColumn"][10]["name"] = "UserID" -defs["structs"]["ImGuiTableColumn"][10]["type"] = "ImGuiID" +defs["structs"]["ImGuiTableColumn"][10]["name"] = "ClipRect" +defs["structs"]["ImGuiTableColumn"][10]["type"] = "ImRect" defs["structs"]["ImGuiTableColumn"][11] = {} -defs["structs"]["ImGuiTableColumn"][11]["name"] = "WorkMinX" -defs["structs"]["ImGuiTableColumn"][11]["type"] = "float" +defs["structs"]["ImGuiTableColumn"][11]["name"] = "UserID" +defs["structs"]["ImGuiTableColumn"][11]["type"] = "ImGuiID" defs["structs"]["ImGuiTableColumn"][12] = {} -defs["structs"]["ImGuiTableColumn"][12]["name"] = "WorkMaxX" +defs["structs"]["ImGuiTableColumn"][12]["name"] = "WorkMinX" defs["structs"]["ImGuiTableColumn"][12]["type"] = "float" defs["structs"]["ImGuiTableColumn"][13] = {} -defs["structs"]["ImGuiTableColumn"][13]["name"] = "ItemWidth" +defs["structs"]["ImGuiTableColumn"][13]["name"] = "WorkMaxX" defs["structs"]["ImGuiTableColumn"][13]["type"] = "float" defs["structs"]["ImGuiTableColumn"][14] = {} -defs["structs"]["ImGuiTableColumn"][14]["name"] = "ContentMaxXFrozen" +defs["structs"]["ImGuiTableColumn"][14]["name"] = "ItemWidth" defs["structs"]["ImGuiTableColumn"][14]["type"] = "float" defs["structs"]["ImGuiTableColumn"][15] = {} -defs["structs"]["ImGuiTableColumn"][15]["name"] = "ContentMaxXUnfrozen" +defs["structs"]["ImGuiTableColumn"][15]["name"] = "ContentMaxXFrozen" defs["structs"]["ImGuiTableColumn"][15]["type"] = "float" defs["structs"]["ImGuiTableColumn"][16] = {} -defs["structs"]["ImGuiTableColumn"][16]["name"] = "ContentMaxXHeadersUsed" +defs["structs"]["ImGuiTableColumn"][16]["name"] = "ContentMaxXUnfrozen" defs["structs"]["ImGuiTableColumn"][16]["type"] = "float" defs["structs"]["ImGuiTableColumn"][17] = {} -defs["structs"]["ImGuiTableColumn"][17]["name"] = "ContentMaxXHeadersIdeal" +defs["structs"]["ImGuiTableColumn"][17]["name"] = "ContentMaxXHeadersUsed" defs["structs"]["ImGuiTableColumn"][17]["type"] = "float" defs["structs"]["ImGuiTableColumn"][18] = {} -defs["structs"]["ImGuiTableColumn"][18]["name"] = "NameOffset" -defs["structs"]["ImGuiTableColumn"][18]["type"] = "ImS16" +defs["structs"]["ImGuiTableColumn"][18]["name"] = "ContentMaxXHeadersIdeal" +defs["structs"]["ImGuiTableColumn"][18]["type"] = "float" defs["structs"]["ImGuiTableColumn"][19] = {} -defs["structs"]["ImGuiTableColumn"][19]["name"] = "DisplayOrder" -defs["structs"]["ImGuiTableColumn"][19]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTableColumn"][19]["name"] = "NameOffset" +defs["structs"]["ImGuiTableColumn"][19]["type"] = "ImS16" defs["structs"]["ImGuiTableColumn"][20] = {} -defs["structs"]["ImGuiTableColumn"][20]["name"] = "IndexWithinEnabledSet" +defs["structs"]["ImGuiTableColumn"][20]["name"] = "DisplayOrder" defs["structs"]["ImGuiTableColumn"][20]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][21] = {} -defs["structs"]["ImGuiTableColumn"][21]["name"] = "PrevEnabledColumn" +defs["structs"]["ImGuiTableColumn"][21]["name"] = "IndexWithinEnabledSet" defs["structs"]["ImGuiTableColumn"][21]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][22] = {} -defs["structs"]["ImGuiTableColumn"][22]["name"] = "NextEnabledColumn" +defs["structs"]["ImGuiTableColumn"][22]["name"] = "PrevEnabledColumn" defs["structs"]["ImGuiTableColumn"][22]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][23] = {} -defs["structs"]["ImGuiTableColumn"][23]["name"] = "SortOrder" +defs["structs"]["ImGuiTableColumn"][23]["name"] = "NextEnabledColumn" defs["structs"]["ImGuiTableColumn"][23]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][24] = {} -defs["structs"]["ImGuiTableColumn"][24]["name"] = "DrawChannelCurrent" -defs["structs"]["ImGuiTableColumn"][24]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTableColumn"][24]["name"] = "SortOrder" +defs["structs"]["ImGuiTableColumn"][24]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][25] = {} -defs["structs"]["ImGuiTableColumn"][25]["name"] = "DrawChannelFrozen" +defs["structs"]["ImGuiTableColumn"][25]["name"] = "DrawChannelCurrent" defs["structs"]["ImGuiTableColumn"][25]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][26] = {} -defs["structs"]["ImGuiTableColumn"][26]["name"] = "DrawChannelUnfrozen" +defs["structs"]["ImGuiTableColumn"][26]["name"] = "DrawChannelFrozen" defs["structs"]["ImGuiTableColumn"][26]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][27] = {} -defs["structs"]["ImGuiTableColumn"][27]["name"] = "IsEnabled" -defs["structs"]["ImGuiTableColumn"][27]["type"] = "bool" +defs["structs"]["ImGuiTableColumn"][27]["name"] = "DrawChannelUnfrozen" +defs["structs"]["ImGuiTableColumn"][27]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][28] = {} -defs["structs"]["ImGuiTableColumn"][28]["name"] = "IsUserEnabled" +defs["structs"]["ImGuiTableColumn"][28]["name"] = "IsEnabled" defs["structs"]["ImGuiTableColumn"][28]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][29] = {} -defs["structs"]["ImGuiTableColumn"][29]["name"] = "IsUserEnabledNextFrame" +defs["structs"]["ImGuiTableColumn"][29]["name"] = "IsUserEnabled" defs["structs"]["ImGuiTableColumn"][29]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][30] = {} -defs["structs"]["ImGuiTableColumn"][30]["name"] = "IsVisibleX" +defs["structs"]["ImGuiTableColumn"][30]["name"] = "IsUserEnabledNextFrame" defs["structs"]["ImGuiTableColumn"][30]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][31] = {} -defs["structs"]["ImGuiTableColumn"][31]["name"] = "IsVisibleY" +defs["structs"]["ImGuiTableColumn"][31]["name"] = "IsVisibleX" defs["structs"]["ImGuiTableColumn"][31]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][32] = {} -defs["structs"]["ImGuiTableColumn"][32]["name"] = "IsRequestOutput" +defs["structs"]["ImGuiTableColumn"][32]["name"] = "IsVisibleY" defs["structs"]["ImGuiTableColumn"][32]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][33] = {} -defs["structs"]["ImGuiTableColumn"][33]["name"] = "IsSkipItems" +defs["structs"]["ImGuiTableColumn"][33]["name"] = "IsRequestOutput" defs["structs"]["ImGuiTableColumn"][33]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][34] = {} -defs["structs"]["ImGuiTableColumn"][34]["name"] = "IsPreserveWidthAuto" +defs["structs"]["ImGuiTableColumn"][34]["name"] = "IsSkipItems" defs["structs"]["ImGuiTableColumn"][34]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][35] = {} -defs["structs"]["ImGuiTableColumn"][35]["name"] = "NavLayerCurrent" -defs["structs"]["ImGuiTableColumn"][35]["type"] = "ImS8" +defs["structs"]["ImGuiTableColumn"][35]["name"] = "IsPreserveWidthAuto" +defs["structs"]["ImGuiTableColumn"][35]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][36] = {} -defs["structs"]["ImGuiTableColumn"][36]["name"] = "AutoFitQueue" -defs["structs"]["ImGuiTableColumn"][36]["type"] = "ImU8" +defs["structs"]["ImGuiTableColumn"][36]["name"] = "NavLayerCurrent" +defs["structs"]["ImGuiTableColumn"][36]["type"] = "ImS8" defs["structs"]["ImGuiTableColumn"][37] = {} -defs["structs"]["ImGuiTableColumn"][37]["name"] = "CannotSkipItemsQueue" +defs["structs"]["ImGuiTableColumn"][37]["name"] = "AutoFitQueue" defs["structs"]["ImGuiTableColumn"][37]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][38] = {} -defs["structs"]["ImGuiTableColumn"][38]["bitfield"] = "2" -defs["structs"]["ImGuiTableColumn"][38]["name"] = "SortDirection" +defs["structs"]["ImGuiTableColumn"][38]["name"] = "CannotSkipItemsQueue" defs["structs"]["ImGuiTableColumn"][38]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][39] = {} defs["structs"]["ImGuiTableColumn"][39]["bitfield"] = "2" -defs["structs"]["ImGuiTableColumn"][39]["name"] = "SortDirectionsAvailCount" +defs["structs"]["ImGuiTableColumn"][39]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumn"][39]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][40] = {} -defs["structs"]["ImGuiTableColumn"][40]["bitfield"] = "4" -defs["structs"]["ImGuiTableColumn"][40]["name"] = "SortDirectionsAvailMask" +defs["structs"]["ImGuiTableColumn"][40]["bitfield"] = "2" +defs["structs"]["ImGuiTableColumn"][40]["name"] = "SortDirectionsAvailCount" defs["structs"]["ImGuiTableColumn"][40]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][41] = {} -defs["structs"]["ImGuiTableColumn"][41]["name"] = "SortDirectionsAvailList" +defs["structs"]["ImGuiTableColumn"][41]["bitfield"] = "4" +defs["structs"]["ImGuiTableColumn"][41]["name"] = "SortDirectionsAvailMask" defs["structs"]["ImGuiTableColumn"][41]["type"] = "ImU8" +defs["structs"]["ImGuiTableColumn"][42] = {} +defs["structs"]["ImGuiTableColumn"][42]["name"] = "SortDirectionsAvailList" +defs["structs"]["ImGuiTableColumn"][42]["type"] = "ImU8" defs["structs"]["ImGuiTableColumnSettings"] = {} defs["structs"]["ImGuiTableColumnSettings"][1] = {} defs["structs"]["ImGuiTableColumnSettings"][1]["name"] = "WidthOrWeight" @@ -7120,19 +8195,40 @@ defs["structs"]["ImGuiTableColumnSortSpecs"][3] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][3]["name"] = "SortOrder" defs["structs"]["ImGuiTableColumnSortSpecs"][3]["type"] = "ImS16" defs["structs"]["ImGuiTableColumnSortSpecs"][4] = {} -defs["structs"]["ImGuiTableColumnSortSpecs"][4]["bitfield"] = "8" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["type"] = "ImGuiSortDirection" +defs["structs"]["ImGuiTableHeaderData"] = {} +defs["structs"]["ImGuiTableHeaderData"][1] = {} +defs["structs"]["ImGuiTableHeaderData"][1]["name"] = "Index" +defs["structs"]["ImGuiTableHeaderData"][1]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTableHeaderData"][2] = {} +defs["structs"]["ImGuiTableHeaderData"][2]["name"] = "TextColor" +defs["structs"]["ImGuiTableHeaderData"][2]["type"] = "ImU32" +defs["structs"]["ImGuiTableHeaderData"][3] = {} +defs["structs"]["ImGuiTableHeaderData"][3]["name"] = "BgColor0" +defs["structs"]["ImGuiTableHeaderData"][3]["type"] = "ImU32" +defs["structs"]["ImGuiTableHeaderData"][4] = {} +defs["structs"]["ImGuiTableHeaderData"][4]["name"] = "BgColor1" +defs["structs"]["ImGuiTableHeaderData"][4]["type"] = "ImU32" defs["structs"]["ImGuiTableInstanceData"] = {} defs["structs"]["ImGuiTableInstanceData"][1] = {} -defs["structs"]["ImGuiTableInstanceData"][1]["name"] = "LastOuterHeight" -defs["structs"]["ImGuiTableInstanceData"][1]["type"] = "float" +defs["structs"]["ImGuiTableInstanceData"][1]["name"] = "TableInstanceID" +defs["structs"]["ImGuiTableInstanceData"][1]["type"] = "ImGuiID" defs["structs"]["ImGuiTableInstanceData"][2] = {} -defs["structs"]["ImGuiTableInstanceData"][2]["name"] = "LastFirstRowHeight" +defs["structs"]["ImGuiTableInstanceData"][2]["name"] = "LastOuterHeight" defs["structs"]["ImGuiTableInstanceData"][2]["type"] = "float" defs["structs"]["ImGuiTableInstanceData"][3] = {} -defs["structs"]["ImGuiTableInstanceData"][3]["name"] = "LastFrozenHeight" +defs["structs"]["ImGuiTableInstanceData"][3]["name"] = "LastTopHeadersRowHeight" defs["structs"]["ImGuiTableInstanceData"][3]["type"] = "float" +defs["structs"]["ImGuiTableInstanceData"][4] = {} +defs["structs"]["ImGuiTableInstanceData"][4]["name"] = "LastFrozenHeight" +defs["structs"]["ImGuiTableInstanceData"][4]["type"] = "float" +defs["structs"]["ImGuiTableInstanceData"][5] = {} +defs["structs"]["ImGuiTableInstanceData"][5]["name"] = "HoveredRowLast" +defs["structs"]["ImGuiTableInstanceData"][5]["type"] = "int" +defs["structs"]["ImGuiTableInstanceData"][6] = {} +defs["structs"]["ImGuiTableInstanceData"][6]["name"] = "HoveredRowNext" +defs["structs"]["ImGuiTableInstanceData"][6]["type"] = "int" defs["structs"]["ImGuiTableSettings"] = {} defs["structs"]["ImGuiTableSettings"][1] = {} defs["structs"]["ImGuiTableSettings"][1]["name"] = "ID" @@ -7170,35 +8266,42 @@ defs["structs"]["ImGuiTableTempData"][2] = {} defs["structs"]["ImGuiTableTempData"][2]["name"] = "LastTimeActive" defs["structs"]["ImGuiTableTempData"][2]["type"] = "float" defs["structs"]["ImGuiTableTempData"][3] = {} -defs["structs"]["ImGuiTableTempData"][3]["name"] = "UserOuterSize" -defs["structs"]["ImGuiTableTempData"][3]["type"] = "ImVec2" +defs["structs"]["ImGuiTableTempData"][3]["name"] = "AngledHeadersExtraWidth" +defs["structs"]["ImGuiTableTempData"][3]["type"] = "float" defs["structs"]["ImGuiTableTempData"][4] = {} -defs["structs"]["ImGuiTableTempData"][4]["name"] = "DrawSplitter" -defs["structs"]["ImGuiTableTempData"][4]["type"] = "ImDrawListSplitter" +defs["structs"]["ImGuiTableTempData"][4]["name"] = "AngledHeadersRequests" +defs["structs"]["ImGuiTableTempData"][4]["template_type"] = "ImGuiTableHeaderData" +defs["structs"]["ImGuiTableTempData"][4]["type"] = "ImVector_ImGuiTableHeaderData" defs["structs"]["ImGuiTableTempData"][5] = {} -defs["structs"]["ImGuiTableTempData"][5]["name"] = "HostBackupWorkRect" -defs["structs"]["ImGuiTableTempData"][5]["type"] = "ImRect" +defs["structs"]["ImGuiTableTempData"][5]["name"] = "UserOuterSize" +defs["structs"]["ImGuiTableTempData"][5]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][6] = {} -defs["structs"]["ImGuiTableTempData"][6]["name"] = "HostBackupParentWorkRect" -defs["structs"]["ImGuiTableTempData"][6]["type"] = "ImRect" +defs["structs"]["ImGuiTableTempData"][6]["name"] = "DrawSplitter" +defs["structs"]["ImGuiTableTempData"][6]["type"] = "ImDrawListSplitter" defs["structs"]["ImGuiTableTempData"][7] = {} -defs["structs"]["ImGuiTableTempData"][7]["name"] = "HostBackupPrevLineSize" -defs["structs"]["ImGuiTableTempData"][7]["type"] = "ImVec2" +defs["structs"]["ImGuiTableTempData"][7]["name"] = "HostBackupWorkRect" +defs["structs"]["ImGuiTableTempData"][7]["type"] = "ImRect" defs["structs"]["ImGuiTableTempData"][8] = {} -defs["structs"]["ImGuiTableTempData"][8]["name"] = "HostBackupCurrLineSize" -defs["structs"]["ImGuiTableTempData"][8]["type"] = "ImVec2" +defs["structs"]["ImGuiTableTempData"][8]["name"] = "HostBackupParentWorkRect" +defs["structs"]["ImGuiTableTempData"][8]["type"] = "ImRect" defs["structs"]["ImGuiTableTempData"][9] = {} -defs["structs"]["ImGuiTableTempData"][9]["name"] = "HostBackupCursorMaxPos" +defs["structs"]["ImGuiTableTempData"][9]["name"] = "HostBackupPrevLineSize" defs["structs"]["ImGuiTableTempData"][9]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][10] = {} -defs["structs"]["ImGuiTableTempData"][10]["name"] = "HostBackupColumnsOffset" -defs["structs"]["ImGuiTableTempData"][10]["type"] = "ImVec1" +defs["structs"]["ImGuiTableTempData"][10]["name"] = "HostBackupCurrLineSize" +defs["structs"]["ImGuiTableTempData"][10]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][11] = {} -defs["structs"]["ImGuiTableTempData"][11]["name"] = "HostBackupItemWidth" -defs["structs"]["ImGuiTableTempData"][11]["type"] = "float" +defs["structs"]["ImGuiTableTempData"][11]["name"] = "HostBackupCursorMaxPos" +defs["structs"]["ImGuiTableTempData"][11]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][12] = {} -defs["structs"]["ImGuiTableTempData"][12]["name"] = "HostBackupItemWidthStackSize" -defs["structs"]["ImGuiTableTempData"][12]["type"] = "int" +defs["structs"]["ImGuiTableTempData"][12]["name"] = "HostBackupColumnsOffset" +defs["structs"]["ImGuiTableTempData"][12]["type"] = "ImVec1" +defs["structs"]["ImGuiTableTempData"][13] = {} +defs["structs"]["ImGuiTableTempData"][13]["name"] = "HostBackupItemWidth" +defs["structs"]["ImGuiTableTempData"][13]["type"] = "float" +defs["structs"]["ImGuiTableTempData"][14] = {} +defs["structs"]["ImGuiTableTempData"][14]["name"] = "HostBackupItemWidthStackSize" +defs["structs"]["ImGuiTableTempData"][14]["type"] = "int" defs["structs"]["ImGuiTextBuffer"] = {} defs["structs"]["ImGuiTextBuffer"][1] = {} defs["structs"]["ImGuiTextBuffer"][1]["name"] = "Buf" @@ -7231,6 +8334,58 @@ defs["structs"]["ImGuiTextRange"][1]["type"] = "const char*" defs["structs"]["ImGuiTextRange"][2] = {} defs["structs"]["ImGuiTextRange"][2]["name"] = "e" defs["structs"]["ImGuiTextRange"][2]["type"] = "const char*" +defs["structs"]["ImGuiTreeNodeStackData"] = {} +defs["structs"]["ImGuiTreeNodeStackData"][1] = {} +defs["structs"]["ImGuiTreeNodeStackData"][1]["name"] = "ID" +defs["structs"]["ImGuiTreeNodeStackData"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiTreeNodeStackData"][2] = {} +defs["structs"]["ImGuiTreeNodeStackData"][2]["name"] = "TreeFlags" +defs["structs"]["ImGuiTreeNodeStackData"][2]["type"] = "ImGuiTreeNodeFlags" +defs["structs"]["ImGuiTreeNodeStackData"][3] = {} +defs["structs"]["ImGuiTreeNodeStackData"][3]["name"] = "InFlags" +defs["structs"]["ImGuiTreeNodeStackData"][3]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiTreeNodeStackData"][4] = {} +defs["structs"]["ImGuiTreeNodeStackData"][4]["name"] = "NavRect" +defs["structs"]["ImGuiTreeNodeStackData"][4]["type"] = "ImRect" +defs["structs"]["ImGuiTypingSelectRequest"] = {} +defs["structs"]["ImGuiTypingSelectRequest"][1] = {} +defs["structs"]["ImGuiTypingSelectRequest"][1]["name"] = "Flags" +defs["structs"]["ImGuiTypingSelectRequest"][1]["type"] = "ImGuiTypingSelectFlags" +defs["structs"]["ImGuiTypingSelectRequest"][2] = {} +defs["structs"]["ImGuiTypingSelectRequest"][2]["name"] = "SearchBufferLen" +defs["structs"]["ImGuiTypingSelectRequest"][2]["type"] = "int" +defs["structs"]["ImGuiTypingSelectRequest"][3] = {} +defs["structs"]["ImGuiTypingSelectRequest"][3]["name"] = "SearchBuffer" +defs["structs"]["ImGuiTypingSelectRequest"][3]["type"] = "const char*" +defs["structs"]["ImGuiTypingSelectRequest"][4] = {} +defs["structs"]["ImGuiTypingSelectRequest"][4]["name"] = "SelectRequest" +defs["structs"]["ImGuiTypingSelectRequest"][4]["type"] = "bool" +defs["structs"]["ImGuiTypingSelectRequest"][5] = {} +defs["structs"]["ImGuiTypingSelectRequest"][5]["name"] = "SingleCharMode" +defs["structs"]["ImGuiTypingSelectRequest"][5]["type"] = "bool" +defs["structs"]["ImGuiTypingSelectRequest"][6] = {} +defs["structs"]["ImGuiTypingSelectRequest"][6]["name"] = "SingleCharSize" +defs["structs"]["ImGuiTypingSelectRequest"][6]["type"] = "ImS8" +defs["structs"]["ImGuiTypingSelectState"] = {} +defs["structs"]["ImGuiTypingSelectState"][1] = {} +defs["structs"]["ImGuiTypingSelectState"][1]["name"] = "Request" +defs["structs"]["ImGuiTypingSelectState"][1]["type"] = "ImGuiTypingSelectRequest" +defs["structs"]["ImGuiTypingSelectState"][2] = {} +defs["structs"]["ImGuiTypingSelectState"][2]["name"] = "SearchBuffer[64]" +defs["structs"]["ImGuiTypingSelectState"][2]["size"] = 64 +defs["structs"]["ImGuiTypingSelectState"][2]["type"] = "char" +defs["structs"]["ImGuiTypingSelectState"][3] = {} +defs["structs"]["ImGuiTypingSelectState"][3]["name"] = "FocusScope" +defs["structs"]["ImGuiTypingSelectState"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiTypingSelectState"][4] = {} +defs["structs"]["ImGuiTypingSelectState"][4]["name"] = "LastRequestFrame" +defs["structs"]["ImGuiTypingSelectState"][4]["type"] = "int" +defs["structs"]["ImGuiTypingSelectState"][5] = {} +defs["structs"]["ImGuiTypingSelectState"][5]["name"] = "LastRequestTime" +defs["structs"]["ImGuiTypingSelectState"][5]["type"] = "float" +defs["structs"]["ImGuiTypingSelectState"][6] = {} +defs["structs"]["ImGuiTypingSelectState"][6]["name"] = "SingleCharModeLock" +defs["structs"]["ImGuiTypingSelectState"][6]["type"] = "bool" defs["structs"]["ImGuiViewport"] = {} defs["structs"]["ImGuiViewport"][1] = {} defs["structs"]["ImGuiViewport"][1]["name"] = "ID" @@ -7288,431 +8443,459 @@ defs["structs"]["ImGuiViewportP"][1] = {} defs["structs"]["ImGuiViewportP"][1]["name"] = "_ImGuiViewport" defs["structs"]["ImGuiViewportP"][1]["type"] = "ImGuiViewport" defs["structs"]["ImGuiViewportP"][2] = {} -defs["structs"]["ImGuiViewportP"][2]["name"] = "Idx" -defs["structs"]["ImGuiViewportP"][2]["type"] = "int" +defs["structs"]["ImGuiViewportP"][2]["name"] = "Window" +defs["structs"]["ImGuiViewportP"][2]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiViewportP"][3] = {} -defs["structs"]["ImGuiViewportP"][3]["name"] = "LastFrameActive" +defs["structs"]["ImGuiViewportP"][3]["name"] = "Idx" defs["structs"]["ImGuiViewportP"][3]["type"] = "int" defs["structs"]["ImGuiViewportP"][4] = {} -defs["structs"]["ImGuiViewportP"][4]["name"] = "LastFrontMostStampCount" +defs["structs"]["ImGuiViewportP"][4]["name"] = "LastFrameActive" defs["structs"]["ImGuiViewportP"][4]["type"] = "int" defs["structs"]["ImGuiViewportP"][5] = {} -defs["structs"]["ImGuiViewportP"][5]["name"] = "LastNameHash" -defs["structs"]["ImGuiViewportP"][5]["type"] = "ImGuiID" +defs["structs"]["ImGuiViewportP"][5]["name"] = "LastFocusedStampCount" +defs["structs"]["ImGuiViewportP"][5]["type"] = "int" defs["structs"]["ImGuiViewportP"][6] = {} -defs["structs"]["ImGuiViewportP"][6]["name"] = "LastPos" -defs["structs"]["ImGuiViewportP"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][6]["name"] = "LastNameHash" +defs["structs"]["ImGuiViewportP"][6]["type"] = "ImGuiID" defs["structs"]["ImGuiViewportP"][7] = {} -defs["structs"]["ImGuiViewportP"][7]["name"] = "Alpha" -defs["structs"]["ImGuiViewportP"][7]["type"] = "float" +defs["structs"]["ImGuiViewportP"][7]["name"] = "LastPos" +defs["structs"]["ImGuiViewportP"][7]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][8] = {} -defs["structs"]["ImGuiViewportP"][8]["name"] = "LastAlpha" -defs["structs"]["ImGuiViewportP"][8]["type"] = "float" +defs["structs"]["ImGuiViewportP"][8]["name"] = "LastSize" +defs["structs"]["ImGuiViewportP"][8]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][9] = {} -defs["structs"]["ImGuiViewportP"][9]["name"] = "PlatformMonitor" -defs["structs"]["ImGuiViewportP"][9]["type"] = "short" +defs["structs"]["ImGuiViewportP"][9]["name"] = "Alpha" +defs["structs"]["ImGuiViewportP"][9]["type"] = "float" defs["structs"]["ImGuiViewportP"][10] = {} -defs["structs"]["ImGuiViewportP"][10]["name"] = "Window" -defs["structs"]["ImGuiViewportP"][10]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiViewportP"][10]["name"] = "LastAlpha" +defs["structs"]["ImGuiViewportP"][10]["type"] = "float" defs["structs"]["ImGuiViewportP"][11] = {} -defs["structs"]["ImGuiViewportP"][11]["name"] = "DrawListsLastFrame[2]" -defs["structs"]["ImGuiViewportP"][11]["size"] = 2 -defs["structs"]["ImGuiViewportP"][11]["type"] = "int" +defs["structs"]["ImGuiViewportP"][11]["name"] = "LastFocusedHadNavWindow" +defs["structs"]["ImGuiViewportP"][11]["type"] = "bool" defs["structs"]["ImGuiViewportP"][12] = {} -defs["structs"]["ImGuiViewportP"][12]["name"] = "DrawLists[2]" -defs["structs"]["ImGuiViewportP"][12]["size"] = 2 -defs["structs"]["ImGuiViewportP"][12]["type"] = "ImDrawList*" +defs["structs"]["ImGuiViewportP"][12]["name"] = "PlatformMonitor" +defs["structs"]["ImGuiViewportP"][12]["type"] = "short" defs["structs"]["ImGuiViewportP"][13] = {} -defs["structs"]["ImGuiViewportP"][13]["name"] = "DrawDataP" -defs["structs"]["ImGuiViewportP"][13]["type"] = "ImDrawData" +defs["structs"]["ImGuiViewportP"][13]["name"] = "BgFgDrawListsLastFrame[2]" +defs["structs"]["ImGuiViewportP"][13]["size"] = 2 +defs["structs"]["ImGuiViewportP"][13]["type"] = "int" defs["structs"]["ImGuiViewportP"][14] = {} -defs["structs"]["ImGuiViewportP"][14]["name"] = "DrawDataBuilder" -defs["structs"]["ImGuiViewportP"][14]["type"] = "ImDrawDataBuilder" +defs["structs"]["ImGuiViewportP"][14]["name"] = "BgFgDrawLists[2]" +defs["structs"]["ImGuiViewportP"][14]["size"] = 2 +defs["structs"]["ImGuiViewportP"][14]["type"] = "ImDrawList*" defs["structs"]["ImGuiViewportP"][15] = {} -defs["structs"]["ImGuiViewportP"][15]["name"] = "LastPlatformPos" -defs["structs"]["ImGuiViewportP"][15]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][15]["name"] = "DrawDataP" +defs["structs"]["ImGuiViewportP"][15]["type"] = "ImDrawData" defs["structs"]["ImGuiViewportP"][16] = {} -defs["structs"]["ImGuiViewportP"][16]["name"] = "LastPlatformSize" -defs["structs"]["ImGuiViewportP"][16]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][16]["name"] = "DrawDataBuilder" +defs["structs"]["ImGuiViewportP"][16]["type"] = "ImDrawDataBuilder" defs["structs"]["ImGuiViewportP"][17] = {} -defs["structs"]["ImGuiViewportP"][17]["name"] = "LastRendererSize" +defs["structs"]["ImGuiViewportP"][17]["name"] = "LastPlatformPos" defs["structs"]["ImGuiViewportP"][17]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][18] = {} -defs["structs"]["ImGuiViewportP"][18]["name"] = "WorkOffsetMin" +defs["structs"]["ImGuiViewportP"][18]["name"] = "LastPlatformSize" defs["structs"]["ImGuiViewportP"][18]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][19] = {} -defs["structs"]["ImGuiViewportP"][19]["name"] = "WorkOffsetMax" +defs["structs"]["ImGuiViewportP"][19]["name"] = "LastRendererSize" defs["structs"]["ImGuiViewportP"][19]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][20] = {} -defs["structs"]["ImGuiViewportP"][20]["name"] = "BuildWorkOffsetMin" +defs["structs"]["ImGuiViewportP"][20]["name"] = "WorkInsetMin" defs["structs"]["ImGuiViewportP"][20]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][21] = {} -defs["structs"]["ImGuiViewportP"][21]["name"] = "BuildWorkOffsetMax" +defs["structs"]["ImGuiViewportP"][21]["name"] = "WorkInsetMax" defs["structs"]["ImGuiViewportP"][21]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][22] = {} +defs["structs"]["ImGuiViewportP"][22]["name"] = "BuildWorkInsetMin" +defs["structs"]["ImGuiViewportP"][22]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][23] = {} +defs["structs"]["ImGuiViewportP"][23]["name"] = "BuildWorkInsetMax" +defs["structs"]["ImGuiViewportP"][23]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"] = {} defs["structs"]["ImGuiWindow"][1] = {} -defs["structs"]["ImGuiWindow"][1]["name"] = "Name" -defs["structs"]["ImGuiWindow"][1]["type"] = "char*" +defs["structs"]["ImGuiWindow"][1]["name"] = "Ctx" +defs["structs"]["ImGuiWindow"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiWindow"][2] = {} -defs["structs"]["ImGuiWindow"][2]["name"] = "ID" -defs["structs"]["ImGuiWindow"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][2]["name"] = "Name" +defs["structs"]["ImGuiWindow"][2]["type"] = "char*" defs["structs"]["ImGuiWindow"][3] = {} -defs["structs"]["ImGuiWindow"][3]["name"] = "Flags" -defs["structs"]["ImGuiWindow"][3]["type"] = "ImGuiWindowFlags" +defs["structs"]["ImGuiWindow"][3]["name"] = "ID" +defs["structs"]["ImGuiWindow"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][4] = {} -defs["structs"]["ImGuiWindow"][4]["name"] = "FlagsPreviousFrame" +defs["structs"]["ImGuiWindow"][4]["name"] = "Flags" defs["structs"]["ImGuiWindow"][4]["type"] = "ImGuiWindowFlags" defs["structs"]["ImGuiWindow"][5] = {} -defs["structs"]["ImGuiWindow"][5]["name"] = "WindowClass" -defs["structs"]["ImGuiWindow"][5]["type"] = "ImGuiWindowClass" +defs["structs"]["ImGuiWindow"][5]["name"] = "FlagsPreviousFrame" +defs["structs"]["ImGuiWindow"][5]["type"] = "ImGuiWindowFlags" defs["structs"]["ImGuiWindow"][6] = {} -defs["structs"]["ImGuiWindow"][6]["name"] = "Viewport" -defs["structs"]["ImGuiWindow"][6]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiWindow"][6]["name"] = "ChildFlags" +defs["structs"]["ImGuiWindow"][6]["type"] = "ImGuiChildFlags" defs["structs"]["ImGuiWindow"][7] = {} -defs["structs"]["ImGuiWindow"][7]["name"] = "ViewportId" -defs["structs"]["ImGuiWindow"][7]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][7]["name"] = "WindowClass" +defs["structs"]["ImGuiWindow"][7]["type"] = "ImGuiWindowClass" defs["structs"]["ImGuiWindow"][8] = {} -defs["structs"]["ImGuiWindow"][8]["name"] = "ViewportPos" -defs["structs"]["ImGuiWindow"][8]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][8]["name"] = "Viewport" +defs["structs"]["ImGuiWindow"][8]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiWindow"][9] = {} -defs["structs"]["ImGuiWindow"][9]["name"] = "ViewportAllowPlatformMonitorExtend" -defs["structs"]["ImGuiWindow"][9]["type"] = "int" +defs["structs"]["ImGuiWindow"][9]["name"] = "ViewportId" +defs["structs"]["ImGuiWindow"][9]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][10] = {} -defs["structs"]["ImGuiWindow"][10]["name"] = "Pos" +defs["structs"]["ImGuiWindow"][10]["name"] = "ViewportPos" defs["structs"]["ImGuiWindow"][10]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][11] = {} -defs["structs"]["ImGuiWindow"][11]["name"] = "Size" -defs["structs"]["ImGuiWindow"][11]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][11]["name"] = "ViewportAllowPlatformMonitorExtend" +defs["structs"]["ImGuiWindow"][11]["type"] = "int" defs["structs"]["ImGuiWindow"][12] = {} -defs["structs"]["ImGuiWindow"][12]["name"] = "SizeFull" +defs["structs"]["ImGuiWindow"][12]["name"] = "Pos" defs["structs"]["ImGuiWindow"][12]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][13] = {} -defs["structs"]["ImGuiWindow"][13]["name"] = "ContentSize" +defs["structs"]["ImGuiWindow"][13]["name"] = "Size" defs["structs"]["ImGuiWindow"][13]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][14] = {} -defs["structs"]["ImGuiWindow"][14]["name"] = "ContentSizeIdeal" +defs["structs"]["ImGuiWindow"][14]["name"] = "SizeFull" defs["structs"]["ImGuiWindow"][14]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][15] = {} -defs["structs"]["ImGuiWindow"][15]["name"] = "ContentSizeExplicit" +defs["structs"]["ImGuiWindow"][15]["name"] = "ContentSize" defs["structs"]["ImGuiWindow"][15]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][16] = {} -defs["structs"]["ImGuiWindow"][16]["name"] = "WindowPadding" +defs["structs"]["ImGuiWindow"][16]["name"] = "ContentSizeIdeal" defs["structs"]["ImGuiWindow"][16]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][17] = {} -defs["structs"]["ImGuiWindow"][17]["name"] = "WindowRounding" -defs["structs"]["ImGuiWindow"][17]["type"] = "float" +defs["structs"]["ImGuiWindow"][17]["name"] = "ContentSizeExplicit" +defs["structs"]["ImGuiWindow"][17]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][18] = {} -defs["structs"]["ImGuiWindow"][18]["name"] = "WindowBorderSize" -defs["structs"]["ImGuiWindow"][18]["type"] = "float" +defs["structs"]["ImGuiWindow"][18]["name"] = "WindowPadding" +defs["structs"]["ImGuiWindow"][18]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][19] = {} -defs["structs"]["ImGuiWindow"][19]["name"] = "DecoOuterSizeX1" +defs["structs"]["ImGuiWindow"][19]["name"] = "WindowRounding" defs["structs"]["ImGuiWindow"][19]["type"] = "float" defs["structs"]["ImGuiWindow"][20] = {} -defs["structs"]["ImGuiWindow"][20]["name"] = "DecoOuterSizeY1" +defs["structs"]["ImGuiWindow"][20]["name"] = "WindowBorderSize" defs["structs"]["ImGuiWindow"][20]["type"] = "float" defs["structs"]["ImGuiWindow"][21] = {} -defs["structs"]["ImGuiWindow"][21]["name"] = "DecoOuterSizeX2" +defs["structs"]["ImGuiWindow"][21]["name"] = "TitleBarHeight" defs["structs"]["ImGuiWindow"][21]["type"] = "float" defs["structs"]["ImGuiWindow"][22] = {} -defs["structs"]["ImGuiWindow"][22]["name"] = "DecoOuterSizeY2" +defs["structs"]["ImGuiWindow"][22]["name"] = "MenuBarHeight" defs["structs"]["ImGuiWindow"][22]["type"] = "float" defs["structs"]["ImGuiWindow"][23] = {} -defs["structs"]["ImGuiWindow"][23]["name"] = "DecoInnerSizeX1" +defs["structs"]["ImGuiWindow"][23]["name"] = "DecoOuterSizeX1" defs["structs"]["ImGuiWindow"][23]["type"] = "float" defs["structs"]["ImGuiWindow"][24] = {} -defs["structs"]["ImGuiWindow"][24]["name"] = "DecoInnerSizeY1" +defs["structs"]["ImGuiWindow"][24]["name"] = "DecoOuterSizeY1" defs["structs"]["ImGuiWindow"][24]["type"] = "float" defs["structs"]["ImGuiWindow"][25] = {} -defs["structs"]["ImGuiWindow"][25]["name"] = "NameBufLen" -defs["structs"]["ImGuiWindow"][25]["type"] = "int" +defs["structs"]["ImGuiWindow"][25]["name"] = "DecoOuterSizeX2" +defs["structs"]["ImGuiWindow"][25]["type"] = "float" defs["structs"]["ImGuiWindow"][26] = {} -defs["structs"]["ImGuiWindow"][26]["name"] = "MoveId" -defs["structs"]["ImGuiWindow"][26]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][26]["name"] = "DecoOuterSizeY2" +defs["structs"]["ImGuiWindow"][26]["type"] = "float" defs["structs"]["ImGuiWindow"][27] = {} -defs["structs"]["ImGuiWindow"][27]["name"] = "TabId" -defs["structs"]["ImGuiWindow"][27]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][27]["name"] = "DecoInnerSizeX1" +defs["structs"]["ImGuiWindow"][27]["type"] = "float" defs["structs"]["ImGuiWindow"][28] = {} -defs["structs"]["ImGuiWindow"][28]["name"] = "ChildId" -defs["structs"]["ImGuiWindow"][28]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][28]["name"] = "DecoInnerSizeY1" +defs["structs"]["ImGuiWindow"][28]["type"] = "float" defs["structs"]["ImGuiWindow"][29] = {} -defs["structs"]["ImGuiWindow"][29]["name"] = "Scroll" -defs["structs"]["ImGuiWindow"][29]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][29]["name"] = "NameBufLen" +defs["structs"]["ImGuiWindow"][29]["type"] = "int" defs["structs"]["ImGuiWindow"][30] = {} -defs["structs"]["ImGuiWindow"][30]["name"] = "ScrollMax" -defs["structs"]["ImGuiWindow"][30]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][30]["name"] = "MoveId" +defs["structs"]["ImGuiWindow"][30]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][31] = {} -defs["structs"]["ImGuiWindow"][31]["name"] = "ScrollTarget" -defs["structs"]["ImGuiWindow"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][31]["name"] = "TabId" +defs["structs"]["ImGuiWindow"][31]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][32] = {} -defs["structs"]["ImGuiWindow"][32]["name"] = "ScrollTargetCenterRatio" -defs["structs"]["ImGuiWindow"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][32]["name"] = "ChildId" +defs["structs"]["ImGuiWindow"][32]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][33] = {} -defs["structs"]["ImGuiWindow"][33]["name"] = "ScrollTargetEdgeSnapDist" -defs["structs"]["ImGuiWindow"][33]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][33]["name"] = "PopupId" +defs["structs"]["ImGuiWindow"][33]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][34] = {} -defs["structs"]["ImGuiWindow"][34]["name"] = "ScrollbarSizes" +defs["structs"]["ImGuiWindow"][34]["name"] = "Scroll" defs["structs"]["ImGuiWindow"][34]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][35] = {} -defs["structs"]["ImGuiWindow"][35]["name"] = "ScrollbarX" -defs["structs"]["ImGuiWindow"][35]["type"] = "bool" +defs["structs"]["ImGuiWindow"][35]["name"] = "ScrollMax" +defs["structs"]["ImGuiWindow"][35]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][36] = {} -defs["structs"]["ImGuiWindow"][36]["name"] = "ScrollbarY" -defs["structs"]["ImGuiWindow"][36]["type"] = "bool" +defs["structs"]["ImGuiWindow"][36]["name"] = "ScrollTarget" +defs["structs"]["ImGuiWindow"][36]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][37] = {} -defs["structs"]["ImGuiWindow"][37]["name"] = "ViewportOwned" -defs["structs"]["ImGuiWindow"][37]["type"] = "bool" +defs["structs"]["ImGuiWindow"][37]["name"] = "ScrollTargetCenterRatio" +defs["structs"]["ImGuiWindow"][37]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][38] = {} -defs["structs"]["ImGuiWindow"][38]["name"] = "Active" -defs["structs"]["ImGuiWindow"][38]["type"] = "bool" +defs["structs"]["ImGuiWindow"][38]["name"] = "ScrollTargetEdgeSnapDist" +defs["structs"]["ImGuiWindow"][38]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][39] = {} -defs["structs"]["ImGuiWindow"][39]["name"] = "WasActive" -defs["structs"]["ImGuiWindow"][39]["type"] = "bool" +defs["structs"]["ImGuiWindow"][39]["name"] = "ScrollbarSizes" +defs["structs"]["ImGuiWindow"][39]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][40] = {} -defs["structs"]["ImGuiWindow"][40]["name"] = "WriteAccessed" +defs["structs"]["ImGuiWindow"][40]["name"] = "ScrollbarX" defs["structs"]["ImGuiWindow"][40]["type"] = "bool" defs["structs"]["ImGuiWindow"][41] = {} -defs["structs"]["ImGuiWindow"][41]["name"] = "Collapsed" +defs["structs"]["ImGuiWindow"][41]["name"] = "ScrollbarY" defs["structs"]["ImGuiWindow"][41]["type"] = "bool" defs["structs"]["ImGuiWindow"][42] = {} -defs["structs"]["ImGuiWindow"][42]["name"] = "WantCollapseToggle" +defs["structs"]["ImGuiWindow"][42]["name"] = "ViewportOwned" defs["structs"]["ImGuiWindow"][42]["type"] = "bool" defs["structs"]["ImGuiWindow"][43] = {} -defs["structs"]["ImGuiWindow"][43]["name"] = "SkipItems" +defs["structs"]["ImGuiWindow"][43]["name"] = "Active" defs["structs"]["ImGuiWindow"][43]["type"] = "bool" defs["structs"]["ImGuiWindow"][44] = {} -defs["structs"]["ImGuiWindow"][44]["name"] = "Appearing" +defs["structs"]["ImGuiWindow"][44]["name"] = "WasActive" defs["structs"]["ImGuiWindow"][44]["type"] = "bool" defs["structs"]["ImGuiWindow"][45] = {} -defs["structs"]["ImGuiWindow"][45]["name"] = "Hidden" +defs["structs"]["ImGuiWindow"][45]["name"] = "WriteAccessed" defs["structs"]["ImGuiWindow"][45]["type"] = "bool" defs["structs"]["ImGuiWindow"][46] = {} -defs["structs"]["ImGuiWindow"][46]["name"] = "IsFallbackWindow" +defs["structs"]["ImGuiWindow"][46]["name"] = "Collapsed" defs["structs"]["ImGuiWindow"][46]["type"] = "bool" defs["structs"]["ImGuiWindow"][47] = {} -defs["structs"]["ImGuiWindow"][47]["name"] = "IsExplicitChild" +defs["structs"]["ImGuiWindow"][47]["name"] = "WantCollapseToggle" defs["structs"]["ImGuiWindow"][47]["type"] = "bool" defs["structs"]["ImGuiWindow"][48] = {} -defs["structs"]["ImGuiWindow"][48]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][48]["name"] = "SkipItems" defs["structs"]["ImGuiWindow"][48]["type"] = "bool" defs["structs"]["ImGuiWindow"][49] = {} -defs["structs"]["ImGuiWindow"][49]["name"] = "ResizeBorderHeld" -defs["structs"]["ImGuiWindow"][49]["type"] = "signed char" +defs["structs"]["ImGuiWindow"][49]["name"] = "SkipRefresh" +defs["structs"]["ImGuiWindow"][49]["type"] = "bool" defs["structs"]["ImGuiWindow"][50] = {} -defs["structs"]["ImGuiWindow"][50]["name"] = "BeginCount" -defs["structs"]["ImGuiWindow"][50]["type"] = "short" +defs["structs"]["ImGuiWindow"][50]["name"] = "Appearing" +defs["structs"]["ImGuiWindow"][50]["type"] = "bool" defs["structs"]["ImGuiWindow"][51] = {} -defs["structs"]["ImGuiWindow"][51]["name"] = "BeginCountPreviousFrame" -defs["structs"]["ImGuiWindow"][51]["type"] = "short" +defs["structs"]["ImGuiWindow"][51]["name"] = "Hidden" +defs["structs"]["ImGuiWindow"][51]["type"] = "bool" defs["structs"]["ImGuiWindow"][52] = {} -defs["structs"]["ImGuiWindow"][52]["name"] = "BeginOrderWithinParent" -defs["structs"]["ImGuiWindow"][52]["type"] = "short" +defs["structs"]["ImGuiWindow"][52]["name"] = "IsFallbackWindow" +defs["structs"]["ImGuiWindow"][52]["type"] = "bool" defs["structs"]["ImGuiWindow"][53] = {} -defs["structs"]["ImGuiWindow"][53]["name"] = "BeginOrderWithinContext" -defs["structs"]["ImGuiWindow"][53]["type"] = "short" +defs["structs"]["ImGuiWindow"][53]["name"] = "IsExplicitChild" +defs["structs"]["ImGuiWindow"][53]["type"] = "bool" defs["structs"]["ImGuiWindow"][54] = {} -defs["structs"]["ImGuiWindow"][54]["name"] = "FocusOrder" -defs["structs"]["ImGuiWindow"][54]["type"] = "short" +defs["structs"]["ImGuiWindow"][54]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][54]["type"] = "bool" defs["structs"]["ImGuiWindow"][55] = {} -defs["structs"]["ImGuiWindow"][55]["name"] = "PopupId" -defs["structs"]["ImGuiWindow"][55]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][55]["name"] = "ResizeBorderHovered" +defs["structs"]["ImGuiWindow"][55]["type"] = "signed char" defs["structs"]["ImGuiWindow"][56] = {} -defs["structs"]["ImGuiWindow"][56]["name"] = "AutoFitFramesX" -defs["structs"]["ImGuiWindow"][56]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][56]["name"] = "ResizeBorderHeld" +defs["structs"]["ImGuiWindow"][56]["type"] = "signed char" defs["structs"]["ImGuiWindow"][57] = {} -defs["structs"]["ImGuiWindow"][57]["name"] = "AutoFitFramesY" -defs["structs"]["ImGuiWindow"][57]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][57]["name"] = "BeginCount" +defs["structs"]["ImGuiWindow"][57]["type"] = "short" defs["structs"]["ImGuiWindow"][58] = {} -defs["structs"]["ImGuiWindow"][58]["name"] = "AutoFitChildAxises" -defs["structs"]["ImGuiWindow"][58]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][58]["name"] = "BeginCountPreviousFrame" +defs["structs"]["ImGuiWindow"][58]["type"] = "short" defs["structs"]["ImGuiWindow"][59] = {} -defs["structs"]["ImGuiWindow"][59]["name"] = "AutoFitOnlyGrows" -defs["structs"]["ImGuiWindow"][59]["type"] = "bool" +defs["structs"]["ImGuiWindow"][59]["name"] = "BeginOrderWithinParent" +defs["structs"]["ImGuiWindow"][59]["type"] = "short" defs["structs"]["ImGuiWindow"][60] = {} -defs["structs"]["ImGuiWindow"][60]["name"] = "AutoPosLastDirection" -defs["structs"]["ImGuiWindow"][60]["type"] = "ImGuiDir" +defs["structs"]["ImGuiWindow"][60]["name"] = "BeginOrderWithinContext" +defs["structs"]["ImGuiWindow"][60]["type"] = "short" defs["structs"]["ImGuiWindow"][61] = {} -defs["structs"]["ImGuiWindow"][61]["name"] = "HiddenFramesCanSkipItems" -defs["structs"]["ImGuiWindow"][61]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][61]["name"] = "FocusOrder" +defs["structs"]["ImGuiWindow"][61]["type"] = "short" defs["structs"]["ImGuiWindow"][62] = {} -defs["structs"]["ImGuiWindow"][62]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][62]["name"] = "AutoFitFramesX" defs["structs"]["ImGuiWindow"][62]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][63] = {} -defs["structs"]["ImGuiWindow"][63]["name"] = "HiddenFramesForRenderOnly" +defs["structs"]["ImGuiWindow"][63]["name"] = "AutoFitFramesY" defs["structs"]["ImGuiWindow"][63]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][64] = {} -defs["structs"]["ImGuiWindow"][64]["name"] = "DisableInputsFrames" -defs["structs"]["ImGuiWindow"][64]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][64]["name"] = "AutoFitOnlyGrows" +defs["structs"]["ImGuiWindow"][64]["type"] = "bool" defs["structs"]["ImGuiWindow"][65] = {} -defs["structs"]["ImGuiWindow"][65]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][65]["name"] = "SetWindowPosAllowFlags" -defs["structs"]["ImGuiWindow"][65]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][65]["name"] = "AutoPosLastDirection" +defs["structs"]["ImGuiWindow"][65]["type"] = "ImGuiDir" defs["structs"]["ImGuiWindow"][66] = {} -defs["structs"]["ImGuiWindow"][66]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][66]["name"] = "SetWindowSizeAllowFlags" -defs["structs"]["ImGuiWindow"][66]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][66]["name"] = "HiddenFramesCanSkipItems" +defs["structs"]["ImGuiWindow"][66]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][67] = {} -defs["structs"]["ImGuiWindow"][67]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][67]["name"] = "SetWindowCollapsedAllowFlags" -defs["structs"]["ImGuiWindow"][67]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][67]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][67]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][68] = {} -defs["structs"]["ImGuiWindow"][68]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][68]["name"] = "SetWindowDockAllowFlags" -defs["structs"]["ImGuiWindow"][68]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][68]["name"] = "HiddenFramesForRenderOnly" +defs["structs"]["ImGuiWindow"][68]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][69] = {} -defs["structs"]["ImGuiWindow"][69]["name"] = "SetWindowPosVal" -defs["structs"]["ImGuiWindow"][69]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][69]["name"] = "DisableInputsFrames" +defs["structs"]["ImGuiWindow"][69]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][70] = {} -defs["structs"]["ImGuiWindow"][70]["name"] = "SetWindowPosPivot" -defs["structs"]["ImGuiWindow"][70]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][70]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][70]["name"] = "SetWindowPosAllowFlags" +defs["structs"]["ImGuiWindow"][70]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][71] = {} -defs["structs"]["ImGuiWindow"][71]["name"] = "IDStack" -defs["structs"]["ImGuiWindow"][71]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiWindow"][71]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiWindow"][71]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][71]["name"] = "SetWindowSizeAllowFlags" +defs["structs"]["ImGuiWindow"][71]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][72] = {} -defs["structs"]["ImGuiWindow"][72]["name"] = "DC" -defs["structs"]["ImGuiWindow"][72]["type"] = "ImGuiWindowTempData" +defs["structs"]["ImGuiWindow"][72]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][72]["name"] = "SetWindowCollapsedAllowFlags" +defs["structs"]["ImGuiWindow"][72]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][73] = {} -defs["structs"]["ImGuiWindow"][73]["name"] = "OuterRectClipped" -defs["structs"]["ImGuiWindow"][73]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][73]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][73]["name"] = "SetWindowDockAllowFlags" +defs["structs"]["ImGuiWindow"][73]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][74] = {} -defs["structs"]["ImGuiWindow"][74]["name"] = "InnerRect" -defs["structs"]["ImGuiWindow"][74]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][74]["name"] = "SetWindowPosVal" +defs["structs"]["ImGuiWindow"][74]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][75] = {} -defs["structs"]["ImGuiWindow"][75]["name"] = "InnerClipRect" -defs["structs"]["ImGuiWindow"][75]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][75]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][75]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][76] = {} -defs["structs"]["ImGuiWindow"][76]["name"] = "WorkRect" -defs["structs"]["ImGuiWindow"][76]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][76]["name"] = "IDStack" +defs["structs"]["ImGuiWindow"][76]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][76]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiWindow"][77] = {} -defs["structs"]["ImGuiWindow"][77]["name"] = "ParentWorkRect" -defs["structs"]["ImGuiWindow"][77]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][77]["name"] = "DC" +defs["structs"]["ImGuiWindow"][77]["type"] = "ImGuiWindowTempData" defs["structs"]["ImGuiWindow"][78] = {} -defs["structs"]["ImGuiWindow"][78]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][78]["name"] = "OuterRectClipped" defs["structs"]["ImGuiWindow"][78]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][79] = {} -defs["structs"]["ImGuiWindow"][79]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][79]["name"] = "InnerRect" defs["structs"]["ImGuiWindow"][79]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][80] = {} -defs["structs"]["ImGuiWindow"][80]["name"] = "HitTestHoleSize" -defs["structs"]["ImGuiWindow"][80]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][80]["name"] = "InnerClipRect" +defs["structs"]["ImGuiWindow"][80]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][81] = {} -defs["structs"]["ImGuiWindow"][81]["name"] = "HitTestHoleOffset" -defs["structs"]["ImGuiWindow"][81]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][81]["name"] = "WorkRect" +defs["structs"]["ImGuiWindow"][81]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][82] = {} -defs["structs"]["ImGuiWindow"][82]["name"] = "LastFrameActive" -defs["structs"]["ImGuiWindow"][82]["type"] = "int" +defs["structs"]["ImGuiWindow"][82]["name"] = "ParentWorkRect" +defs["structs"]["ImGuiWindow"][82]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][83] = {} -defs["structs"]["ImGuiWindow"][83]["name"] = "LastFrameJustFocused" -defs["structs"]["ImGuiWindow"][83]["type"] = "int" +defs["structs"]["ImGuiWindow"][83]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][83]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][84] = {} -defs["structs"]["ImGuiWindow"][84]["name"] = "LastTimeActive" -defs["structs"]["ImGuiWindow"][84]["type"] = "float" +defs["structs"]["ImGuiWindow"][84]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][84]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][85] = {} -defs["structs"]["ImGuiWindow"][85]["name"] = "ItemWidthDefault" -defs["structs"]["ImGuiWindow"][85]["type"] = "float" +defs["structs"]["ImGuiWindow"][85]["name"] = "HitTestHoleSize" +defs["structs"]["ImGuiWindow"][85]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][86] = {} -defs["structs"]["ImGuiWindow"][86]["name"] = "StateStorage" -defs["structs"]["ImGuiWindow"][86]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiWindow"][86]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][86]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][87] = {} -defs["structs"]["ImGuiWindow"][87]["name"] = "ColumnsStorage" -defs["structs"]["ImGuiWindow"][87]["template_type"] = "ImGuiOldColumns" -defs["structs"]["ImGuiWindow"][87]["type"] = "ImVector_ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][87]["name"] = "LastFrameActive" +defs["structs"]["ImGuiWindow"][87]["type"] = "int" defs["structs"]["ImGuiWindow"][88] = {} -defs["structs"]["ImGuiWindow"][88]["name"] = "FontWindowScale" -defs["structs"]["ImGuiWindow"][88]["type"] = "float" +defs["structs"]["ImGuiWindow"][88]["name"] = "LastFrameJustFocused" +defs["structs"]["ImGuiWindow"][88]["type"] = "int" defs["structs"]["ImGuiWindow"][89] = {} -defs["structs"]["ImGuiWindow"][89]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][89]["name"] = "LastTimeActive" defs["structs"]["ImGuiWindow"][89]["type"] = "float" defs["structs"]["ImGuiWindow"][90] = {} -defs["structs"]["ImGuiWindow"][90]["name"] = "SettingsOffset" -defs["structs"]["ImGuiWindow"][90]["type"] = "int" +defs["structs"]["ImGuiWindow"][90]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][90]["type"] = "float" defs["structs"]["ImGuiWindow"][91] = {} -defs["structs"]["ImGuiWindow"][91]["name"] = "DrawList" -defs["structs"]["ImGuiWindow"][91]["type"] = "ImDrawList*" +defs["structs"]["ImGuiWindow"][91]["name"] = "StateStorage" +defs["structs"]["ImGuiWindow"][91]["type"] = "ImGuiStorage" defs["structs"]["ImGuiWindow"][92] = {} -defs["structs"]["ImGuiWindow"][92]["name"] = "DrawListInst" -defs["structs"]["ImGuiWindow"][92]["type"] = "ImDrawList" +defs["structs"]["ImGuiWindow"][92]["name"] = "ColumnsStorage" +defs["structs"]["ImGuiWindow"][92]["template_type"] = "ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][92]["type"] = "ImVector_ImGuiOldColumns" defs["structs"]["ImGuiWindow"][93] = {} -defs["structs"]["ImGuiWindow"][93]["name"] = "ParentWindow" -defs["structs"]["ImGuiWindow"][93]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][93]["name"] = "FontWindowScale" +defs["structs"]["ImGuiWindow"][93]["type"] = "float" defs["structs"]["ImGuiWindow"][94] = {} -defs["structs"]["ImGuiWindow"][94]["name"] = "ParentWindowInBeginStack" -defs["structs"]["ImGuiWindow"][94]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][94]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][94]["type"] = "float" defs["structs"]["ImGuiWindow"][95] = {} -defs["structs"]["ImGuiWindow"][95]["name"] = "RootWindow" -defs["structs"]["ImGuiWindow"][95]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][95]["name"] = "SettingsOffset" +defs["structs"]["ImGuiWindow"][95]["type"] = "int" defs["structs"]["ImGuiWindow"][96] = {} -defs["structs"]["ImGuiWindow"][96]["name"] = "RootWindowPopupTree" -defs["structs"]["ImGuiWindow"][96]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][96]["name"] = "DrawList" +defs["structs"]["ImGuiWindow"][96]["type"] = "ImDrawList*" defs["structs"]["ImGuiWindow"][97] = {} -defs["structs"]["ImGuiWindow"][97]["name"] = "RootWindowDockTree" -defs["structs"]["ImGuiWindow"][97]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][97]["name"] = "DrawListInst" +defs["structs"]["ImGuiWindow"][97]["type"] = "ImDrawList" defs["structs"]["ImGuiWindow"][98] = {} -defs["structs"]["ImGuiWindow"][98]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][98]["name"] = "ParentWindow" defs["structs"]["ImGuiWindow"][98]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][99] = {} -defs["structs"]["ImGuiWindow"][99]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][99]["name"] = "ParentWindowInBeginStack" defs["structs"]["ImGuiWindow"][99]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][100] = {} -defs["structs"]["ImGuiWindow"][100]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][100]["name"] = "RootWindow" defs["structs"]["ImGuiWindow"][100]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][101] = {} -defs["structs"]["ImGuiWindow"][101]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][101]["size"] = 2 -defs["structs"]["ImGuiWindow"][101]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][101]["name"] = "RootWindowPopupTree" +defs["structs"]["ImGuiWindow"][101]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][102] = {} -defs["structs"]["ImGuiWindow"][102]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][102]["size"] = 2 -defs["structs"]["ImGuiWindow"][102]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][102]["name"] = "RootWindowDockTree" +defs["structs"]["ImGuiWindow"][102]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][103] = {} -defs["structs"]["ImGuiWindow"][103]["name"] = "NavRootFocusScopeId" -defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][103]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][104] = {} -defs["structs"]["ImGuiWindow"][104]["name"] = "MemoryDrawListIdxCapacity" -defs["structs"]["ImGuiWindow"][104]["type"] = "int" +defs["structs"]["ImGuiWindow"][104]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][104]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][105] = {} -defs["structs"]["ImGuiWindow"][105]["name"] = "MemoryDrawListVtxCapacity" -defs["structs"]["ImGuiWindow"][105]["type"] = "int" +defs["structs"]["ImGuiWindow"][105]["name"] = "ParentWindowForFocusRoute" +defs["structs"]["ImGuiWindow"][105]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][106] = {} -defs["structs"]["ImGuiWindow"][106]["name"] = "MemoryCompacted" -defs["structs"]["ImGuiWindow"][106]["type"] = "bool" +defs["structs"]["ImGuiWindow"][106]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][106]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][107] = {} -defs["structs"]["ImGuiWindow"][107]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][107]["name"] = "DockIsActive" -defs["structs"]["ImGuiWindow"][107]["type"] = "bool" +defs["structs"]["ImGuiWindow"][107]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][107]["size"] = 2 +defs["structs"]["ImGuiWindow"][107]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][108] = {} -defs["structs"]["ImGuiWindow"][108]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][108]["name"] = "DockNodeIsVisible" -defs["structs"]["ImGuiWindow"][108]["type"] = "bool" +defs["structs"]["ImGuiWindow"][108]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][108]["size"] = 2 +defs["structs"]["ImGuiWindow"][108]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][109] = {} -defs["structs"]["ImGuiWindow"][109]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][109]["name"] = "DockTabIsVisible" -defs["structs"]["ImGuiWindow"][109]["type"] = "bool" +defs["structs"]["ImGuiWindow"][109]["name"] = "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][109]["size"] = 2 +defs["structs"]["ImGuiWindow"][109]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][110] = {} -defs["structs"]["ImGuiWindow"][110]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][110]["name"] = "DockTabWantClose" -defs["structs"]["ImGuiWindow"][110]["type"] = "bool" +defs["structs"]["ImGuiWindow"][110]["name"] = "NavRootFocusScopeId" +defs["structs"]["ImGuiWindow"][110]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][111] = {} -defs["structs"]["ImGuiWindow"][111]["name"] = "DockOrder" -defs["structs"]["ImGuiWindow"][111]["type"] = "short" +defs["structs"]["ImGuiWindow"][111]["name"] = "MemoryDrawListIdxCapacity" +defs["structs"]["ImGuiWindow"][111]["type"] = "int" defs["structs"]["ImGuiWindow"][112] = {} -defs["structs"]["ImGuiWindow"][112]["name"] = "DockStyle" -defs["structs"]["ImGuiWindow"][112]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][112]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][112]["type"] = "int" defs["structs"]["ImGuiWindow"][113] = {} -defs["structs"]["ImGuiWindow"][113]["name"] = "DockNode" -defs["structs"]["ImGuiWindow"][113]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][113]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiWindow"][113]["type"] = "bool" defs["structs"]["ImGuiWindow"][114] = {} -defs["structs"]["ImGuiWindow"][114]["name"] = "DockNodeAsHost" -defs["structs"]["ImGuiWindow"][114]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][114]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][114]["name"] = "DockIsActive" +defs["structs"]["ImGuiWindow"][114]["type"] = "bool" defs["structs"]["ImGuiWindow"][115] = {} -defs["structs"]["ImGuiWindow"][115]["name"] = "DockId" -defs["structs"]["ImGuiWindow"][115]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][115]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][115]["name"] = "DockNodeIsVisible" +defs["structs"]["ImGuiWindow"][115]["type"] = "bool" defs["structs"]["ImGuiWindow"][116] = {} -defs["structs"]["ImGuiWindow"][116]["name"] = "DockTabItemStatusFlags" -defs["structs"]["ImGuiWindow"][116]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][116]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][116]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][116]["type"] = "bool" defs["structs"]["ImGuiWindow"][117] = {} -defs["structs"]["ImGuiWindow"][117]["name"] = "DockTabItemRect" -defs["structs"]["ImGuiWindow"][117]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][117]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][117]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][117]["type"] = "bool" +defs["structs"]["ImGuiWindow"][118] = {} +defs["structs"]["ImGuiWindow"][118]["name"] = "DockOrder" +defs["structs"]["ImGuiWindow"][118]["type"] = "short" +defs["structs"]["ImGuiWindow"][119] = {} +defs["structs"]["ImGuiWindow"][119]["name"] = "DockStyle" +defs["structs"]["ImGuiWindow"][119]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][120] = {} +defs["structs"]["ImGuiWindow"][120]["name"] = "DockNode" +defs["structs"]["ImGuiWindow"][120]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][121] = {} +defs["structs"]["ImGuiWindow"][121]["name"] = "DockNodeAsHost" +defs["structs"]["ImGuiWindow"][121]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][122] = {} +defs["structs"]["ImGuiWindow"][122]["name"] = "DockId" +defs["structs"]["ImGuiWindow"][122]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][123] = {} +defs["structs"]["ImGuiWindow"][123]["name"] = "DockTabItemStatusFlags" +defs["structs"]["ImGuiWindow"][123]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][124] = {} +defs["structs"]["ImGuiWindow"][124]["name"] = "DockTabItemRect" +defs["structs"]["ImGuiWindow"][124]["type"] = "ImRect" defs["structs"]["ImGuiWindowClass"] = {} defs["structs"]["ImGuiWindowClass"][1] = {} defs["structs"]["ImGuiWindowClass"][1]["name"] = "ClassId" @@ -7721,27 +8904,30 @@ defs["structs"]["ImGuiWindowClass"][2] = {} defs["structs"]["ImGuiWindowClass"][2]["name"] = "ParentViewportId" defs["structs"]["ImGuiWindowClass"][2]["type"] = "ImGuiID" defs["structs"]["ImGuiWindowClass"][3] = {} -defs["structs"]["ImGuiWindowClass"][3]["name"] = "ViewportFlagsOverrideSet" -defs["structs"]["ImGuiWindowClass"][3]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiWindowClass"][3]["name"] = "FocusRouteParentWindowId" +defs["structs"]["ImGuiWindowClass"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiWindowClass"][4] = {} -defs["structs"]["ImGuiWindowClass"][4]["name"] = "ViewportFlagsOverrideClear" +defs["structs"]["ImGuiWindowClass"][4]["name"] = "ViewportFlagsOverrideSet" defs["structs"]["ImGuiWindowClass"][4]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiWindowClass"][5] = {} -defs["structs"]["ImGuiWindowClass"][5]["name"] = "TabItemFlagsOverrideSet" -defs["structs"]["ImGuiWindowClass"][5]["type"] = "ImGuiTabItemFlags" +defs["structs"]["ImGuiWindowClass"][5]["name"] = "ViewportFlagsOverrideClear" +defs["structs"]["ImGuiWindowClass"][5]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiWindowClass"][6] = {} -defs["structs"]["ImGuiWindowClass"][6]["name"] = "DockNodeFlagsOverrideSet" -defs["structs"]["ImGuiWindowClass"][6]["type"] = "ImGuiDockNodeFlags" +defs["structs"]["ImGuiWindowClass"][6]["name"] = "TabItemFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][6]["type"] = "ImGuiTabItemFlags" defs["structs"]["ImGuiWindowClass"][7] = {} -defs["structs"]["ImGuiWindowClass"][7]["name"] = "DockingAlwaysTabBar" -defs["structs"]["ImGuiWindowClass"][7]["type"] = "bool" +defs["structs"]["ImGuiWindowClass"][7]["name"] = "DockNodeFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][7]["type"] = "ImGuiDockNodeFlags" defs["structs"]["ImGuiWindowClass"][8] = {} -defs["structs"]["ImGuiWindowClass"][8]["name"] = "DockingAllowUnclassed" +defs["structs"]["ImGuiWindowClass"][8]["name"] = "DockingAlwaysTabBar" defs["structs"]["ImGuiWindowClass"][8]["type"] = "bool" +defs["structs"]["ImGuiWindowClass"][9] = {} +defs["structs"]["ImGuiWindowClass"][9]["name"] = "DockingAllowUnclassed" +defs["structs"]["ImGuiWindowClass"][9]["type"] = "bool" defs["structs"]["ImGuiWindowDockStyle"] = {} defs["structs"]["ImGuiWindowDockStyle"][1] = {} defs["structs"]["ImGuiWindowDockStyle"][1]["name"] = "Colors[ImGuiWindowDockStyleCol_COUNT]" -defs["structs"]["ImGuiWindowDockStyle"][1]["size"] = 6 +defs["structs"]["ImGuiWindowDockStyle"][1]["size"] = 8 defs["structs"]["ImGuiWindowDockStyle"][1]["type"] = "ImU32" defs["structs"]["ImGuiWindowSettings"] = {} defs["structs"]["ImGuiWindowSettings"][1] = {} @@ -7772,8 +8958,14 @@ defs["structs"]["ImGuiWindowSettings"][9] = {} defs["structs"]["ImGuiWindowSettings"][9]["name"] = "Collapsed" defs["structs"]["ImGuiWindowSettings"][9]["type"] = "bool" defs["structs"]["ImGuiWindowSettings"][10] = {} -defs["structs"]["ImGuiWindowSettings"][10]["name"] = "WantApply" +defs["structs"]["ImGuiWindowSettings"][10]["name"] = "IsChild" defs["structs"]["ImGuiWindowSettings"][10]["type"] = "bool" +defs["structs"]["ImGuiWindowSettings"][11] = {} +defs["structs"]["ImGuiWindowSettings"][11]["name"] = "WantApply" +defs["structs"]["ImGuiWindowSettings"][11]["type"] = "bool" +defs["structs"]["ImGuiWindowSettings"][12] = {} +defs["structs"]["ImGuiWindowSettings"][12]["name"] = "WantDelete" +defs["structs"]["ImGuiWindowSettings"][12]["type"] = "bool" defs["structs"]["ImGuiWindowStackData"] = {} defs["structs"]["ImGuiWindowStackData"][1] = {} defs["structs"]["ImGuiWindowStackData"][1]["name"] = "Window" @@ -7784,6 +8976,9 @@ defs["structs"]["ImGuiWindowStackData"][2]["type"] = "ImGuiLastItemData" defs["structs"]["ImGuiWindowStackData"][3] = {} defs["structs"]["ImGuiWindowStackData"][3]["name"] = "StackSizesOnBegin" defs["structs"]["ImGuiWindowStackData"][3]["type"] = "ImGuiStackSizes" +defs["structs"]["ImGuiWindowStackData"][4] = {} +defs["structs"]["ImGuiWindowStackData"][4]["name"] = "DisabledOverrideReenable" +defs["structs"]["ImGuiWindowStackData"][4]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"] = {} defs["structs"]["ImGuiWindowTempData"][1] = {} defs["structs"]["ImGuiWindowTempData"][1]["name"] = "CursorPos" @@ -7840,59 +9035,65 @@ defs["structs"]["ImGuiWindowTempData"][18] = {} defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavLayersActiveMaskNext" defs["structs"]["ImGuiWindowTempData"][18]["type"] = "short" defs["structs"]["ImGuiWindowTempData"][19] = {} -defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavHideHighlightOneFrame" +defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavIsScrollPushableX" defs["structs"]["ImGuiWindowTempData"][19]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][20] = {} -defs["structs"]["ImGuiWindowTempData"][20]["name"] = "NavHasScroll" +defs["structs"]["ImGuiWindowTempData"][20]["name"] = "NavHideHighlightOneFrame" defs["structs"]["ImGuiWindowTempData"][20]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][21] = {} -defs["structs"]["ImGuiWindowTempData"][21]["name"] = "MenuBarAppending" +defs["structs"]["ImGuiWindowTempData"][21]["name"] = "NavWindowHasScrollY" defs["structs"]["ImGuiWindowTempData"][21]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][22] = {} -defs["structs"]["ImGuiWindowTempData"][22]["name"] = "MenuBarOffset" -defs["structs"]["ImGuiWindowTempData"][22]["type"] = "ImVec2" +defs["structs"]["ImGuiWindowTempData"][22]["name"] = "MenuBarAppending" +defs["structs"]["ImGuiWindowTempData"][22]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][23] = {} -defs["structs"]["ImGuiWindowTempData"][23]["name"] = "MenuColumns" -defs["structs"]["ImGuiWindowTempData"][23]["type"] = "ImGuiMenuColumns" +defs["structs"]["ImGuiWindowTempData"][23]["name"] = "MenuBarOffset" +defs["structs"]["ImGuiWindowTempData"][23]["type"] = "ImVec2" defs["structs"]["ImGuiWindowTempData"][24] = {} -defs["structs"]["ImGuiWindowTempData"][24]["name"] = "TreeDepth" -defs["structs"]["ImGuiWindowTempData"][24]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][24]["name"] = "MenuColumns" +defs["structs"]["ImGuiWindowTempData"][24]["type"] = "ImGuiMenuColumns" defs["structs"]["ImGuiWindowTempData"][25] = {} -defs["structs"]["ImGuiWindowTempData"][25]["name"] = "TreeJumpToParentOnPopMask" -defs["structs"]["ImGuiWindowTempData"][25]["type"] = "ImU32" +defs["structs"]["ImGuiWindowTempData"][25]["name"] = "TreeDepth" +defs["structs"]["ImGuiWindowTempData"][25]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][26] = {} -defs["structs"]["ImGuiWindowTempData"][26]["name"] = "ChildWindows" -defs["structs"]["ImGuiWindowTempData"][26]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiWindowTempData"][26]["name"] = "TreeHasStackDataDepthMask" +defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImU32" defs["structs"]["ImGuiWindowTempData"][27] = {} -defs["structs"]["ImGuiWindowTempData"][27]["name"] = "StateStorage" -defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImGuiStorage*" +defs["structs"]["ImGuiWindowTempData"][27]["name"] = "ChildWindows" +defs["structs"]["ImGuiWindowTempData"][27]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiWindowTempData"][28] = {} -defs["structs"]["ImGuiWindowTempData"][28]["name"] = "CurrentColumns" -defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImGuiOldColumns*" +defs["structs"]["ImGuiWindowTempData"][28]["name"] = "StateStorage" +defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImGuiStorage*" defs["structs"]["ImGuiWindowTempData"][29] = {} -defs["structs"]["ImGuiWindowTempData"][29]["name"] = "CurrentTableIdx" -defs["structs"]["ImGuiWindowTempData"][29]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][29]["name"] = "CurrentColumns" +defs["structs"]["ImGuiWindowTempData"][29]["type"] = "ImGuiOldColumns*" defs["structs"]["ImGuiWindowTempData"][30] = {} -defs["structs"]["ImGuiWindowTempData"][30]["name"] = "LayoutType" -defs["structs"]["ImGuiWindowTempData"][30]["type"] = "ImGuiLayoutType" +defs["structs"]["ImGuiWindowTempData"][30]["name"] = "CurrentTableIdx" +defs["structs"]["ImGuiWindowTempData"][30]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][31] = {} -defs["structs"]["ImGuiWindowTempData"][31]["name"] = "ParentLayoutType" +defs["structs"]["ImGuiWindowTempData"][31]["name"] = "LayoutType" defs["structs"]["ImGuiWindowTempData"][31]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][32] = {} -defs["structs"]["ImGuiWindowTempData"][32]["name"] = "ItemWidth" -defs["structs"]["ImGuiWindowTempData"][32]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][32]["name"] = "ParentLayoutType" +defs["structs"]["ImGuiWindowTempData"][32]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][33] = {} -defs["structs"]["ImGuiWindowTempData"][33]["name"] = "TextWrapPos" -defs["structs"]["ImGuiWindowTempData"][33]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][33]["name"] = "ModalDimBgColor" +defs["structs"]["ImGuiWindowTempData"][33]["type"] = "ImU32" defs["structs"]["ImGuiWindowTempData"][34] = {} -defs["structs"]["ImGuiWindowTempData"][34]["name"] = "ItemWidthStack" -defs["structs"]["ImGuiWindowTempData"][34]["template_type"] = "float" -defs["structs"]["ImGuiWindowTempData"][34]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][34]["name"] = "ItemWidth" +defs["structs"]["ImGuiWindowTempData"][34]["type"] = "float" defs["structs"]["ImGuiWindowTempData"][35] = {} -defs["structs"]["ImGuiWindowTempData"][35]["name"] = "TextWrapPosStack" -defs["structs"]["ImGuiWindowTempData"][35]["template_type"] = "float" -defs["structs"]["ImGuiWindowTempData"][35]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][35]["name"] = "TextWrapPos" +defs["structs"]["ImGuiWindowTempData"][35]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][36] = {} +defs["structs"]["ImGuiWindowTempData"][36]["name"] = "ItemWidthStack" +defs["structs"]["ImGuiWindowTempData"][36]["template_type"] = "float" +defs["structs"]["ImGuiWindowTempData"][36]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][37] = {} +defs["structs"]["ImGuiWindowTempData"][37]["name"] = "TextWrapPosStack" +defs["structs"]["ImGuiWindowTempData"][37]["template_type"] = "float" +defs["structs"]["ImGuiWindowTempData"][37]["type"] = "ImVector_float" defs["structs"]["ImRect"] = {} defs["structs"]["ImRect"][1] = {} defs["structs"]["ImRect"][1]["name"] = "Min" @@ -7931,102 +9132,6 @@ defs["structs"]["ImVec4"][3]["type"] = "float" defs["structs"]["ImVec4"][4] = {} defs["structs"]["ImVec4"][4]["name"] = "w" defs["structs"]["ImVec4"][4]["type"] = "float" -defs["structs"]["STB_TexteditState"] = {} -defs["structs"]["STB_TexteditState"][1] = {} -defs["structs"]["STB_TexteditState"][1]["name"] = "cursor" -defs["structs"]["STB_TexteditState"][1]["type"] = "int" -defs["structs"]["STB_TexteditState"][2] = {} -defs["structs"]["STB_TexteditState"][2]["name"] = "select_start" -defs["structs"]["STB_TexteditState"][2]["type"] = "int" -defs["structs"]["STB_TexteditState"][3] = {} -defs["structs"]["STB_TexteditState"][3]["name"] = "select_end" -defs["structs"]["STB_TexteditState"][3]["type"] = "int" -defs["structs"]["STB_TexteditState"][4] = {} -defs["structs"]["STB_TexteditState"][4]["name"] = "insert_mode" -defs["structs"]["STB_TexteditState"][4]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][5] = {} -defs["structs"]["STB_TexteditState"][5]["name"] = "row_count_per_page" -defs["structs"]["STB_TexteditState"][5]["type"] = "int" -defs["structs"]["STB_TexteditState"][6] = {} -defs["structs"]["STB_TexteditState"][6]["name"] = "cursor_at_end_of_line" -defs["structs"]["STB_TexteditState"][6]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][7] = {} -defs["structs"]["STB_TexteditState"][7]["name"] = "initialized" -defs["structs"]["STB_TexteditState"][7]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][8] = {} -defs["structs"]["STB_TexteditState"][8]["name"] = "has_preferred_x" -defs["structs"]["STB_TexteditState"][8]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][9] = {} -defs["structs"]["STB_TexteditState"][9]["name"] = "single_line" -defs["structs"]["STB_TexteditState"][9]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][10] = {} -defs["structs"]["STB_TexteditState"][10]["name"] = "padding1" -defs["structs"]["STB_TexteditState"][10]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][11] = {} -defs["structs"]["STB_TexteditState"][11]["name"] = "padding2" -defs["structs"]["STB_TexteditState"][11]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][12] = {} -defs["structs"]["STB_TexteditState"][12]["name"] = "padding3" -defs["structs"]["STB_TexteditState"][12]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][13] = {} -defs["structs"]["STB_TexteditState"][13]["name"] = "preferred_x" -defs["structs"]["STB_TexteditState"][13]["type"] = "float" -defs["structs"]["STB_TexteditState"][14] = {} -defs["structs"]["STB_TexteditState"][14]["name"] = "undostate" -defs["structs"]["STB_TexteditState"][14]["type"] = "StbUndoState" -defs["structs"]["StbTexteditRow"] = {} -defs["structs"]["StbTexteditRow"][1] = {} -defs["structs"]["StbTexteditRow"][1]["name"] = "x0" -defs["structs"]["StbTexteditRow"][1]["type"] = "float" -defs["structs"]["StbTexteditRow"][2] = {} -defs["structs"]["StbTexteditRow"][2]["name"] = "x1" -defs["structs"]["StbTexteditRow"][2]["type"] = "float" -defs["structs"]["StbTexteditRow"][3] = {} -defs["structs"]["StbTexteditRow"][3]["name"] = "baseline_y_delta" -defs["structs"]["StbTexteditRow"][3]["type"] = "float" -defs["structs"]["StbTexteditRow"][4] = {} -defs["structs"]["StbTexteditRow"][4]["name"] = "ymin" -defs["structs"]["StbTexteditRow"][4]["type"] = "float" -defs["structs"]["StbTexteditRow"][5] = {} -defs["structs"]["StbTexteditRow"][5]["name"] = "ymax" -defs["structs"]["StbTexteditRow"][5]["type"] = "float" -defs["structs"]["StbTexteditRow"][6] = {} -defs["structs"]["StbTexteditRow"][6]["name"] = "num_chars" -defs["structs"]["StbTexteditRow"][6]["type"] = "int" -defs["structs"]["StbUndoRecord"] = {} -defs["structs"]["StbUndoRecord"][1] = {} -defs["structs"]["StbUndoRecord"][1]["name"] = "where" -defs["structs"]["StbUndoRecord"][1]["type"] = "int" -defs["structs"]["StbUndoRecord"][2] = {} -defs["structs"]["StbUndoRecord"][2]["name"] = "insert_length" -defs["structs"]["StbUndoRecord"][2]["type"] = "int" -defs["structs"]["StbUndoRecord"][3] = {} -defs["structs"]["StbUndoRecord"][3]["name"] = "delete_length" -defs["structs"]["StbUndoRecord"][3]["type"] = "int" -defs["structs"]["StbUndoRecord"][4] = {} -defs["structs"]["StbUndoRecord"][4]["name"] = "char_storage" -defs["structs"]["StbUndoRecord"][4]["type"] = "int" -defs["structs"]["StbUndoState"] = {} -defs["structs"]["StbUndoState"][1] = {} -defs["structs"]["StbUndoState"][1]["name"] = "undo_rec[99]" -defs["structs"]["StbUndoState"][1]["size"] = 99 -defs["structs"]["StbUndoState"][1]["type"] = "StbUndoRecord" -defs["structs"]["StbUndoState"][2] = {} -defs["structs"]["StbUndoState"][2]["name"] = "undo_char[999]" -defs["structs"]["StbUndoState"][2]["size"] = 999 -defs["structs"]["StbUndoState"][2]["type"] = "ImWchar" -defs["structs"]["StbUndoState"][3] = {} -defs["structs"]["StbUndoState"][3]["name"] = "undo_point" -defs["structs"]["StbUndoState"][3]["type"] = "short" -defs["structs"]["StbUndoState"][4] = {} -defs["structs"]["StbUndoState"][4]["name"] = "redo_point" -defs["structs"]["StbUndoState"][4]["type"] = "short" -defs["structs"]["StbUndoState"][5] = {} -defs["structs"]["StbUndoState"][5]["name"] = "undo_char_point" -defs["structs"]["StbUndoState"][5]["type"] = "int" -defs["structs"]["StbUndoState"][6] = {} -defs["structs"]["StbUndoState"][6]["name"] = "redo_char_point" -defs["structs"]["StbUndoState"][6]["type"] = "int" defs["templated_structs"] = {} defs["templated_structs"]["ImBitArray"] = {} defs["templated_structs"]["ImBitArray"][1] = {} @@ -8090,6 +9195,7 @@ defs["templates_done"]["ImChunkStream"] = {} defs["templates_done"]["ImChunkStream"]["ImGuiTableSettings"] = true defs["templates_done"]["ImChunkStream"]["ImGuiWindowSettings"] = true defs["templates_done"]["ImPool"] = {} +defs["templates_done"]["ImPool"]["ImGuiMultiSelectState"] = true defs["templates_done"]["ImPool"]["ImGuiTabBar"] = true defs["templates_done"]["ImPool"]["ImGuiTable"] = true defs["templates_done"]["ImSpan"] = {} @@ -8110,6 +9216,7 @@ defs["templates_done"]["ImVector"]["ImGuiColorMod"] = true defs["templates_done"]["ImVector"]["ImGuiContextHook"] = true defs["templates_done"]["ImVector"]["ImGuiDockNodeSettings"] = true defs["templates_done"]["ImVector"]["ImGuiDockRequest"] = true +defs["templates_done"]["ImVector"]["ImGuiFocusScopeData"] = true defs["templates_done"]["ImVector"]["ImGuiGroupData"] = true defs["templates_done"]["ImVector"]["ImGuiID"] = true defs["templates_done"]["ImVector"]["ImGuiInputEvent"] = true @@ -8117,11 +9224,14 @@ defs["templates_done"]["ImVector"]["ImGuiItemFlags"] = true defs["templates_done"]["ImVector"]["ImGuiKeyRoutingData"] = true defs["templates_done"]["ImVector"]["ImGuiListClipperData"] = true defs["templates_done"]["ImVector"]["ImGuiListClipperRange"] = true +defs["templates_done"]["ImVector"]["ImGuiMultiSelectState"] = true +defs["templates_done"]["ImVector"]["ImGuiMultiSelectTempData"] = true defs["templates_done"]["ImVector"]["ImGuiOldColumnData"] = true defs["templates_done"]["ImVector"]["ImGuiOldColumns"] = true defs["templates_done"]["ImVector"]["ImGuiPlatformMonitor"] = true defs["templates_done"]["ImVector"]["ImGuiPopupData"] = true defs["templates_done"]["ImVector"]["ImGuiPtrOrIndex"] = true +defs["templates_done"]["ImVector"]["ImGuiSelectionRequest"] = true defs["templates_done"]["ImVector"]["ImGuiSettingsHandler"] = true defs["templates_done"]["ImVector"]["ImGuiShrinkWidthItem"] = true defs["templates_done"]["ImVector"]["ImGuiStackLevelInfo"] = true @@ -8131,9 +9241,11 @@ defs["templates_done"]["ImVector"]["ImGuiTabBar"] = true defs["templates_done"]["ImVector"]["ImGuiTabItem"] = true defs["templates_done"]["ImVector"]["ImGuiTable"] = true defs["templates_done"]["ImVector"]["ImGuiTableColumnSortSpecs"] = true +defs["templates_done"]["ImVector"]["ImGuiTableHeaderData"] = true defs["templates_done"]["ImVector"]["ImGuiTableInstanceData"] = true defs["templates_done"]["ImVector"]["ImGuiTableTempData"] = true defs["templates_done"]["ImVector"]["ImGuiTextRange"] = true +defs["templates_done"]["ImVector"]["ImGuiTreeNodeStackData"] = true defs["templates_done"]["ImVector"]["ImGuiViewport*"] = true defs["templates_done"]["ImVector"]["ImGuiViewportP*"] = true defs["templates_done"]["ImVector"]["ImGuiWindow*"] = true diff --git a/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.json b/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.json index 3cb480f..fdb2826 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.json +++ b/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.json @@ -1,5 +1,6 @@ { "ImBitArrayForNamedKeys": "ImBitArray", + "ImBitArrayPtr": "ImU32*", "ImBitVector": "struct ImBitVector", "ImColor": "struct ImColor", "ImDrawCallback": "void(*)(const ImDrawList* parent_list,const ImDrawCmd* cmd);", @@ -26,7 +27,9 @@ "ImFontGlyphRangesBuilder": "struct ImFontGlyphRangesBuilder", "ImGuiActivateFlags": "int", "ImGuiBackendFlags": "int", + "ImGuiBoxSelectState": "struct ImGuiBoxSelectState", "ImGuiButtonFlags": "int", + "ImGuiChildFlags": "int", "ImGuiCol": "int", "ImGuiColorEditFlags": "int", "ImGuiColorMod": "struct ImGuiColorMod", @@ -40,9 +43,11 @@ "ImGuiDataAuthority": "int", "ImGuiDataType": "int", "ImGuiDataTypeInfo": "struct ImGuiDataTypeInfo", - "ImGuiDataTypeTempStorage": "struct ImGuiDataTypeTempStorage", + "ImGuiDataTypeStorage": "struct ImGuiDataTypeStorage", + "ImGuiDataVarInfo": "struct ImGuiDataVarInfo", + "ImGuiDebugAllocEntry": "struct ImGuiDebugAllocEntry", + "ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo", "ImGuiDebugLogFlags": "int", - "ImGuiDir": "int", "ImGuiDockContext": "struct ImGuiDockContext", "ImGuiDockNode": "struct ImGuiDockNode", "ImGuiDockNodeFlags": "int", @@ -50,10 +55,13 @@ "ImGuiDockRequest": "struct ImGuiDockRequest", "ImGuiDragDropFlags": "int", "ImGuiErrorLogCallback": "void(*)(void* user_data,const char* fmt,...);", + "ImGuiFocusRequestFlags": "int", + "ImGuiFocusScopeData": "struct ImGuiFocusScopeData", "ImGuiFocusedFlags": "int", "ImGuiGroupData": "struct ImGuiGroupData", "ImGuiHoveredFlags": "int", "ImGuiID": "unsigned int", + "ImGuiIDStackTool": "struct ImGuiIDStackTool", "ImGuiIO": "struct ImGuiIO", "ImGuiInputEvent": "struct ImGuiInputEvent", "ImGuiInputEventAppFocused": "struct ImGuiInputEventAppFocused", @@ -66,6 +74,8 @@ "ImGuiInputFlags": "int", "ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);", "ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData", + "ImGuiInputTextDeactivateData": "struct ImGuiInputTextDeactivateData", + "ImGuiInputTextDeactivatedState": "struct ImGuiInputTextDeactivatedState", "ImGuiInputTextFlags": "int", "ImGuiInputTextState": "struct ImGuiInputTextState", "ImGuiItemFlags": "int", @@ -88,6 +98,10 @@ "ImGuiMetricsConfig": "struct ImGuiMetricsConfig", "ImGuiMouseButton": "int", "ImGuiMouseCursor": "int", + "ImGuiMultiSelectFlags": "int", + "ImGuiMultiSelectIO": "struct ImGuiMultiSelectIO", + "ImGuiMultiSelectState": "struct ImGuiMultiSelectState", + "ImGuiMultiSelectTempData": "struct ImGuiMultiSelectTempData", "ImGuiNavHighlightFlags": "int", "ImGuiNavItemData": "struct ImGuiNavItemData", "ImGuiNavMoveFlags": "int", @@ -108,16 +122,18 @@ "ImGuiPtrOrIndex": "struct ImGuiPtrOrIndex", "ImGuiScrollFlags": "int", "ImGuiSelectableFlags": "int", + "ImGuiSelectionBasicStorage": "struct ImGuiSelectionBasicStorage", + "ImGuiSelectionExternalStorage": "struct ImGuiSelectionExternalStorage", + "ImGuiSelectionRequest": "struct ImGuiSelectionRequest", + "ImGuiSelectionUserData": "ImS64", "ImGuiSeparatorFlags": "int", "ImGuiSettingsHandler": "struct ImGuiSettingsHandler", "ImGuiShrinkWidthItem": "struct ImGuiShrinkWidthItem", "ImGuiSizeCallback": "void(*)(ImGuiSizeCallbackData* data);", "ImGuiSizeCallbackData": "struct ImGuiSizeCallbackData", "ImGuiSliderFlags": "int", - "ImGuiSortDirection": "int", "ImGuiStackLevelInfo": "struct ImGuiStackLevelInfo", "ImGuiStackSizes": "struct ImGuiStackSizes", - "ImGuiStackTool": "struct ImGuiStackTool", "ImGuiStorage": "struct ImGuiStorage", "ImGuiStoragePair": "struct ImGuiStoragePair", "ImGuiStyle": "struct ImGuiStyle", @@ -132,12 +148,13 @@ "ImGuiTableCellData": "struct ImGuiTableCellData", "ImGuiTableColumn": "struct ImGuiTableColumn", "ImGuiTableColumnFlags": "int", - "ImGuiTableColumnIdx": "ImS8", + "ImGuiTableColumnIdx": "ImS16", "ImGuiTableColumnSettings": "struct ImGuiTableColumnSettings", "ImGuiTableColumnSortSpecs": "struct ImGuiTableColumnSortSpecs", "ImGuiTableColumnsSettings": "struct ImGuiTableColumnsSettings", - "ImGuiTableDrawChannelIdx": "ImU8", + "ImGuiTableDrawChannelIdx": "ImU16", "ImGuiTableFlags": "int", + "ImGuiTableHeaderData": "struct ImGuiTableHeaderData", "ImGuiTableInstanceData": "struct ImGuiTableInstanceData", "ImGuiTableRowFlags": "int", "ImGuiTableSettings": "struct ImGuiTableSettings", @@ -150,6 +167,10 @@ "ImGuiTextRange": "struct ImGuiTextRange", "ImGuiTooltipFlags": "int", "ImGuiTreeNodeFlags": "int", + "ImGuiTreeNodeStackData": "struct ImGuiTreeNodeStackData", + "ImGuiTypingSelectFlags": "int", + "ImGuiTypingSelectRequest": "struct ImGuiTypingSelectRequest", + "ImGuiTypingSelectState": "struct ImGuiTypingSelectState", "ImGuiViewport": "struct ImGuiViewport", "ImGuiViewportFlags": "int", "ImGuiViewportP": "struct ImGuiViewportP", @@ -157,6 +178,7 @@ "ImGuiWindowClass": "struct ImGuiWindowClass", "ImGuiWindowDockStyle": "struct ImGuiWindowDockStyle", "ImGuiWindowFlags": "int", + "ImGuiWindowRefreshFlags": "int", "ImGuiWindowSettings": "struct ImGuiWindowSettings", "ImGuiWindowStackData": "struct ImGuiWindowStackData", "ImGuiWindowTempData": "struct ImGuiWindowTempData", @@ -166,6 +188,7 @@ "ImS32": "signed int", "ImS64": "signed long long", "ImS8": "signed char", + "ImStbTexteditState": "ImStb::STB_TexteditState", "ImTextureID": "void*", "ImU16": "unsigned short", "ImU32": "unsigned int", @@ -179,9 +202,6 @@ "ImWchar16": "unsigned short", "ImWchar32": "unsigned int", "STB_TexteditState": "struct STB_TexteditState", - "StbTexteditRow": "struct StbTexteditRow", - "StbUndoRecord": "struct StbUndoRecord", - "StbUndoState": "struct StbUndoState", "const_iterator": "const value_type*", "iterator": "value_type*", "value_type": "T" diff --git a/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.lua b/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.lua index eba4c86..489253d 100644 --- a/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.lua +++ b/imgui-sys/third-party/imgui-docking-freetype/typedefs_dict.lua @@ -1,5 +1,6 @@ local defs = {} defs["ImBitArrayForNamedKeys"] = "ImBitArray" +defs["ImBitArrayPtr"] = "ImU32*" defs["ImBitVector"] = "struct ImBitVector" defs["ImColor"] = "struct ImColor" defs["ImDrawCallback"] = "void(*)(const ImDrawList* parent_list,const ImDrawCmd* cmd);" @@ -26,7 +27,9 @@ defs["ImFontGlyph"] = "struct ImFontGlyph" defs["ImFontGlyphRangesBuilder"] = "struct ImFontGlyphRangesBuilder" defs["ImGuiActivateFlags"] = "int" defs["ImGuiBackendFlags"] = "int" +defs["ImGuiBoxSelectState"] = "struct ImGuiBoxSelectState" defs["ImGuiButtonFlags"] = "int" +defs["ImGuiChildFlags"] = "int" defs["ImGuiCol"] = "int" defs["ImGuiColorEditFlags"] = "int" defs["ImGuiColorMod"] = "struct ImGuiColorMod" @@ -40,9 +43,11 @@ defs["ImGuiContextHookCallback"] = "void(*)(ImGuiContext* ctx,ImGuiContextHook* defs["ImGuiDataAuthority"] = "int" defs["ImGuiDataType"] = "int" defs["ImGuiDataTypeInfo"] = "struct ImGuiDataTypeInfo" -defs["ImGuiDataTypeTempStorage"] = "struct ImGuiDataTypeTempStorage" +defs["ImGuiDataTypeStorage"] = "struct ImGuiDataTypeStorage" +defs["ImGuiDataVarInfo"] = "struct ImGuiDataVarInfo" +defs["ImGuiDebugAllocEntry"] = "struct ImGuiDebugAllocEntry" +defs["ImGuiDebugAllocInfo"] = "struct ImGuiDebugAllocInfo" defs["ImGuiDebugLogFlags"] = "int" -defs["ImGuiDir"] = "int" defs["ImGuiDockContext"] = "struct ImGuiDockContext" defs["ImGuiDockNode"] = "struct ImGuiDockNode" defs["ImGuiDockNodeFlags"] = "int" @@ -50,10 +55,13 @@ defs["ImGuiDockNodeSettings"] = "struct ImGuiDockNodeSettings" defs["ImGuiDockRequest"] = "struct ImGuiDockRequest" defs["ImGuiDragDropFlags"] = "int" defs["ImGuiErrorLogCallback"] = "void(*)(void* user_data,const char* fmt,...);" +defs["ImGuiFocusRequestFlags"] = "int" +defs["ImGuiFocusScopeData"] = "struct ImGuiFocusScopeData" defs["ImGuiFocusedFlags"] = "int" defs["ImGuiGroupData"] = "struct ImGuiGroupData" defs["ImGuiHoveredFlags"] = "int" defs["ImGuiID"] = "unsigned int" +defs["ImGuiIDStackTool"] = "struct ImGuiIDStackTool" defs["ImGuiIO"] = "struct ImGuiIO" defs["ImGuiInputEvent"] = "struct ImGuiInputEvent" defs["ImGuiInputEventAppFocused"] = "struct ImGuiInputEventAppFocused" @@ -66,6 +74,8 @@ defs["ImGuiInputEventText"] = "struct ImGuiInputEventText" defs["ImGuiInputFlags"] = "int" defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);" defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData" +defs["ImGuiInputTextDeactivateData"] = "struct ImGuiInputTextDeactivateData" +defs["ImGuiInputTextDeactivatedState"] = "struct ImGuiInputTextDeactivatedState" defs["ImGuiInputTextFlags"] = "int" defs["ImGuiInputTextState"] = "struct ImGuiInputTextState" defs["ImGuiItemFlags"] = "int" @@ -88,6 +98,10 @@ defs["ImGuiMenuColumns"] = "struct ImGuiMenuColumns" defs["ImGuiMetricsConfig"] = "struct ImGuiMetricsConfig" defs["ImGuiMouseButton"] = "int" defs["ImGuiMouseCursor"] = "int" +defs["ImGuiMultiSelectFlags"] = "int" +defs["ImGuiMultiSelectIO"] = "struct ImGuiMultiSelectIO" +defs["ImGuiMultiSelectState"] = "struct ImGuiMultiSelectState" +defs["ImGuiMultiSelectTempData"] = "struct ImGuiMultiSelectTempData" defs["ImGuiNavHighlightFlags"] = "int" defs["ImGuiNavItemData"] = "struct ImGuiNavItemData" defs["ImGuiNavMoveFlags"] = "int" @@ -108,16 +122,18 @@ defs["ImGuiPopupFlags"] = "int" defs["ImGuiPtrOrIndex"] = "struct ImGuiPtrOrIndex" defs["ImGuiScrollFlags"] = "int" defs["ImGuiSelectableFlags"] = "int" +defs["ImGuiSelectionBasicStorage"] = "struct ImGuiSelectionBasicStorage" +defs["ImGuiSelectionExternalStorage"] = "struct ImGuiSelectionExternalStorage" +defs["ImGuiSelectionRequest"] = "struct ImGuiSelectionRequest" +defs["ImGuiSelectionUserData"] = "ImS64" defs["ImGuiSeparatorFlags"] = "int" defs["ImGuiSettingsHandler"] = "struct ImGuiSettingsHandler" defs["ImGuiShrinkWidthItem"] = "struct ImGuiShrinkWidthItem" defs["ImGuiSizeCallback"] = "void(*)(ImGuiSizeCallbackData* data);" defs["ImGuiSizeCallbackData"] = "struct ImGuiSizeCallbackData" defs["ImGuiSliderFlags"] = "int" -defs["ImGuiSortDirection"] = "int" defs["ImGuiStackLevelInfo"] = "struct ImGuiStackLevelInfo" defs["ImGuiStackSizes"] = "struct ImGuiStackSizes" -defs["ImGuiStackTool"] = "struct ImGuiStackTool" defs["ImGuiStorage"] = "struct ImGuiStorage" defs["ImGuiStoragePair"] = "struct ImGuiStoragePair" defs["ImGuiStyle"] = "struct ImGuiStyle" @@ -132,12 +148,13 @@ defs["ImGuiTableBgTarget"] = "int" defs["ImGuiTableCellData"] = "struct ImGuiTableCellData" defs["ImGuiTableColumn"] = "struct ImGuiTableColumn" defs["ImGuiTableColumnFlags"] = "int" -defs["ImGuiTableColumnIdx"] = "ImS8" +defs["ImGuiTableColumnIdx"] = "ImS16" defs["ImGuiTableColumnSettings"] = "struct ImGuiTableColumnSettings" defs["ImGuiTableColumnSortSpecs"] = "struct ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnsSettings"] = "struct ImGuiTableColumnsSettings" -defs["ImGuiTableDrawChannelIdx"] = "ImU8" +defs["ImGuiTableDrawChannelIdx"] = "ImU16" defs["ImGuiTableFlags"] = "int" +defs["ImGuiTableHeaderData"] = "struct ImGuiTableHeaderData" defs["ImGuiTableInstanceData"] = "struct ImGuiTableInstanceData" defs["ImGuiTableRowFlags"] = "int" defs["ImGuiTableSettings"] = "struct ImGuiTableSettings" @@ -150,6 +167,10 @@ defs["ImGuiTextIndex"] = "struct ImGuiTextIndex" defs["ImGuiTextRange"] = "struct ImGuiTextRange" defs["ImGuiTooltipFlags"] = "int" defs["ImGuiTreeNodeFlags"] = "int" +defs["ImGuiTreeNodeStackData"] = "struct ImGuiTreeNodeStackData" +defs["ImGuiTypingSelectFlags"] = "int" +defs["ImGuiTypingSelectRequest"] = "struct ImGuiTypingSelectRequest" +defs["ImGuiTypingSelectState"] = "struct ImGuiTypingSelectState" defs["ImGuiViewport"] = "struct ImGuiViewport" defs["ImGuiViewportFlags"] = "int" defs["ImGuiViewportP"] = "struct ImGuiViewportP" @@ -157,6 +178,7 @@ defs["ImGuiWindow"] = "struct ImGuiWindow" defs["ImGuiWindowClass"] = "struct ImGuiWindowClass" defs["ImGuiWindowDockStyle"] = "struct ImGuiWindowDockStyle" defs["ImGuiWindowFlags"] = "int" +defs["ImGuiWindowRefreshFlags"] = "int" defs["ImGuiWindowSettings"] = "struct ImGuiWindowSettings" defs["ImGuiWindowStackData"] = "struct ImGuiWindowStackData" defs["ImGuiWindowTempData"] = "struct ImGuiWindowTempData" @@ -166,6 +188,7 @@ defs["ImS16"] = "signed short" defs["ImS32"] = "signed int" defs["ImS64"] = "signed long long" defs["ImS8"] = "signed char" +defs["ImStbTexteditState"] = "ImStb::STB_TexteditState" defs["ImTextureID"] = "void*" defs["ImU16"] = "unsigned short" defs["ImU32"] = "unsigned int" @@ -179,9 +202,6 @@ defs["ImWchar"] = "ImWchar32" defs["ImWchar16"] = "unsigned short" defs["ImWchar32"] = "unsigned int" defs["STB_TexteditState"] = "struct STB_TexteditState" -defs["StbTexteditRow"] = "struct StbTexteditRow" -defs["StbUndoRecord"] = "struct StbUndoRecord" -defs["StbUndoState"] = "struct StbUndoState" defs["const_iterator"] = "const value_type*" defs["iterator"] = "value_type*" defs["value_type"] = "T" diff --git a/imgui-sys/third-party/imgui-docking/cimgui.cpp b/imgui-sys/third-party/imgui-docking/cimgui.cpp index 2d7cc54..ea12bf5 100644 --- a/imgui-sys/third-party/imgui-docking/cimgui.cpp +++ b/imgui-sys/third-party/imgui-docking/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifdef IMGUI_ENABLE_FREETYPE @@ -64,6 +64,10 @@ CIMGUI_API ImGuiIO* igGetIO() { return &ImGui::GetIO(); } +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() +{ + return &ImGui::GetPlatformIO(); +} CIMGUI_API ImGuiStyle* igGetStyle() { return &ImGui::GetStyle(); @@ -96,9 +100,9 @@ CIMGUI_API void igShowDebugLogWindow(bool* p_open) { return ImGui::ShowDebugLogWindow(p_open); } -CIMGUI_API void igShowStackToolWindow(bool* p_open) +CIMGUI_API void igShowIDStackToolWindow(bool* p_open) { - return ImGui::ShowStackToolWindow(p_open); + return ImGui::ShowIDStackToolWindow(p_open); } CIMGUI_API void igShowAboutWindow(bool* p_open) { @@ -144,13 +148,13 @@ CIMGUI_API void igEnd() { return ImGui::End(); } -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(str_id,size,border,flags); + return ImGui::BeginChild(str_id,size,child_flags,window_flags); } -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(id,size,border,flags); + return ImGui::BeginChild(id,size,child_flags,window_flags); } CIMGUI_API void igEndChild() { @@ -272,22 +276,6 @@ CIMGUI_API void igSetWindowFocus_Str(const char* name) { return ImGui::SetWindowFocus(name); } -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionAvail(); -} -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionMax(); -} -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMin(); -} -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMax(); -} CIMGUI_API float igGetScrollX() { return ImGui::GetScrollX(); @@ -356,25 +344,25 @@ CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val) { return ImGui::PushStyleVar(idx,val); } +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x) +{ + return ImGui::PushStyleVarX(idx,val_x); +} +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y) +{ + return ImGui::PushStyleVarY(idx,val_y); +} CIMGUI_API void igPopStyleVar(int count) { return ImGui::PopStyleVar(count); } -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus) +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled) { - return ImGui::PushAllowKeyboardFocus(allow_keyboard_focus); + return ImGui::PushItemFlag(option,enabled); } -CIMGUI_API void igPopAllowKeyboardFocus() +CIMGUI_API void igPopItemFlag() { - return ImGui::PopAllowKeyboardFocus(); -} -CIMGUI_API void igPushButtonRepeat(bool repeat) -{ - return ImGui::PushButtonRepeat(repeat); -} -CIMGUI_API void igPopButtonRepeat() -{ - return ImGui::PopButtonRepeat(); + return ImGui::PopItemFlag(); } CIMGUI_API void igPushItemWidth(float item_width) { @@ -420,14 +408,54 @@ CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col) { return ImGui::GetColorU32(col); } -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col) +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul) { - return ImGui::GetColorU32(col); + return ImGui::GetColorU32(col,alpha_mul); } CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx) { return &ImGui::GetStyleColorVec4(idx); } +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorScreenPos(); +} +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) +{ + return ImGui::SetCursorScreenPos(pos); +} +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) +{ + *pOut = ImGui::GetContentRegionAvail(); +} +CIMGUI_API void igGetCursorPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorPos(); +} +CIMGUI_API float igGetCursorPosX() +{ + return ImGui::GetCursorPosX(); +} +CIMGUI_API float igGetCursorPosY() +{ + return ImGui::GetCursorPosY(); +} +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) +{ + return ImGui::SetCursorPos(local_pos); +} +CIMGUI_API void igSetCursorPosX(float local_x) +{ + return ImGui::SetCursorPosX(local_x); +} +CIMGUI_API void igSetCursorPosY(float local_y) +{ + return ImGui::SetCursorPosY(local_y); +} +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorStartPos(); +} CIMGUI_API void igSeparator() { return ImGui::Separator(); @@ -464,42 +492,6 @@ CIMGUI_API void igEndGroup() { return ImGui::EndGroup(); } -CIMGUI_API void igGetCursorPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorPos(); -} -CIMGUI_API float igGetCursorPosX() -{ - return ImGui::GetCursorPosX(); -} -CIMGUI_API float igGetCursorPosY() -{ - return ImGui::GetCursorPosY(); -} -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) -{ - return ImGui::SetCursorPos(local_pos); -} -CIMGUI_API void igSetCursorPosX(float local_x) -{ - return ImGui::SetCursorPosX(local_x); -} -CIMGUI_API void igSetCursorPosY(float local_y) -{ - return ImGui::SetCursorPosY(local_y); -} -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorStartPos(); -} -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorScreenPos(); -} -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) -{ - return ImGui::SetCursorScreenPos(pos); -} CIMGUI_API void igAlignTextToFramePadding() { return ImGui::AlignTextToFramePadding(); @@ -552,6 +544,10 @@ CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id) { return ImGui::GetID(ptr_id); } +CIMGUI_API ImGuiID igGetID_Int(int int_id) +{ + return ImGui::GetID(int_id); +} CIMGUI_API void igTextUnformatted(const char* text,const char* text_end) { return ImGui::TextUnformatted(text,text_end); @@ -622,6 +618,10 @@ CIMGUI_API void igBulletTextV(const char* fmt,va_list args) { return ImGui::BulletTextV(fmt,args); } +CIMGUI_API void igSeparatorText(const char* label) +{ + return ImGui::SeparatorText(label); +} CIMGUI_API bool igButton(const char* label,const ImVec2 size) { return ImGui::Button(label,size); @@ -666,13 +666,21 @@ CIMGUI_API void igBullet() { return ImGui::Bullet(); } -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +CIMGUI_API bool igTextLink(const char* label) { - return ImGui::Image(user_texture_id,size,uv0,uv1,tint_col,border_col); + return ImGui::TextLink(label); } -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url) { - return ImGui::ImageButton(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col); + return ImGui::TextLinkOpenURL(label,url); +} +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +{ + return ImGui::Image(user_texture_id,image_size,uv0,uv1,tint_col,border_col); +} +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +{ + return ImGui::ImageButton(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col); } CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags) { @@ -690,9 +698,9 @@ CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* item { return ImGui::Combo(label,current_item,items_separated_by_zeros,popup_max_height_in_items); } -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items) +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items) { - return ImGui::Combo(label,current_item,items_getter,data,items_count,popup_max_height_in_items); + return ImGui::Combo(label,current_item,getter,user_data,items_count,popup_max_height_in_items); } CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags) { @@ -962,6 +970,10 @@ CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond) { return ImGui::SetNextItemOpen(is_open,cond); } +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id) +{ + return ImGui::SetNextItemStorageID(storage_id); +} CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size) { return ImGui::Selectable(label,selected,flags,size); @@ -970,6 +982,22 @@ CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSel { return ImGui::Selectable(label,p_selected,flags,size); } +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count) +{ + return ImGui::BeginMultiSelect(flags,selection_size,items_count); +} +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect() +{ + return ImGui::EndMultiSelect(); +} +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data) +{ + return ImGui::SetNextItemSelectionUserData(selection_user_data); +} +CIMGUI_API bool igIsItemToggledSelection() +{ + return ImGui::IsItemToggledSelection(); +} CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size) { return ImGui::BeginListBox(label,size); @@ -982,9 +1010,9 @@ CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char { return ImGui::ListBox(label,current_item,items,items_count,height_in_items); } -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items) +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items) { - return ImGui::ListBox(label,current_item,items_getter,data,items_count,height_in_items); + return ImGui::ListBox(label,current_item,getter,user_data,items_count,height_in_items); } CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride) { @@ -1050,7 +1078,7 @@ CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* { return ImGui::MenuItem(label,shortcut,p_selected,enabled); } -CIMGUI_API void igBeginTooltip() +CIMGUI_API bool igBeginTooltip() { return ImGui::BeginTooltip(); } @@ -1069,6 +1097,21 @@ CIMGUI_API void igSetTooltipV(const char* fmt,va_list args) { return ImGui::SetTooltipV(fmt,args); } +CIMGUI_API bool igBeginItemTooltip() +{ + return ImGui::BeginItemTooltip(); +} +CIMGUI_API void igSetItemTooltip(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::SetItemTooltipV(fmt,args); + va_end(args); +} +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args) +{ + return ImGui::SetItemTooltipV(fmt,args); +} CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags) { return ImGui::BeginPopup(str_id,flags); @@ -1113,9 +1156,9 @@ CIMGUI_API bool igIsPopupOpen_Str(const char* str_id,ImGuiPopupFlags flags) { return ImGui::IsPopupOpen(str_id,flags); } -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) { - return ImGui::BeginTable(str_id,column,flags,outer_size,inner_width); + return ImGui::BeginTable(str_id,columns,flags,outer_size,inner_width); } CIMGUI_API void igEndTable() { @@ -1141,13 +1184,17 @@ CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows) { return ImGui::TableSetupScrollFreeze(cols,rows); } +CIMGUI_API void igTableHeader(const char* label) +{ + return ImGui::TableHeader(label); +} CIMGUI_API void igTableHeadersRow() { return ImGui::TableHeadersRow(); } -CIMGUI_API void igTableHeader(const char* label) +CIMGUI_API void igTableAngledHeadersRow() { - return ImGui::TableHeader(label); + return ImGui::TableAngledHeadersRow(); } CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs() { @@ -1177,13 +1224,17 @@ CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v) { return ImGui::TableSetColumnEnabled(column_n,v); } +CIMGUI_API int igTableGetHoveredColumn() +{ + return ImGui::TableGetHoveredColumn(); +} CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n) { return ImGui::TableSetBgColor(target,color,column_n); } -CIMGUI_API void igColumns(int count,const char* id,bool border) +CIMGUI_API void igColumns(int count,const char* id,bool borders) { - return ImGui::Columns(count,id,border); + return ImGui::Columns(count,id,borders); } CIMGUI_API void igNextColumn() { @@ -1237,13 +1288,13 @@ CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label) { return ImGui::SetTabItemClosed(tab_or_docked_window_label); } -CIMGUI_API ImGuiID igDockSpace(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) +CIMGUI_API ImGuiID igDockSpace(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) { - return ImGui::DockSpace(id,size,flags,window_class); + return ImGui::DockSpace(dockspace_id,size,flags,window_class); } -CIMGUI_API ImGuiID igDockSpaceOverViewport(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) +CIMGUI_API ImGuiID igDockSpaceOverViewport(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class) { - return ImGui::DockSpaceOverViewport(viewport,flags,window_class); + return ImGui::DockSpaceOverViewport(dockspace_id,viewport,flags,window_class); } CIMGUI_API void igSetNextWindowDockID(ImGuiID dock_id,ImGuiCond cond) { @@ -1337,6 +1388,10 @@ CIMGUI_API void igSetKeyboardFocusHere(int offset) { return ImGui::SetKeyboardFocusHere(offset); } +CIMGUI_API void igSetNextItemAllowOverlap() +{ + return ImGui::SetNextItemAllowOverlap(); +} CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags) { return ImGui::IsItemHovered(flags); @@ -1405,23 +1460,11 @@ CIMGUI_API void igGetItemRectSize(ImVec2 *pOut) { *pOut = ImGui::GetItemRectSize(); } -CIMGUI_API void igSetItemAllowOverlap() -{ - return ImGui::SetItemAllowOverlap(); -} CIMGUI_API ImGuiViewport* igGetMainViewport() { return ImGui::GetMainViewport(); } -CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil() -{ - return ImGui::GetBackgroundDrawList(); -} -CIMGUI_API ImDrawList* igGetForegroundDrawList_Nil() -{ - return ImGui::GetForegroundDrawList(); -} -CIMGUI_API ImDrawList* igGetBackgroundDrawList_ViewportPtr(ImGuiViewport* viewport) +CIMGUI_API ImDrawList* igGetBackgroundDrawList(ImGuiViewport* viewport) { return ImGui::GetBackgroundDrawList(viewport); } @@ -1461,14 +1504,6 @@ CIMGUI_API ImGuiStorage* igGetStateStorage() { return ImGui::GetStateStorage(); } -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags) -{ - return ImGui::BeginChildFrame(id,size,flags); -} -CIMGUI_API void igEndChildFrame() -{ - return ImGui::EndChildFrame(); -} CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width) { *pOut = ImGui::CalcTextSize(text,text_end,hide_text_after_double_hash,wrap_width); @@ -1501,6 +1536,10 @@ CIMGUI_API bool igIsKeyReleased_Nil(ImGuiKey key) { return ImGui::IsKeyReleased(key); } +CIMGUI_API bool igIsKeyChordPressed_Nil(ImGuiKeyChord key_chord) +{ + return ImGui::IsKeyChordPressed(key_chord); +} CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate) { return ImGui::GetKeyPressedAmount(key,repeat_delay,rate); @@ -1513,6 +1552,18 @@ CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) { return ImGui::SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } +CIMGUI_API bool igShortcut_Nil(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::Shortcut(key_chord,flags); +} +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::SetNextItemShortcut(key_chord,flags); +} +CIMGUI_API void igSetItemKeyOwner_Nil(ImGuiKey key) +{ + return ImGui::SetItemKeyOwner(key); +} CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button) { return ImGui::IsMouseDown(button); @@ -1525,7 +1576,7 @@ CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button) { return ImGui::IsMouseReleased(button); } -CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button) +CIMGUI_API bool igIsMouseDoubleClicked_Nil(ImGuiMouseButton button) { return ImGui::IsMouseDoubleClicked(button); } @@ -1605,10 +1656,29 @@ CIMGUI_API void igDebugTextEncoding(const char* text) { return ImGui::DebugTextEncoding(text); } +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx) +{ + return ImGui::DebugFlashStyleColor(idx); +} +CIMGUI_API void igDebugStartItemPicker() +{ + return ImGui::DebugStartItemPicker(); +} CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx) { return ImGui::DebugCheckVersionAndDataLayout(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx); } +CIMGUI_API void igDebugLog(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::DebugLogV(fmt,args); + va_end(args); +} +CIMGUI_API void igDebugLogV(const char* fmt,va_list args) +{ + return ImGui::DebugLogV(fmt,args); +} CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data) { return ImGui::SetAllocatorFunctions(alloc_func,free_func,user_data); @@ -1625,10 +1695,6 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } -CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() -{ - return &ImGui::GetPlatformIO(); -} CIMGUI_API void igUpdatePlatformWindows() { return ImGui::UpdatePlatformWindows(); @@ -1649,6 +1715,22 @@ CIMGUI_API ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle) { return ImGui::FindViewportByPlatformHandle(platform_handle); } +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) +{ + return IM_NEW(ImGuiTableSortSpecs)(); +} +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) +{ + return IM_NEW(ImGuiTableColumnSortSpecs)(); +} +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); @@ -1677,9 +1759,13 @@ CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down) { return self->AddMouseButtonEvent(button,down); } -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y) +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y) { - return self->AddMouseWheelEvent(wh_x,wh_y); + return self->AddMouseWheelEvent(wheel_x,wheel_y); +} +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source) +{ + return self->AddMouseSourceEvent(source); } CIMGUI_API void ImGuiIO_AddMouseViewportEvent(ImGuiIO* self,ImGuiID id) { @@ -1709,14 +1795,18 @@ CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_event { return self->SetAppAcceptingEvents(accepting_events); } -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self) +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self) { - return self->ClearInputCharacters(); + return self->ClearEventsQueue(); } CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self) { return self->ClearInputKeys(); } +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self) +{ + return self->ClearInputMouse(); +} CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void) { return IM_NEW(ImGuiIO)(); @@ -1785,22 +1875,6 @@ CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self) { return self->IsDelivery(); } -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) -{ - return IM_NEW(ImGuiTableColumnSortSpecs)(); -} -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) -{ - IM_DELETE(self); -} -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) -{ - return IM_NEW(ImGuiTableSortSpecs)(); -} -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) -{ - IM_DELETE(self); -} CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void) { return IM_NEW(ImGuiOnceUponAFrame)(); @@ -1901,21 +1975,21 @@ CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,v { return self->appendfv(fmt,args); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_i); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self) { IM_DELETE(self); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_f); + return IM_NEW(ImGuiStoragePair)(_key,_val); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_p); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self) { @@ -1969,14 +2043,14 @@ CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void { return self->GetVoidPtrRef(key,default_val); } -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) -{ - return self->SetAllInt(val); -} CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self) { return self->BuildSortByKey(); } +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) +{ + return self->SetAllInt(val); +} CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void) { return IM_NEW(ImGuiListClipper)(); @@ -1997,9 +2071,17 @@ CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) { return self->Step(); } -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max) +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index) { - return self->ForceDisplayRangeByIndices(item_min,item_max); + return self->IncludeItemByIndex(item_index); +} +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end) +{ + return self->IncludeItemsByIndex(item_begin,item_end); +} +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index) +{ + return self->SeekCursorForItem(item_index); } CIMGUI_API ImColor* ImColor_ImColor_Nil(void) { @@ -2033,6 +2115,54 @@ CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a) { *pOut = ImColor::HSV(h,s,v,a); } +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void) +{ + return IM_NEW(ImGuiSelectionBasicStorage)(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id) +{ + return self->Contains(id); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self) +{ + return self->Clear(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r) +{ + return self->Swap(*r); +} +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected) +{ + return self->SetItemSelected(id,selected); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id) +{ + return self->GetNextSelectedItem(opaque_it,out_id); +} +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx) +{ + return self->GetStorageIdFromIndex(idx); +} +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void) +{ + return IM_NEW(ImGuiSelectionExternalStorage)(); +} +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void) { return IM_NEW(ImDrawCmd)(); @@ -2157,6 +2287,14 @@ CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,fl { return self->AddNgonFilled(center,radius,col,num_segments); } +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness) +{ + return self->AddEllipse(center,radius,col,rot,num_segments,thickness); +} +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments) +{ + return self->AddEllipseFilled(center,radius,col,rot,num_segments); +} CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end) { return self->AddText(pos,col,text_begin,text_end); @@ -2165,6 +2303,14 @@ CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,f { return self->AddText(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect); } +CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); +} +CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); +} CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness) { return self->AddPolyline(points,num_points,col,flags,thickness); @@ -2173,13 +2319,9 @@ CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* po { return self->AddConvexPolyFilled(points,num_points,col); } -CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col) { - return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); -} -CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) -{ - return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); + return self->AddConcavePolyFilled(points,num_points,col); } CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col) { @@ -2209,6 +2351,10 @@ CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col) { return self->PathFillConvex(col); } +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col) +{ + return self->PathFillConcave(col); +} CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness) { return self->PathStroke(col,flags,thickness); @@ -2221,6 +2367,10 @@ CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,fl { return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12); } +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments) +{ + return self->PathEllipticalArcTo(center,radius,rot,a_min,a_max,num_segments); +} CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments) { return self->PathBezierCubicCurveTo(p2,p3,p4,num_segments); @@ -2317,6 +2467,10 @@ CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self) { return self->_OnChangedVtxOffset(); } +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id) +{ + return self->_SetTextureID(texture_id); +} CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius) { return self->_CalcCircleAutoSegmentCount(radius); @@ -2341,6 +2495,10 @@ CIMGUI_API void ImDrawData_Clear(ImDrawData* self) { return self->Clear(); } +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list) +{ + return self->AddDrawList(draw_list); +} CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self) { return self->DeIndexAllBuffers(); @@ -2425,13 +2583,13 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* { return self->AddFontFromFileTTF(filename,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryTTF(font_data,font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryTTF(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges); } CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { @@ -2641,15 +2799,11 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self) { IM_DELETE(self); } -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key) -{ - return ImGui::GetKeyIndex(key); -} -CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImU32 seed) +CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed) { return ImHashData(data,data_size,seed); } -CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed) +CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed) { return ImHashStr(data,data_size,seed); } @@ -2697,18 +2851,10 @@ CIMGUI_API const char* igImStrchrRange(const char* str_begin,const char* str_end { return ImStrchrRange(str_begin,str_end,c); } -CIMGUI_API int igImStrlenW(const ImWchar* str) -{ - return ImStrlenW(str); -} CIMGUI_API const char* igImStreolRange(const char* str,const char* str_end) { return ImStreolRange(str,str_end); } -CIMGUI_API const ImWchar* igImStrbolW(const ImWchar* buf_mid_line,const ImWchar* buf_begin) -{ - return ImStrbolW(buf_mid_line,buf_begin); -} CIMGUI_API const char* igImStristr(const char* haystack,const char* haystack_end,const char* needle,const char* needle_end) { return ImStristr(haystack,haystack_end,needle,needle_end); @@ -2721,6 +2867,14 @@ CIMGUI_API const char* igImStrSkipBlank(const char* str) { return ImStrSkipBlank(str); } +CIMGUI_API int igImStrlenW(const ImWchar* str) +{ + return ImStrlenW(str); +} +CIMGUI_API const char* igImStrbol(const char* buf_mid_line,const char* buf_begin) +{ + return ImStrbol(buf_mid_line,buf_begin); +} CIMGUI_API char igImToUpper(char c) { return ImToUpper(c); @@ -2733,6 +2887,10 @@ CIMGUI_API bool igImCharIsBlankW(unsigned int c) { return ImCharIsBlankW(c); } +CIMGUI_API bool igImCharIsXdigitA(char c) +{ + return ImCharIsXdigitA(c); +} CIMGUI_API int igImFormatString(char* buf,size_t buf_size,const char* fmt,...) { va_list args; @@ -2808,6 +2966,14 @@ CIMGUI_API int igImTextCountUtf8BytesFromStr(const ImWchar* in_text,const ImWcha { return ImTextCountUtf8BytesFromStr(in_text,in_text_end); } +CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_text_curr) +{ + return ImTextFindPreviousUtf8Codepoint(in_text_start,in_text_curr); +} +CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end) +{ + return ImTextCountLines(in_text,in_text_end); +} CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode) { return ImFileOpen(filename,mode); @@ -2884,7 +3050,7 @@ CIMGUI_API void igImMax(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs) { *pOut = ImMax(lhs,rhs); } -CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx) +CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx) { *pOut = ImClamp(v,mn,mx); } @@ -2916,22 +3082,22 @@ CIMGUI_API float igImInvLength(const ImVec2 lhs,float fail_value) { return ImInvLength(lhs,fail_value); } +CIMGUI_API float igImTrunc_Float(float f) +{ + return ImTrunc(f); +} +CIMGUI_API void igImTrunc_Vec2(ImVec2 *pOut,const ImVec2 v) +{ + *pOut = ImTrunc(v); +} CIMGUI_API float igImFloor_Float(float f) { return ImFloor(f); } -CIMGUI_API float igImFloorSigned_Float(float f) -{ - return ImFloorSigned(f); -} CIMGUI_API void igImFloor_Vec2(ImVec2 *pOut,const ImVec2 v) { *pOut = ImFloor(v); } -CIMGUI_API void igImFloorSigned_Vec2(ImVec2 *pOut,const ImVec2 v) -{ - *pOut = ImFloorSigned(v); -} CIMGUI_API int igImModPositive(int a,int b) { return ImModPositive(a,b); @@ -2948,6 +3114,10 @@ CIMGUI_API float igImLinearSweep(float current,float target,float speed) { return ImLinearSweep(current,target,speed); } +CIMGUI_API float igImLinearRemapClamp(float s0,float s1,float d0,float d1,float x) +{ + return ImLinearRemapClamp(s0,s1,d0,d1,x); +} CIMGUI_API void igImMul(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs) { *pOut = ImMul(lhs,rhs); @@ -2996,9 +3166,9 @@ CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c) { return ImTriangleArea(a,b,c); } -CIMGUI_API ImGuiDir igImGetDirQuadrantFromDelta(float dx,float dy) +CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c) { - return ImGetDirQuadrantFromDelta(dx,dy); + return ImTriangleIsClockwise(a,b,c); } CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void) { @@ -3092,6 +3262,10 @@ CIMGUI_API bool ImRect_Contains_Rect(ImRect* self,const ImRect r) { return self->Contains(r); } +CIMGUI_API bool ImRect_ContainsWithPad(ImRect* self,const ImVec2 p,const ImVec2 pad) +{ + return self->ContainsWithPad(p,pad); +} CIMGUI_API bool ImRect_Overlaps(ImRect* self,const ImRect r) { return self->Overlaps(r); @@ -3144,6 +3318,14 @@ CIMGUI_API void ImRect_ToVec4(ImVec4 *pOut,ImRect* self) { *pOut = self->ToVec4(); } +CIMGUI_API size_t igImBitArrayGetStorageSizeInBytes(int bitcount) +{ + return ImBitArrayGetStorageSizeInBytes(bitcount); +} +CIMGUI_API void igImBitArrayClearAllBits(ImU32* arr,int bitcount) +{ + return ImBitArrayClearAllBits(arr,bitcount); +} CIMGUI_API bool igImBitArrayTestBit(const ImU32* arr,int n) { return ImBitArrayTestBit(arr,n); @@ -3200,6 +3382,10 @@ CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int { return self->append(base,old_size,new_size); } +CIMGUI_API ImGuiStoragePair* igImLowerBound(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key) +{ + return ImLowerBound(in_begin,in_end,key); +} CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void) { return IM_NEW(ImDrawListSharedData)(); @@ -3212,21 +3398,17 @@ CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSha { return self->SetCircleTessellationMaxError(max_error); } -CIMGUI_API void ImDrawDataBuilder_Clear(ImDrawDataBuilder* self) +CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void) { - return self->Clear(); + return IM_NEW(ImDrawDataBuilder)(); } -CIMGUI_API void ImDrawDataBuilder_ClearFreeMemory(ImDrawDataBuilder* self) +CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self) { - return self->ClearFreeMemory(); + IM_DELETE(self); } -CIMGUI_API int ImDrawDataBuilder_GetDrawListCount(ImDrawDataBuilder* self) +CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent) { - return self->GetDrawListCount(); -} -CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(ImDrawDataBuilder* self) -{ - return self->FlattenIntoSingleLayer(); + return self->GetVarPtr(parent); } CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v) { @@ -3272,9 +3454,21 @@ CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool { return self->CalcNextTotalWidth(update_offsets); } -CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(ImGuiContext* ctx) +CIMGUI_API ImGuiInputTextDeactivatedState* ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState(void) { - return IM_NEW(ImGuiInputTextState)(ctx); + return IM_NEW(ImGuiInputTextDeactivatedState)(); +} +CIMGUI_API void ImGuiInputTextDeactivatedState_destroy(ImGuiInputTextDeactivatedState* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiInputTextDeactivatedState_ClearFreeMemory(ImGuiInputTextDeactivatedState* self) +{ + return self->ClearFreeMemory(); +} +CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(void) +{ + return IM_NEW(ImGuiInputTextState)(); } CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self) { @@ -3288,18 +3482,14 @@ CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self) { return self->ClearFreeMemory(); } -CIMGUI_API int ImGuiInputTextState_GetUndoAvailCount(ImGuiInputTextState* self) -{ - return self->GetUndoAvailCount(); -} -CIMGUI_API int ImGuiInputTextState_GetRedoAvailCount(ImGuiInputTextState* self) -{ - return self->GetRedoAvailCount(); -} CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self,int key) { return self->OnKeyPressed(key); } +CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsigned int c) +{ + return self->OnCharPressed(c); +} CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self) { return self->CursorAnimReset(); @@ -3332,13 +3522,17 @@ CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self) { return self->SelectAll(); } -CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void) +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self) { - return IM_NEW(ImGuiPopupData)(); + return self->ReloadUserBufAndSelectAll(); } -CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self) +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self) { - IM_DELETE(self); + return self->ReloadUserBufAndKeepSelection(); +} +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self) +{ + return self->ReloadUserBufAndMoveToEnd(); } CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void) { @@ -3380,13 +3574,13 @@ CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self) { IM_DELETE(self); } -CIMGUI_API void ImGuiStackSizes_SetToCurrentState(ImGuiStackSizes* self) +CIMGUI_API void ImGuiStackSizes_SetToContextState(ImGuiStackSizes* self,ImGuiContext* ctx) { - return self->SetToCurrentState(); + return self->SetToContextState(ctx); } -CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self) +CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,ImGuiContext* ctx) { - return self->CompareWithCurrentState(); + return self->CompareWithContextState(ctx); } CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr) { @@ -3400,6 +3594,14 @@ CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index) { return IM_NEW(ImGuiPtrOrIndex)(index); } +CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void) +{ + return IM_NEW(ImGuiPopupData)(); +} +CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void) { return IM_NEW(ImGuiInputEvent)(); @@ -3468,6 +3670,18 @@ CIMGUI_API void ImGuiNavItemData_Clear(ImGuiNavItemData* self) { return self->Clear(); } +CIMGUI_API ImGuiTypingSelectState* ImGuiTypingSelectState_ImGuiTypingSelectState(void) +{ + return IM_NEW(ImGuiTypingSelectState)(); +} +CIMGUI_API void ImGuiTypingSelectState_destroy(ImGuiTypingSelectState* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiTypingSelectState_Clear(ImGuiTypingSelectState* self) +{ + return self->Clear(); +} CIMGUI_API ImGuiOldColumnData* ImGuiOldColumnData_ImGuiOldColumnData(void) { return IM_NEW(ImGuiOldColumnData)(); @@ -3484,6 +3698,38 @@ CIMGUI_API void ImGuiOldColumns_destroy(ImGuiOldColumns* self) { IM_DELETE(self); } +CIMGUI_API ImGuiBoxSelectState* ImGuiBoxSelectState_ImGuiBoxSelectState(void) +{ + return IM_NEW(ImGuiBoxSelectState)(); +} +CIMGUI_API void ImGuiBoxSelectState_destroy(ImGuiBoxSelectState* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiMultiSelectTempData* ImGuiMultiSelectTempData_ImGuiMultiSelectTempData(void) +{ + return IM_NEW(ImGuiMultiSelectTempData)(); +} +CIMGUI_API void ImGuiMultiSelectTempData_destroy(ImGuiMultiSelectTempData* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiMultiSelectTempData_Clear(ImGuiMultiSelectTempData* self) +{ + return self->Clear(); +} +CIMGUI_API void ImGuiMultiSelectTempData_ClearIO(ImGuiMultiSelectTempData* self) +{ + return self->ClearIO(); +} +CIMGUI_API ImGuiMultiSelectState* ImGuiMultiSelectState_ImGuiMultiSelectState(void) +{ + return IM_NEW(ImGuiMultiSelectState)(); +} +CIMGUI_API void ImGuiMultiSelectState_destroy(ImGuiMultiSelectState* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiDockNode* ImGuiDockNode_ImGuiDockNode(ImGuiID id) { return IM_NEW(ImGuiDockNode)(id); @@ -3560,13 +3806,13 @@ CIMGUI_API void ImGuiViewportP_ClearRequestFlags(ImGuiViewportP* self) { return self->ClearRequestFlags(); } -CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min) +CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min) { - *pOut = self->CalcWorkRectPos(off_min); + *pOut = self->CalcWorkRectPos(inset_min); } -CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max) +CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max) { - *pOut = self->CalcWorkRectSize(off_min,off_max); + *pOut = self->CalcWorkRectSize(inset_min,inset_max); } CIMGUI_API void ImGuiViewportP_UpdateWorkRect(ImGuiViewportP* self) { @@ -3604,11 +3850,11 @@ CIMGUI_API void ImGuiSettingsHandler_destroy(ImGuiSettingsHandler* self) { IM_DELETE(self); } -CIMGUI_API ImGuiMetricsConfig* ImGuiMetricsConfig_ImGuiMetricsConfig(void) +CIMGUI_API ImGuiDebugAllocInfo* ImGuiDebugAllocInfo_ImGuiDebugAllocInfo(void) { - return IM_NEW(ImGuiMetricsConfig)(); + return IM_NEW(ImGuiDebugAllocInfo)(); } -CIMGUI_API void ImGuiMetricsConfig_destroy(ImGuiMetricsConfig* self) +CIMGUI_API void ImGuiDebugAllocInfo_destroy(ImGuiDebugAllocInfo* self) { IM_DELETE(self); } @@ -3620,11 +3866,11 @@ CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self) { IM_DELETE(self); } -CIMGUI_API ImGuiStackTool* ImGuiStackTool_ImGuiStackTool(void) +CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void) { - return IM_NEW(ImGuiStackTool)(); + return IM_NEW(ImGuiIDStackTool)(); } -CIMGUI_API void ImGuiStackTool_destroy(ImGuiStackTool* self) +CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self) { IM_DELETE(self); } @@ -3664,6 +3910,10 @@ CIMGUI_API ImGuiID ImGuiWindow_GetID_Int(ImGuiWindow* self,int n) { return self->GetID(n); } +CIMGUI_API ImGuiID ImGuiWindow_GetIDFromPos(ImGuiWindow* self,const ImVec2 p_abs) +{ + return self->GetIDFromPos(p_abs); +} CIMGUI_API ImGuiID ImGuiWindow_GetIDFromRectangle(ImGuiWindow* self,const ImRect r_abs) { return self->GetIDFromRectangle(r_abs); @@ -3676,18 +3926,10 @@ CIMGUI_API float ImGuiWindow_CalcFontSize(ImGuiWindow* self) { return self->CalcFontSize(); } -CIMGUI_API float ImGuiWindow_TitleBarHeight(ImGuiWindow* self) -{ - return self->TitleBarHeight(); -} CIMGUI_API void ImGuiWindow_TitleBarRect(ImRect *pOut,ImGuiWindow* self) { *pOut = self->TitleBarRect(); } -CIMGUI_API float ImGuiWindow_MenuBarHeight(ImGuiWindow* self) -{ - return self->MenuBarHeight(); -} CIMGUI_API void ImGuiWindow_MenuBarRect(ImRect *pOut,ImGuiWindow* self) { *pOut = self->MenuBarRect(); @@ -3708,14 +3950,6 @@ CIMGUI_API void ImGuiTabBar_destroy(ImGuiTabBar* self) { IM_DELETE(self); } -CIMGUI_API int ImGuiTabBar_GetTabOrder(ImGuiTabBar* self,const ImGuiTabItem* tab) -{ - return self->GetTabOrder(tab); -} -CIMGUI_API const char* ImGuiTabBar_GetTabName(ImGuiTabBar* self,const ImGuiTabItem* tab) -{ - return self->GetTabName(tab); -} CIMGUI_API ImGuiTableColumn* ImGuiTableColumn_ImGuiTableColumn(void) { return IM_NEW(ImGuiTableColumn)(); @@ -3788,6 +4022,10 @@ CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindow { return ImGui::UpdateWindowParentAndRootLinks(window,flags,parent_window); } +CIMGUI_API void igUpdateWindowSkipRefresh(ImGuiWindow* window) +{ + return ImGui::UpdateWindowSkipRefresh(window); +} CIMGUI_API void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window) { *pOut = ImGui::CalcWindowNextAutoFitSize(window); @@ -3824,6 +4062,14 @@ CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,cons { return ImGui::SetWindowHitTestHole(window,pos,size); } +CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window) +{ + return ImGui::SetWindowHiddenAndSkipItemsForCurrentFrame(window); +} +CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window) +{ + return ImGui::SetWindowParentWindowForFocusRoute(window,parent_window); +} CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r) { *pOut = ImGui::WindowRectAbsToRel(window,r); @@ -3832,13 +4078,21 @@ CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRe { *pOut = ImGui::WindowRectRelToAbs(window,r); } -CIMGUI_API void igFocusWindow(ImGuiWindow* window) +CIMGUI_API void igWindowPosAbsToRel(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) { - return ImGui::FocusWindow(window); + *pOut = ImGui::WindowPosAbsToRel(window,p); } -CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window) +CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p) { - return ImGui::FocusTopMostWindowUnderOne(under_this_window,ignore_window); + *pOut = ImGui::WindowPosRelToAbs(window,p); +} +CIMGUI_API void igFocusWindow(ImGuiWindow* window,ImGuiFocusRequestFlags flags) +{ + return ImGui::FocusWindow(window,flags); +} +CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags) +{ + return ImGui::FocusTopMostWindowUnderOne(under_this_window,ignore_window,filter_viewport,flags); } CIMGUI_API void igBringWindowToFocusFront(ImGuiWindow* window) { @@ -3864,6 +4118,10 @@ CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindo { return ImGui::FindBottomMostVisibleWindowWithinBeginStack(window); } +CIMGUI_API void igSetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags) +{ + return ImGui::SetNextWindowRefreshPolicy(flags); +} CIMGUI_API void igSetCurrentFont(ImFont* font) { return ImGui::SetCurrentFont(font); @@ -3876,6 +4134,10 @@ CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window) { return ImGui::GetForegroundDrawList(window); } +CIMGUI_API void igAddDrawListToDrawDataEx(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list) +{ + return ImGui::AddDrawListToDrawDataEx(draw_data,out_list,draw_list); +} CIMGUI_API void igInitialize() { return ImGui::Initialize(); @@ -3892,13 +4154,17 @@ CIMGUI_API void igUpdateHoveredWindowAndCaptureFlags() { return ImGui::UpdateHoveredWindowAndCaptureFlags(); } +CIMGUI_API void igFindHoveredWindowEx(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window) +{ + return ImGui::FindHoveredWindowEx(pos,find_first_and_in_any_viewport,out_hovered_window,out_hovered_window_under_moving_window); +} CIMGUI_API void igStartMouseMovingWindow(ImGuiWindow* window) { return ImGui::StartMouseMovingWindow(window); } -CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node) +CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock) { - return ImGui::StartMouseMovingWindowOrNode(window,node,undock_floating_node); + return ImGui::StartMouseMovingWindowOrNode(window,node,undock); } CIMGUI_API void igUpdateMouseMovingWindowNewFrame() { @@ -3920,9 +4186,9 @@ CIMGUI_API void igCallContextHooks(ImGuiContext* context,ImGuiContextHookType ty { return ImGui::CallContextHooks(context,type); } -CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos) +CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size) { - return ImGui::TranslateWindowsInViewport(viewport,old_pos,new_pos); + return ImGui::TranslateWindowsInViewport(viewport,old_pos,new_pos,old_size,new_size); } CIMGUI_API void igScaleWindowsInViewport(ImGuiViewportP* viewport,float scale) { @@ -3960,18 +4226,6 @@ CIMGUI_API void igClearIniSettings() { return ImGui::ClearIniSettings(); } -CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name) -{ - return ImGui::CreateNewWindowSettings(name); -} -CIMGUI_API ImGuiWindowSettings* igFindWindowSettings(ImGuiID id) -{ - return ImGui::FindWindowSettings(id); -} -CIMGUI_API ImGuiWindowSettings* igFindOrCreateWindowSettings(const char* name) -{ - return ImGui::FindOrCreateWindowSettings(name); -} CIMGUI_API void igAddSettingsHandler(const ImGuiSettingsHandler* handler) { return ImGui::AddSettingsHandler(handler); @@ -3984,6 +4238,22 @@ CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name) { return ImGui::FindSettingsHandler(type_name); } +CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name) +{ + return ImGui::CreateNewWindowSettings(name); +} +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByID(ImGuiID id) +{ + return ImGui::FindWindowSettingsByID(id); +} +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByWindow(ImGuiWindow* window) +{ + return ImGui::FindWindowSettingsByWindow(window); +} +CIMGUI_API void igClearWindowSettings(const char* name) +{ + return ImGui::ClearWindowSettings(name); +} CIMGUI_API void igLocalizeRegisterEntries(const ImGuiLocEntry* entries,int count) { return ImGui::LocalizeRegisterEntries(entries,count); @@ -4072,10 +4342,14 @@ CIMGUI_API void igPushOverrideID(ImGuiID id) { return ImGui::PushOverrideID(id); } -CIMGUI_API ImGuiID igGetIDWithSeed(const char* str_id_begin,const char* str_id_end,ImGuiID seed) +CIMGUI_API ImGuiID igGetIDWithSeed_Str(const char* str_id_begin,const char* str_id_end,ImGuiID seed) { return ImGui::GetIDWithSeed(str_id_begin,str_id_end,seed); } +CIMGUI_API ImGuiID igGetIDWithSeed_Int(int n,ImGuiID seed) +{ + return ImGui::GetIDWithSeed(n,seed); +} CIMGUI_API void igItemSize_Vec2(const ImVec2 size,float text_baseline_y) { return ImGui::ItemSize(size,text_baseline_y); @@ -4088,9 +4362,13 @@ CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiI { return ImGui::ItemAdd(bb,id,nav_bb,extra_flags); } -CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id) +CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags) { - return ImGui::ItemHoverable(bb,id); + return ImGui::ItemHoverable(bb,id,item_flags); +} +CIMGUI_API bool igIsWindowContentHoverable(ImGuiWindow* window,ImGuiHoveredFlags flags) +{ + return ImGui::IsWindowContentHoverable(window,flags); } CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id) { @@ -4112,25 +4390,21 @@ CIMGUI_API void igPushMultiItemsWidths(int components,float width_full) { return ImGui::PushMultiItemsWidths(components,width_full); } -CIMGUI_API bool igIsItemToggledSelection() -{ - return ImGui::IsItemToggledSelection(); -} -CIMGUI_API void igGetContentRegionMaxAbs(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionMaxAbs(); -} CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess) { return ImGui::ShrinkWidths(items,count,width_excess); } -CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled) +CIMGUI_API const ImGuiDataVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx) { - return ImGui::PushItemFlag(option,enabled); + return ImGui::GetStyleVarInfo(idx); } -CIMGUI_API void igPopItemFlag() +CIMGUI_API void igBeginDisabledOverrideReenable() { - return ImGui::PopItemFlag(); + return ImGui::BeginDisabledOverrideReenable(); +} +CIMGUI_API void igEndDisabledOverrideReenable() +{ + return ImGui::EndDisabledOverrideReenable(); } CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth) { @@ -4148,9 +4422,13 @@ CIMGUI_API void igLogSetNextTextDecoration(const char* prefix,const char* suffix { return ImGui::LogSetNextTextDecoration(prefix,suffix); } -CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChildEx(name,id,size_arg,border,flags); + return ImGui::BeginChildEx(name,id,size_arg,child_flags,window_flags); +} +CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags) +{ + return ImGui::BeginPopupEx(id,extra_window_flags); } CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags) { @@ -4172,14 +4450,6 @@ CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags) { return ImGui::IsPopupOpen(id,popup_flags); } -CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags) -{ - return ImGui::BeginPopupEx(id,extra_flags); -} -CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) -{ - return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); -} CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window) { *pOut = ImGui::GetPopupAllowedExtentRect(window); @@ -4192,6 +4462,10 @@ CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal() { return ImGui::GetTopMostAndVisiblePopupModal(); } +CIMGUI_API ImGuiWindow* igFindBlockingModal(ImGuiWindow* window) +{ + return ImGui::FindBlockingModal(window); +} CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window) { *pOut = ImGui::FindBestWindowPosForPopup(window); @@ -4200,6 +4474,14 @@ CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos, { *pOut = ImGui::FindBestWindowPosForPopupEx(ref_pos,size,last_dir,r_outer,r_avoid,policy); } +CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags) +{ + return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags); +} +CIMGUI_API bool igBeginTooltipHidden() +{ + return ImGui::BeginTooltipHidden(); +} CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags) { return ImGui::BeginViewportSideBar(name,viewport,dir,size,window_flags); @@ -4248,6 +4530,10 @@ CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result) { return ImGui::NavMoveRequestResolveWithLastItem(result); } +CIMGUI_API void igNavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data) +{ + return ImGui::NavMoveRequestResolveWithPastTreeNode(result,tree_node_data); +} CIMGUI_API void igNavMoveRequestCancel() { return ImGui::NavMoveRequestCancel(); @@ -4260,9 +4546,21 @@ CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlag { return ImGui::NavMoveRequestTryWrapping(window,move_flags); } -CIMGUI_API void igActivateItem(ImGuiID id) +CIMGUI_API void igNavHighlightActivated(ImGuiID id) { - return ImGui::ActivateItem(id); + return ImGui::NavHighlightActivated(id); +} +CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis) +{ + return ImGui::NavClearPreferredPosForAxis(axis); +} +CIMGUI_API void igNavRestoreHighlightAfterMove() +{ + return ImGui::NavRestoreHighlightAfterMove(); +} +CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX() +{ + return ImGui::NavUpdateCurrentWindowIsScrollPushableX(); } CIMGUI_API void igSetNavWindow(ImGuiWindow* window) { @@ -4272,13 +4570,25 @@ CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scop { return ImGui::SetNavID(id,nav_layer,focus_scope_id,rect_rel); } +CIMGUI_API void igSetNavFocusScope(ImGuiID focus_scope_id) +{ + return ImGui::SetNavFocusScope(focus_scope_id); +} +CIMGUI_API void igFocusItem() +{ + return ImGui::FocusItem(); +} +CIMGUI_API void igActivateItemByID(ImGuiID id) +{ + return ImGui::ActivateItemByID(id); +} CIMGUI_API bool igIsNamedKey(ImGuiKey key) { return ImGui::IsNamedKey(key); } -CIMGUI_API bool igIsNamedKeyOrModKey(ImGuiKey key) +CIMGUI_API bool igIsNamedKeyOrMod(ImGuiKey key) { - return ImGui::IsNamedKeyOrModKey(key); + return ImGui::IsNamedKeyOrMod(key); } CIMGUI_API bool igIsLegacyKey(ImGuiKey key) { @@ -4300,21 +4610,29 @@ CIMGUI_API bool igIsAliasKey(ImGuiKey key) { return ImGui::IsAliasKey(key); } -CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord) +CIMGUI_API bool igIsLRModKey(ImGuiKey key) { - return ImGui::ConvertShortcutMod(key_chord); + return ImGui::IsLRModKey(key); +} +CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiKeyChord key_chord) +{ + return ImGui::FixupKeyChord(key_chord); } CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key) { return ImGui::ConvertSingleModFlagToKey(key); } -CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key) +CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key) +{ + return ImGui::GetKeyData(ctx,key); +} +CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key) { return ImGui::GetKeyData(key); } -CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size) +CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord) { - return ImGui::GetKeyChordName(key_chord,out_buf,out_buf_size); + return ImGui::GetKeyChordName(key_chord); } CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button) { @@ -4340,6 +4658,10 @@ CIMGUI_API void igGetTypematicRepeatRate(ImGuiInputFlags flags,float* repeat_del { return ImGui::GetTypematicRepeatRate(flags,repeat_delay,repeat_rate); } +CIMGUI_API void igTeleportMousePos(const ImVec2 pos) +{ + return ImGui::TeleportMousePos(pos); +} CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys() { return ImGui::SetActiveIdUsingAllKeyboardKeys(); @@ -4356,7 +4678,11 @@ CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flag { return ImGui::SetKeyOwner(key,owner_id,flags); } -CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags) +CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags) +{ + return ImGui::SetKeyOwnersForKeyChord(key,owner_id,flags); +} +CIMGUI_API void igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags) { return ImGui::SetItemKeyOwner(key,flags); } @@ -4364,41 +4690,49 @@ CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id) { return ImGui::TestKeyOwner(key,owner_id); } -CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key) +CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key) { - return ImGui::GetKeyOwnerData(key); + return ImGui::GetKeyOwnerData(ctx,key); } CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id) { return ImGui::IsKeyDown(key,owner_id); } -CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igIsKeyPressed_InputFlags(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id) { - return ImGui::IsKeyPressed(key,owner_id,flags); + return ImGui::IsKeyPressed(key,flags,owner_id); } CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id) { return ImGui::IsKeyReleased(key,owner_id); } +CIMGUI_API bool igIsKeyChordPressed_InputFlags(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id) +{ + return ImGui::IsKeyChordPressed(key_chord,flags,owner_id); +} CIMGUI_API bool igIsMouseDown_ID(ImGuiMouseButton button,ImGuiID owner_id) { return ImGui::IsMouseDown(button,owner_id); } -CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igIsMouseClicked_InputFlags(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id) { - return ImGui::IsMouseClicked(button,owner_id,flags); + return ImGui::IsMouseClicked(button,flags,owner_id); } CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id) { return ImGui::IsMouseReleased(button,owner_id); } -CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id) { - return ImGui::Shortcut(key_chord,owner_id,flags); + return ImGui::IsMouseDoubleClicked(button,owner_id); } -CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags) +CIMGUI_API bool igShortcut_ID(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id) { - return ImGui::SetShortcutRouting(key_chord,owner_id,flags); + return ImGui::Shortcut(key_chord,flags,owner_id); +} +CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id) +{ + return ImGui::SetShortcutRouting(key_chord,flags,owner_id); } CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id) { @@ -4452,6 +4786,14 @@ CIMGUI_API void igDockContextQueueUndockNode(ImGuiContext* ctx,ImGuiDockNode* no { return ImGui::DockContextQueueUndockNode(ctx,node); } +CIMGUI_API void igDockContextProcessUndockWindow(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref) +{ + return ImGui::DockContextProcessUndockWindow(ctx,window,clear_persistent_docking_ref); +} +CIMGUI_API void igDockContextProcessUndockNode(ImGuiContext* ctx,ImGuiDockNode* node) +{ + return ImGui::DockContextProcessUndockNode(ctx,node); +} CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos) { return ImGui::DockContextCalcDropPosForDocking(target,target_node,payload_window,payload_node,split_dir,split_outer,out_pos); @@ -4460,6 +4802,10 @@ CIMGUI_API ImGuiDockNode* igDockContextFindNodeByID(ImGuiContext* ctx,ImGuiID id { return ImGui::DockContextFindNodeByID(ctx,id); } +CIMGUI_API void igDockNodeWindowMenuHandler_Default(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar) +{ + return ImGui::DockNodeWindowMenuHandler_Default(ctx,node,tab_bar); +} CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node) { return ImGui::DockNodeBeginAmendTabBar(node); @@ -4592,9 +4938,57 @@ CIMGUI_API bool igIsDragDropPayloadBeingAccepted() { return ImGui::IsDragDropPayloadBeingAccepted(); } -CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb) +CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb,const ImRect item_clip_rect) { - return ImGui::RenderDragDropTargetRect(bb); + return ImGui::RenderDragDropTargetRect(bb,item_clip_rect); +} +CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags) +{ + return ImGui::GetTypingSelectRequest(flags); +} +CIMGUI_API int igTypingSelectFindMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx) +{ + return ImGui::TypingSelectFindMatch(req,items_count,get_item_name_func,user_data,nav_item_idx); +} +CIMGUI_API int igTypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx) +{ + return ImGui::TypingSelectFindNextSingleCharMatch(req,items_count,get_item_name_func,user_data,nav_item_idx); +} +CIMGUI_API int igTypingSelectFindBestLeadingMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data) +{ + return ImGui::TypingSelectFindBestLeadingMatch(req,items_count,get_item_name_func,user_data); +} +CIMGUI_API bool igBeginBoxSelect(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags) +{ + return ImGui::BeginBoxSelect(scope_rect,window,box_select_id,ms_flags); +} +CIMGUI_API void igEndBoxSelect(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags) +{ + return ImGui::EndBoxSelect(scope_rect,ms_flags); +} +CIMGUI_API void igMultiSelectItemHeader(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags) +{ + return ImGui::MultiSelectItemHeader(id,p_selected,p_button_flags); +} +CIMGUI_API void igMultiSelectItemFooter(ImGuiID id,bool* p_selected,bool* p_pressed) +{ + return ImGui::MultiSelectItemFooter(id,p_selected,p_pressed); +} +CIMGUI_API void igMultiSelectAddSetAll(ImGuiMultiSelectTempData* ms,bool selected) +{ + return ImGui::MultiSelectAddSetAll(ms,selected); +} +CIMGUI_API void igMultiSelectAddSetRange(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item) +{ + return ImGui::MultiSelectAddSetRange(ms,selected,range_dir,first_item,last_item); +} +CIMGUI_API ImGuiBoxSelectState* igGetBoxSelectState(ImGuiID id) +{ + return ImGui::GetBoxSelectState(id); +} +CIMGUI_API ImGuiMultiSelectState* igGetMultiSelectState(ImGuiID id) +{ + return ImGui::GetMultiSelectState(id); } CIMGUI_API void igSetWindowClipRectBeforeSetChannel(ImGuiWindow* window,const ImRect clip_rect) { @@ -4648,14 +5042,18 @@ CIMGUI_API void igTableSetColumnSortDirection(int column_n,ImGuiSortDirection so { return ImGui::TableSetColumnSortDirection(column_n,sort_direction,append_to_sort_specs); } -CIMGUI_API int igTableGetHoveredColumn() +CIMGUI_API int igTableGetHoveredRow() { - return ImGui::TableGetHoveredColumn(); + return ImGui::TableGetHoveredRow(); } CIMGUI_API float igTableGetHeaderRowHeight() { return ImGui::TableGetHeaderRowHeight(); } +CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth() +{ + return ImGui::TableGetHeaderAngledMaxLabelWidth(); +} CIMGUI_API void igTablePushBackgroundChannel() { return ImGui::TablePushBackgroundChannel(); @@ -4664,6 +5062,10 @@ CIMGUI_API void igTablePopBackgroundChannel() { return ImGui::TablePopBackgroundChannel(); } +CIMGUI_API void igTableAngledHeadersRowEx(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count) +{ + return ImGui::TableAngledHeadersRowEx(row_id,angle,max_label_width,data,data_count); +} CIMGUI_API ImGuiTable* igGetCurrentTable() { return ImGui::GetCurrentTable(); @@ -4704,9 +5106,9 @@ CIMGUI_API void igTableDrawBorders(ImGuiTable* table) { return ImGui::TableDrawBorders(table); } -CIMGUI_API void igTableDrawContextMenu(ImGuiTable* table) +CIMGUI_API void igTableDrawDefaultContextMenu(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display) { - return ImGui::TableDrawContextMenu(table); + return ImGui::TableDrawDefaultContextMenu(table,flags_for_section_to_display); } CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table) { @@ -4720,6 +5122,10 @@ CIMGUI_API ImGuiTableInstanceData* igTableGetInstanceData(ImGuiTable* table,int { return ImGui::TableGetInstanceData(table,instance_no); } +CIMGUI_API ImGuiID igTableGetInstanceID(ImGuiTable* table,int instance_no) +{ + return ImGui::TableGetInstanceID(table,instance_no); +} CIMGUI_API void igTableSortSpecsSanitize(ImGuiTable* table) { return ImGui::TableSortSpecsSanitize(table); @@ -4764,13 +5170,13 @@ CIMGUI_API const char* igTableGetColumnName_TablePtr(const ImGuiTable* table,int { return ImGui::TableGetColumnName(table,column_n); } -CIMGUI_API ImGuiID igTableGetColumnResizeID(const ImGuiTable* table,int column_n,int instance_no) +CIMGUI_API ImGuiID igTableGetColumnResizeID(ImGuiTable* table,int column_n,int instance_no) { return ImGui::TableGetColumnResizeID(table,column_n,instance_no); } -CIMGUI_API float igTableGetMaxColumnWidth(const ImGuiTable* table,int column_n) +CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n) { - return ImGui::TableGetMaxColumnWidth(table,column_n); + return ImGui::TableCalcMaxColumnWidth(table,column_n); } CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n) { @@ -4824,18 +5230,38 @@ CIMGUI_API ImGuiTableSettings* igTableSettingsFindByID(ImGuiID id) { return ImGui::TableSettingsFindByID(id); } -CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node) +CIMGUI_API ImGuiTabBar* igGetCurrentTabBar() { - return ImGui::BeginTabBarEx(tab_bar,bb,flags,dock_node); + return ImGui::GetCurrentTabBar(); +} +CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags) +{ + return ImGui::BeginTabBarEx(tab_bar,bb,flags); } CIMGUI_API ImGuiTabItem* igTabBarFindTabByID(ImGuiTabBar* tab_bar,ImGuiID tab_id) { return ImGui::TabBarFindTabByID(tab_bar,tab_id); } +CIMGUI_API ImGuiTabItem* igTabBarFindTabByOrder(ImGuiTabBar* tab_bar,int order) +{ + return ImGui::TabBarFindTabByOrder(tab_bar,order); +} CIMGUI_API ImGuiTabItem* igTabBarFindMostRecentlySelectedTabForActiveWindow(ImGuiTabBar* tab_bar) { return ImGui::TabBarFindMostRecentlySelectedTabForActiveWindow(tab_bar); } +CIMGUI_API ImGuiTabItem* igTabBarGetCurrentTab(ImGuiTabBar* tab_bar) +{ + return ImGui::TabBarGetCurrentTab(tab_bar); +} +CIMGUI_API int igTabBarGetTabOrder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) +{ + return ImGui::TabBarGetTabOrder(tab_bar,tab); +} +CIMGUI_API const char* igTabBarGetTabName(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) +{ + return ImGui::TabBarGetTabName(tab_bar,tab); +} CIMGUI_API void igTabBarAddTab(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window) { return ImGui::TabBarAddTab(tab_bar,tab_flags,window); @@ -4848,11 +5274,15 @@ CIMGUI_API void igTabBarCloseTab(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) { return ImGui::TabBarCloseTab(tab_bar,tab); } -CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset) +CIMGUI_API void igTabBarQueueFocus(ImGuiTabBar* tab_bar,ImGuiTabItem* tab) +{ + return ImGui::TabBarQueueFocus(tab_bar,tab); +} +CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset) { return ImGui::TabBarQueueReorder(tab_bar,tab,offset); } -CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos) +CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos) { return ImGui::TabBarQueueReorderFromMousePos(tab_bar,tab,mouse_pos); } @@ -4900,9 +5330,9 @@ CIMGUI_API void igRenderTextEllipsis(ImDrawList* draw_list,const ImVec2 pos_min, { return ImGui::RenderTextEllipsis(draw_list,pos_min,pos_max,clip_max_x,ellipsis_max_x,text,text_end,text_size_if_known); } -CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding) +CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding) { - return ImGui::RenderFrame(p_min,p_max,fill_col,border,rounding); + return ImGui::RenderFrame(p_min,p_max,fill_col,borders,rounding); } CIMGUI_API void igRenderFrameBorder(ImVec2 p_min,ImVec2 p_max,float rounding) { @@ -4968,13 +5398,17 @@ CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg, { return ImGui::ArrowButtonEx(str_id,dir,size_arg,flags); } -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags) { - return ImGui::ImageButtonEx(id,texture_id,size,uv0,uv1,bg_col,tint_col); + return ImGui::ImageButtonEx(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags); } -CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags) +CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags,float thickness) { - return ImGui::SeparatorEx(flags); + return ImGui::SeparatorEx(flags,thickness); +} +CIMGUI_API void igSeparatorTextEx(ImGuiID id,const char* label,const char* label_end,float extra_width) +{ + return ImGui::SeparatorTextEx(id,label,label_end,extra_width); } CIMGUI_API bool igCheckboxFlags_S64Ptr(const char* label,ImS64* flags,ImS64 flags_value) { @@ -5040,13 +5474,17 @@ CIMGUI_API void igTreePushOverrideID(ImGuiID id) { return ImGui::TreePushOverrideID(id); } -CIMGUI_API void igTreeNodeSetOpen(ImGuiID id,bool open) +CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id) { - return ImGui::TreeNodeSetOpen(id,open); + return ImGui::TreeNodeGetOpen(storage_id); } -CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID id,ImGuiTreeNodeFlags flags) +CIMGUI_API void igTreeNodeSetOpen(ImGuiID storage_id,bool open) { - return ImGui::TreeNodeUpdateNextOpen(id,flags); + return ImGui::TreeNodeSetOpen(storage_id,open); +} +CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID storage_id,ImGuiTreeNodeFlags flags) +{ + return ImGui::TreeNodeUpdateNextOpen(storage_id,flags); } CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type) { @@ -5060,9 +5498,9 @@ CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,co { return ImGui::DataTypeApplyOp(data_type,op,output,arg_1,arg_2); } -CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format) +CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty) { - return ImGui::DataTypeApplyFromText(buf,data_type,p_data,format); + return ImGui::DataTypeApplyFromText(buf,data_type,p_data,format,p_data_when_empty); } CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2) { @@ -5076,6 +5514,10 @@ CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int b { return ImGui::InputTextEx(label,hint,buf,buf_size,size_arg,flags,callback,user_data); } +CIMGUI_API void igInputTextDeactivateHook(ImGuiID id) +{ + return ImGui::InputTextDeactivateHook(id); +} CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags) { return ImGui::TempInputText(bb,id,label,buf,buf_size,flags); @@ -5092,6 +5534,10 @@ CIMGUI_API ImGuiInputTextState* igGetInputTextState(ImGuiID id) { return ImGui::GetInputTextState(id); } +CIMGUI_API void igSetNextItemRefVal(ImGuiDataType data_type,void* p_data) +{ + return ImGui::SetNextItemRefVal(data_type,p_data); +} CIMGUI_API void igColorTooltip(const char* text,const float* col,ImGuiColorEditFlags flags) { return ImGui::ColorTooltip(text,col,flags); @@ -5104,9 +5550,9 @@ CIMGUI_API void igColorPickerOptionsPopup(const float* ref_col,ImGuiColorEditFla { return ImGui::ColorPickerOptionsPopup(ref_col,flags); } -CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size) +CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg) { - return ImGui::PlotEx(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size); + return ImGui::PlotEx(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,size_arg); } CIMGUI_API void igShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,ImVec2 gradient_p0,ImVec2 gradient_p1,ImU32 col0,ImU32 col1) { @@ -5116,6 +5562,10 @@ CIMGUI_API void igShadeVertsLinearUV(ImDrawList* draw_list,int vert_start_idx,in { return ImGui::ShadeVertsLinearUV(draw_list,vert_start_idx,vert_end_idx,a,b,uv_a,uv_b,clamp); } +CIMGUI_API void igShadeVertsTransformPos(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out) +{ + return ImGui::ShadeVertsTransformPos(draw_list,vert_start_idx,vert_end_idx,pivot_in,cos_a,sin_a,pivot_out); +} CIMGUI_API void igGcCompactTransientMiscBuffers() { return ImGui::GcCompactTransientMiscBuffers(); @@ -5128,16 +5578,9 @@ CIMGUI_API void igGcAwakeTransientWindowBuffers(ImGuiWindow* window) { return ImGui::GcAwakeTransientWindowBuffers(window); } -CIMGUI_API void igDebugLog(const char* fmt,...) +CIMGUI_API void igDebugAllocHook(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size) { - va_list args; - va_start(args, fmt); - ImGui::DebugLogV(fmt,args); - va_end(args); -} -CIMGUI_API void igDebugLogV(const char* fmt,va_list args) -{ - return ImGui::DebugLogV(fmt,args); + return ImGui::DebugAllocHook(info,frame_count,ptr,size); } CIMGUI_API void igErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback,void* user_data) { @@ -5151,6 +5594,22 @@ CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries() { return ImGui::ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); } +CIMGUI_API void igDebugDrawCursorPos(ImU32 col) +{ + return ImGui::DebugDrawCursorPos(col); +} +CIMGUI_API void igDebugDrawLineExtents(ImU32 col) +{ + return ImGui::DebugDrawLineExtents(col); +} +CIMGUI_API void igDebugDrawItemRect(ImU32 col) +{ + return ImGui::DebugDrawItemRect(col); +} +CIMGUI_API void igDebugTextUnformattedWithLocateItem(const char* line_begin,const char* line_end) +{ + return ImGui::DebugTextUnformattedWithLocateItem(line_begin,line_end); +} CIMGUI_API void igDebugLocateItem(ImGuiID target_id) { return ImGui::DebugLocateItem(target_id); @@ -5163,13 +5622,17 @@ CIMGUI_API void igDebugLocateItemResolveWithLastItem() { return ImGui::DebugLocateItemResolveWithLastItem(); } -CIMGUI_API void igDebugDrawItemRect(ImU32 col) +CIMGUI_API void igDebugBreakClearData() { - return ImGui::DebugDrawItemRect(col); + return ImGui::DebugBreakClearData(); } -CIMGUI_API void igDebugStartItemPicker() +CIMGUI_API bool igDebugBreakButton(const char* label,const char* description_of_location) { - return ImGui::DebugStartItemPicker(); + return ImGui::DebugBreakButton(label,description_of_location); +} +CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* description_of_location) +{ + return ImGui::DebugBreakButtonTooltip(keyboard_only,description_of_location); } CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas) { @@ -5223,6 +5686,14 @@ CIMGUI_API void igDebugNodeInputTextState(ImGuiInputTextState* state) { return ImGui::DebugNodeInputTextState(state); } +CIMGUI_API void igDebugNodeTypingSelectState(ImGuiTypingSelectState* state) +{ + return ImGui::DebugNodeTypingSelectState(state); +} +CIMGUI_API void igDebugNodeMultiSelectState(ImGuiMultiSelectState* state) +{ + return ImGui::DebugNodeMultiSelectState(state); +} CIMGUI_API void igDebugNodeWindow(ImGuiWindow* window,const char* label) { return ImGui::DebugNodeWindow(window,label); @@ -5243,6 +5714,10 @@ CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport) { return ImGui::DebugNodeViewport(viewport); } +CIMGUI_API void igDebugNodePlatformMonitor(ImGuiPlatformMonitor* monitor,const char* label,int idx) +{ + return ImGui::DebugNodePlatformMonitor(monitor,label,idx); +} CIMGUI_API void igDebugRenderKeyboardPreview(ImDrawList* draw_list) { return ImGui::DebugRenderKeyboardPreview(draw_list); @@ -5251,14 +5726,14 @@ CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewpo { return ImGui::DebugRenderViewportThumbnail(draw_list,viewport,bb); } -CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat) -{ - return ImGui::IsKeyPressedMap(key,repeat); -} CIMGUI_API const ImFontBuilderIO* igImFontAtlasGetBuilderForStbTruetype() { return ImFontAtlasGetBuilderForStbTruetype(); } +CIMGUI_API void igImFontAtlasUpdateConfigDataPointers(ImFontAtlas* atlas) +{ + return ImFontAtlasUpdateConfigDataPointers(atlas); +} CIMGUI_API void igImFontAtlasBuildInit(ImFontAtlas* atlas) { return ImFontAtlasBuildInit(atlas); @@ -5364,7 +5839,7 @@ CimguiStorage& GetCimguiStorage() ImGuiIO& io = ImGui::GetIO(); if (io.BackendLanguageUserData == NULL) { - io.BackendLanguageUserData = new CimguiStorage(); + io.BackendLanguageUserData = IM_NEW(CimguiStorage)(); } return *(CimguiStorage*)io.BackendLanguageUserData; diff --git a/imgui-sys/third-party/imgui-docking/cimgui.h b/imgui-sys/third-party/imgui-docking/cimgui.h index 0a9986a..0a8522f 100644 --- a/imgui-sys/third-party/imgui-docking/cimgui.h +++ b/imgui-sys/third-party/imgui-docking/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui //with imgui_internal.h api //docking branch #ifndef CIMGUI_INCLUDED @@ -60,13 +60,18 @@ typedef struct ImGuiIO ImGuiIO; typedef struct ImGuiInputTextCallbackData ImGuiInputTextCallbackData; typedef struct ImGuiKeyData ImGuiKeyData; typedef struct ImGuiListClipper ImGuiListClipper; +typedef struct ImGuiMultiSelectIO ImGuiMultiSelectIO; typedef struct ImGuiOnceUponAFrame ImGuiOnceUponAFrame; typedef struct ImGuiPayload ImGuiPayload; typedef struct ImGuiPlatformIO ImGuiPlatformIO; -typedef struct ImGuiPlatformMonitor ImGuiPlatformMonitor; typedef struct ImGuiPlatformImeData ImGuiPlatformImeData; +typedef struct ImGuiPlatformMonitor ImGuiPlatformMonitor; +typedef struct ImGuiSelectionBasicStorage ImGuiSelectionBasicStorage; +typedef struct ImGuiSelectionExternalStorage ImGuiSelectionExternalStorage; +typedef struct ImGuiSelectionRequest ImGuiSelectionRequest; typedef struct ImGuiSizeCallbackData ImGuiSizeCallbackData; typedef struct ImGuiStorage ImGuiStorage; +typedef struct ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiStyle ImGuiStyle; typedef struct ImGuiTableSortSpecs ImGuiTableSortSpecs; typedef struct ImGuiTableColumnSortSpecs ImGuiTableColumnSortSpecs; @@ -77,8 +82,10 @@ typedef struct ImGuiWindowClass ImGuiWindowClass; typedef struct ImBitVector ImBitVector; typedef struct ImRect ImRect; typedef struct ImDrawDataBuilder ImDrawDataBuilder; +typedef struct ImGuiBoxSelectState ImGuiBoxSelectState; typedef struct ImGuiColorMod ImGuiColorMod; typedef struct ImGuiContextHook ImGuiContextHook; +typedef struct ImGuiDataVarInfo ImGuiDataVarInfo; typedef struct ImGuiDataTypeInfo ImGuiDataTypeInfo; typedef struct ImGuiDockContext ImGuiDockContext; typedef struct ImGuiDockRequest ImGuiDockRequest; @@ -86,9 +93,12 @@ typedef struct ImGuiDockNode ImGuiDockNode; typedef struct ImGuiDockNodeSettings ImGuiDockNodeSettings; typedef struct ImGuiGroupData ImGuiGroupData; typedef struct ImGuiInputTextState ImGuiInputTextState; +typedef struct ImGuiInputTextDeactivateData ImGuiInputTextDeactivateData; typedef struct ImGuiLastItemData ImGuiLastItemData; typedef struct ImGuiLocEntry ImGuiLocEntry; typedef struct ImGuiMenuColumns ImGuiMenuColumns; +typedef struct ImGuiMultiSelectState ImGuiMultiSelectState; +typedef struct ImGuiMultiSelectTempData ImGuiMultiSelectTempData; typedef struct ImGuiNavItemData ImGuiNavItemData; typedef struct ImGuiMetricsConfig ImGuiMetricsConfig; typedef struct ImGuiNextWindowData ImGuiNextWindowData; @@ -102,16 +112,31 @@ typedef struct ImGuiStyleMod ImGuiStyleMod; typedef struct ImGuiTabBar ImGuiTabBar; typedef struct ImGuiTabItem ImGuiTabItem; typedef struct ImGuiTable ImGuiTable; +typedef struct ImGuiTableHeaderData ImGuiTableHeaderData; typedef struct ImGuiTableColumn ImGuiTableColumn; typedef struct ImGuiTableInstanceData ImGuiTableInstanceData; typedef struct ImGuiTableTempData ImGuiTableTempData; typedef struct ImGuiTableSettings ImGuiTableSettings; typedef struct ImGuiTableColumnsSettings ImGuiTableColumnsSettings; +typedef struct ImGuiTreeNodeStackData ImGuiTreeNodeStackData; +typedef struct ImGuiTypingSelectState ImGuiTypingSelectState; +typedef struct ImGuiTypingSelectRequest ImGuiTypingSelectRequest; typedef struct ImGuiWindow ImGuiWindow; +typedef struct ImGuiWindowDockStyle ImGuiWindowDockStyle; typedef struct ImGuiWindowTempData ImGuiWindowTempData; typedef struct ImGuiWindowSettings ImGuiWindowSettings; +typedef struct STB_TexteditState STB_TexteditState; typedef struct ImVector_const_charPtr {int Size;int Capacity;const char** Data;} ImVector_const_charPtr; +typedef unsigned int ImGuiID; +typedef signed char ImS8; +typedef unsigned char ImU8; +typedef signed short ImS16; +typedef unsigned short ImU16; +typedef signed int ImS32; +typedef unsigned int ImU32; +typedef signed long long ImS64; +typedef unsigned long long ImU64; struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -131,13 +156,18 @@ struct ImGuiIO; struct ImGuiInputTextCallbackData; struct ImGuiKeyData; struct ImGuiListClipper; +struct ImGuiMultiSelectIO; struct ImGuiOnceUponAFrame; struct ImGuiPayload; struct ImGuiPlatformIO; -struct ImGuiPlatformMonitor; struct ImGuiPlatformImeData; +struct ImGuiPlatformMonitor; +struct ImGuiSelectionBasicStorage; +struct ImGuiSelectionExternalStorage; +struct ImGuiSelectionRequest; struct ImGuiSizeCallbackData; struct ImGuiStorage; +struct ImGuiStoragePair; struct ImGuiStyle; struct ImGuiTableSortSpecs; struct ImGuiTableColumnSortSpecs; @@ -148,10 +178,8 @@ struct ImGuiWindowClass; typedef int ImGuiCol; typedef int ImGuiCond; typedef int ImGuiDataType; -typedef int ImGuiDir; typedef int ImGuiMouseButton; typedef int ImGuiMouseCursor; -typedef int ImGuiSortDirection; typedef int ImGuiStyleVar; typedef int ImGuiTableBgTarget; typedef int ImDrawFlags; @@ -159,6 +187,7 @@ typedef int ImDrawListFlags; typedef int ImFontAtlasFlags; typedef int ImGuiBackendFlags; typedef int ImGuiButtonFlags; +typedef int ImGuiChildFlags; typedef int ImGuiColorEditFlags; typedef int ImGuiConfigFlags; typedef int ImGuiComboFlags; @@ -166,9 +195,12 @@ typedef int ImGuiDockNodeFlags; typedef int ImGuiDragDropFlags; typedef int ImGuiFocusedFlags; typedef int ImGuiHoveredFlags; +typedef int ImGuiInputFlags; typedef int ImGuiInputTextFlags; +typedef int ImGuiItemFlags; typedef int ImGuiKeyChord; typedef int ImGuiPopupFlags; +typedef int ImGuiMultiSelectFlags; typedef int ImGuiSelectableFlags; typedef int ImGuiSliderFlags; typedef int ImGuiTabBarFlags; @@ -181,18 +213,10 @@ typedef int ImGuiViewportFlags; typedef int ImGuiWindowFlags; typedef void* ImTextureID; typedef unsigned short ImDrawIdx; -typedef unsigned int ImGuiID; -typedef signed char ImS8; -typedef unsigned char ImU8; -typedef signed short ImS16; -typedef unsigned short ImU16; -typedef signed int ImS32; -typedef unsigned int ImU32; -typedef signed long long ImS64; -typedef unsigned long long ImU64; -typedef unsigned short ImWchar16; typedef unsigned int ImWchar32; +typedef unsigned short ImWchar16; typedef ImWchar32 ImWchar; +typedef ImS64 ImGuiSelectionUserData; typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData* data); typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data); typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); @@ -225,15 +249,13 @@ typedef enum { ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, - ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 16, - ImGuiWindowFlags_NoNavInputs = 1 << 18, - ImGuiWindowFlags_NoNavFocus = 1 << 19, - ImGuiWindowFlags_UnsavedDocument = 1 << 20, - ImGuiWindowFlags_NoDocking = 1 << 21, + ImGuiWindowFlags_NoNavInputs = 1 << 16, + ImGuiWindowFlags_NoNavFocus = 1 << 17, + ImGuiWindowFlags_UnsavedDocument = 1 << 18, + ImGuiWindowFlags_NoDocking = 1 << 19, ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, - ImGuiWindowFlags_NavFlattened = 1 << 23, ImGuiWindowFlags_ChildWindow = 1 << 24, ImGuiWindowFlags_Tooltip = 1 << 25, ImGuiWindowFlags_Popup = 1 << 26, @@ -241,35 +263,58 @@ typedef enum { ImGuiWindowFlags_ChildMenu = 1 << 28, ImGuiWindowFlags_DockNodeHost = 1 << 29, }ImGuiWindowFlags_; +typedef enum { + ImGuiChildFlags_None = 0, + ImGuiChildFlags_Borders = 1 << 0, + ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, + ImGuiChildFlags_ResizeX = 1 << 2, + ImGuiChildFlags_ResizeY = 1 << 3, + ImGuiChildFlags_AutoResizeX = 1 << 4, + ImGuiChildFlags_AutoResizeY = 1 << 5, + ImGuiChildFlags_AlwaysAutoResize = 1 << 6, + ImGuiChildFlags_FrameStyle = 1 << 7, + ImGuiChildFlags_NavFlattened = 1 << 8, +}ImGuiChildFlags_; +typedef enum { + ImGuiItemFlags_None = 0, + ImGuiItemFlags_NoTabStop = 1 << 0, + ImGuiItemFlags_NoNav = 1 << 1, + ImGuiItemFlags_NoNavDefaultFocus = 1 << 2, + ImGuiItemFlags_ButtonRepeat = 1 << 3, + ImGuiItemFlags_AutoClosePopups = 1 << 4, + ImGuiItemFlags_AllowDuplicateId = 1 << 5, +}ImGuiItemFlags_; typedef enum { ImGuiInputTextFlags_None = 0, ImGuiInputTextFlags_CharsDecimal = 1 << 0, ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, - ImGuiInputTextFlags_CharsUppercase = 1 << 2, - ImGuiInputTextFlags_CharsNoBlank = 1 << 3, - ImGuiInputTextFlags_AutoSelectAll = 1 << 4, - ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, - ImGuiInputTextFlags_CallbackCompletion = 1 << 6, - ImGuiInputTextFlags_CallbackHistory = 1 << 7, - ImGuiInputTextFlags_CallbackAlways = 1 << 8, - ImGuiInputTextFlags_CallbackCharFilter = 1 << 9, - ImGuiInputTextFlags_AllowTabInput = 1 << 10, - ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 11, - ImGuiInputTextFlags_NoHorizontalScroll = 1 << 12, - ImGuiInputTextFlags_AlwaysOverwrite = 1 << 13, - ImGuiInputTextFlags_ReadOnly = 1 << 14, - ImGuiInputTextFlags_Password = 1 << 15, + ImGuiInputTextFlags_CharsScientific = 1 << 2, + ImGuiInputTextFlags_CharsUppercase = 1 << 3, + ImGuiInputTextFlags_CharsNoBlank = 1 << 4, + ImGuiInputTextFlags_AllowTabInput = 1 << 5, + ImGuiInputTextFlags_EnterReturnsTrue = 1 << 6, + ImGuiInputTextFlags_EscapeClearsAll = 1 << 7, + ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 8, + ImGuiInputTextFlags_ReadOnly = 1 << 9, + ImGuiInputTextFlags_Password = 1 << 10, + ImGuiInputTextFlags_AlwaysOverwrite = 1 << 11, + ImGuiInputTextFlags_AutoSelectAll = 1 << 12, + ImGuiInputTextFlags_ParseEmptyRefVal = 1 << 13, + ImGuiInputTextFlags_DisplayEmptyRefVal = 1 << 14, + ImGuiInputTextFlags_NoHorizontalScroll = 1 << 15, ImGuiInputTextFlags_NoUndoRedo = 1 << 16, - ImGuiInputTextFlags_CharsScientific = 1 << 17, - ImGuiInputTextFlags_CallbackResize = 1 << 18, - ImGuiInputTextFlags_CallbackEdit = 1 << 19, - ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, + ImGuiInputTextFlags_CallbackCompletion = 1 << 17, + ImGuiInputTextFlags_CallbackHistory = 1 << 18, + ImGuiInputTextFlags_CallbackAlways = 1 << 19, + ImGuiInputTextFlags_CallbackCharFilter = 1 << 20, + ImGuiInputTextFlags_CallbackResize = 1 << 21, + ImGuiInputTextFlags_CallbackEdit = 1 << 22, }ImGuiInputTextFlags_; typedef enum { ImGuiTreeNodeFlags_None = 0, ImGuiTreeNodeFlags_Selected = 1 << 0, ImGuiTreeNodeFlags_Framed = 1 << 1, - ImGuiTreeNodeFlags_AllowItemOverlap = 1 << 2, + ImGuiTreeNodeFlags_AllowOverlap = 1 << 2, ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, @@ -280,7 +325,9 @@ typedef enum { ImGuiTreeNodeFlags_FramePadding = 1 << 10, ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, - ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, + ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13, + ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, + ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15, ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, }ImGuiTreeNodeFlags_; typedef enum { @@ -290,19 +337,21 @@ typedef enum { ImGuiPopupFlags_MouseButtonMiddle = 2, ImGuiPopupFlags_MouseButtonMask_ = 0x1F, ImGuiPopupFlags_MouseButtonDefault_ = 1, - ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5, - ImGuiPopupFlags_NoOpenOverItems = 1 << 6, - ImGuiPopupFlags_AnyPopupId = 1 << 7, - ImGuiPopupFlags_AnyPopupLevel = 1 << 8, + ImGuiPopupFlags_NoReopen = 1 << 5, + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7, + ImGuiPopupFlags_NoOpenOverItems = 1 << 8, + ImGuiPopupFlags_AnyPopupId = 1 << 10, + ImGuiPopupFlags_AnyPopupLevel = 1 << 11, ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, }ImGuiPopupFlags_; typedef enum { ImGuiSelectableFlags_None = 0, - ImGuiSelectableFlags_DontClosePopups = 1 << 0, + ImGuiSelectableFlags_NoAutoClosePopups = 1 << 0, ImGuiSelectableFlags_SpanAllColumns = 1 << 1, ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, ImGuiSelectableFlags_Disabled = 1 << 3, - ImGuiSelectableFlags_AllowItemOverlap = 1 << 4, + ImGuiSelectableFlags_AllowOverlap = 1 << 4, + ImGuiSelectableFlags_Highlight = 1 << 5, }ImGuiSelectableFlags_; typedef enum { ImGuiComboFlags_None = 0, @@ -313,6 +362,7 @@ typedef enum { ImGuiComboFlags_HeightLargest = 1 << 4, ImGuiComboFlags_NoArrowButton = 1 << 5, ImGuiComboFlags_NoPreview = 1 << 6, + ImGuiComboFlags_WidthFitPreview = 1 << 7, ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, }ImGuiComboFlags_; typedef enum { @@ -323,8 +373,9 @@ typedef enum { ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, - ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, - ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, + ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6, + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7, + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8, ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, }ImGuiTabBarFlags_; @@ -338,84 +389,8 @@ typedef enum { ImGuiTabItemFlags_NoReorder = 1 << 5, ImGuiTabItemFlags_Leading = 1 << 6, ImGuiTabItemFlags_Trailing = 1 << 7, + ImGuiTabItemFlags_NoAssumedClosure = 1 << 8, }ImGuiTabItemFlags_; -typedef enum { - ImGuiTableFlags_None = 0, - ImGuiTableFlags_Resizable = 1 << 0, - ImGuiTableFlags_Reorderable = 1 << 1, - ImGuiTableFlags_Hideable = 1 << 2, - ImGuiTableFlags_Sortable = 1 << 3, - ImGuiTableFlags_NoSavedSettings = 1 << 4, - ImGuiTableFlags_ContextMenuInBody = 1 << 5, - ImGuiTableFlags_RowBg = 1 << 6, - ImGuiTableFlags_BordersInnerH = 1 << 7, - ImGuiTableFlags_BordersOuterH = 1 << 8, - ImGuiTableFlags_BordersInnerV = 1 << 9, - ImGuiTableFlags_BordersOuterV = 1 << 10, - ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, - ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, - ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, - ImGuiTableFlags_NoBordersInBody = 1 << 11, - ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, - ImGuiTableFlags_SizingFixedFit = 1 << 13, - ImGuiTableFlags_SizingFixedSame = 2 << 13, - ImGuiTableFlags_SizingStretchProp = 3 << 13, - ImGuiTableFlags_SizingStretchSame = 4 << 13, - ImGuiTableFlags_NoHostExtendX = 1 << 16, - ImGuiTableFlags_NoHostExtendY = 1 << 17, - ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, - ImGuiTableFlags_PreciseWidths = 1 << 19, - ImGuiTableFlags_NoClip = 1 << 20, - ImGuiTableFlags_PadOuterX = 1 << 21, - ImGuiTableFlags_NoPadOuterX = 1 << 22, - ImGuiTableFlags_NoPadInnerX = 1 << 23, - ImGuiTableFlags_ScrollX = 1 << 24, - ImGuiTableFlags_ScrollY = 1 << 25, - ImGuiTableFlags_SortMulti = 1 << 26, - ImGuiTableFlags_SortTristate = 1 << 27, - ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, -}ImGuiTableFlags_; -typedef enum { - ImGuiTableColumnFlags_None = 0, - ImGuiTableColumnFlags_Disabled = 1 << 0, - ImGuiTableColumnFlags_DefaultHide = 1 << 1, - ImGuiTableColumnFlags_DefaultSort = 1 << 2, - ImGuiTableColumnFlags_WidthStretch = 1 << 3, - ImGuiTableColumnFlags_WidthFixed = 1 << 4, - ImGuiTableColumnFlags_NoResize = 1 << 5, - ImGuiTableColumnFlags_NoReorder = 1 << 6, - ImGuiTableColumnFlags_NoHide = 1 << 7, - ImGuiTableColumnFlags_NoClip = 1 << 8, - ImGuiTableColumnFlags_NoSort = 1 << 9, - ImGuiTableColumnFlags_NoSortAscending = 1 << 10, - ImGuiTableColumnFlags_NoSortDescending = 1 << 11, - ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, - ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, - ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, - ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, - ImGuiTableColumnFlags_IndentEnable = 1 << 16, - ImGuiTableColumnFlags_IndentDisable = 1 << 17, - ImGuiTableColumnFlags_IsEnabled = 1 << 24, - ImGuiTableColumnFlags_IsVisible = 1 << 25, - ImGuiTableColumnFlags_IsSorted = 1 << 26, - ImGuiTableColumnFlags_IsHovered = 1 << 27, - ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, - ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, - ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, - ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, -}ImGuiTableColumnFlags_; -typedef enum { - ImGuiTableRowFlags_None = 0, - ImGuiTableRowFlags_Headers = 1 << 0, -}ImGuiTableRowFlags_; -typedef enum { - ImGuiTableBgTarget_None = 0, - ImGuiTableBgTarget_RowBg0 = 1, - ImGuiTableBgTarget_RowBg1 = 2, - ImGuiTableBgTarget_CellBg = 3, -}ImGuiTableBgTarget_; typedef enum { ImGuiFocusedFlags_None = 0, ImGuiFocusedFlags_ChildWindows = 1 << 0, @@ -434,23 +409,29 @@ typedef enum { ImGuiHoveredFlags_DockHierarchy = 1 << 4, ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 5, ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 7, - ImGuiHoveredFlags_AllowWhenOverlapped = 1 << 8, - ImGuiHoveredFlags_AllowWhenDisabled = 1 << 9, - ImGuiHoveredFlags_NoNavOverride = 1 << 10, + ImGuiHoveredFlags_AllowWhenOverlappedByItem = 1 << 8, + ImGuiHoveredFlags_AllowWhenOverlappedByWindow = 1 << 9, + ImGuiHoveredFlags_AllowWhenDisabled = 1 << 10, + ImGuiHoveredFlags_NoNavOverride = 1 << 11, + ImGuiHoveredFlags_AllowWhenOverlapped = ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow, ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, - ImGuiHoveredFlags_DelayNormal = 1 << 11, - ImGuiHoveredFlags_DelayShort = 1 << 12, - ImGuiHoveredFlags_NoSharedDelay = 1 << 13, + ImGuiHoveredFlags_ForTooltip = 1 << 12, + ImGuiHoveredFlags_Stationary = 1 << 13, + ImGuiHoveredFlags_DelayNone = 1 << 14, + ImGuiHoveredFlags_DelayShort = 1 << 15, + ImGuiHoveredFlags_DelayNormal = 1 << 16, + ImGuiHoveredFlags_NoSharedDelay = 1 << 17, }ImGuiHoveredFlags_; typedef enum { ImGuiDockNodeFlags_None = 0, ImGuiDockNodeFlags_KeepAliveOnly = 1 << 0, - ImGuiDockNodeFlags_NoDockingInCentralNode = 1 << 2, + ImGuiDockNodeFlags_NoDockingOverCentralNode = 1 << 2, ImGuiDockNodeFlags_PassthruCentralNode = 1 << 3, - ImGuiDockNodeFlags_NoSplit = 1 << 4, + ImGuiDockNodeFlags_NoDockingSplit = 1 << 4, ImGuiDockNodeFlags_NoResize = 1 << 5, ImGuiDockNodeFlags_AutoHideTabBar = 1 << 6, + ImGuiDockNodeFlags_NoUndocking = 1 << 7, }ImGuiDockNodeFlags_; typedef enum { ImGuiDragDropFlags_None = 0, @@ -459,7 +440,9 @@ typedef enum { ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, ImGuiDragDropFlags_SourceExtern = 1 << 4, - ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, + ImGuiDragDropFlags_PayloadAutoExpire = 1 << 5, + ImGuiDragDropFlags_PayloadNoCrossContext = 1 << 6, + ImGuiDragDropFlags_PayloadNoCrossProcess = 1 << 7, ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, @@ -476,21 +459,22 @@ typedef enum { ImGuiDataType_U64, ImGuiDataType_Float, ImGuiDataType_Double, + ImGuiDataType_Bool, ImGuiDataType_COUNT }ImGuiDataType_; typedef enum { - ImGuiDir_None = -1, - ImGuiDir_Left = 0, - ImGuiDir_Right = 1, - ImGuiDir_Up = 2, - ImGuiDir_Down = 3, - ImGuiDir_COUNT -}ImGuiDir_; +ImGuiDir_None=-1, +ImGuiDir_Left=0, +ImGuiDir_Right=1, +ImGuiDir_Up=2, +ImGuiDir_Down=3, +ImGuiDir_COUNT=4, +}ImGuiDir; typedef enum { - ImGuiSortDirection_None = 0, - ImGuiSortDirection_Ascending = 1, - ImGuiSortDirection_Descending = 2 -}ImGuiSortDirection_; +ImGuiSortDirection_None=0, +ImGuiSortDirection_Ascending=1, +ImGuiSortDirection_Descending=2, +}ImGuiSortDirection; typedef enum { ImGuiKey_None=0, ImGuiKey_Tab=512, @@ -565,93 +549,114 @@ ImGuiKey_F9=580, ImGuiKey_F10=581, ImGuiKey_F11=582, ImGuiKey_F12=583, -ImGuiKey_Apostrophe=584, -ImGuiKey_Comma=585, -ImGuiKey_Minus=586, -ImGuiKey_Period=587, -ImGuiKey_Slash=588, -ImGuiKey_Semicolon=589, -ImGuiKey_Equal=590, -ImGuiKey_LeftBracket=591, -ImGuiKey_Backslash=592, -ImGuiKey_RightBracket=593, -ImGuiKey_GraveAccent=594, -ImGuiKey_CapsLock=595, -ImGuiKey_ScrollLock=596, -ImGuiKey_NumLock=597, -ImGuiKey_PrintScreen=598, -ImGuiKey_Pause=599, -ImGuiKey_Keypad0=600, -ImGuiKey_Keypad1=601, -ImGuiKey_Keypad2=602, -ImGuiKey_Keypad3=603, -ImGuiKey_Keypad4=604, -ImGuiKey_Keypad5=605, -ImGuiKey_Keypad6=606, -ImGuiKey_Keypad7=607, -ImGuiKey_Keypad8=608, -ImGuiKey_Keypad9=609, -ImGuiKey_KeypadDecimal=610, -ImGuiKey_KeypadDivide=611, -ImGuiKey_KeypadMultiply=612, -ImGuiKey_KeypadSubtract=613, -ImGuiKey_KeypadAdd=614, -ImGuiKey_KeypadEnter=615, -ImGuiKey_KeypadEqual=616, -ImGuiKey_GamepadStart=617, -ImGuiKey_GamepadBack=618, -ImGuiKey_GamepadFaceLeft=619, -ImGuiKey_GamepadFaceRight=620, -ImGuiKey_GamepadFaceUp=621, -ImGuiKey_GamepadFaceDown=622, -ImGuiKey_GamepadDpadLeft=623, -ImGuiKey_GamepadDpadRight=624, -ImGuiKey_GamepadDpadUp=625, -ImGuiKey_GamepadDpadDown=626, -ImGuiKey_GamepadL1=627, -ImGuiKey_GamepadR1=628, -ImGuiKey_GamepadL2=629, -ImGuiKey_GamepadR2=630, -ImGuiKey_GamepadL3=631, -ImGuiKey_GamepadR3=632, -ImGuiKey_GamepadLStickLeft=633, -ImGuiKey_GamepadLStickRight=634, -ImGuiKey_GamepadLStickUp=635, -ImGuiKey_GamepadLStickDown=636, -ImGuiKey_GamepadRStickLeft=637, -ImGuiKey_GamepadRStickRight=638, -ImGuiKey_GamepadRStickUp=639, -ImGuiKey_GamepadRStickDown=640, -ImGuiKey_MouseLeft=641, -ImGuiKey_MouseRight=642, -ImGuiKey_MouseMiddle=643, -ImGuiKey_MouseX1=644, -ImGuiKey_MouseX2=645, -ImGuiKey_MouseWheelX=646, -ImGuiKey_MouseWheelY=647, -ImGuiKey_ReservedForModCtrl=648, -ImGuiKey_ReservedForModShift=649, -ImGuiKey_ReservedForModAlt=650, -ImGuiKey_ReservedForModSuper=651, -ImGuiKey_COUNT=652, +ImGuiKey_F13=584, +ImGuiKey_F14=585, +ImGuiKey_F15=586, +ImGuiKey_F16=587, +ImGuiKey_F17=588, +ImGuiKey_F18=589, +ImGuiKey_F19=590, +ImGuiKey_F20=591, +ImGuiKey_F21=592, +ImGuiKey_F22=593, +ImGuiKey_F23=594, +ImGuiKey_F24=595, +ImGuiKey_Apostrophe=596, +ImGuiKey_Comma=597, +ImGuiKey_Minus=598, +ImGuiKey_Period=599, +ImGuiKey_Slash=600, +ImGuiKey_Semicolon=601, +ImGuiKey_Equal=602, +ImGuiKey_LeftBracket=603, +ImGuiKey_Backslash=604, +ImGuiKey_RightBracket=605, +ImGuiKey_GraveAccent=606, +ImGuiKey_CapsLock=607, +ImGuiKey_ScrollLock=608, +ImGuiKey_NumLock=609, +ImGuiKey_PrintScreen=610, +ImGuiKey_Pause=611, +ImGuiKey_Keypad0=612, +ImGuiKey_Keypad1=613, +ImGuiKey_Keypad2=614, +ImGuiKey_Keypad3=615, +ImGuiKey_Keypad4=616, +ImGuiKey_Keypad5=617, +ImGuiKey_Keypad6=618, +ImGuiKey_Keypad7=619, +ImGuiKey_Keypad8=620, +ImGuiKey_Keypad9=621, +ImGuiKey_KeypadDecimal=622, +ImGuiKey_KeypadDivide=623, +ImGuiKey_KeypadMultiply=624, +ImGuiKey_KeypadSubtract=625, +ImGuiKey_KeypadAdd=626, +ImGuiKey_KeypadEnter=627, +ImGuiKey_KeypadEqual=628, +ImGuiKey_AppBack=629, +ImGuiKey_AppForward=630, +ImGuiKey_GamepadStart=631, +ImGuiKey_GamepadBack=632, +ImGuiKey_GamepadFaceLeft=633, +ImGuiKey_GamepadFaceRight=634, +ImGuiKey_GamepadFaceUp=635, +ImGuiKey_GamepadFaceDown=636, +ImGuiKey_GamepadDpadLeft=637, +ImGuiKey_GamepadDpadRight=638, +ImGuiKey_GamepadDpadUp=639, +ImGuiKey_GamepadDpadDown=640, +ImGuiKey_GamepadL1=641, +ImGuiKey_GamepadR1=642, +ImGuiKey_GamepadL2=643, +ImGuiKey_GamepadR2=644, +ImGuiKey_GamepadL3=645, +ImGuiKey_GamepadR3=646, +ImGuiKey_GamepadLStickLeft=647, +ImGuiKey_GamepadLStickRight=648, +ImGuiKey_GamepadLStickUp=649, +ImGuiKey_GamepadLStickDown=650, +ImGuiKey_GamepadRStickLeft=651, +ImGuiKey_GamepadRStickRight=652, +ImGuiKey_GamepadRStickUp=653, +ImGuiKey_GamepadRStickDown=654, +ImGuiKey_MouseLeft=655, +ImGuiKey_MouseRight=656, +ImGuiKey_MouseMiddle=657, +ImGuiKey_MouseX1=658, +ImGuiKey_MouseX2=659, +ImGuiKey_MouseWheelX=660, +ImGuiKey_MouseWheelY=661, +ImGuiKey_ReservedForModCtrl=662, +ImGuiKey_ReservedForModShift=663, +ImGuiKey_ReservedForModAlt=664, +ImGuiKey_ReservedForModSuper=665, +ImGuiKey_COUNT=666, ImGuiMod_None=0, ImGuiMod_Ctrl=1 << 12, ImGuiMod_Shift=1 << 13, ImGuiMod_Alt=1 << 14, ImGuiMod_Super=1 << 15, -ImGuiMod_Shortcut=1 << 11, -ImGuiMod_Mask_=0xF800, +ImGuiMod_Mask_=0xF000, ImGuiKey_NamedKey_BEGIN=512, ImGuiKey_NamedKey_END=ImGuiKey_COUNT, ImGuiKey_NamedKey_COUNT=ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, -ImGuiKey_KeysData_SIZE=ImGuiKey_COUNT, -ImGuiKey_KeysData_OFFSET=0, +ImGuiKey_KeysData_SIZE=ImGuiKey_NamedKey_COUNT, +ImGuiKey_KeysData_OFFSET=ImGuiKey_NamedKey_BEGIN, }ImGuiKey; typedef enum { - ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, - ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, - ImGuiNavInput_COUNT, -}ImGuiNavInput; + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, + ImGuiInputFlags_RouteActive = 1 << 10, + ImGuiInputFlags_RouteFocused = 1 << 11, + ImGuiInputFlags_RouteGlobal = 1 << 12, + ImGuiInputFlags_RouteAlways = 1 << 13, + ImGuiInputFlags_RouteOverFocused = 1 << 14, + ImGuiInputFlags_RouteOverActive = 1 << 15, + ImGuiInputFlags_RouteUnlessBgFocused = 1 << 16, + ImGuiInputFlags_RouteFromRootWindow = 1 << 17, + ImGuiInputFlags_Tooltip = 1 << 18, +}ImGuiInputFlags_; typedef enum { ImGuiConfigFlags_None = 0, ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, @@ -660,7 +665,8 @@ typedef enum { ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, ImGuiConfigFlags_NoMouse = 1 << 4, ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, - ImGuiConfigFlags_DockingEnable = 1 << 6, + ImGuiConfigFlags_NoKeyboard = 1 << 6, + ImGuiConfigFlags_DockingEnable = 1 << 7, ImGuiConfigFlags_ViewportsEnable = 1 << 10, ImGuiConfigFlags_DpiEnableScaleViewports= 1 << 14, ImGuiConfigFlags_DpiEnableScaleFonts = 1 << 15, @@ -711,11 +717,13 @@ typedef enum { ImGuiCol_ResizeGrip, ImGuiCol_ResizeGripHovered, ImGuiCol_ResizeGripActive, - ImGuiCol_Tab, ImGuiCol_TabHovered, - ImGuiCol_TabActive, - ImGuiCol_TabUnfocused, - ImGuiCol_TabUnfocusedActive, + ImGuiCol_Tab, + ImGuiCol_TabSelected, + ImGuiCol_TabSelectedOverline, + ImGuiCol_TabDimmed, + ImGuiCol_TabDimmedSelected, + ImGuiCol_TabDimmedSelectedOverline, ImGuiCol_DockingPreview, ImGuiCol_DockingEmptyBg, ImGuiCol_PlotLines, @@ -727,13 +735,14 @@ typedef enum { ImGuiCol_TableBorderLight, ImGuiCol_TableRowBg, ImGuiCol_TableRowBgAlt, + ImGuiCol_TextLink, ImGuiCol_TextSelectedBg, ImGuiCol_DragDropTarget, ImGuiCol_NavHighlight, ImGuiCol_NavWindowingHighlight, ImGuiCol_NavWindowingDimBg, ImGuiCol_ModalWindowDimBg, - ImGuiCol_COUNT + ImGuiCol_COUNT, }ImGuiCol_; typedef enum { ImGuiStyleVar_Alpha, @@ -759,8 +768,17 @@ typedef enum { ImGuiStyleVar_GrabMinSize, ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, + ImGuiStyleVar_TabBorderSize, + ImGuiStyleVar_TabBarBorderSize, + ImGuiStyleVar_TabBarOverlineSize, + ImGuiStyleVar_TableAngledHeadersAngle, + ImGuiStyleVar_TableAngledHeadersTextAlign, ImGuiStyleVar_ButtonTextAlign, ImGuiStyleVar_SelectableTextAlign, + ImGuiStyleVar_SeparatorTextBorderSize, + ImGuiStyleVar_SeparatorTextAlign, + ImGuiStyleVar_SeparatorTextPadding, + ImGuiStyleVar_DockingSeparatorSize, ImGuiStyleVar_COUNT }ImGuiStyleVar_; typedef enum { @@ -769,7 +787,6 @@ typedef enum { ImGuiButtonFlags_MouseButtonRight = 1 << 1, ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, - ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, }ImGuiButtonFlags_; typedef enum { ImGuiColorEditFlags_None = 0, @@ -808,6 +825,7 @@ typedef enum { ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, + ImGuiSliderFlags_WrapAround = 1 << 8, ImGuiSliderFlags_InvalidMask_ = 0x7000000F, }ImGuiSliderFlags_; typedef enum { @@ -829,6 +847,12 @@ typedef enum { ImGuiMouseCursor_NotAllowed, ImGuiMouseCursor_COUNT }ImGuiMouseCursor_; +typedef enum { +ImGuiMouseSource_Mouse=0, +ImGuiMouseSource_TouchScreen=1, +ImGuiMouseSource_Pen=2, +ImGuiMouseSource_COUNT=3, +}ImGuiMouseSource; typedef enum { ImGuiCond_None = 0, ImGuiCond_Always = 1 << 0, @@ -836,6 +860,98 @@ typedef enum { ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3, }ImGuiCond_; +typedef enum { + ImGuiTableFlags_None = 0, + ImGuiTableFlags_Resizable = 1 << 0, + ImGuiTableFlags_Reorderable = 1 << 1, + ImGuiTableFlags_Hideable = 1 << 2, + ImGuiTableFlags_Sortable = 1 << 3, + ImGuiTableFlags_NoSavedSettings = 1 << 4, + ImGuiTableFlags_ContextMenuInBody = 1 << 5, + ImGuiTableFlags_RowBg = 1 << 6, + ImGuiTableFlags_BordersInnerH = 1 << 7, + ImGuiTableFlags_BordersOuterH = 1 << 8, + ImGuiTableFlags_BordersInnerV = 1 << 9, + ImGuiTableFlags_BordersOuterV = 1 << 10, + ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, + ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, + ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, + ImGuiTableFlags_NoBordersInBody = 1 << 11, + ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, + ImGuiTableFlags_SizingFixedFit = 1 << 13, + ImGuiTableFlags_SizingFixedSame = 2 << 13, + ImGuiTableFlags_SizingStretchProp = 3 << 13, + ImGuiTableFlags_SizingStretchSame = 4 << 13, + ImGuiTableFlags_NoHostExtendX = 1 << 16, + ImGuiTableFlags_NoHostExtendY = 1 << 17, + ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, + ImGuiTableFlags_PreciseWidths = 1 << 19, + ImGuiTableFlags_NoClip = 1 << 20, + ImGuiTableFlags_PadOuterX = 1 << 21, + ImGuiTableFlags_NoPadOuterX = 1 << 22, + ImGuiTableFlags_NoPadInnerX = 1 << 23, + ImGuiTableFlags_ScrollX = 1 << 24, + ImGuiTableFlags_ScrollY = 1 << 25, + ImGuiTableFlags_SortMulti = 1 << 26, + ImGuiTableFlags_SortTristate = 1 << 27, + ImGuiTableFlags_HighlightHoveredColumn = 1 << 28, + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, +}ImGuiTableFlags_; +typedef enum { + ImGuiTableColumnFlags_None = 0, + ImGuiTableColumnFlags_Disabled = 1 << 0, + ImGuiTableColumnFlags_DefaultHide = 1 << 1, + ImGuiTableColumnFlags_DefaultSort = 1 << 2, + ImGuiTableColumnFlags_WidthStretch = 1 << 3, + ImGuiTableColumnFlags_WidthFixed = 1 << 4, + ImGuiTableColumnFlags_NoResize = 1 << 5, + ImGuiTableColumnFlags_NoReorder = 1 << 6, + ImGuiTableColumnFlags_NoHide = 1 << 7, + ImGuiTableColumnFlags_NoClip = 1 << 8, + ImGuiTableColumnFlags_NoSort = 1 << 9, + ImGuiTableColumnFlags_NoSortAscending = 1 << 10, + ImGuiTableColumnFlags_NoSortDescending = 1 << 11, + ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, + ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, + ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, + ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, + ImGuiTableColumnFlags_IndentEnable = 1 << 16, + ImGuiTableColumnFlags_IndentDisable = 1 << 17, + ImGuiTableColumnFlags_AngledHeader = 1 << 18, + ImGuiTableColumnFlags_IsEnabled = 1 << 24, + ImGuiTableColumnFlags_IsVisible = 1 << 25, + ImGuiTableColumnFlags_IsSorted = 1 << 26, + ImGuiTableColumnFlags_IsHovered = 1 << 27, + ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, + ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, + ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, +}ImGuiTableColumnFlags_; +typedef enum { + ImGuiTableRowFlags_None = 0, + ImGuiTableRowFlags_Headers = 1 << 0, +}ImGuiTableRowFlags_; +typedef enum { + ImGuiTableBgTarget_None = 0, + ImGuiTableBgTarget_RowBg0 = 1, + ImGuiTableBgTarget_RowBg1 = 2, + ImGuiTableBgTarget_CellBg = 3, +}ImGuiTableBgTarget_; +struct ImGuiTableSortSpecs +{ + const ImGuiTableColumnSortSpecs* Specs; + int SpecsCount; + bool SpecsDirty; +}; +struct ImGuiTableColumnSortSpecs +{ + ImGuiID ColumnUserID; + ImS16 ColumnIndex; + ImS16 SortOrder; + ImGuiSortDirection SortDirection; +}; struct ImGuiStyle { float Alpha; @@ -867,11 +983,19 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; float TabMinWidthForCloseButton; + float TabBarBorderSize; + float TabBarOverlineSize; + float TableAngledHeadersAngle; + ImVec2 TableAngledHeadersTextAlign; ImGuiDir ColorButtonPosition; ImVec2 ButtonTextAlign; ImVec2 SelectableTextAlign; + float SeparatorTextBorderSize; + ImVec2 SeparatorTextAlign; + ImVec2 SeparatorTextPadding; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; + float DockingSeparatorSize; float MouseCursorScale; bool AntiAliasedLines; bool AntiAliasedLinesUseTex; @@ -879,6 +1003,11 @@ struct ImGuiStyle float CurveTessellationTol; float CircleTessellationMaxError; ImVec4 Colors[ImGuiCol_COUNT]; + float HoverStationaryDelay; + float HoverDelayShort; + float HoverDelayNormal; + ImGuiHoveredFlags HoverFlagsForTooltipMouse; + ImGuiHoveredFlags HoverFlagsForTooltipNav; }; struct ImGuiKeyData { @@ -898,13 +1027,6 @@ struct ImGuiIO float IniSavingRate; const char* IniFilename; const char* LogFilename; - float MouseDoubleClickTime; - float MouseDoubleClickMaxDist; - float MouseDragThreshold; - float KeyRepeatDelay; - float KeyRepeatRate; - float HoverDelayNormal; - float HoverDelayShort; void* UserData; ImFontAtlas*Fonts; float FontGlobalScale; @@ -921,6 +1043,7 @@ struct ImGuiIO bool ConfigViewportsNoDefaultParent; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; + bool ConfigNavSwapGamepadButtons; bool ConfigInputTrickleEventQueue; bool ConfigInputTextCursorBlink; bool ConfigInputTextEnterKeepActive; @@ -928,16 +1051,22 @@ struct ImGuiIO bool ConfigWindowsResizeFromEdges; bool ConfigWindowsMoveFromTitleBarOnly; float ConfigMemoryCompactTimer; + float MouseDoubleClickTime; + float MouseDoubleClickMaxDist; + float MouseDragThreshold; + float KeyRepeatDelay; + float KeyRepeatRate; + bool ConfigDebugIsDebuggerPresent; + bool ConfigDebugHighlightIdConflicts; + bool ConfigDebugBeginReturnValueOnce; + bool ConfigDebugBeginReturnValueLoop; + bool ConfigDebugIgnoreFocusLoss; + bool ConfigDebugIniSettings; const char* BackendPlatformName; const char* BackendRendererName; void* BackendPlatformUserData; void* BackendRendererUserData; void* BackendLanguageUserData; - const char* (*GetClipboardTextFn)(void* user_data); - void (*SetClipboardTextFn)(void* user_data, const char* text); - void* ClipboardUserData; - void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data); - void* _UnusedPadding; bool WantCaptureMouse; bool WantCaptureKeyboard; bool WantTextInput; @@ -950,15 +1079,13 @@ struct ImGuiIO int MetricsRenderIndices; int MetricsRenderWindows; int MetricsActiveWindows; - int MetricsActiveAllocations; ImVec2 MouseDelta; - int KeyMap[ImGuiKey_COUNT]; - bool KeysDown[ImGuiKey_COUNT]; - float NavInputs[ImGuiNavInput_COUNT]; + ImGuiContext* Ctx; ImVec2 MousePos; bool MouseDown[5]; float MouseWheel; float MouseWheelH; + ImGuiMouseSource MouseSource; ImGuiID MouseHoveredViewport; bool KeyCtrl; bool KeyShift; @@ -977,6 +1104,8 @@ struct ImGuiIO bool MouseReleased[5]; bool MouseDownOwned[5]; bool MouseDownOwnedUnlessPopupClose[5]; + bool MouseWheelRequestAxisSwap; + bool MouseCtrlLeftAsRightClick; float MouseDownDuration[5]; float MouseDownDurationPrev[5]; ImVec2 MouseDragMaxDistanceAbs[5]; @@ -991,6 +1120,7 @@ struct ImGuiIO }; struct ImGuiInputTextCallbackData { + ImGuiContext* Ctx; ImGuiInputTextFlags EventFlag; ImGuiInputTextFlags Flags; void* UserData; @@ -1015,6 +1145,7 @@ struct ImGuiWindowClass { ImGuiID ClassId; ImGuiID ParentViewportId; + ImGuiID FocusRouteParentWindowId; ImGuiViewportFlags ViewportFlagsOverrideSet; ImGuiViewportFlags ViewportFlagsOverrideClear; ImGuiTabItemFlags TabItemFlagsOverrideSet; @@ -1033,19 +1164,6 @@ struct ImGuiPayload bool Preview; bool Delivery; }; -struct ImGuiTableColumnSortSpecs -{ - ImGuiID ColumnUserID; - ImS16 ColumnIndex; - ImS16 SortOrder; - ImGuiSortDirection SortDirection : 8; -}; -struct ImGuiTableSortSpecs -{ - const ImGuiTableColumnSortSpecs* Specs; - int SpecsCount; - bool SpecsDirty; -}; struct ImGuiOnceUponAFrame { int RefFrame; @@ -1074,31 +1192,87 @@ struct ImGuiTextBuffer }; struct ImGuiStoragePair { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; - typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; struct ImGuiStorage { ImVector_ImGuiStoragePair Data; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; struct ImGuiListClipper { + ImGuiContext* Ctx; int DisplayStart; int DisplayEnd; int ItemsCount; float ItemsHeight; float StartPosY; + double StartSeekOffsetY; void* TempData; }; struct ImColor { ImVec4 Value; }; +typedef enum { + ImGuiMultiSelectFlags_None = 0, + ImGuiMultiSelectFlags_SingleSelect = 1 << 0, + ImGuiMultiSelectFlags_NoSelectAll = 1 << 1, + ImGuiMultiSelectFlags_NoRangeSelect = 1 << 2, + ImGuiMultiSelectFlags_NoAutoSelect = 1 << 3, + ImGuiMultiSelectFlags_NoAutoClear = 1 << 4, + ImGuiMultiSelectFlags_NoAutoClearOnReselect = 1 << 5, + ImGuiMultiSelectFlags_BoxSelect1d = 1 << 6, + ImGuiMultiSelectFlags_BoxSelect2d = 1 << 7, + ImGuiMultiSelectFlags_BoxSelectNoScroll = 1 << 8, + ImGuiMultiSelectFlags_ClearOnEscape = 1 << 9, + ImGuiMultiSelectFlags_ClearOnClickVoid = 1 << 10, + ImGuiMultiSelectFlags_ScopeWindow = 1 << 11, + ImGuiMultiSelectFlags_ScopeRect = 1 << 12, + ImGuiMultiSelectFlags_SelectOnClick = 1 << 13, + ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14, + ImGuiMultiSelectFlags_NavWrapX = 1 << 16, +}ImGuiMultiSelectFlags_; +typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest; + +struct ImGuiMultiSelectIO +{ + ImVector_ImGuiSelectionRequest Requests; + ImGuiSelectionUserData RangeSrcItem; + ImGuiSelectionUserData NavIdItem; + bool NavIdSelected; + bool RangeSrcReset; + int ItemsCount; +}; +typedef enum { + ImGuiSelectionRequestType_None = 0, + ImGuiSelectionRequestType_SetAll, + ImGuiSelectionRequestType_SetRange, +}ImGuiSelectionRequestType; +struct ImGuiSelectionRequest +{ + ImGuiSelectionRequestType Type; + bool Selected; + ImS8 RangeDirection; + ImGuiSelectionUserData RangeFirstItem; + ImGuiSelectionUserData RangeLastItem; +}; +struct ImGuiSelectionBasicStorage +{ + int Size; + bool PreserveOrder; + void* UserData; + ImGuiID (*AdapterIndexToStorageId)(ImGuiSelectionBasicStorage* self, int idx); + int _SelectionOrder; + ImGuiStorage _Storage; +}; +struct ImGuiSelectionExternalStorage +{ + void* UserData; + void (*AdapterSetItemSelected)(ImGuiSelectionExternalStorage* self, int idx, bool selected); +}; typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { @@ -1165,12 +1339,12 @@ typedef enum { }ImDrawListFlags_; typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; - struct ImDrawList { ImVector_ImDrawCmd CmdBuffer; @@ -1179,23 +1353,25 @@ struct ImDrawList ImDrawListFlags Flags; unsigned int _VtxCurrentIdx; ImDrawListSharedData* _Data; - const char* _OwnerName; ImDrawVert* _VtxWritePtr; ImDrawIdx* _IdxWritePtr; - ImVector_ImVec4 _ClipRectStack; - ImVector_ImTextureID _TextureIdStack; ImVector_ImVec2 _Path; ImDrawCmdHeader _CmdHeader; ImDrawListSplitter _Splitter; + ImVector_ImVec4 _ClipRectStack; + ImVector_ImTextureID _TextureIdStack; float _FringeScale; + const char* _OwnerName; }; +typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr; + struct ImDrawData { bool Valid; int CmdListsCount; int TotalIdxCount; int TotalVtxCount; - ImDrawList** CmdLists; + ImVector_ImDrawListPtr CmdLists; ImVec2 DisplayPos; ImVec2 DisplaySize; ImVec2 FramebufferScale; @@ -1219,6 +1395,7 @@ struct ImFontConfig bool MergeMode; unsigned int FontBuilderFlags; float RasterizerMultiply; + float RasterizerDensity; ImWchar EllipsisChar; char Name[40]; ImFont* DstFont; @@ -1302,7 +1479,9 @@ struct ImFont short ConfigDataCount; ImWchar FallbackChar; ImWchar EllipsisChar; - ImWchar DotChar; + short EllipsisCharCount; + float EllipsisWidth; + float EllipsisCharStep; bool DirtyLookupTables; float Scale; float Ascent, Descent; @@ -1320,10 +1499,11 @@ typedef enum { ImGuiViewportFlags_NoFocusOnClick = 1 << 6, ImGuiViewportFlags_NoInputs = 1 << 7, ImGuiViewportFlags_NoRendererClear = 1 << 8, - ImGuiViewportFlags_TopMost = 1 << 9, - ImGuiViewportFlags_Minimized = 1 << 10, - ImGuiViewportFlags_NoAutoMerge = 1 << 11, - ImGuiViewportFlags_CanHostOtherWindows = 1 << 12, + ImGuiViewportFlags_NoAutoMerge = 1 << 9, + ImGuiViewportFlags_TopMost = 1 << 10, + ImGuiViewportFlags_CanHostOtherWindows = 1 << 11, + ImGuiViewportFlags_IsMinimized = 1 << 12, + ImGuiViewportFlags_IsFocused = 1 << 13, }ImGuiViewportFlags_; struct ImGuiViewport { @@ -1351,6 +1531,14 @@ typedef struct ImVector_ImGuiViewportPtr {int Size;int Capacity;ImGuiViewport** struct ImGuiPlatformIO { + const char* (*Platform_GetClipboardTextFn)(ImGuiContext* ctx); + void (*Platform_SetClipboardTextFn)(ImGuiContext* ctx, const char* text); + void* Platform_ClipboardUserData; + bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); + void* Platform_OpenInShellUserData; + void (*Platform_SetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + void* Platform_ImeUserData; + ImWchar Platform_LocaleDecimalPoint; void (*Platform_CreateWindow)(ImGuiViewport* vp); void (*Platform_DestroyWindow)(ImGuiViewport* vp); void (*Platform_ShowWindow)(ImGuiViewport* vp); @@ -1368,6 +1556,7 @@ struct ImGuiPlatformIO void (*Platform_SwapBuffers)(ImGuiViewport* vp, void* render_arg); float (*Platform_GetWindowDpiScale)(ImGuiViewport* vp); void (*Platform_OnChangedViewport)(ImGuiViewport* vp); + ImVec4 (*Platform_GetWindowWorkAreaInsets)(ImGuiViewport* vp); int (*Platform_CreateVkSurface)(ImGuiViewport* vp, ImU64 vk_inst, const void* vk_allocators, ImU64* out_vk_surface); void (*Renderer_CreateWindow)(ImGuiViewport* vp); void (*Renderer_DestroyWindow)(ImGuiViewport* vp); @@ -1382,6 +1571,7 @@ struct ImGuiPlatformMonitor ImVec2 MainPos, MainSize; ImVec2 WorkPos, WorkSize; float DpiScale; + void* PlatformHandle; }; struct ImGuiPlatformImeData { @@ -1393,9 +1583,11 @@ struct ImBitVector; struct ImRect; struct ImDrawDataBuilder; struct ImDrawListSharedData; +struct ImGuiBoxSelectState; struct ImGuiColorMod; struct ImGuiContext; struct ImGuiContextHook; +struct ImGuiDataVarInfo; struct ImGuiDataTypeInfo; struct ImGuiDockContext; struct ImGuiDockRequest; @@ -1403,9 +1595,12 @@ struct ImGuiDockNode; struct ImGuiDockNodeSettings; struct ImGuiGroupData; struct ImGuiInputTextState; +struct ImGuiInputTextDeactivateData; struct ImGuiLastItemData; struct ImGuiLocEntry; struct ImGuiMenuColumns; +struct ImGuiMultiSelectState; +struct ImGuiMultiSelectTempData; struct ImGuiNavItemData; struct ImGuiMetricsConfig; struct ImGuiNextWindowData; @@ -1419,20 +1614,24 @@ struct ImGuiStyleMod; struct ImGuiTabBar; struct ImGuiTabItem; struct ImGuiTable; +struct ImGuiTableHeaderData; struct ImGuiTableColumn; struct ImGuiTableInstanceData; struct ImGuiTableTempData; struct ImGuiTableSettings; struct ImGuiTableColumnsSettings; +struct ImGuiTreeNodeStackData; +struct ImGuiTypingSelectState; +struct ImGuiTypingSelectRequest; struct ImGuiWindow; +struct ImGuiWindowDockStyle; struct ImGuiWindowTempData; struct ImGuiWindowSettings; typedef int ImGuiDataAuthority; typedef int ImGuiLayoutType; typedef int ImGuiActivateFlags; typedef int ImGuiDebugLogFlags; -typedef int ImGuiInputFlags; -typedef int ImGuiItemFlags; +typedef int ImGuiFocusRequestFlags; typedef int ImGuiItemStatusFlags; typedef int ImGuiOldColumnFlags; typedef int ImGuiNavHighlightFlags; @@ -1443,48 +1642,10 @@ typedef int ImGuiScrollFlags; typedef int ImGuiSeparatorFlags; typedef int ImGuiTextFlags; typedef int ImGuiTooltipFlags; +typedef int ImGuiTypingSelectFlags; +typedef int ImGuiWindowRefreshFlags; typedef void (*ImGuiErrorLogCallback)(void* user_data, const char* fmt, ...); extern ImGuiContext* GImGui; -typedef struct StbUndoRecord StbUndoRecord; -struct StbUndoRecord -{ - int where; - int insert_length; - int delete_length; - int char_storage; -}; -typedef struct StbUndoState StbUndoState; -struct StbUndoState -{ - StbUndoRecord undo_rec [99]; - ImWchar undo_char[999]; - short undo_point, redo_point; - int undo_char_point, redo_char_point; -}; -typedef struct STB_TexteditState STB_TexteditState; -struct STB_TexteditState -{ - int cursor; - int select_start; - int select_end; - unsigned char insert_mode; - int row_count_per_page; - unsigned char cursor_at_end_of_line; - unsigned char initialized; - unsigned char has_preferred_x; - unsigned char single_line; - unsigned char padding1, padding2, padding3; - float preferred_x; - StbUndoState undostate; -}; -typedef struct StbTexteditRow StbTexteditRow; -struct StbTexteditRow -{ - float x0,x1; - float baseline_y_delta; - float ymin,ymax; - int num_chars; -}; typedef FILE* ImFileHandle; typedef struct ImVec1 ImVec1; struct ImVec1 @@ -1501,6 +1662,7 @@ struct ImRect ImVec2 Min; ImVec2 Max; }; +typedef ImU32* ImBitArrayPtr; struct ImBitVector { ImVector_ImU32 Storage; @@ -1519,6 +1681,7 @@ struct ImDrawListSharedData ImVec2 TexUvWhitePixel; ImFont* Font; float FontSize; + float FontScale; float CurveTessellationTol; float CircleSegmentMaxError; ImVec4 ClipRectFullscreen; @@ -1529,25 +1692,45 @@ struct ImDrawListSharedData ImU8 CircleSegmentCounts[64]; const ImVec4* TexUvLines; }; -typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr; - struct ImDrawDataBuilder { - ImVector_ImDrawListPtr Layers[2]; + ImVector_ImDrawListPtr* Layers[2]; + ImVector_ImDrawListPtr LayerData1; +}; +struct ImGuiDataVarInfo +{ + ImGuiDataType Type; + ImU32 Count; + ImU32 Offset; +}; +typedef struct ImGuiDataTypeStorage ImGuiDataTypeStorage; +struct ImGuiDataTypeStorage +{ + ImU8 Data[8]; +}; +struct ImGuiDataTypeInfo +{ + size_t Size; + const char* Name; + const char* PrintFmt; + const char* ScanFmt; }; typedef enum { - ImGuiItemFlags_None = 0, - ImGuiItemFlags_NoTabStop = 1 << 0, - ImGuiItemFlags_ButtonRepeat = 1 << 1, - ImGuiItemFlags_Disabled = 1 << 2, - ImGuiItemFlags_NoNav = 1 << 3, - ImGuiItemFlags_NoNavDefaultFocus = 1 << 4, - ImGuiItemFlags_SelectableDontClosePopup = 1 << 5, - ImGuiItemFlags_MixedValue = 1 << 6, - ImGuiItemFlags_ReadOnly = 1 << 7, - ImGuiItemFlags_NoWindowHoverableCheck = 1 << 8, - ImGuiItemFlags_Inputable = 1 << 10, -}ImGuiItemFlags_; + ImGuiDataType_String = ImGuiDataType_COUNT + 1, + ImGuiDataType_Pointer, + ImGuiDataType_ID, +}ImGuiDataTypePrivate_; +typedef enum { + ImGuiItemFlags_Disabled = 1 << 10, + ImGuiItemFlags_ReadOnly = 1 << 11, + ImGuiItemFlags_MixedValue = 1 << 12, + ImGuiItemFlags_NoWindowHoverableCheck = 1 << 13, + ImGuiItemFlags_AllowOverlap = 1 << 14, + ImGuiItemFlags_Inputable = 1 << 20, + ImGuiItemFlags_HasSelectionUserData = 1 << 21, + ImGuiItemFlags_IsMultiSelect = 1 << 22, + ImGuiItemFlags_Default_ = ImGuiItemFlags_AutoClosePopups, +}ImGuiItemFlagsPrivate_; typedef enum { ImGuiItemStatusFlags_None = 0, ImGuiItemStatusFlags_HoveredRect = 1 << 0, @@ -1558,13 +1741,20 @@ typedef enum { ImGuiItemStatusFlags_HasDeactivated = 1 << 5, ImGuiItemStatusFlags_Deactivated = 1 << 6, ImGuiItemStatusFlags_HoveredWindow = 1 << 7, - ImGuiItemStatusFlags_FocusedByTabbing = 1 << 8, - ImGuiItemStatusFlags_Visible = 1 << 9, + ImGuiItemStatusFlags_Visible = 1 << 8, + ImGuiItemStatusFlags_HasClipRect = 1 << 9, + ImGuiItemStatusFlags_HasShortcut = 1 << 10, }ImGuiItemStatusFlags_; +typedef enum { + ImGuiHoveredFlags_DelayMask_ = ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay, + ImGuiHoveredFlags_AllowedMaskForIsWindowHovered = ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_DockHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary, + ImGuiHoveredFlags_AllowedMaskForIsItemHovered = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_, +}ImGuiHoveredFlagsPrivate_; typedef enum { ImGuiInputTextFlags_Multiline = 1 << 26, ImGuiInputTextFlags_NoMarkEdited = 1 << 27, ImGuiInputTextFlags_MergedItem = 1 << 28, + ImGuiInputTextFlags_LocalizeDecimalPoint= 1 << 29, }ImGuiInputTextFlagsPrivate_; typedef enum { ImGuiButtonFlags_PressedOnClick = 1 << 4, @@ -1575,7 +1765,7 @@ typedef enum { ImGuiButtonFlags_PressedOnDragDropHold = 1 << 9, ImGuiButtonFlags_Repeat = 1 << 10, ImGuiButtonFlags_FlattenChildren = 1 << 11, - ImGuiButtonFlags_AllowItemOverlap = 1 << 12, + ImGuiButtonFlags_AllowOverlap = 1 << 12, ImGuiButtonFlags_DontClosePopups = 1 << 13, ImGuiButtonFlags_AlignTextBaseLine = 1 << 15, ImGuiButtonFlags_NoKeyModifiers = 1 << 16, @@ -1605,7 +1795,9 @@ typedef enum { ImGuiSelectableFlags_NoSetKeyOwner = 1 << 27, }ImGuiSelectableFlagsPrivate_; typedef enum { - ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20, + ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 28, + ImGuiTreeNodeFlags_UpsideDownArrow = 1 << 29, + ImGuiTreeNodeFlags_OpenOnMask_ = ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow, }ImGuiTreeNodeFlagsPrivate_; typedef enum { ImGuiSeparatorFlags_None = 0, @@ -1613,13 +1805,18 @@ typedef enum { ImGuiSeparatorFlags_Vertical = 1 << 1, ImGuiSeparatorFlags_SpanAllColumns = 1 << 2, }ImGuiSeparatorFlags_; +typedef enum { + ImGuiFocusRequestFlags_None = 0, + ImGuiFocusRequestFlags_RestoreFocusedChild = 1 << 0, + ImGuiFocusRequestFlags_UnlessBelowModal = 1 << 1, +}ImGuiFocusRequestFlags_; typedef enum { ImGuiTextFlags_None = 0, ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0, }ImGuiTextFlags_; typedef enum { ImGuiTooltipFlags_None = 0, - ImGuiTooltipFlags_OverridePreviousTooltip = 1 << 0, + ImGuiTooltipFlags_OverridePrevious = 1 << 1, }ImGuiTooltipFlags_; typedef enum { ImGuiLayoutType_Horizontal = 0, @@ -1641,28 +1838,6 @@ typedef enum { ImGuiPlotType_Lines, ImGuiPlotType_Histogram, }ImGuiPlotType; -typedef enum { - ImGuiPopupPositionPolicy_Default, - ImGuiPopupPositionPolicy_ComboBox, - ImGuiPopupPositionPolicy_Tooltip, -}ImGuiPopupPositionPolicy; -typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage; -struct ImGuiDataTypeTempStorage -{ - ImU8 Data[8]; -}; -struct ImGuiDataTypeInfo -{ - size_t Size; - const char* Name; - const char* PrintFmt; - const char* ScanFmt; -}; -typedef enum { - ImGuiDataType_String = ImGuiDataType_COUNT + 1, - ImGuiDataType_Pointer, - ImGuiDataType_ID, -}ImGuiDataTypePrivate_; struct ImGuiColorMod { ImGuiCol Col; @@ -1688,6 +1863,7 @@ struct ImGuiGroupData ImGuiID WindowID; ImVec2 BackupCursorPos; ImVec2 BackupCursorMaxPos; + ImVec2 BackupCursorPosPrevLine; ImVec1 BackupIndent; ImVec1 BackupGroupOffset; ImVec2 BackupCurrLineSize; @@ -1695,6 +1871,7 @@ struct ImGuiGroupData ImGuiID BackupActiveIdIsAlive; bool BackupActiveIdPreviousFrameIsAlive; bool BackupHoveredIdIsAlive; + bool BackupIsSameLine; bool EmitItem; }; struct ImGuiMenuColumns @@ -1708,35 +1885,39 @@ struct ImGuiMenuColumns ImU16 OffsetMark; ImU16 Widths[4]; }; +typedef struct ImGuiInputTextDeactivatedState ImGuiInputTextDeactivatedState; +struct ImGuiInputTextDeactivatedState +{ + ImGuiID ID; + ImVector_char TextA; +}; struct STB_TexteditState; +typedef STB_TexteditState ImStbTexteditState; struct ImGuiInputTextState { ImGuiContext* Ctx; + ImStbTexteditState* Stb; ImGuiID ID; - int CurLenW, CurLenA; - ImVector_ImWchar TextW; + int CurLenA; ImVector_char TextA; ImVector_char InitialTextA; - bool TextAIsValid; + ImVector_char CallbackTextBackup; int BufCapacityA; - float ScrollX; - STB_TexteditState Stb; + ImVec2 Scroll; float CursorAnim; bool CursorFollow; bool SelectedAllMouseLock; bool Edited; ImGuiInputTextFlags Flags; + bool ReloadUserBuf; + int ReloadSelectionStart; + int ReloadSelectionEnd; }; -struct ImGuiPopupData -{ - ImGuiID PopupId; - ImGuiWindow* Window; - ImGuiWindow* BackupNavWindow; - int ParentNavLayer; - int OpenFrameCount; - ImGuiID OpenParentId; - ImVec2 OpenPopupPos; - ImVec2 OpenMousePos; -}; +typedef enum { + ImGuiWindowRefreshFlags_None = 0, + ImGuiWindowRefreshFlags_TryToAvoidRefresh = 1 << 0, + ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1, + ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2, +}ImGuiWindowRefreshFlags_; typedef enum { ImGuiNextWindowDataFlags_None = 0, ImGuiNextWindowDataFlags_HasPos = 1 << 0, @@ -1747,9 +1928,11 @@ typedef enum { ImGuiNextWindowDataFlags_HasFocus = 1 << 5, ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6, ImGuiNextWindowDataFlags_HasScroll = 1 << 7, - ImGuiNextWindowDataFlags_HasViewport = 1 << 8, - ImGuiNextWindowDataFlags_HasDock = 1 << 9, - ImGuiNextWindowDataFlags_HasWindowClass = 1 << 10, + ImGuiNextWindowDataFlags_HasChildFlags = 1 << 8, + ImGuiNextWindowDataFlags_HasRefreshPolicy = 1 << 9, + ImGuiNextWindowDataFlags_HasViewport = 1 << 10, + ImGuiNextWindowDataFlags_HasDock = 1 << 11, + ImGuiNextWindowDataFlags_HasWindowClass = 1 << 12, }ImGuiNextWindowDataFlags_; struct ImGuiNextWindowData { @@ -1763,6 +1946,7 @@ struct ImGuiNextWindowData ImVec2 SizeVal; ImVec2 ContentSizeVal; ImVec2 ScrollVal; + ImGuiChildFlags ChildFlags; bool PosUndock; bool CollapsedVal; ImRect SizeConstraintRect; @@ -1773,19 +1957,29 @@ struct ImGuiNextWindowData ImGuiID DockId; ImGuiWindowClass WindowClass; ImVec2 MenuBarOffsetMinVal; + ImGuiWindowRefreshFlags RefreshFlagsVal; }; typedef enum { ImGuiNextItemDataFlags_None = 0, ImGuiNextItemDataFlags_HasWidth = 1 << 0, ImGuiNextItemDataFlags_HasOpen = 1 << 1, + ImGuiNextItemDataFlags_HasShortcut = 1 << 2, + ImGuiNextItemDataFlags_HasRefVal = 1 << 3, + ImGuiNextItemDataFlags_HasStorageID = 1 << 4, }ImGuiNextItemDataFlags_; struct ImGuiNextItemData { ImGuiNextItemDataFlags Flags; - float Width; + ImGuiItemFlags ItemFlags; ImGuiID FocusScopeId; - ImGuiCond OpenCond; + ImGuiSelectionUserData SelectionUserData; + float Width; + ImGuiKeyChord Shortcut; + ImGuiInputFlags ShortcutFlags; bool OpenVal; + ImU8 OpenCond; + ImGuiDataTypeStorage RefVal; + ImGuiID StorageId; }; struct ImGuiLastItemData { @@ -1795,6 +1989,15 @@ struct ImGuiLastItemData ImRect Rect; ImRect NavRect; ImRect DisplayRect; + ImRect ClipRect; + ImGuiKeyChord Shortcut; +}; +struct ImGuiTreeNodeStackData +{ + ImGuiID ID; + ImGuiTreeNodeFlags TreeFlags; + ImGuiItemFlags InFlags; + ImRect NavRect; }; struct ImGuiStackSizes { @@ -1814,6 +2017,7 @@ struct ImGuiWindowStackData ImGuiWindow* Window; ImGuiLastItemData ParentLastItemDataBackup; ImGuiStackSizes StackSizesOnBegin; + bool DisabledOverrideReenable; }; typedef struct ImGuiShrinkWidthItem ImGuiShrinkWidthItem; struct ImGuiShrinkWidthItem @@ -1828,6 +2032,22 @@ struct ImGuiPtrOrIndex void* Ptr; int Index; }; +typedef enum { + ImGuiPopupPositionPolicy_Default, + ImGuiPopupPositionPolicy_ComboBox, + ImGuiPopupPositionPolicy_Tooltip, +}ImGuiPopupPositionPolicy; +struct ImGuiPopupData +{ + ImGuiID PopupId; + ImGuiWindow* Window; + ImGuiWindow* RestoreNavWindow; + int ParentNavLayer; + int OpenFrameCount; + ImGuiID OpenParentId; + ImVec2 OpenPopupPos; + ImVec2 OpenMousePos; +}; typedef struct ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN {ImU32 Storage[(ImGuiKey_NamedKey_COUNT+31)>>5];} ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN; typedef ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN ImBitArrayForNamedKeys; @@ -1847,21 +2067,19 @@ typedef enum { ImGuiInputSource_Mouse, ImGuiInputSource_Keyboard, ImGuiInputSource_Gamepad, - ImGuiInputSource_Clipboard, - ImGuiInputSource_Nav, ImGuiInputSource_COUNT }ImGuiInputSource; typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos; struct ImGuiInputEventMousePos -{ float PosX, PosY; +{ float PosX, PosY; ImGuiMouseSource MouseSource; }; typedef struct ImGuiInputEventMouseWheel ImGuiInputEventMouseWheel; struct ImGuiInputEventMouseWheel -{ float WheelX, WheelY; +{ float WheelX, WheelY; ImGuiMouseSource MouseSource; }; typedef struct ImGuiInputEventMouseButton ImGuiInputEventMouseButton; struct ImGuiInputEventMouseButton -{ int Button; bool Down; +{ int Button; bool Down; ImGuiMouseSource MouseSource; }; typedef struct ImGuiInputEventMouseViewport ImGuiInputEventMouseViewport; struct ImGuiInputEventMouseViewport @@ -1884,6 +2102,7 @@ struct ImGuiInputEvent { ImGuiInputEventType Type; ImGuiInputSource Source; + ImU32 EventId; union { ImGuiInputEventMousePos MousePos; @@ -1902,6 +2121,7 @@ struct ImGuiKeyRoutingData { ImGuiKeyRoutingIndex NextEntryIndex; ImU16 Mods; + ImU8 RoutingCurrScore; ImU8 RoutingNextScore; ImGuiID RoutingCurr; ImGuiID RoutingNext; @@ -1924,31 +2144,31 @@ struct ImGuiKeyOwnerData bool LockUntilRelease; }; typedef enum { - ImGuiInputFlags_None = 0, - ImGuiInputFlags_Repeat = 1 << 0, ImGuiInputFlags_RepeatRateDefault = 1 << 1, ImGuiInputFlags_RepeatRateNavMove = 1 << 2, ImGuiInputFlags_RepeatRateNavTweak = 1 << 3, - ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, - ImGuiInputFlags_CondHovered = 1 << 4, - ImGuiInputFlags_CondActive = 1 << 5, + ImGuiInputFlags_RepeatUntilRelease = 1 << 4, + ImGuiInputFlags_RepeatUntilKeyModsChange = 1 << 5, + ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone = 1 << 6, + ImGuiInputFlags_RepeatUntilOtherKeyPress = 1 << 7, + ImGuiInputFlags_LockThisFrame = 1 << 20, + ImGuiInputFlags_LockUntilRelease = 1 << 21, + ImGuiInputFlags_CondHovered = 1 << 22, + ImGuiInputFlags_CondActive = 1 << 23, ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, + ImGuiInputFlags_RepeatUntilMask_ = ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress, + ImGuiInputFlags_RepeatMask_ = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_, ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, - ImGuiInputFlags_LockThisFrame = 1 << 6, - ImGuiInputFlags_LockUntilRelease = 1 << 7, - ImGuiInputFlags_RouteFocused = 1 << 8, - ImGuiInputFlags_RouteGlobalLow = 1 << 9, - ImGuiInputFlags_RouteGlobal = 1 << 10, - ImGuiInputFlags_RouteGlobalHigh = 1 << 11, - ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh, - ImGuiInputFlags_RouteAlways = 1 << 12, - ImGuiInputFlags_RouteUnlessBgFocused= 1 << 13, - ImGuiInputFlags_RouteExtraMask_ = ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused, - ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_, - ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_, + ImGuiInputFlags_RouteTypeMask_ = ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways, + ImGuiInputFlags_RouteOptionsMask_ = ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow, + ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_RepeatMask_, + ImGuiInputFlags_SupportedByIsMouseClicked = ImGuiInputFlags_Repeat, + ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_, + ImGuiInputFlags_SupportedBySetNextItemShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip, ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease, ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_, -}ImGuiInputFlags_; +}ImGuiInputFlagsPrivate_; typedef struct ImGuiListClipperRange ImGuiListClipperRange; struct ImGuiListClipperRange { @@ -1974,6 +2194,8 @@ typedef enum { ImGuiActivateFlags_PreferInput = 1 << 0, ImGuiActivateFlags_PreferTweak = 1 << 1, ImGuiActivateFlags_TryToPreserveState = 1 << 2, + ImGuiActivateFlags_FromTabbing = 1 << 3, + ImGuiActivateFlags_FromShortcut = 1 << 4, }ImGuiActivateFlags_; typedef enum { ImGuiScrollFlags_None = 0, @@ -1989,8 +2211,7 @@ typedef enum { }ImGuiScrollFlags_; typedef enum { ImGuiNavHighlightFlags_None = 0, - ImGuiNavHighlightFlags_TypeDefault = 1 << 0, - ImGuiNavHighlightFlags_TypeThin = 1 << 1, + ImGuiNavHighlightFlags_Compact = 1 << 1, ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, ImGuiNavHighlightFlags_NoRounding = 1 << 3, }ImGuiNavHighlightFlags_; @@ -2000,15 +2221,19 @@ typedef enum { ImGuiNavMoveFlags_LoopY = 1 << 1, ImGuiNavMoveFlags_WrapX = 1 << 2, ImGuiNavMoveFlags_WrapY = 1 << 3, + ImGuiNavMoveFlags_WrapMask_ = ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY, ImGuiNavMoveFlags_AllowCurrentNavId = 1 << 4, ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1 << 5, ImGuiNavMoveFlags_ScrollToEdgeY = 1 << 6, ImGuiNavMoveFlags_Forwarded = 1 << 7, ImGuiNavMoveFlags_DebugNoResult = 1 << 8, ImGuiNavMoveFlags_FocusApi = 1 << 9, - ImGuiNavMoveFlags_Tabbing = 1 << 10, - ImGuiNavMoveFlags_Activate = 1 << 11, - ImGuiNavMoveFlags_DontSetNavHighlight = 1 << 12, + ImGuiNavMoveFlags_IsTabbing = 1 << 10, + ImGuiNavMoveFlags_IsPageMove = 1 << 11, + ImGuiNavMoveFlags_Activate = 1 << 12, + ImGuiNavMoveFlags_NoSelect = 1 << 13, + ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14, + ImGuiNavMoveFlags_NoClearActiveId = 1 << 15, }ImGuiNavMoveFlags_; typedef enum { ImGuiNavLayer_Main = 0, @@ -2025,6 +2250,36 @@ struct ImGuiNavItemData float DistBox; float DistCenter; float DistAxial; + ImGuiSelectionUserData SelectionUserData; +}; +typedef struct ImGuiFocusScopeData ImGuiFocusScopeData; +struct ImGuiFocusScopeData +{ + ImGuiID ID; + ImGuiID WindowID; +}; +typedef enum { + ImGuiTypingSelectFlags_None = 0, + ImGuiTypingSelectFlags_AllowBackspace = 1 << 0, + ImGuiTypingSelectFlags_AllowSingleCharMode = 1 << 1, +}ImGuiTypingSelectFlags_; +struct ImGuiTypingSelectRequest +{ + ImGuiTypingSelectFlags Flags; + int SearchBufferLen; + const char* SearchBuffer; + bool SelectRequest; + bool SingleCharMode; + ImS8 SingleCharSize; +}; +struct ImGuiTypingSelectState +{ + ImGuiTypingSelectRequest Request; + char SearchBuffer[64]; + ImGuiID FocusScope; + int LastRequestFrame; + float LastRequestTime; + bool SingleCharModeLock; }; typedef enum { ImGuiOldColumnFlags_None = 0, @@ -2061,6 +2316,54 @@ struct ImGuiOldColumns ImVector_ImGuiOldColumnData Columns; ImDrawListSplitter Splitter; }; +struct ImGuiBoxSelectState +{ + ImGuiID ID; + bool IsActive; + bool IsStarting; + bool IsStartedFromVoid; + bool IsStartedSetNavIdOnce; + bool RequestClear; + ImGuiKeyChord KeyMods : 16; + ImVec2 StartPosRel; + ImVec2 EndPosRel; + ImVec2 ScrollAccum; + ImGuiWindow* Window; + bool UnclipMode; + ImRect UnclipRect; + ImRect BoxSelectRectPrev; + ImRect BoxSelectRectCurr; +}; +struct ImGuiMultiSelectTempData +{ + ImGuiMultiSelectIO IO; + ImGuiMultiSelectState* Storage; + ImGuiID FocusScopeId; + ImGuiMultiSelectFlags Flags; + ImVec2 ScopeRectMin; + ImVec2 BackupCursorMaxPos; + ImGuiSelectionUserData LastSubmittedItem; + ImGuiID BoxSelectId; + ImGuiKeyChord KeyMods; + ImS8 LoopRequestSetAll; + bool IsEndIO; + bool IsFocused; + bool IsKeyboardSetRange; + bool NavIdPassedBy; + bool RangeSrcPassedBy; + bool RangeDstPassedBy; +}; +struct ImGuiMultiSelectState +{ + ImGuiWindow* Window; + ImGuiID ID; + int LastFrameActive; + int LastSelectionSize; + ImS8 RangeSelected; + ImS8 NavIdSelected; + ImGuiSelectionUserData RangeSrcItem; + ImGuiSelectionUserData NavIdItem; +}; typedef enum { ImGuiDockNodeFlags_DockSpace = 1 << 10, ImGuiDockNodeFlags_CentralNode = 1 << 11, @@ -2068,19 +2371,18 @@ typedef enum { ImGuiDockNodeFlags_HiddenTabBar = 1 << 13, ImGuiDockNodeFlags_NoWindowMenuButton = 1 << 14, ImGuiDockNodeFlags_NoCloseButton = 1 << 15, - ImGuiDockNodeFlags_NoDocking = 1 << 16, - ImGuiDockNodeFlags_NoDockingSplitMe = 1 << 17, - ImGuiDockNodeFlags_NoDockingSplitOther = 1 << 18, - ImGuiDockNodeFlags_NoDockingOverMe = 1 << 19, - ImGuiDockNodeFlags_NoDockingOverOther = 1 << 20, - ImGuiDockNodeFlags_NoDockingOverEmpty = 1 << 21, - ImGuiDockNodeFlags_NoResizeX = 1 << 22, - ImGuiDockNodeFlags_NoResizeY = 1 << 23, + ImGuiDockNodeFlags_NoResizeX = 1 << 16, + ImGuiDockNodeFlags_NoResizeY = 1 << 17, + ImGuiDockNodeFlags_DockedWindowsInFocusRoute= 1 << 18, + ImGuiDockNodeFlags_NoDockingSplitOther = 1 << 19, + ImGuiDockNodeFlags_NoDockingOverMe = 1 << 20, + ImGuiDockNodeFlags_NoDockingOverOther = 1 << 21, + ImGuiDockNodeFlags_NoDockingOverEmpty = 1 << 22, + ImGuiDockNodeFlags_NoDocking = ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther, ImGuiDockNodeFlags_SharedFlagsInheritMask_ = ~0, - ImGuiDockNodeFlags_NoResizeFlagsMask_ = ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, - ImGuiDockNodeFlags_LocalFlagsMask_ = ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking, - ImGuiDockNodeFlags_LocalFlagsTransferMask_ = ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace, - ImGuiDockNodeFlags_SavedFlagsMask_ = ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking + ImGuiDockNodeFlags_NoResizeFlagsMask_ = (int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY, + ImGuiDockNodeFlags_LocalFlagsTransferMask_ = (int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, + ImGuiDockNodeFlags_SavedFlagsMask_ = ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton, }ImGuiDockNodeFlagsPrivate_; typedef enum { ImGuiDataAuthority_Auto, @@ -2124,6 +2426,7 @@ struct ImGuiDockNode ImGuiID LastFocusedNodeId; ImGuiID SelectedTabId; ImGuiID WantCloseTabId; + ImGuiID RefViewportId; ImGuiDataAuthority AuthorityForPos :3; ImGuiDataAuthority AuthorityForSize :3; ImGuiDataAuthority AuthorityForViewport :3; @@ -2141,14 +2444,15 @@ struct ImGuiDockNode }; typedef enum { ImGuiWindowDockStyleCol_Text, - ImGuiWindowDockStyleCol_Tab, ImGuiWindowDockStyleCol_TabHovered, - ImGuiWindowDockStyleCol_TabActive, - ImGuiWindowDockStyleCol_TabUnfocused, - ImGuiWindowDockStyleCol_TabUnfocusedActive, + ImGuiWindowDockStyleCol_TabFocused, + ImGuiWindowDockStyleCol_TabSelected, + ImGuiWindowDockStyleCol_TabSelectedOverline, + ImGuiWindowDockStyleCol_TabDimmed, + ImGuiWindowDockStyleCol_TabDimmedSelected, + ImGuiWindowDockStyleCol_TabDimmedSelectedOverline, ImGuiWindowDockStyleCol_COUNT }ImGuiWindowDockStyleCol; -typedef struct ImGuiWindowDockStyle ImGuiWindowDockStyle; struct ImGuiWindowDockStyle { ImU32 Colors[ImGuiWindowDockStyleCol_COUNT]; @@ -2168,26 +2472,28 @@ typedef struct ImGuiViewportP ImGuiViewportP; struct ImGuiViewportP { ImGuiViewport _ImGuiViewport; + ImGuiWindow* Window; int Idx; int LastFrameActive; - int LastFrontMostStampCount; + int LastFocusedStampCount; ImGuiID LastNameHash; ImVec2 LastPos; + ImVec2 LastSize; float Alpha; float LastAlpha; + bool LastFocusedHadNavWindow; short PlatformMonitor; - ImGuiWindow* Window; - int DrawListsLastFrame[2]; - ImDrawList* DrawLists[2]; + int BgFgDrawListsLastFrame[2]; + ImDrawList* BgFgDrawLists[2]; ImDrawData DrawDataP; ImDrawDataBuilder DrawDataBuilder; ImVec2 LastPlatformPos; ImVec2 LastPlatformSize; ImVec2 LastRendererSize; - ImVec2 WorkOffsetMin; - ImVec2 WorkOffsetMax; - ImVec2 BuildWorkOffsetMin; - ImVec2 BuildWorkOffsetMax; + ImVec2 WorkInsetMin; + ImVec2 WorkInsetMax; + ImVec2 BuildWorkInsetMin; + ImVec2 BuildWorkInsetMax; }; struct ImGuiWindowSettings { @@ -2200,7 +2506,9 @@ struct ImGuiWindowSettings ImGuiID ClassId; short DockOrder; bool Collapsed; + bool IsChild; bool WantApply; + bool WantDelete; }; struct ImGuiSettingsHandler { @@ -2215,15 +2523,20 @@ struct ImGuiSettingsHandler void* UserData; }; typedef enum { -ImGuiLocKey_TableSizeOne=0, -ImGuiLocKey_TableSizeAllFit=1, -ImGuiLocKey_TableSizeAllDefault=2, -ImGuiLocKey_TableResetOrder=3, -ImGuiLocKey_WindowingMainMenuBar=4, -ImGuiLocKey_WindowingPopup=5, -ImGuiLocKey_WindowingUntitled=6, -ImGuiLocKey_DockingHideTabBar=7, -ImGuiLocKey_COUNT=8, +ImGuiLocKey_VersionStr=0, +ImGuiLocKey_TableSizeOne=1, +ImGuiLocKey_TableSizeAllFit=2, +ImGuiLocKey_TableSizeAllDefault=3, +ImGuiLocKey_TableResetOrder=4, +ImGuiLocKey_WindowingMainMenuBar=5, +ImGuiLocKey_WindowingPopup=6, +ImGuiLocKey_WindowingUntitled=7, +ImGuiLocKey_OpenLink_s=8, +ImGuiLocKey_CopyLink=9, +ImGuiLocKey_DockingHideTabBar=10, +ImGuiLocKey_DockingHoldShiftToDock=11, +ImGuiLocKey_DockingDragToUndockOrMoveNode=12, +ImGuiLocKey_COUNT=13, }ImGuiLocKey; struct ImGuiLocEntry { @@ -2237,24 +2550,46 @@ typedef enum { ImGuiDebugLogFlags_EventPopup = 1 << 2, ImGuiDebugLogFlags_EventNav = 1 << 3, ImGuiDebugLogFlags_EventClipper = 1 << 4, - ImGuiDebugLogFlags_EventIO = 1 << 5, - ImGuiDebugLogFlags_EventDocking = 1 << 6, - ImGuiDebugLogFlags_EventViewport = 1 << 7, - ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, - ImGuiDebugLogFlags_OutputToTTY = 1 << 10, + ImGuiDebugLogFlags_EventSelection = 1 << 5, + ImGuiDebugLogFlags_EventIO = 1 << 6, + ImGuiDebugLogFlags_EventInputRouting = 1 << 7, + ImGuiDebugLogFlags_EventDocking = 1 << 8, + ImGuiDebugLogFlags_EventViewport = 1 << 9, + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport, + ImGuiDebugLogFlags_OutputToTTY = 1 << 20, + ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21, }ImGuiDebugLogFlags_; +typedef struct ImGuiDebugAllocEntry ImGuiDebugAllocEntry; +struct ImGuiDebugAllocEntry +{ + int FrameCount; + ImS16 AllocCount; + ImS16 FreeCount; +}; +typedef struct ImGuiDebugAllocInfo ImGuiDebugAllocInfo; +struct ImGuiDebugAllocInfo +{ + int TotalAllocCount; + int TotalFreeCount; + ImS16 LastEntriesIdx; + ImGuiDebugAllocEntry LastEntriesBuf[6]; +}; struct ImGuiMetricsConfig { bool ShowDebugLog; - bool ShowStackTool; + bool ShowIDStackTool; bool ShowWindowsRects; bool ShowWindowsBeginOrder; bool ShowTablesRects; bool ShowDrawCmdMesh; bool ShowDrawCmdBoundingBoxes; + bool ShowTextEncodingViewer; + bool ShowAtlasTintedWithTextColor; bool ShowDockingNodes; int ShowWindowsRectsType; int ShowTablesRectsType; + int HighlightMonitorIdx; + ImGuiID HighlightViewportID; }; typedef struct ImGuiStackLevelInfo ImGuiStackLevelInfo; struct ImGuiStackLevelInfo @@ -2265,10 +2600,10 @@ struct ImGuiStackLevelInfo ImGuiDataType DataType : 8; char Desc[57]; }; -typedef struct ImGuiStackTool ImGuiStackTool; +typedef struct ImGuiIDStackTool ImGuiIDStackTool; typedef struct ImVector_ImGuiStackLevelInfo {int Size;int Capacity;ImGuiStackLevelInfo* Data;} ImVector_ImGuiStackLevelInfo; -struct ImGuiStackTool +struct ImGuiIDStackTool { int LastActiveFrame; int StackLevel; @@ -2295,7 +2630,7 @@ typedef struct ImVector_ImGuiColorMod {int Size;int Capacity;ImGuiColorMod* Data typedef struct ImVector_ImGuiStyleMod {int Size;int Capacity;ImGuiStyleMod* Data;} ImVector_ImGuiStyleMod; -typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; +typedef struct ImVector_ImGuiFocusScopeData {int Size;int Capacity;ImGuiFocusScopeData* Data;} ImVector_ImGuiFocusScopeData; typedef struct ImVector_ImGuiItemFlags {int Size;int Capacity;ImGuiItemFlags* Data;} ImVector_ImGuiItemFlags; @@ -2303,6 +2638,8 @@ typedef struct ImVector_ImGuiGroupData {int Size;int Capacity;ImGuiGroupData* Da typedef struct ImVector_ImGuiPopupData {int Size;int Capacity;ImGuiPopupData* Data;} ImVector_ImGuiPopupData; +typedef struct ImVector_ImGuiTreeNodeStackData {int Size;int Capacity;ImGuiTreeNodeStackData* Data;} ImVector_ImGuiTreeNodeStackData; + typedef struct ImVector_ImGuiViewportPPtr {int Size;int Capacity;ImGuiViewportP** Data;} ImVector_ImGuiViewportPPtr; typedef struct ImVector_unsigned_char {int Size;int Capacity;unsigned char* Data;} ImVector_unsigned_char; @@ -2323,6 +2660,14 @@ typedef struct ImVector_ImGuiPtrOrIndex {int Size;int Capacity;ImGuiPtrOrIndex* typedef struct ImVector_ImGuiShrinkWidthItem {int Size;int Capacity;ImGuiShrinkWidthItem* Data;} ImVector_ImGuiShrinkWidthItem; +typedef struct ImVector_ImGuiMultiSelectTempData {int Size;int Capacity;ImGuiMultiSelectTempData* Data;} ImVector_ImGuiMultiSelectTempData; + +typedef struct ImVector_ImGuiMultiSelectState {int Size;int Capacity;ImGuiMultiSelectState* Data;} ImVector_ImGuiMultiSelectState; + +typedef struct ImPool_ImGuiMultiSelectState {ImVector_ImGuiMultiSelectState Buf;ImGuiStorage Map;ImPoolIdx FreeIdx;ImPoolIdx AliveCount;} ImPool_ImGuiMultiSelectState; + +typedef struct ImVector_ImGuiID {int Size;int Capacity;ImGuiID* Data;} ImVector_ImGuiID; + typedef struct ImVector_ImGuiSettingsHandler {int Size;int Capacity;ImGuiSettingsHandler* Data;} ImVector_ImGuiSettingsHandler; typedef struct ImChunkStream_ImGuiWindowSettings {ImVector_char Buf;} ImChunkStream_ImGuiWindowSettings; @@ -2337,14 +2682,14 @@ struct ImGuiContext bool FontAtlasOwnedByContext; ImGuiIO IO; ImGuiPlatformIO PlatformIO; - ImVector_ImGuiInputEvent InputEventsQueue; - ImVector_ImGuiInputEvent InputEventsTrail; ImGuiStyle Style; ImGuiConfigFlags ConfigFlagsCurrFrame; ImGuiConfigFlags ConfigFlagsLastFrame; ImFont* Font; float FontSize; float FontBaseSize; + float FontScale; + float CurrentDpiScale; ImDrawListSharedData DrawListSharedData; double Time; int FrameCount; @@ -2357,6 +2702,11 @@ struct ImGuiContext bool GcCompactAll; bool TestEngineHookItems; void* TestEngine; + char ContextName[16]; + ImVector_ImGuiInputEvent InputEventsQueue; + ImVector_ImGuiInputEvent InputEventsTrail; + ImGuiMouseSource InputEventsNextMouseSource; + ImU32 InputEventsNextEventId; ImVector_ImGuiWindowPtr Windows; ImVector_ImGuiWindowPtr WindowsFocusOrder; ImVector_ImGuiWindowPtr WindowsTempSortBuffer; @@ -2364,23 +2714,29 @@ struct ImGuiContext ImGuiStorage WindowsById; int WindowsActiveCount; ImVec2 WindowsHoverPadding; + ImGuiID DebugBreakInWindow; ImGuiWindow* CurrentWindow; ImGuiWindow* HoveredWindow; ImGuiWindow* HoveredWindowUnderMovingWindow; + ImGuiWindow* HoveredWindowBeforeClear; ImGuiWindow* MovingWindow; ImGuiWindow* WheelingWindow; ImVec2 WheelingWindowRefMousePos; int WheelingWindowStartFrame; + int WheelingWindowScrolledFrame; float WheelingWindowReleaseTimer; ImVec2 WheelingWindowWheelRemainder; ImVec2 WheelingAxisAvg; + ImGuiID DebugDrawIdConflicts; ImGuiID DebugHookIdInfo; ImGuiID HoveredId; ImGuiID HoveredIdPreviousFrame; - bool HoveredIdAllowOverlap; - bool HoveredIdDisabled; + int HoveredIdPreviousFrameItemCount; float HoveredIdTimer; float HoveredIdNotActiveTimer; + bool HoveredIdAllowOverlap; + bool HoveredIdIsDisabled; + bool ItemUnclipByLog; ImGuiID ActiveId; ImGuiID ActiveIdIsAlive; float ActiveIdTimer; @@ -2390,59 +2746,68 @@ struct ImGuiContext bool ActiveIdHasBeenPressedBefore; bool ActiveIdHasBeenEditedBefore; bool ActiveIdHasBeenEditedThisFrame; + bool ActiveIdFromShortcut; + int ActiveIdMouseButton : 8; ImVec2 ActiveIdClickOffset; ImGuiWindow* ActiveIdWindow; ImGuiInputSource ActiveIdSource; - int ActiveIdMouseButton; ImGuiID ActiveIdPreviousFrame; bool ActiveIdPreviousFrameIsAlive; bool ActiveIdPreviousFrameHasBeenEditedBefore; ImGuiWindow* ActiveIdPreviousFrameWindow; ImGuiID LastActiveId; float LastActiveIdTimer; + double LastKeyModsChangeTime; + double LastKeyModsChangeFromNoneTime; + double LastKeyboardKeyPressTime; + ImBitArrayForNamedKeys KeysMayBeCharInput; ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT]; ImGuiKeyRoutingTable KeysRoutingTable; ImU32 ActiveIdUsingNavDirMask; bool ActiveIdUsingAllKeyboardKeys; - ImU32 ActiveIdUsingNavInputMask; + ImGuiKeyChord DebugBreakInShortcutRouting; ImGuiID CurrentFocusScopeId; ImGuiItemFlags CurrentItemFlags; ImGuiID DebugLocateId; ImGuiNextItemData NextItemData; ImGuiLastItemData LastItemData; ImGuiNextWindowData NextWindowData; + bool DebugShowGroupRects; + ImGuiCol DebugFlashStyleColorIdx; ImVector_ImGuiColorMod ColorStack; ImVector_ImGuiStyleMod StyleVarStack; ImVector_ImFontPtr FontStack; - ImVector_ImGuiID FocusScopeStack; + ImVector_ImGuiFocusScopeData FocusScopeStack; ImVector_ImGuiItemFlags ItemFlagsStack; ImVector_ImGuiGroupData GroupStack; ImVector_ImGuiPopupData OpenPopupStack; ImVector_ImGuiPopupData BeginPopupStack; - int BeginMenuCount; + ImVector_ImGuiTreeNodeStackData TreeNodeStack; ImVector_ImGuiViewportPPtr Viewports; - float CurrentDpiScale; ImGuiViewportP* CurrentViewport; ImGuiViewportP* MouseViewport; ImGuiViewportP* MouseLastHoveredViewport; ImGuiID PlatformLastFocusedViewportId; ImGuiPlatformMonitor FallbackMonitor; - int ViewportFrontMostStampCount; + ImRect PlatformMonitorsFullWorkRect; + int ViewportCreatedCount; + int PlatformWindowsCreatedCount; + int ViewportFocusedStampCount; ImGuiWindow* NavWindow; ImGuiID NavId; ImGuiID NavFocusScopeId; + ImGuiNavLayer NavLayer; ImGuiID NavActivateId; ImGuiID NavActivateDownId; ImGuiID NavActivatePressedId; - ImGuiID NavActivateInputId; ImGuiActivateFlags NavActivateFlags; - ImGuiID NavJustMovedToId; - ImGuiID NavJustMovedToFocusScopeId; - ImGuiKeyChord NavJustMovedToKeyMods; + ImVector_ImGuiFocusScopeData NavFocusRoute; + ImGuiID NavHighlightActivatedId; + float NavHighlightActivatedTimer; ImGuiID NavNextActivateId; ImGuiActivateFlags NavNextActivateFlags; ImGuiInputSource NavInputSource; - ImGuiNavLayer NavLayer; + ImGuiSelectionUserData NavLastValidSelectionUserData; bool NavIdIsAlive; bool NavMousePosDirty; bool NavDisableHighlight; @@ -2450,8 +2815,7 @@ struct ImGuiContext bool NavAnyRequest; bool NavInitRequest; bool NavInitRequestFromMove; - ImGuiID NavInitResultId; - ImRect NavInitResultRectRel; + ImGuiNavItemData NavInitResult; bool NavMoveSubmitted; bool NavMoveScoringItems; bool NavMoveForwardToNextFrame; @@ -2470,6 +2834,12 @@ struct ImGuiContext ImGuiNavItemData NavMoveResultLocalVisible; ImGuiNavItemData NavMoveResultOther; ImGuiNavItemData NavTabbingResultFirst; + ImGuiID NavJustMovedFromFocusScopeId; + ImGuiID NavJustMovedToId; + ImGuiID NavJustMovedToFocusScopeId; + ImGuiKeyChord NavJustMovedToKeyMods; + bool NavJustMovedToIsTabbing; + bool NavJustMovedToHasSelectionData; ImGuiKeyChord ConfigNavWindowingKeyNext; ImGuiKeyChord ConfigNavWindowingKeyPrev; ImGuiWindow* NavWindowingTarget; @@ -2478,10 +2848,10 @@ struct ImGuiContext float NavWindowingTimer; float NavWindowingHighlightAlpha; bool NavWindowingToggleLayer; + ImGuiKey NavWindowingToggleKey; ImVec2 NavWindowingAccumDeltaPos; ImVec2 NavWindowingAccumDeltaSize; float DimBgRatio; - ImGuiMouseCursor MouseCursor; bool DragDropActive; bool DragDropWithinSource; bool DragDropWithinTarget; @@ -2490,6 +2860,7 @@ struct ImGuiContext int DragDropMouseButton; ImGuiPayload DragDropPayload; ImRect DragDropTargetRect; + ImRect DragDropTargetClipRect; ImGuiID DragDropTargetId; ImGuiDragDropFlags DragDropAcceptFlags; float DragDropAcceptIdCurrRectSurface; @@ -2502,6 +2873,7 @@ struct ImGuiContext int ClipperTempDataStacked; ImVector_ImGuiListClipperData ClipperTempData; ImGuiTable* CurrentTable; + ImGuiID DebugBreakInTable; int TablesTempDataStacked; ImVector_ImGuiTableTempData TablesTempData; ImPool_ImGuiTable Tables; @@ -2511,37 +2883,57 @@ struct ImGuiContext ImPool_ImGuiTabBar TabBars; ImVector_ImGuiPtrOrIndex CurrentTabBarStack; ImVector_ImGuiShrinkWidthItem ShrinkWidthBuffer; - ImGuiID HoverDelayId; - ImGuiID HoverDelayIdPreviousFrame; - float HoverDelayTimer; - float HoverDelayClearTimer; + ImGuiBoxSelectState BoxSelectState; + ImGuiMultiSelectTempData* CurrentMultiSelect; + int MultiSelectTempDataStacked; + ImVector_ImGuiMultiSelectTempData MultiSelectTempData; + ImPool_ImGuiMultiSelectState MultiSelectStorage; + ImGuiID HoverItemDelayId; + ImGuiID HoverItemDelayIdPreviousFrame; + float HoverItemDelayTimer; + float HoverItemDelayClearTimer; + ImGuiID HoverItemUnlockedStationaryId; + ImGuiID HoverWindowUnlockedStationaryId; + ImGuiMouseCursor MouseCursor; + float MouseStationaryTimer; ImVec2 MouseLastValidPos; ImGuiInputTextState InputTextState; + ImGuiInputTextDeactivatedState InputTextDeactivatedState; ImFont InputTextPasswordFont; ImGuiID TempInputId; + ImGuiDataTypeStorage DataTypeZeroValue; + int BeginMenuDepth; + int BeginComboDepth; ImGuiColorEditFlags ColorEditOptions; - float ColorEditLastHue; - float ColorEditLastSat; - ImU32 ColorEditLastColor; + ImGuiID ColorEditCurrentID; + ImGuiID ColorEditSavedID; + float ColorEditSavedHue; + float ColorEditSavedSat; + ImU32 ColorEditSavedColor; ImVec4 ColorPickerRef; ImGuiComboPreviewData ComboPreviewData; + ImRect WindowResizeBorderExpectedRect; + bool WindowResizeRelativeMode; + short ScrollbarSeekMode; + float ScrollbarClickDeltaToGrabCenter; float SliderGrabClickOffset; float SliderCurrentAccum; bool SliderCurrentAccumDirty; bool DragCurrentAccumDirty; float DragCurrentAccum; float DragSpeedDefaultRatio; - float ScrollbarClickDeltaToGrabCenter; float DisabledAlphaBackup; short DisabledStackSize; + short LockMarkEdited; short TooltipOverrideCount; ImVector_char ClipboardHandlerData; ImVector_ImGuiID MenusIdSubmittedThisFrame; + ImGuiTypingSelectState TypingSelectState; ImGuiPlatformImeData PlatformImeData; ImGuiPlatformImeData PlatformImeDataPrev; ImGuiID PlatformImeViewport; - char PlatformLocaleDecimalPoint; ImGuiDockContext DockContext; + void (*DockNodeWindowMenuHandler)(ImGuiContext* ctx, ImGuiDockNode* node, ImGuiTabBar* tab_bar); bool SettingsLoaded; float SettingsDirtyTimer; ImGuiTextBuffer SettingsIniData; @@ -2565,12 +2957,20 @@ struct ImGuiContext ImGuiDebugLogFlags DebugLogFlags; ImGuiTextBuffer DebugLogBuf; ImGuiTextIndex DebugLogIndex; + ImGuiDebugLogFlags DebugLogAutoDisableFlags; + ImU8 DebugLogAutoDisableFrames; ImU8 DebugLocateFrames; + bool DebugBreakInLocateId; + ImGuiKeyChord DebugBreakKeyChord; + ImS8 DebugBeginReturnValueCullDepth; bool DebugItemPickerActive; ImU8 DebugItemPickerMouseButton; ImGuiID DebugItemPickerBreakId; + float DebugFlashStyleColorTime; + ImVec4 DebugFlashStyleColorBackup; ImGuiMetricsConfig DebugMetricsConfig; - ImGuiStackTool DebugStackTool; + ImGuiIDStackTool DebugIDStackTool; + ImGuiDebugAllocInfo DebugAllocInfo; ImGuiDockNode* DebugHoveredDockNode; float FramerateSecPerFrame[60]; int FramerateSecPerFrameIdx; @@ -2580,6 +2980,7 @@ struct ImGuiContext int WantCaptureKeyboardNextFrame; int WantTextInputNextFrame; ImVector_char TempBuffer; + char TempKeychordName[64]; }; struct ImGuiWindowTempData { @@ -2601,19 +3002,21 @@ struct ImGuiWindowTempData ImGuiNavLayer NavLayerCurrent; short NavLayersActiveMask; short NavLayersActiveMaskNext; + bool NavIsScrollPushableX; bool NavHideHighlightOneFrame; - bool NavHasScroll; + bool NavWindowHasScrollY; bool MenuBarAppending; ImVec2 MenuBarOffset; ImGuiMenuColumns MenuColumns; int TreeDepth; - ImU32 TreeJumpToParentOnPopMask; + ImU32 TreeHasStackDataDepthMask; ImVector_ImGuiWindowPtr ChildWindows; ImGuiStorage* StateStorage; ImGuiOldColumns* CurrentColumns; int CurrentTableIdx; ImGuiLayoutType LayoutType; ImGuiLayoutType ParentLayoutType; + ImU32 ModalDimBgColor; float ItemWidth; float TextWrapPos; ImVector_float ItemWidthStack; @@ -2623,9 +3026,11 @@ typedef struct ImVector_ImGuiOldColumns {int Size;int Capacity;ImGuiOldColumns* struct ImGuiWindow { + ImGuiContext* Ctx; char* Name; ImGuiID ID; ImGuiWindowFlags Flags, FlagsPreviousFrame; + ImGuiChildFlags ChildFlags; ImGuiWindowClass WindowClass; ImGuiViewportP* Viewport; ImGuiID ViewportId; @@ -2640,6 +3045,7 @@ struct ImGuiWindow ImVec2 WindowPadding; float WindowRounding; float WindowBorderSize; + float TitleBarHeight, MenuBarHeight; float DecoOuterSizeX1, DecoOuterSizeY1; float DecoOuterSizeX2, DecoOuterSizeY2; float DecoInnerSizeX1, DecoInnerSizeY1; @@ -2647,6 +3053,7 @@ struct ImGuiWindow ImGuiID MoveId; ImGuiID TabId; ImGuiID ChildId; + ImGuiID PopupId; ImVec2 Scroll; ImVec2 ScrollMax; ImVec2 ScrollTarget; @@ -2661,20 +3068,20 @@ struct ImGuiWindow bool Collapsed; bool WantCollapseToggle; bool SkipItems; + bool SkipRefresh; bool Appearing; bool Hidden; bool IsFallbackWindow; bool IsExplicitChild; bool HasCloseButton; + signed char ResizeBorderHovered; signed char ResizeBorderHeld; short BeginCount; short BeginCountPreviousFrame; short BeginOrderWithinParent; short BeginOrderWithinContext; short FocusOrder; - ImGuiID PopupId; ImS8 AutoFitFramesX, AutoFitFramesY; - ImS8 AutoFitChildAxises; bool AutoFitOnlyGrows; ImGuiDir AutoPosLastDirection; ImS8 HiddenFramesCanSkipItems; @@ -2716,9 +3123,11 @@ struct ImGuiWindow ImGuiWindow* RootWindowDockTree; ImGuiWindow* RootWindowForTitleBarHighlight; ImGuiWindow* RootWindowForNav; + ImGuiWindow* ParentWindowForFocusRoute; ImGuiWindow* NavLastChildNavWindow; ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; ImRect NavRectRel[ImGuiNavLayer_COUNT]; + ImVec2 NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]; ImGuiID NavRootFocusScopeId; int MemoryDrawListIdxCapacity; int MemoryDrawListVtxCapacity; @@ -2745,7 +3154,6 @@ typedef enum { ImGuiTabItemFlags_NoCloseButton = 1 << 20, ImGuiTabItemFlags_Button = 1 << 21, ImGuiTabItemFlags_Unsorted = 1 << 22, - ImGuiTabItemFlags_Preview = 1 << 23, }ImGuiTabItemFlagsPrivate_; struct ImGuiTabItem { @@ -2786,6 +3194,8 @@ struct ImGuiTabBar float ScrollingSpeed; float ScrollingRectMinX; float ScrollingRectMaxX; + float SeparatorMinX; + float SeparatorMaxX; ImGuiID ReorderRequestTabId; ImS16 ReorderRequestOffset; ImS8 BeginCount; @@ -2799,8 +3209,8 @@ struct ImGuiTabBar ImVec2 BackupCursorPos; ImGuiTextBuffer TabsNames; }; -typedef ImS8 ImGuiTableColumnIdx; -typedef ImU8 ImGuiTableDrawChannelIdx; +typedef ImS16 ImGuiTableColumnIdx; +typedef ImU16 ImGuiTableDrawChannelIdx; struct ImGuiTableColumn { ImGuiTableColumnFlags Flags; @@ -2809,6 +3219,7 @@ struct ImGuiTableColumn float MaxX; float WidthRequest; float WidthAuto; + float WidthMax; float StretchWeight; float InitStretchWeightOrWidth; ImRect ClipRect; @@ -2851,11 +3262,21 @@ struct ImGuiTableCellData ImU32 BgColor; ImGuiTableColumnIdx Column; }; +struct ImGuiTableHeaderData +{ + ImGuiTableColumnIdx Index; + ImU32 TextColor; + ImU32 BgColor0; + ImU32 BgColor1; +}; struct ImGuiTableInstanceData { + ImGuiID TableInstanceID; float LastOuterHeight; - float LastFirstRowHeight; + float LastTopHeadersRowHeight; float LastFrozenHeight; + int HoveredRowLast; + int HoveredRowNext; }; typedef struct ImSpan_ImGuiTableColumn {ImGuiTableColumn* Data;ImGuiTableColumn* DataEnd;} ImSpan_ImGuiTableColumn; @@ -2876,10 +3297,9 @@ struct ImGuiTable ImSpan_ImGuiTableColumn Columns; ImSpan_ImGuiTableColumnIdx DisplayOrderToIndex; ImSpan_ImGuiTableCellData RowCellData; - ImU64 EnabledMaskByDisplayOrder; - ImU64 EnabledMaskByIndex; - ImU64 VisibleMaskByIndex; - ImU64 RequestOutputMaskByIndex; + ImBitArrayPtr EnabledMaskByDisplayOrder; + ImBitArrayPtr EnabledMaskByIndex; + ImBitArrayPtr VisibleMaskByIndex; ImGuiTableFlags SettingsLoadedFlags; int SettingsOffset; int LastFrameActive; @@ -2891,6 +3311,7 @@ struct ImGuiTable float RowPosY1; float RowPosY2; float RowMinHeight; + float RowCellPaddingY; float RowTextBaseline; float RowIndentOffsetX; ImGuiTableRowFlags RowFlags : 16; @@ -2905,7 +3326,6 @@ struct ImGuiTable float MinColumnWidth; float OuterPaddingX; float CellPaddingX; - float CellPaddingY; float CellSpacingX1; float CellSpacingX2; float InnerWidth; @@ -2915,6 +3335,8 @@ struct ImGuiTable float ResizedColumnNextWidth; float ResizeLockMinContentsX2; float RefScale; + float AngledHeadersHeight; + float AngledHeadersSlope; ImRect OuterRect; ImRect InnerRect; ImRect WorkRect; @@ -2937,8 +3359,10 @@ struct ImGuiTable ImGuiTableColumnIdx ColumnsEnabledCount; ImGuiTableColumnIdx ColumnsEnabledFixedCount; ImGuiTableColumnIdx DeclColumnsCount; + ImGuiTableColumnIdx AngledHeadersCount; ImGuiTableColumnIdx HoveredColumnBody; ImGuiTableColumnIdx HoveredColumnBorder; + ImGuiTableColumnIdx HighlightColumnHeader; ImGuiTableColumnIdx AutoFitSingleColumn; ImGuiTableColumnIdx ResizedColumn; ImGuiTableColumnIdx LastResizedColumn; @@ -2964,6 +3388,7 @@ struct ImGuiTable bool IsSortSpecsDirty; bool IsUsingHeaders; bool IsContextPopupOpen; + bool DisableDefaultContextMenu; bool IsSettingsRequestLoad; bool IsSettingsDirty; bool IsDefaultDisplayOrder; @@ -2971,15 +3396,21 @@ struct ImGuiTable bool IsResetDisplayOrderRequest; bool IsUnfrozenRows; bool IsDefaultSizingPolicy; + bool IsActiveIdAliveBeforeTable; + bool IsActiveIdInTable; bool HasScrollbarYCurr; bool HasScrollbarYPrev; bool MemoryCompacted; bool HostSkipItems; }; +typedef struct ImVector_ImGuiTableHeaderData {int Size;int Capacity;ImGuiTableHeaderData* Data;} ImVector_ImGuiTableHeaderData; + struct ImGuiTableTempData { int TableIndex; float LastTimeActive; + float AngledHeadersExtraWidth; + ImVector_ImGuiTableHeaderData AngledHeadersRequests; ImVec2 UserOuterSize; ImDrawListSplitter DrawSplitter; ImRect HostBackupWorkRect; @@ -3018,6 +3449,8 @@ struct ImFontBuilderIO }; #define IMGUI_HAS_DOCK 1 +#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8) + #else struct GLFWwindow; struct SDL_Window; @@ -3025,14 +3458,11 @@ typedef union SDL_Event SDL_Event; #endif // CIMGUI_DEFINE_ENUMS_AND_STRUCTS #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS -typedef struct ImGuiStorage::ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiTextFilter::ImGuiTextRange ImGuiTextRange; typedef ImStb::STB_TexteditState STB_TexteditState; -typedef ImStb::StbTexteditRow StbTexteditRow; -typedef ImStb::StbUndoRecord StbUndoRecord; -typedef ImStb::StbUndoState StbUndoState; typedef ImChunkStream ImChunkStream_ImGuiTableSettings; typedef ImChunkStream ImChunkStream_ImGuiWindowSettings; +typedef ImPool ImPool_ImGuiMultiSelectState; typedef ImPool ImPool_ImGuiTabBar; typedef ImPool ImPool_ImGuiTable; typedef ImSpan ImSpan_ImGuiTableCellData; @@ -3051,6 +3481,7 @@ typedef ImVector ImVector_ImGuiColorMod; typedef ImVector ImVector_ImGuiContextHook; typedef ImVector ImVector_ImGuiDockNodeSettings; typedef ImVector ImVector_ImGuiDockRequest; +typedef ImVector ImVector_ImGuiFocusScopeData; typedef ImVector ImVector_ImGuiGroupData; typedef ImVector ImVector_ImGuiID; typedef ImVector ImVector_ImGuiInputEvent; @@ -3058,11 +3489,13 @@ typedef ImVector ImVector_ImGuiItemFlags; typedef ImVector ImVector_ImGuiKeyRoutingData; typedef ImVector ImVector_ImGuiListClipperData; typedef ImVector ImVector_ImGuiListClipperRange; +typedef ImVector ImVector_ImGuiMultiSelectTempData; typedef ImVector ImVector_ImGuiOldColumnData; typedef ImVector ImVector_ImGuiOldColumns; typedef ImVector ImVector_ImGuiPlatformMonitor; typedef ImVector ImVector_ImGuiPopupData; typedef ImVector ImVector_ImGuiPtrOrIndex; +typedef ImVector ImVector_ImGuiSelectionRequest; typedef ImVector ImVector_ImGuiSettingsHandler; typedef ImVector ImVector_ImGuiShrinkWidthItem; typedef ImVector ImVector_ImGuiStackLevelInfo; @@ -3070,9 +3503,11 @@ typedef ImVector ImVector_ImGuiStoragePair; typedef ImVector ImVector_ImGuiStyleMod; typedef ImVector ImVector_ImGuiTabItem; typedef ImVector ImVector_ImGuiTableColumnSortSpecs; +typedef ImVector ImVector_ImGuiTableHeaderData; typedef ImVector ImVector_ImGuiTableInstanceData; typedef ImVector ImVector_ImGuiTableTempData; typedef ImVector ImVector_ImGuiTextRange; +typedef ImVector ImVector_ImGuiTreeNodeStackData; typedef ImVector ImVector_ImGuiViewportPtr; typedef ImVector ImVector_ImGuiViewportPPtr; typedef ImVector ImVector_ImGuiWindowPtr; @@ -3099,6 +3534,7 @@ CIMGUI_API void igDestroyContext(ImGuiContext* ctx); CIMGUI_API ImGuiContext* igGetCurrentContext(void); CIMGUI_API void igSetCurrentContext(ImGuiContext* ctx); CIMGUI_API ImGuiIO* igGetIO(void); +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API ImGuiStyle* igGetStyle(void); CIMGUI_API void igNewFrame(void); CIMGUI_API void igEndFrame(void); @@ -3107,7 +3543,7 @@ CIMGUI_API ImDrawData* igGetDrawData(void); CIMGUI_API void igShowDemoWindow(bool* p_open); CIMGUI_API void igShowMetricsWindow(bool* p_open); CIMGUI_API void igShowDebugLogWindow(bool* p_open); -CIMGUI_API void igShowStackToolWindow(bool* p_open); +CIMGUI_API void igShowIDStackToolWindow(bool* p_open); CIMGUI_API void igShowAboutWindow(bool* p_open); CIMGUI_API void igShowStyleEditor(ImGuiStyle* ref); CIMGUI_API bool igShowStyleSelector(const char* label); @@ -3119,8 +3555,8 @@ CIMGUI_API void igStyleColorsLight(ImGuiStyle* dst); CIMGUI_API void igStyleColorsClassic(ImGuiStyle* dst); CIMGUI_API bool igBegin(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEnd(void); -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags); -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags); +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); CIMGUI_API void igEndChild(void); CIMGUI_API bool igIsWindowAppearing(void); CIMGUI_API bool igIsWindowCollapsed(void); @@ -3151,10 +3587,6 @@ CIMGUI_API void igSetWindowPos_Str(const char* name,const ImVec2 pos,ImGuiCond c CIMGUI_API void igSetWindowSize_Str(const char* name,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_Str(const char* name,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowFocus_Str(const char* name); -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut); CIMGUI_API float igGetScrollX(void); CIMGUI_API float igGetScrollY(void); CIMGUI_API void igSetScrollX_Float(float scroll_x); @@ -3172,11 +3604,11 @@ CIMGUI_API void igPushStyleColor_Vec4(ImGuiCol idx,const ImVec4 col); CIMGUI_API void igPopStyleColor(int count); CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val); CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val); +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x); +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y); CIMGUI_API void igPopStyleVar(int count); -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus); -CIMGUI_API void igPopAllowKeyboardFocus(void); -CIMGUI_API void igPushButtonRepeat(bool repeat); -CIMGUI_API void igPopButtonRepeat(void); +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); +CIMGUI_API void igPopItemFlag(void); CIMGUI_API void igPushItemWidth(float item_width); CIMGUI_API void igPopItemWidth(void); CIMGUI_API void igSetNextItemWidth(float item_width); @@ -3188,8 +3620,18 @@ CIMGUI_API float igGetFontSize(void); CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut); CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul); CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col); -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col); +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul); CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx); +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); +CIMGUI_API void igGetCursorPos(ImVec2 *pOut); +CIMGUI_API float igGetCursorPosX(void); +CIMGUI_API float igGetCursorPosY(void); +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); +CIMGUI_API void igSetCursorPosX(float local_x); +CIMGUI_API void igSetCursorPosY(float local_y); +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); CIMGUI_API void igSeparator(void); CIMGUI_API void igSameLine(float offset_from_start_x,float spacing); CIMGUI_API void igNewLine(void); @@ -3199,15 +3641,6 @@ CIMGUI_API void igIndent(float indent_w); CIMGUI_API void igUnindent(float indent_w); CIMGUI_API void igBeginGroup(void); CIMGUI_API void igEndGroup(void); -CIMGUI_API void igGetCursorPos(ImVec2 *pOut); -CIMGUI_API float igGetCursorPosX(void); -CIMGUI_API float igGetCursorPosY(void); -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); -CIMGUI_API void igSetCursorPosX(float local_x); -CIMGUI_API void igSetCursorPosY(float local_y); -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); CIMGUI_API void igAlignTextToFramePadding(void); CIMGUI_API float igGetTextLineHeight(void); CIMGUI_API float igGetTextLineHeightWithSpacing(void); @@ -3221,6 +3654,7 @@ CIMGUI_API void igPopID(void); CIMGUI_API ImGuiID igGetID_Str(const char* str_id); CIMGUI_API ImGuiID igGetID_StrStr(const char* str_id_begin,const char* str_id_end); CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id); +CIMGUI_API ImGuiID igGetID_Int(int int_id); CIMGUI_API void igTextUnformatted(const char* text,const char* text_end); CIMGUI_API void igText(const char* fmt,...); CIMGUI_API void igTextV(const char* fmt,va_list args); @@ -3234,6 +3668,7 @@ CIMGUI_API void igLabelText(const char* label,const char* fmt,...); CIMGUI_API void igLabelTextV(const char* label,const char* fmt,va_list args); CIMGUI_API void igBulletText(const char* fmt,...); CIMGUI_API void igBulletTextV(const char* fmt,va_list args); +CIMGUI_API void igSeparatorText(const char* label); CIMGUI_API bool igButton(const char* label,const ImVec2 size); CIMGUI_API bool igSmallButton(const char* label); CIMGUI_API bool igInvisibleButton(const char* str_id,const ImVec2 size,ImGuiButtonFlags flags); @@ -3245,13 +3680,15 @@ CIMGUI_API bool igRadioButton_Bool(const char* label,bool active); CIMGUI_API bool igRadioButton_IntPtr(const char* label,int* v,int v_button); CIMGUI_API void igProgressBar(float fraction,const ImVec2 size_arg,const char* overlay); CIMGUI_API void igBullet(void); -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); +CIMGUI_API bool igTextLink(const char* label); +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url); +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags); CIMGUI_API void igEndCombo(void); CIMGUI_API bool igCombo_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items); CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items); -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items); +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items); CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat2(const char* label,float v[2],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat3(const char* label,float v[3],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); @@ -3315,12 +3752,17 @@ CIMGUI_API float igGetTreeNodeToLabelSpacing(void); CIMGUI_API bool igCollapsingHeader_TreeNodeFlags(const char* label,ImGuiTreeNodeFlags flags); CIMGUI_API bool igCollapsingHeader_BoolPtr(const char* label,bool* p_visible,ImGuiTreeNodeFlags flags); CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond); +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id); CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size); CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size); +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count); +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect(void); +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data); +CIMGUI_API bool igIsItemToggledSelection(void); CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size); CIMGUI_API void igEndListBox(void); CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int height_in_items); -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items); +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items); CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); CIMGUI_API void igPlotLines_FnFloatPtr(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size); CIMGUI_API void igPlotHistogram_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); @@ -3337,10 +3779,13 @@ CIMGUI_API bool igBeginMenu(const char* label,bool enabled); CIMGUI_API void igEndMenu(void); CIMGUI_API bool igMenuItem_Bool(const char* label,const char* shortcut,bool selected,bool enabled); CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* p_selected,bool enabled); -CIMGUI_API void igBeginTooltip(void); +CIMGUI_API bool igBeginTooltip(void); CIMGUI_API void igEndTooltip(void); CIMGUI_API void igSetTooltip(const char* fmt,...); CIMGUI_API void igSetTooltipV(const char* fmt,va_list args); +CIMGUI_API bool igBeginItemTooltip(void); +CIMGUI_API void igSetItemTooltip(const char* fmt,...); +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args); CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags); CIMGUI_API bool igBeginPopupModal(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEndPopup(void); @@ -3352,15 +3797,16 @@ CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextVoid(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igIsPopupOpen_Str(const char* str_id,ImGuiPopupFlags flags); -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); CIMGUI_API void igEndTable(void); CIMGUI_API void igTableNextRow(ImGuiTableRowFlags row_flags,float min_row_height); CIMGUI_API bool igTableNextColumn(void); CIMGUI_API bool igTableSetColumnIndex(int column_n); CIMGUI_API void igTableSetupColumn(const char* label,ImGuiTableColumnFlags flags,float init_width_or_weight,ImGuiID user_id); CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows); -CIMGUI_API void igTableHeadersRow(void); CIMGUI_API void igTableHeader(const char* label); +CIMGUI_API void igTableHeadersRow(void); +CIMGUI_API void igTableAngledHeadersRow(void); CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs(void); CIMGUI_API int igTableGetColumnCount(void); CIMGUI_API int igTableGetColumnIndex(void); @@ -3368,8 +3814,9 @@ CIMGUI_API int igTableGetRowIndex(void); CIMGUI_API const char* igTableGetColumnName_Int(int column_n); CIMGUI_API ImGuiTableColumnFlags igTableGetColumnFlags(int column_n); CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v); +CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n); -CIMGUI_API void igColumns(int count,const char* id,bool border); +CIMGUI_API void igColumns(int count,const char* id,bool borders); CIMGUI_API void igNextColumn(void); CIMGUI_API int igGetColumnIndex(void); CIMGUI_API float igGetColumnWidth(int column_index); @@ -3383,8 +3830,8 @@ CIMGUI_API bool igBeginTabItem(const char* label,bool* p_open,ImGuiTabItemFlags CIMGUI_API void igEndTabItem(void); CIMGUI_API bool igTabItemButton(const char* label,ImGuiTabItemFlags flags); CIMGUI_API void igSetTabItemClosed(const char* tab_or_docked_window_label); -CIMGUI_API ImGuiID igDockSpace(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); -CIMGUI_API ImGuiID igDockSpaceOverViewport(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); +CIMGUI_API ImGuiID igDockSpace(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); +CIMGUI_API ImGuiID igDockSpaceOverViewport(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class); CIMGUI_API void igSetNextWindowDockID(ImGuiID dock_id,ImGuiCond cond); CIMGUI_API void igSetNextWindowClass(const ImGuiWindowClass* window_class); CIMGUI_API ImGuiID igGetWindowDockID(void); @@ -3408,6 +3855,7 @@ CIMGUI_API void igPushClipRect(const ImVec2 clip_rect_min,const ImVec2 clip_rect CIMGUI_API void igPopClipRect(void); CIMGUI_API void igSetItemDefaultFocus(void); CIMGUI_API void igSetKeyboardFocusHere(int offset); +CIMGUI_API void igSetNextItemAllowOverlap(void); CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags); CIMGUI_API bool igIsItemActive(void); CIMGUI_API bool igIsItemFocused(void); @@ -3425,11 +3873,8 @@ CIMGUI_API ImGuiID igGetItemID(void); CIMGUI_API void igGetItemRectMin(ImVec2 *pOut); CIMGUI_API void igGetItemRectMax(ImVec2 *pOut); CIMGUI_API void igGetItemRectSize(ImVec2 *pOut); -CIMGUI_API void igSetItemAllowOverlap(void); CIMGUI_API ImGuiViewport* igGetMainViewport(void); -CIMGUI_API ImDrawList* igGetBackgroundDrawList_Nil(void); -CIMGUI_API ImDrawList* igGetForegroundDrawList_Nil(void); -CIMGUI_API ImDrawList* igGetBackgroundDrawList_ViewportPtr(ImGuiViewport* viewport); +CIMGUI_API ImDrawList* igGetBackgroundDrawList(ImGuiViewport* viewport); CIMGUI_API ImDrawList* igGetForegroundDrawList_ViewportPtr(ImGuiViewport* viewport); CIMGUI_API bool igIsRectVisible_Nil(const ImVec2 size); CIMGUI_API bool igIsRectVisible_Vec2(const ImVec2 rect_min,const ImVec2 rect_max); @@ -3439,8 +3884,6 @@ CIMGUI_API ImDrawListSharedData* igGetDrawListSharedData(void); CIMGUI_API const char* igGetStyleColorName(ImGuiCol idx); CIMGUI_API void igSetStateStorage(ImGuiStorage* storage); CIMGUI_API ImGuiStorage* igGetStateStorage(void); -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags); -CIMGUI_API void igEndChildFrame(void); CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width); CIMGUI_API void igColorConvertU32ToFloat4(ImVec4 *pOut,ImU32 in); CIMGUI_API ImU32 igColorConvertFloat4ToU32(const ImVec4 in); @@ -3449,13 +3892,17 @@ CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float* out_r,floa CIMGUI_API bool igIsKeyDown_Nil(ImGuiKey key); CIMGUI_API bool igIsKeyPressed_Bool(ImGuiKey key,bool repeat); CIMGUI_API bool igIsKeyReleased_Nil(ImGuiKey key); +CIMGUI_API bool igIsKeyChordPressed_Nil(ImGuiKeyChord key_chord); CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate); CIMGUI_API const char* igGetKeyName(ImGuiKey key); CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); +CIMGUI_API bool igShortcut_Nil(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner_Nil(ImGuiKey key); CIMGUI_API bool igIsMouseDown_Nil(ImGuiMouseButton button); CIMGUI_API bool igIsMouseClicked_Bool(ImGuiMouseButton button,bool repeat); CIMGUI_API bool igIsMouseReleased_Nil(ImGuiMouseButton button); -CIMGUI_API bool igIsMouseDoubleClicked(ImGuiMouseButton button); +CIMGUI_API bool igIsMouseDoubleClicked_Nil(ImGuiMouseButton button); CIMGUI_API int igGetMouseClickedCount(ImGuiMouseButton button); CIMGUI_API bool igIsMouseHoveringRect(const ImVec2 r_min,const ImVec2 r_max,bool clip); CIMGUI_API bool igIsMousePosValid(const ImVec2* mouse_pos); @@ -3475,17 +3922,24 @@ CIMGUI_API void igLoadIniSettingsFromMemory(const char* ini_data,size_t ini_size CIMGUI_API void igSaveIniSettingsToDisk(const char* ini_filename); CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igDebugTextEncoding(const char* text); +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx); +CIMGUI_API void igDebugStartItemPicker(void); CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx); +CIMGUI_API void igDebugLog(const char* fmt,...); +CIMGUI_API void igDebugLogV(const char* fmt,va_list args); CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data); CIMGUI_API void igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); -CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API void igUpdatePlatformWindows(void); CIMGUI_API void igRenderPlatformWindowsDefault(void* platform_render_arg,void* renderer_render_arg); CIMGUI_API void igDestroyPlatformWindows(void); CIMGUI_API ImGuiViewport* igFindViewportByID(ImGuiID id); CIMGUI_API ImGuiViewport* igFindViewportByPlatformHandle(void* platform_handle); +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); @@ -3493,7 +3947,8 @@ CIMGUI_API void ImGuiIO_AddKeyEvent(ImGuiIO* self,ImGuiKey key,bool down); CIMGUI_API void ImGuiIO_AddKeyAnalogEvent(ImGuiIO* self,ImGuiKey key,bool down,float v); CIMGUI_API void ImGuiIO_AddMousePosEvent(ImGuiIO* self,float x,float y); CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down); -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y); +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y); +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source); CIMGUI_API void ImGuiIO_AddMouseViewportEvent(ImGuiIO* self,ImGuiID id); CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused); CIMGUI_API void ImGuiIO_AddInputCharacter(ImGuiIO* self,unsigned int c); @@ -3501,8 +3956,9 @@ CIMGUI_API void ImGuiIO_AddInputCharacterUTF16(ImGuiIO* self,ImWchar16 c); CIMGUI_API void ImGuiIO_AddInputCharactersUTF8(ImGuiIO* self,const char* str); CIMGUI_API void ImGuiIO_SetKeyEventNativeData(ImGuiIO* self,ImGuiKey key,int native_keycode,int native_scancode,int native_legacy_index); CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_events); -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self); CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self); CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void); CIMGUI_API void ImGuiIO_destroy(ImGuiIO* self); CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputTextCallbackData(void); @@ -3520,10 +3976,6 @@ CIMGUI_API void ImGuiPayload_Clear(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDataType(ImGuiPayload* self,const char* type); CIMGUI_API bool ImGuiPayload_IsPreview(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self); -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void); CIMGUI_API void ImGuiOnceUponAFrame_destroy(ImGuiOnceUponAFrame* self); CIMGUI_API ImGuiTextFilter* ImGuiTextFilter_ImGuiTextFilter(const char* default_filter); @@ -3549,10 +4001,10 @@ CIMGUI_API void ImGuiTextBuffer_reserve(ImGuiTextBuffer* self,int capacity); CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end); CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val); CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val); CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self); CIMGUI_API int ImGuiStorage_GetInt(ImGuiStorage* self,ImGuiID key,int default_val); CIMGUI_API void ImGuiStorage_SetInt(ImGuiStorage* self,ImGuiID key,int val); @@ -3566,14 +4018,16 @@ CIMGUI_API int* ImGuiStorage_GetIntRef(ImGuiStorage* self,ImGuiID key,int defaul CIMGUI_API bool* ImGuiStorage_GetBoolRef(ImGuiStorage* self,ImGuiID key,bool default_val); CIMGUI_API float* ImGuiStorage_GetFloatRef(ImGuiStorage* self,ImGuiID key,float default_val); CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void* default_val); -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void); CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max); +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index); +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end); +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index); CIMGUI_API ImColor* ImColor_ImColor_Nil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColor_Float(float r,float g,float b,float a); @@ -3582,6 +4036,18 @@ CIMGUI_API ImColor* ImColor_ImColor_Int(int r,int g,int b,int a); CIMGUI_API ImColor* ImColor_ImColor_U32(ImU32 rgba); CIMGUI_API void ImColor_SetHSV(ImColor* self,float h,float s,float v,float a); CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a); +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void); +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io); +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id); +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r); +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected); +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id); +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx); +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void); +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self); +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io); CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void); CIMGUI_API void ImDrawCmd_destroy(ImDrawCmd* self); CIMGUI_API ImTextureID ImDrawCmd_GetTexID(ImDrawCmd* self); @@ -3613,12 +4079,15 @@ CIMGUI_API void ImDrawList_AddCircle(ImDrawList* self,const ImVec2 center,float CIMGUI_API void ImDrawList_AddCircleFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); CIMGUI_API void ImDrawList_AddNgon(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments,float thickness); CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness); +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments); CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end); CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,float font_size,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end,float wrap_width,const ImVec4* cpu_fine_clip_rect); -CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); -CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments); CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments); +CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col); CIMGUI_API void ImDrawList_AddImageQuad(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 uv1,const ImVec2 uv2,const ImVec2 uv3,const ImVec2 uv4,ImU32 col); CIMGUI_API void ImDrawList_AddImageRounded(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col,float rounding,ImDrawFlags flags); @@ -3626,9 +4095,11 @@ CIMGUI_API void ImDrawList_PathClear(ImDrawList* self); CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col); +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col); CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness); CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,float radius,int a_min_of_12,int a_max_of_12); +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments); CIMGUI_API void ImDrawList_PathBezierQuadraticCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,int num_segments); CIMGUI_API void ImDrawList_PathRect(ImDrawList* self,const ImVec2 rect_min,const ImVec2 rect_max,float rounding,ImDrawFlags flags); @@ -3653,12 +4124,14 @@ CIMGUI_API void ImDrawList__TryMergeDrawCmds(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedClipRect(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedTextureID(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self); +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id); CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius); CIMGUI_API void ImDrawList__PathArcToFastEx(ImDrawList* self,const ImVec2 center,float radius,int a_min_sample,int a_max_sample,int a_step); CIMGUI_API void ImDrawList__PathArcToN(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API ImDrawData* ImDrawData_ImDrawData(void); CIMGUI_API void ImDrawData_destroy(ImDrawData* self); CIMGUI_API void ImDrawData_Clear(ImDrawData* self); +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list); CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self); CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale); CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void); @@ -3680,8 +4153,8 @@ CIMGUI_API void ImFontAtlas_destroy(ImFontAtlas* self); CIMGUI_API ImFont* ImFontAtlas_AddFont(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontDefault(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* filename,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self); @@ -3734,9 +4207,8 @@ CIMGUI_API ImGuiPlatformMonitor* ImGuiPlatformMonitor_ImGuiPlatformMonitor(void) CIMGUI_API void ImGuiPlatformMonitor_destroy(ImGuiPlatformMonitor* self); CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void); CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self); -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key); -CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImU32 seed); -CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImU32 seed); +CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed); +CIMGUI_API ImGuiID igImHashStr(const char* data,size_t data_size,ImGuiID seed); CIMGUI_API void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*)); CIMGUI_API ImU32 igImAlphaBlendColors(ImU32 col_a,ImU32 col_b); CIMGUI_API bool igImIsPowerOfTwo_Int(int v); @@ -3748,15 +4220,16 @@ CIMGUI_API void igImStrncpy(char* dst,const char* src,size_t count); CIMGUI_API char* igImStrdup(const char* str); CIMGUI_API char* igImStrdupcpy(char* dst,size_t* p_dst_size,const char* str); CIMGUI_API const char* igImStrchrRange(const char* str_begin,const char* str_end,char c); -CIMGUI_API int igImStrlenW(const ImWchar* str); CIMGUI_API const char* igImStreolRange(const char* str,const char* str_end); -CIMGUI_API const ImWchar* igImStrbolW(const ImWchar* buf_mid_line,const ImWchar* buf_begin); CIMGUI_API const char* igImStristr(const char* haystack,const char* haystack_end,const char* needle,const char* needle_end); CIMGUI_API void igImStrTrimBlanks(char* str); CIMGUI_API const char* igImStrSkipBlank(const char* str); +CIMGUI_API int igImStrlenW(const ImWchar* str); +CIMGUI_API const char* igImStrbol(const char* buf_mid_line,const char* buf_begin); CIMGUI_API char igImToUpper(char c); CIMGUI_API bool igImCharIsBlankA(char c); CIMGUI_API bool igImCharIsBlankW(unsigned int c); +CIMGUI_API bool igImCharIsXdigitA(char c); CIMGUI_API int igImFormatString(char* buf,size_t buf_size,const char* fmt,...); CIMGUI_API int igImFormatStringV(char* buf,size_t buf_size,const char* fmt,va_list args); CIMGUI_API void igImFormatStringToTempBuffer(const char** out_buf,const char** out_buf_end,const char* fmt,...); @@ -3774,6 +4247,8 @@ CIMGUI_API int igImTextStrFromUtf8(ImWchar* out_buf,int out_buf_size,const char* CIMGUI_API int igImTextCountCharsFromUtf8(const char* in_text,const char* in_text_end); CIMGUI_API int igImTextCountUtf8BytesFromChar(const char* in_text,const char* in_text_end); CIMGUI_API int igImTextCountUtf8BytesFromStr(const ImWchar* in_text,const ImWchar* in_text_end); +CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_start,const char* in_text_curr); +CIMGUI_API int igImTextCountLines(const char* in_text,const char* in_text_end); CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode); CIMGUI_API bool igImFileClose(ImFileHandle file); CIMGUI_API ImU64 igImFileGetSize(ImFileHandle file); @@ -3793,7 +4268,7 @@ CIMGUI_API float igImRsqrt_Float(float x); CIMGUI_API double igImRsqrt_double(double x); CIMGUI_API void igImMin(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); CIMGUI_API void igImMax(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); -CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx); +CIMGUI_API void igImClamp(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx); CIMGUI_API void igImLerp_Vec2Float(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,float t); CIMGUI_API void igImLerp_Vec2Vec2(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,const ImVec2 t); CIMGUI_API void igImLerp_Vec4(ImVec4 *pOut,const ImVec4 a,const ImVec4 b,float t); @@ -3801,14 +4276,15 @@ CIMGUI_API float igImSaturate(float f); CIMGUI_API float igImLengthSqr_Vec2(const ImVec2 lhs); CIMGUI_API float igImLengthSqr_Vec4(const ImVec4 lhs); CIMGUI_API float igImInvLength(const ImVec2 lhs,float fail_value); +CIMGUI_API float igImTrunc_Float(float f); +CIMGUI_API void igImTrunc_Vec2(ImVec2 *pOut,const ImVec2 v); CIMGUI_API float igImFloor_Float(float f); -CIMGUI_API float igImFloorSigned_Float(float f); CIMGUI_API void igImFloor_Vec2(ImVec2 *pOut,const ImVec2 v); -CIMGUI_API void igImFloorSigned_Vec2(ImVec2 *pOut,const ImVec2 v); CIMGUI_API int igImModPositive(int a,int b); CIMGUI_API float igImDot(const ImVec2 a,const ImVec2 b); CIMGUI_API void igImRotate(ImVec2 *pOut,const ImVec2 v,float cos_a,float sin_a); CIMGUI_API float igImLinearSweep(float current,float target,float speed); +CIMGUI_API float igImLinearRemapClamp(float s0,float s1,float d0,float d1,float x); CIMGUI_API void igImMul(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs); CIMGUI_API bool igImIsFloatAboveGuaranteedIntegerPrecision(float f); CIMGUI_API float igImExponentialMovingAverage(float avg,float sample,int n); @@ -3821,7 +4297,7 @@ CIMGUI_API bool igImTriangleContainsPoint(const ImVec2 a,const ImVec2 b,const Im CIMGUI_API void igImTriangleClosestPoint(ImVec2 *pOut,const ImVec2 a,const ImVec2 b,const ImVec2 c,const ImVec2 p); CIMGUI_API void igImTriangleBarycentricCoords(const ImVec2 a,const ImVec2 b,const ImVec2 c,const ImVec2 p,float* out_u,float* out_v,float* out_w); CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c); -CIMGUI_API ImGuiDir igImGetDirQuadrantFromDelta(float dx,float dy); +CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c); CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void); CIMGUI_API void ImVec1_destroy(ImVec1* self); CIMGUI_API ImVec1* ImVec1_ImVec1_Float(float _x); @@ -3845,6 +4321,7 @@ CIMGUI_API void ImRect_GetBL(ImVec2 *pOut,ImRect* self); CIMGUI_API void ImRect_GetBR(ImVec2 *pOut,ImRect* self); CIMGUI_API bool ImRect_Contains_Vec2(ImRect* self,const ImVec2 p); CIMGUI_API bool ImRect_Contains_Rect(ImRect* self,const ImRect r); +CIMGUI_API bool ImRect_ContainsWithPad(ImRect* self,const ImVec2 p,const ImVec2 pad); CIMGUI_API bool ImRect_Overlaps(ImRect* self,const ImRect r); CIMGUI_API void ImRect_Add_Vec2(ImRect* self,const ImVec2 p); CIMGUI_API void ImRect_Add_Rect(ImRect* self,const ImRect r); @@ -3858,6 +4335,8 @@ CIMGUI_API void ImRect_ClipWithFull(ImRect* self,const ImRect r); CIMGUI_API void ImRect_Floor(ImRect* self); CIMGUI_API bool ImRect_IsInverted(ImRect* self); CIMGUI_API void ImRect_ToVec4(ImVec4 *pOut,ImRect* self); +CIMGUI_API size_t igImBitArrayGetStorageSizeInBytes(int bitcount); +CIMGUI_API void igImBitArrayClearAllBits(ImU32* arr,int bitcount); CIMGUI_API bool igImBitArrayTestBit(const ImU32* arr,int n); CIMGUI_API void igImBitArrayClearBit(ImU32* arr,int n); CIMGUI_API void igImBitArraySetBit(ImU32* arr,int n); @@ -3872,13 +4351,13 @@ CIMGUI_API int ImGuiTextIndex_size(ImGuiTextIndex* self); CIMGUI_API const char* ImGuiTextIndex_get_line_begin(ImGuiTextIndex* self,const char* base,int n); CIMGUI_API const char* ImGuiTextIndex_get_line_end(ImGuiTextIndex* self,const char* base,int n); CIMGUI_API void ImGuiTextIndex_append(ImGuiTextIndex* self,const char* base,int old_size,int new_size); +CIMGUI_API ImGuiStoragePair* igImLowerBound(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key); CIMGUI_API ImDrawListSharedData* ImDrawListSharedData_ImDrawListSharedData(void); CIMGUI_API void ImDrawListSharedData_destroy(ImDrawListSharedData* self); CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error); -CIMGUI_API void ImDrawDataBuilder_Clear(ImDrawDataBuilder* self); -CIMGUI_API void ImDrawDataBuilder_ClearFreeMemory(ImDrawDataBuilder* self); -CIMGUI_API int ImDrawDataBuilder_GetDrawListCount(ImDrawDataBuilder* self); -CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(ImDrawDataBuilder* self); +CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void); +CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self); +CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent); CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v); CIMGUI_API void ImGuiStyleMod_destroy(ImGuiStyleMod* self); CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Float(ImGuiStyleVar idx,float v); @@ -3890,13 +4369,15 @@ CIMGUI_API void ImGuiMenuColumns_destroy(ImGuiMenuColumns* self); CIMGUI_API void ImGuiMenuColumns_Update(ImGuiMenuColumns* self,float spacing,bool window_reappearing); CIMGUI_API float ImGuiMenuColumns_DeclColumns(ImGuiMenuColumns* self,float w_icon,float w_label,float w_shortcut,float w_mark); CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool update_offsets); -CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(ImGuiContext* ctx); +CIMGUI_API ImGuiInputTextDeactivatedState* ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState(void); +CIMGUI_API void ImGuiInputTextDeactivatedState_destroy(ImGuiInputTextDeactivatedState* self); +CIMGUI_API void ImGuiInputTextDeactivatedState_ClearFreeMemory(ImGuiInputTextDeactivatedState* self); +CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(void); CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetUndoAvailCount(ImGuiInputTextState* self); -CIMGUI_API int ImGuiInputTextState_GetRedoAvailCount(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_OnKeyPressed(ImGuiInputTextState* self,int key); +CIMGUI_API void ImGuiInputTextState_OnCharPressed(ImGuiInputTextState* self,unsigned int c); CIMGUI_API void ImGuiInputTextState_CursorAnimReset(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_CursorClamp(ImGuiInputTextState* self); CIMGUI_API bool ImGuiInputTextState_HasSelection(ImGuiInputTextState* self); @@ -3905,8 +4386,9 @@ CIMGUI_API int ImGuiInputTextState_GetCursorPos(ImGuiInputTextState* self); CIMGUI_API int ImGuiInputTextState_GetSelectionStart(ImGuiInputTextState* self); CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(ImGuiInputTextState* self); CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self); -CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void); -CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self); +CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self); CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void); CIMGUI_API void ImGuiNextWindowData_destroy(ImGuiNextWindowData* self); CIMGUI_API void ImGuiNextWindowData_ClearFlags(ImGuiNextWindowData* self); @@ -3917,11 +4399,13 @@ CIMGUI_API ImGuiLastItemData* ImGuiLastItemData_ImGuiLastItemData(void); CIMGUI_API void ImGuiLastItemData_destroy(ImGuiLastItemData* self); CIMGUI_API ImGuiStackSizes* ImGuiStackSizes_ImGuiStackSizes(void); CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self); -CIMGUI_API void ImGuiStackSizes_SetToCurrentState(ImGuiStackSizes* self); -CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self); +CIMGUI_API void ImGuiStackSizes_SetToContextState(ImGuiStackSizes* self,ImGuiContext* ctx); +CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,ImGuiContext* ctx); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr); CIMGUI_API void ImGuiPtrOrIndex_destroy(ImGuiPtrOrIndex* self); CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index); +CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void); +CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self); CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void); CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self); CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void); @@ -3939,10 +4423,21 @@ CIMGUI_API void ImGuiListClipperData_Reset(ImGuiListClipperData* self,ImGuiListC CIMGUI_API ImGuiNavItemData* ImGuiNavItemData_ImGuiNavItemData(void); CIMGUI_API void ImGuiNavItemData_destroy(ImGuiNavItemData* self); CIMGUI_API void ImGuiNavItemData_Clear(ImGuiNavItemData* self); +CIMGUI_API ImGuiTypingSelectState* ImGuiTypingSelectState_ImGuiTypingSelectState(void); +CIMGUI_API void ImGuiTypingSelectState_destroy(ImGuiTypingSelectState* self); +CIMGUI_API void ImGuiTypingSelectState_Clear(ImGuiTypingSelectState* self); CIMGUI_API ImGuiOldColumnData* ImGuiOldColumnData_ImGuiOldColumnData(void); CIMGUI_API void ImGuiOldColumnData_destroy(ImGuiOldColumnData* self); CIMGUI_API ImGuiOldColumns* ImGuiOldColumns_ImGuiOldColumns(void); CIMGUI_API void ImGuiOldColumns_destroy(ImGuiOldColumns* self); +CIMGUI_API ImGuiBoxSelectState* ImGuiBoxSelectState_ImGuiBoxSelectState(void); +CIMGUI_API void ImGuiBoxSelectState_destroy(ImGuiBoxSelectState* self); +CIMGUI_API ImGuiMultiSelectTempData* ImGuiMultiSelectTempData_ImGuiMultiSelectTempData(void); +CIMGUI_API void ImGuiMultiSelectTempData_destroy(ImGuiMultiSelectTempData* self); +CIMGUI_API void ImGuiMultiSelectTempData_Clear(ImGuiMultiSelectTempData* self); +CIMGUI_API void ImGuiMultiSelectTempData_ClearIO(ImGuiMultiSelectTempData* self); +CIMGUI_API ImGuiMultiSelectState* ImGuiMultiSelectState_ImGuiMultiSelectState(void); +CIMGUI_API void ImGuiMultiSelectState_destroy(ImGuiMultiSelectState* self); CIMGUI_API ImGuiDockNode* ImGuiDockNode_ImGuiDockNode(ImGuiID id); CIMGUI_API void ImGuiDockNode_destroy(ImGuiDockNode* self); CIMGUI_API bool ImGuiDockNode_IsRootNode(ImGuiDockNode* self); @@ -3962,8 +4457,8 @@ CIMGUI_API void ImGuiDockContext_destroy(ImGuiDockContext* self); CIMGUI_API ImGuiViewportP* ImGuiViewportP_ImGuiViewportP(void); CIMGUI_API void ImGuiViewportP_destroy(ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_ClearRequestFlags(ImGuiViewportP* self); -CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min); -CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max); +CIMGUI_API void ImGuiViewportP_CalcWorkRectPos(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min); +CIMGUI_API void ImGuiViewportP_CalcWorkRectSize(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max); CIMGUI_API void ImGuiViewportP_UpdateWorkRect(ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_GetMainRect(ImRect *pOut,ImGuiViewportP* self); CIMGUI_API void ImGuiViewportP_GetWorkRect(ImRect *pOut,ImGuiViewportP* self); @@ -3973,12 +4468,12 @@ CIMGUI_API void ImGuiWindowSettings_destroy(ImGuiWindowSettings* self); CIMGUI_API char* ImGuiWindowSettings_GetName(ImGuiWindowSettings* self); CIMGUI_API ImGuiSettingsHandler* ImGuiSettingsHandler_ImGuiSettingsHandler(void); CIMGUI_API void ImGuiSettingsHandler_destroy(ImGuiSettingsHandler* self); -CIMGUI_API ImGuiMetricsConfig* ImGuiMetricsConfig_ImGuiMetricsConfig(void); -CIMGUI_API void ImGuiMetricsConfig_destroy(ImGuiMetricsConfig* self); +CIMGUI_API ImGuiDebugAllocInfo* ImGuiDebugAllocInfo_ImGuiDebugAllocInfo(void); +CIMGUI_API void ImGuiDebugAllocInfo_destroy(ImGuiDebugAllocInfo* self); CIMGUI_API ImGuiStackLevelInfo* ImGuiStackLevelInfo_ImGuiStackLevelInfo(void); CIMGUI_API void ImGuiStackLevelInfo_destroy(ImGuiStackLevelInfo* self); -CIMGUI_API ImGuiStackTool* ImGuiStackTool_ImGuiStackTool(void); -CIMGUI_API void ImGuiStackTool_destroy(ImGuiStackTool* self); +CIMGUI_API ImGuiIDStackTool* ImGuiIDStackTool_ImGuiIDStackTool(void); +CIMGUI_API void ImGuiIDStackTool_destroy(ImGuiIDStackTool* self); CIMGUI_API ImGuiContextHook* ImGuiContextHook_ImGuiContextHook(void); CIMGUI_API void ImGuiContextHook_destroy(ImGuiContextHook* self); CIMGUI_API ImGuiContext* ImGuiContext_ImGuiContext(ImFontAtlas* shared_font_atlas); @@ -3988,19 +4483,16 @@ CIMGUI_API void ImGuiWindow_destroy(ImGuiWindow* self); CIMGUI_API ImGuiID ImGuiWindow_GetID_Str(ImGuiWindow* self,const char* str,const char* str_end); CIMGUI_API ImGuiID ImGuiWindow_GetID_Ptr(ImGuiWindow* self,const void* ptr); CIMGUI_API ImGuiID ImGuiWindow_GetID_Int(ImGuiWindow* self,int n); +CIMGUI_API ImGuiID ImGuiWindow_GetIDFromPos(ImGuiWindow* self,const ImVec2 p_abs); CIMGUI_API ImGuiID ImGuiWindow_GetIDFromRectangle(ImGuiWindow* self,const ImRect r_abs); CIMGUI_API void ImGuiWindow_Rect(ImRect *pOut,ImGuiWindow* self); CIMGUI_API float ImGuiWindow_CalcFontSize(ImGuiWindow* self); -CIMGUI_API float ImGuiWindow_TitleBarHeight(ImGuiWindow* self); CIMGUI_API void ImGuiWindow_TitleBarRect(ImRect *pOut,ImGuiWindow* self); -CIMGUI_API float ImGuiWindow_MenuBarHeight(ImGuiWindow* self); CIMGUI_API void ImGuiWindow_MenuBarRect(ImRect *pOut,ImGuiWindow* self); CIMGUI_API ImGuiTabItem* ImGuiTabItem_ImGuiTabItem(void); CIMGUI_API void ImGuiTabItem_destroy(ImGuiTabItem* self); CIMGUI_API ImGuiTabBar* ImGuiTabBar_ImGuiTabBar(void); CIMGUI_API void ImGuiTabBar_destroy(ImGuiTabBar* self); -CIMGUI_API int ImGuiTabBar_GetTabOrder(ImGuiTabBar* self,const ImGuiTabItem* tab); -CIMGUI_API const char* ImGuiTabBar_GetTabName(ImGuiTabBar* self,const ImGuiTabItem* tab); CIMGUI_API ImGuiTableColumn* ImGuiTableColumn_ImGuiTableColumn(void); CIMGUI_API void ImGuiTableColumn_destroy(ImGuiTableColumn* self); CIMGUI_API ImGuiTableInstanceData* ImGuiTableInstanceData_ImGuiTableInstanceData(void); @@ -4019,6 +4511,7 @@ CIMGUI_API ImGuiWindow* igGetCurrentWindow(void); CIMGUI_API ImGuiWindow* igFindWindowByID(ImGuiID id); CIMGUI_API ImGuiWindow* igFindWindowByName(const char* name); CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window); +CIMGUI_API void igUpdateWindowSkipRefresh(ImGuiWindow* window); CIMGUI_API void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_parent,bool popup_hierarchy,bool dock_hierarchy); CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent); @@ -4028,31 +4521,38 @@ CIMGUI_API void igSetWindowPos_WindowPtr(ImGuiWindow* window,const ImVec2 pos,Im CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_WindowPtr(ImGuiWindow* window,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size); +CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window); +CIMGUI_API void igSetWindowParentWindowForFocusRoute(ImGuiWindow* window,ImGuiWindow* parent_window); CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r); CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r); -CIMGUI_API void igFocusWindow(ImGuiWindow* window); -CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window); +CIMGUI_API void igWindowPosAbsToRel(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); +CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p); +CIMGUI_API void igFocusWindow(ImGuiWindow* window,ImGuiFocusRequestFlags flags); +CIMGUI_API void igFocusTopMostWindowUnderOne(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags); CIMGUI_API void igBringWindowToFocusFront(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayFront(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayBack(ImGuiWindow* window); CIMGUI_API void igBringWindowToDisplayBehind(ImGuiWindow* window,ImGuiWindow* above_window); CIMGUI_API int igFindWindowDisplayIndex(ImGuiWindow* window); CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window); +CIMGUI_API void igSetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags); CIMGUI_API void igSetCurrentFont(ImFont* font); CIMGUI_API ImFont* igGetDefaultFont(void); CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window); +CIMGUI_API void igAddDrawListToDrawDataEx(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list); CIMGUI_API void igInitialize(void); CIMGUI_API void igShutdown(void); CIMGUI_API void igUpdateInputEvents(bool trickle_fast_inputs); CIMGUI_API void igUpdateHoveredWindowAndCaptureFlags(void); +CIMGUI_API void igFindHoveredWindowEx(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window); CIMGUI_API void igStartMouseMovingWindow(ImGuiWindow* window); -CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node); +CIMGUI_API void igStartMouseMovingWindowOrNode(ImGuiWindow* window,ImGuiDockNode* node,bool undock); CIMGUI_API void igUpdateMouseMovingWindowNewFrame(void); CIMGUI_API void igUpdateMouseMovingWindowEndFrame(void); CIMGUI_API ImGuiID igAddContextHook(ImGuiContext* context,const ImGuiContextHook* hook); CIMGUI_API void igRemoveContextHook(ImGuiContext* context,ImGuiID hook_to_remove); CIMGUI_API void igCallContextHooks(ImGuiContext* context,ImGuiContextHookType type); -CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos); +CIMGUI_API void igTranslateWindowsInViewport(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size); CIMGUI_API void igScaleWindowsInViewport(ImGuiViewportP* viewport,float scale); CIMGUI_API void igDestroyPlatformWindow(ImGuiViewportP* viewport); CIMGUI_API void igSetWindowViewport(ImGuiWindow* window,ImGuiViewportP* viewport); @@ -4062,12 +4562,13 @@ CIMGUI_API ImGuiViewportP* igFindHoveredViewportFromPlatformWindowStack(const Im CIMGUI_API void igMarkIniSettingsDirty_Nil(void); CIMGUI_API void igMarkIniSettingsDirty_WindowPtr(ImGuiWindow* window); CIMGUI_API void igClearIniSettings(void); -CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name); -CIMGUI_API ImGuiWindowSettings* igFindWindowSettings(ImGuiID id); -CIMGUI_API ImGuiWindowSettings* igFindOrCreateWindowSettings(const char* name); CIMGUI_API void igAddSettingsHandler(const ImGuiSettingsHandler* handler); CIMGUI_API void igRemoveSettingsHandler(const char* type_name); CIMGUI_API ImGuiSettingsHandler* igFindSettingsHandler(const char* type_name); +CIMGUI_API ImGuiWindowSettings* igCreateNewWindowSettings(const char* name); +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByID(ImGuiID id); +CIMGUI_API ImGuiWindowSettings* igFindWindowSettingsByWindow(ImGuiWindow* window); +CIMGUI_API void igClearWindowSettings(const char* name); CIMGUI_API void igLocalizeRegisterEntries(const ImGuiLocEntry* entries,int count); CIMGUI_API const char* igLocalizeGetMsg(ImGuiLocKey key); CIMGUI_API void igSetScrollX_WindowPtr(ImGuiWindow* window,float scroll_x); @@ -4090,38 +4591,41 @@ CIMGUI_API void igSetHoveredID(ImGuiID id); CIMGUI_API void igKeepAliveID(ImGuiID id); CIMGUI_API void igMarkItemEdited(ImGuiID id); CIMGUI_API void igPushOverrideID(ImGuiID id); -CIMGUI_API ImGuiID igGetIDWithSeed(const char* str_id_begin,const char* str_id_end,ImGuiID seed); +CIMGUI_API ImGuiID igGetIDWithSeed_Str(const char* str_id_begin,const char* str_id_end,ImGuiID seed); +CIMGUI_API ImGuiID igGetIDWithSeed_Int(int n,ImGuiID seed); CIMGUI_API void igItemSize_Vec2(const ImVec2 size,float text_baseline_y); CIMGUI_API void igItemSize_Rect(const ImRect bb,float text_baseline_y); CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags); -CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id); +CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags); +CIMGUI_API bool igIsWindowContentHoverable(ImGuiWindow* window,ImGuiHoveredFlags flags); CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id); CIMGUI_API void igSetLastItemData(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect item_rect); CIMGUI_API void igCalcItemSize(ImVec2 *pOut,ImVec2 size,float default_w,float default_h); CIMGUI_API float igCalcWrapWidthForPos(const ImVec2 pos,float wrap_pos_x); CIMGUI_API void igPushMultiItemsWidths(int components,float width_full); -CIMGUI_API bool igIsItemToggledSelection(void); -CIMGUI_API void igGetContentRegionMaxAbs(ImVec2 *pOut); CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess); -CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); -CIMGUI_API void igPopItemFlag(void); +CIMGUI_API const ImGuiDataVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx); +CIMGUI_API void igBeginDisabledOverrideReenable(void); +CIMGUI_API void igEndDisabledOverrideReenable(void); CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth); CIMGUI_API void igLogToBuffer(int auto_open_depth); CIMGUI_API void igLogRenderedText(const ImVec2* ref_pos,const char* text,const char* text_end); CIMGUI_API void igLogSetNextTextDecoration(const char* prefix,const char* suffix); -CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags); +CIMGUI_API bool igBeginChildEx(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igOpenPopupEx(ImGuiID id,ImGuiPopupFlags popup_flags); CIMGUI_API void igClosePopupToLevel(int remaining,bool restore_focus_to_window_under_popup); CIMGUI_API void igClosePopupsOverWindow(ImGuiWindow* ref_window,bool restore_focus_to_window_under_popup); CIMGUI_API void igClosePopupsExceptModals(void); CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags); -CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags); -CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window); CIMGUI_API ImGuiWindow* igGetTopMostPopupModal(void); CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal(void); +CIMGUI_API ImGuiWindow* igFindBlockingModal(ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopup(ImVec2 *pOut,ImGuiWindow* window); CIMGUI_API void igFindBestWindowPosForPopupEx(ImVec2 *pOut,const ImVec2 ref_pos,const ImVec2 size,ImGuiDir* last_dir,const ImRect r_outer,const ImRect r_avoid,ImGuiPopupPositionPolicy policy); +CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags); +CIMGUI_API bool igBeginTooltipHidden(void); CIMGUI_API bool igBeginViewportSideBar(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags); CIMGUI_API bool igBeginMenuEx(const char* label,const char* icon,bool enabled); CIMGUI_API bool igMenuItemEx(const char* label,const char* icon,const char* shortcut,bool selected,bool enabled); @@ -4134,44 +4638,57 @@ CIMGUI_API bool igNavMoveRequestButNoResultYet(void); CIMGUI_API void igNavMoveRequestSubmit(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags); CIMGUI_API void igNavMoveRequestForward(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags); CIMGUI_API void igNavMoveRequestResolveWithLastItem(ImGuiNavItemData* result); +CIMGUI_API void igNavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data); CIMGUI_API void igNavMoveRequestCancel(void); CIMGUI_API void igNavMoveRequestApplyResult(void); CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags); -CIMGUI_API void igActivateItem(ImGuiID id); +CIMGUI_API void igNavHighlightActivated(ImGuiID id); +CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis); +CIMGUI_API void igNavRestoreHighlightAfterMove(void); +CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX(void); CIMGUI_API void igSetNavWindow(ImGuiWindow* window); CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel); +CIMGUI_API void igSetNavFocusScope(ImGuiID focus_scope_id); +CIMGUI_API void igFocusItem(void); +CIMGUI_API void igActivateItemByID(ImGuiID id); CIMGUI_API bool igIsNamedKey(ImGuiKey key); -CIMGUI_API bool igIsNamedKeyOrModKey(ImGuiKey key); +CIMGUI_API bool igIsNamedKeyOrMod(ImGuiKey key); CIMGUI_API bool igIsLegacyKey(ImGuiKey key); CIMGUI_API bool igIsKeyboardKey(ImGuiKey key); CIMGUI_API bool igIsGamepadKey(ImGuiKey key); CIMGUI_API bool igIsMouseKey(ImGuiKey key); CIMGUI_API bool igIsAliasKey(ImGuiKey key); -CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord); +CIMGUI_API bool igIsLRModKey(ImGuiKey key); +CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key); -CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key); -CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size); +CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key); +CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key); +CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord); CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button); CIMGUI_API bool igIsMouseDragPastThreshold(ImGuiMouseButton button,float lock_threshold); CIMGUI_API void igGetKeyMagnitude2d(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down); CIMGUI_API float igGetNavTweakPressedAmount(ImGuiAxis axis); CIMGUI_API int igCalcTypematicRepeatAmount(float t0,float t1,float repeat_delay,float repeat_rate); CIMGUI_API void igGetTypematicRepeatRate(ImGuiInputFlags flags,float* repeat_delay,float* repeat_rate); +CIMGUI_API void igTeleportMousePos(const ImVec2 pos); CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys(void); CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir); CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key); CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); -CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags); +CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner_InputFlags(ImGuiKey key,ImGuiInputFlags flags); CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id); -CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key); +CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key); CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id); -CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsKeyPressed_InputFlags(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id); +CIMGUI_API bool igIsKeyChordPressed_InputFlags(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igIsMouseDown_ID(ImGuiMouseButton button,ImGuiID owner_id); -CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsMouseClicked_InputFlags(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id); -CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); -CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags); +CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id); +CIMGUI_API bool igShortcut_ID(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id); +CIMGUI_API bool igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id); CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id); CIMGUI_API ImGuiKeyRoutingData* igGetShortcutRoutingData(ImGuiKeyChord key_chord); CIMGUI_API void igDockContextInitialize(ImGuiContext* ctx); @@ -4185,8 +4702,11 @@ CIMGUI_API ImGuiID igDockContextGenNodeID(ImGuiContext* ctx); CIMGUI_API void igDockContextQueueDock(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer); CIMGUI_API void igDockContextQueueUndockWindow(ImGuiContext* ctx,ImGuiWindow* window); CIMGUI_API void igDockContextQueueUndockNode(ImGuiContext* ctx,ImGuiDockNode* node); +CIMGUI_API void igDockContextProcessUndockWindow(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref); +CIMGUI_API void igDockContextProcessUndockNode(ImGuiContext* ctx,ImGuiDockNode* node); CIMGUI_API bool igDockContextCalcDropPosForDocking(ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload_window,ImGuiDockNode* payload_node,ImGuiDir split_dir,bool split_outer,ImVec2* out_pos); CIMGUI_API ImGuiDockNode* igDockContextFindNodeByID(ImGuiContext* ctx,ImGuiID id); +CIMGUI_API void igDockNodeWindowMenuHandler_Default(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar); CIMGUI_API bool igDockNodeBeginAmendTabBar(ImGuiDockNode* node); CIMGUI_API void igDockNodeEndAmendTabBar(void); CIMGUI_API ImGuiDockNode* igDockNodeGetRootNode(ImGuiDockNode* node); @@ -4220,7 +4740,19 @@ CIMGUI_API bool igIsDragDropActive(void); CIMGUI_API bool igBeginDragDropTargetCustom(const ImRect bb,ImGuiID id); CIMGUI_API void igClearDragDrop(void); CIMGUI_API bool igIsDragDropPayloadBeingAccepted(void); -CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb); +CIMGUI_API void igRenderDragDropTargetRect(const ImRect bb,const ImRect item_clip_rect); +CIMGUI_API ImGuiTypingSelectRequest* igGetTypingSelectRequest(ImGuiTypingSelectFlags flags); +CIMGUI_API int igTypingSelectFindMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx); +CIMGUI_API int igTypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx); +CIMGUI_API int igTypingSelectFindBestLeadingMatch(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data); +CIMGUI_API bool igBeginBoxSelect(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags); +CIMGUI_API void igEndBoxSelect(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags); +CIMGUI_API void igMultiSelectItemHeader(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags); +CIMGUI_API void igMultiSelectItemFooter(ImGuiID id,bool* p_selected,bool* p_pressed); +CIMGUI_API void igMultiSelectAddSetAll(ImGuiMultiSelectTempData* ms,bool selected); +CIMGUI_API void igMultiSelectAddSetRange(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item); +CIMGUI_API ImGuiBoxSelectState* igGetBoxSelectState(ImGuiID id); +CIMGUI_API ImGuiMultiSelectState* igGetMultiSelectState(ImGuiID id); CIMGUI_API void igSetWindowClipRectBeforeSetChannel(ImGuiWindow* window,const ImRect clip_rect); CIMGUI_API void igBeginColumns(const char* str_id,int count,ImGuiOldColumnFlags flags); CIMGUI_API void igEndColumns(void); @@ -4234,10 +4766,12 @@ CIMGUI_API float igGetColumnNormFromOffset(const ImGuiOldColumns* columns,float CIMGUI_API void igTableOpenContextMenu(int column_n); CIMGUI_API void igTableSetColumnWidth(int column_n,float width); CIMGUI_API void igTableSetColumnSortDirection(int column_n,ImGuiSortDirection sort_direction,bool append_to_sort_specs); -CIMGUI_API int igTableGetHoveredColumn(void); +CIMGUI_API int igTableGetHoveredRow(void); CIMGUI_API float igTableGetHeaderRowHeight(void); +CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth(void); CIMGUI_API void igTablePushBackgroundChannel(void); CIMGUI_API void igTablePopBackgroundChannel(void); +CIMGUI_API void igTableAngledHeadersRowEx(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count); CIMGUI_API ImGuiTable* igGetCurrentTable(void); CIMGUI_API ImGuiTable* igTableFindByID(ImGuiID id); CIMGUI_API bool igBeginTableEx(const char* name,ImGuiID id,int columns_count,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); @@ -4248,10 +4782,11 @@ CIMGUI_API void igTableUpdateLayout(ImGuiTable* table); CIMGUI_API void igTableUpdateBorders(ImGuiTable* table); CIMGUI_API void igTableUpdateColumnsWeightFromWidth(ImGuiTable* table); CIMGUI_API void igTableDrawBorders(ImGuiTable* table); -CIMGUI_API void igTableDrawContextMenu(ImGuiTable* table); +CIMGUI_API void igTableDrawDefaultContextMenu(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display); CIMGUI_API bool igTableBeginContextMenuPopup(ImGuiTable* table); CIMGUI_API void igTableMergeDrawChannels(ImGuiTable* table); CIMGUI_API ImGuiTableInstanceData* igTableGetInstanceData(ImGuiTable* table,int instance_no); +CIMGUI_API ImGuiID igTableGetInstanceID(ImGuiTable* table,int instance_no); CIMGUI_API void igTableSortSpecsSanitize(ImGuiTable* table); CIMGUI_API void igTableSortSpecsBuild(ImGuiTable* table); CIMGUI_API ImGuiSortDirection igTableGetColumnNextSortDirection(ImGuiTableColumn* column); @@ -4263,8 +4798,8 @@ CIMGUI_API void igTableBeginCell(ImGuiTable* table,int column_n); CIMGUI_API void igTableEndCell(ImGuiTable* table); CIMGUI_API void igTableGetCellBgRect(ImRect *pOut,const ImGuiTable* table,int column_n); CIMGUI_API const char* igTableGetColumnName_TablePtr(const ImGuiTable* table,int column_n); -CIMGUI_API ImGuiID igTableGetColumnResizeID(const ImGuiTable* table,int column_n,int instance_no); -CIMGUI_API float igTableGetMaxColumnWidth(const ImGuiTable* table,int column_n); +CIMGUI_API ImGuiID igTableGetColumnResizeID(ImGuiTable* table,int column_n,int instance_no); +CIMGUI_API float igTableCalcMaxColumnWidth(const ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoSingle(ImGuiTable* table,int column_n); CIMGUI_API void igTableSetColumnWidthAutoAll(ImGuiTable* table); CIMGUI_API void igTableRemove(ImGuiTable* table); @@ -4278,14 +4813,20 @@ CIMGUI_API ImGuiTableSettings* igTableGetBoundSettings(ImGuiTable* table); CIMGUI_API void igTableSettingsAddSettingsHandler(void); CIMGUI_API ImGuiTableSettings* igTableSettingsCreate(ImGuiID id,int columns_count); CIMGUI_API ImGuiTableSettings* igTableSettingsFindByID(ImGuiID id); -CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node); +CIMGUI_API ImGuiTabBar* igGetCurrentTabBar(void); +CIMGUI_API bool igBeginTabBarEx(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags); CIMGUI_API ImGuiTabItem* igTabBarFindTabByID(ImGuiTabBar* tab_bar,ImGuiID tab_id); +CIMGUI_API ImGuiTabItem* igTabBarFindTabByOrder(ImGuiTabBar* tab_bar,int order); CIMGUI_API ImGuiTabItem* igTabBarFindMostRecentlySelectedTabForActiveWindow(ImGuiTabBar* tab_bar); +CIMGUI_API ImGuiTabItem* igTabBarGetCurrentTab(ImGuiTabBar* tab_bar); +CIMGUI_API int igTabBarGetTabOrder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); +CIMGUI_API const char* igTabBarGetTabName(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); CIMGUI_API void igTabBarAddTab(ImGuiTabBar* tab_bar,ImGuiTabItemFlags tab_flags,ImGuiWindow* window); CIMGUI_API void igTabBarRemoveTab(ImGuiTabBar* tab_bar,ImGuiID tab_id); CIMGUI_API void igTabBarCloseTab(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); -CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset); -CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos); +CIMGUI_API void igTabBarQueueFocus(ImGuiTabBar* tab_bar,ImGuiTabItem* tab); +CIMGUI_API void igTabBarQueueReorder(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset); +CIMGUI_API void igTabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos); CIMGUI_API bool igTabBarProcessReorder(ImGuiTabBar* tab_bar); CIMGUI_API bool igTabItemEx(ImGuiTabBar* tab_bar,const char* label,bool* p_open,ImGuiTabItemFlags flags,ImGuiWindow* docked_window); CIMGUI_API void igTabItemCalcSize_Str(ImVec2 *pOut,const char* label,bool has_close_button_or_unsaved_marker); @@ -4297,7 +4838,7 @@ CIMGUI_API void igRenderTextWrapped(ImVec2 pos,const char* text,const char* text CIMGUI_API void igRenderTextClipped(const ImVec2 pos_min,const ImVec2 pos_max,const char* text,const char* text_end,const ImVec2* text_size_if_known,const ImVec2 align,const ImRect* clip_rect); CIMGUI_API void igRenderTextClippedEx(ImDrawList* draw_list,const ImVec2 pos_min,const ImVec2 pos_max,const char* text,const char* text_end,const ImVec2* text_size_if_known,const ImVec2 align,const ImRect* clip_rect); CIMGUI_API void igRenderTextEllipsis(ImDrawList* draw_list,const ImVec2 pos_min,const ImVec2 pos_max,float clip_max_x,float ellipsis_max_x,const char* text,const char* text_end,const ImVec2* text_size_if_known); -CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding); +CIMGUI_API void igRenderFrame(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding); CIMGUI_API void igRenderFrameBorder(ImVec2 p_min,ImVec2 p_max,float rounding); CIMGUI_API void igRenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list,ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,float grid_step,ImVec2 grid_off,float rounding,ImDrawFlags flags); CIMGUI_API void igRenderNavHighlight(const ImRect bb,ImGuiID id,ImGuiNavHighlightFlags flags); @@ -4314,8 +4855,9 @@ CIMGUI_API ImDrawFlags igCalcRoundingFlagsForRectInRect(const ImRect r_in,const CIMGUI_API void igTextEx(const char* text,const char* text_end,ImGuiTextFlags flags); CIMGUI_API bool igButtonEx(const char* label,const ImVec2 size_arg,ImGuiButtonFlags flags); CIMGUI_API bool igArrowButtonEx(const char* str_id,ImGuiDir dir,ImVec2 size_arg,ImGuiButtonFlags flags); -CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); -CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags); +CIMGUI_API bool igImageButtonEx(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags); +CIMGUI_API void igSeparatorEx(ImGuiSeparatorFlags flags,float thickness); +CIMGUI_API void igSeparatorTextEx(ImGuiID id,const char* label,const char* label_end,float extra_width); CIMGUI_API bool igCheckboxFlags_S64Ptr(const char* label,ImS64* flags,ImS64 flags_value); CIMGUI_API bool igCheckboxFlags_U64Ptr(const char* label,ImU64* flags,ImU64 flags_value); CIMGUI_API bool igCloseButton(ImGuiID id,const ImVec2 pos); @@ -4332,38 +4874,46 @@ CIMGUI_API bool igSliderBehavior(const ImRect bb,ImGuiID id,ImGuiDataType data_t CIMGUI_API bool igSplitterBehavior(const ImRect bb,ImGuiID id,ImGuiAxis axis,float* size1,float* size2,float min_size1,float min_size2,float hover_extend,float hover_visibility_delay,ImU32 bg_col); CIMGUI_API bool igTreeNodeBehavior(ImGuiID id,ImGuiTreeNodeFlags flags,const char* label,const char* label_end); CIMGUI_API void igTreePushOverrideID(ImGuiID id); -CIMGUI_API void igTreeNodeSetOpen(ImGuiID id,bool open); -CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID id,ImGuiTreeNodeFlags flags); +CIMGUI_API bool igTreeNodeGetOpen(ImGuiID storage_id); +CIMGUI_API void igTreeNodeSetOpen(ImGuiID storage_id,bool open); +CIMGUI_API bool igTreeNodeUpdateNextOpen(ImGuiID storage_id,ImGuiTreeNodeFlags flags); CIMGUI_API const ImGuiDataTypeInfo* igDataTypeGetInfo(ImGuiDataType data_type); CIMGUI_API int igDataTypeFormatString(char* buf,int buf_size,ImGuiDataType data_type,const void* p_data,const char* format); CIMGUI_API void igDataTypeApplyOp(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2); -CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format); +CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty); CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2); CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max); CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data); +CIMGUI_API void igInputTextDeactivateHook(ImGuiID id); CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags); CIMGUI_API bool igTempInputScalar(const ImRect bb,ImGuiID id,const char* label,ImGuiDataType data_type,void* p_data,const char* format,const void* p_clamp_min,const void* p_clamp_max); CIMGUI_API bool igTempInputIsActive(ImGuiID id); CIMGUI_API ImGuiInputTextState* igGetInputTextState(ImGuiID id); +CIMGUI_API void igSetNextItemRefVal(ImGuiDataType data_type,void* p_data); CIMGUI_API void igColorTooltip(const char* text,const float* col,ImGuiColorEditFlags flags); CIMGUI_API void igColorEditOptionsPopup(const float* col,ImGuiColorEditFlags flags); CIMGUI_API void igColorPickerOptionsPopup(const float* ref_col,ImGuiColorEditFlags flags); -CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size); +CIMGUI_API int igPlotEx(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg); CIMGUI_API void igShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,ImVec2 gradient_p0,ImVec2 gradient_p1,ImU32 col0,ImU32 col1); CIMGUI_API void igShadeVertsLinearUV(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 a,const ImVec2 b,const ImVec2 uv_a,const ImVec2 uv_b,bool clamp); +CIMGUI_API void igShadeVertsTransformPos(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out); CIMGUI_API void igGcCompactTransientMiscBuffers(void); CIMGUI_API void igGcCompactTransientWindowBuffers(ImGuiWindow* window); CIMGUI_API void igGcAwakeTransientWindowBuffers(ImGuiWindow* window); -CIMGUI_API void igDebugLog(const char* fmt,...); -CIMGUI_API void igDebugLogV(const char* fmt,va_list args); +CIMGUI_API void igDebugAllocHook(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size); CIMGUI_API void igErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback,void* user_data); CIMGUI_API void igErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback,void* user_data); CIMGUI_API void igErrorCheckUsingSetCursorPosToExtendParentBoundaries(void); +CIMGUI_API void igDebugDrawCursorPos(ImU32 col); +CIMGUI_API void igDebugDrawLineExtents(ImU32 col); +CIMGUI_API void igDebugDrawItemRect(ImU32 col); +CIMGUI_API void igDebugTextUnformattedWithLocateItem(const char* line_begin,const char* line_end); CIMGUI_API void igDebugLocateItem(ImGuiID target_id); CIMGUI_API void igDebugLocateItemOnHover(ImGuiID target_id); CIMGUI_API void igDebugLocateItemResolveWithLastItem(void); -CIMGUI_API void igDebugDrawItemRect(ImU32 col); -CIMGUI_API void igDebugStartItemPicker(void); +CIMGUI_API void igDebugBreakClearData(void); +CIMGUI_API bool igDebugBreakButton(const char* label,const char* description_of_location); +CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* description_of_location); CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas); CIMGUI_API void igDebugHookIdInfo(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end); CIMGUI_API void igDebugNodeColumns(ImGuiOldColumns* columns); @@ -4377,15 +4927,18 @@ CIMGUI_API void igDebugNodeTabBar(ImGuiTabBar* tab_bar,const char* label); CIMGUI_API void igDebugNodeTable(ImGuiTable* table); CIMGUI_API void igDebugNodeTableSettings(ImGuiTableSettings* settings); CIMGUI_API void igDebugNodeInputTextState(ImGuiInputTextState* state); +CIMGUI_API void igDebugNodeTypingSelectState(ImGuiTypingSelectState* state); +CIMGUI_API void igDebugNodeMultiSelectState(ImGuiMultiSelectState* state); CIMGUI_API void igDebugNodeWindow(ImGuiWindow* window,const char* label); CIMGUI_API void igDebugNodeWindowSettings(ImGuiWindowSettings* settings); CIMGUI_API void igDebugNodeWindowsList(ImVector_ImGuiWindowPtr* windows,const char* label); CIMGUI_API void igDebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows,int windows_size,ImGuiWindow* parent_in_begin_stack); CIMGUI_API void igDebugNodeViewport(ImGuiViewportP* viewport); +CIMGUI_API void igDebugNodePlatformMonitor(ImGuiPlatformMonitor* monitor,const char* label,int idx); CIMGUI_API void igDebugRenderKeyboardPreview(ImDrawList* draw_list); CIMGUI_API void igDebugRenderViewportThumbnail(ImDrawList* draw_list,ImGuiViewportP* viewport,const ImRect bb); -CIMGUI_API bool igIsKeyPressedMap(ImGuiKey key,bool repeat); CIMGUI_API const ImFontBuilderIO* igImFontAtlasGetBuilderForStbTruetype(void); +CIMGUI_API void igImFontAtlasUpdateConfigDataPointers(ImFontAtlas* atlas); CIMGUI_API void igImFontAtlasBuildInit(ImFontAtlas* atlas); CIMGUI_API void igImFontAtlasBuildSetupFont(ImFontAtlas* atlas,ImFont* font,ImFontConfig* font_config,float ascent,float descent); CIMGUI_API void igImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas,void* stbrp_context_opaque); @@ -4412,6 +4965,10 @@ CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); +#ifdef IMGUI_HAS_DOCK +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowPos(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_pos)); +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowSize(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_size)); +#endif #endif //CIMGUI_INCLUDED diff --git a/imgui-sys/third-party/imgui-docking/cimgui_impl.h b/imgui-sys/third-party/imgui-docking/cimgui_impl.h index 597cca0..223f7bc 100644 --- a/imgui-sys/third-party/imgui-docking/cimgui_impl.h +++ b/imgui-sys/third-party/imgui-docking/cimgui_impl.h @@ -10,6 +10,7 @@ CIMGUI_API void ImGui_ImplGlfw_Shutdown(void); CIMGUI_API void ImGui_ImplGlfw_NewFrame(void); CIMGUI_API void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window); CIMGUI_API void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window); +CIMGUI_API void ImGui_ImplGlfw_SetCallbacksChainForAllWindows(bool chain_for_all_windows); CIMGUI_API void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window,int focused); CIMGUI_API void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window,int entered); CIMGUI_API void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window,double x,double y); @@ -18,6 +19,7 @@ CIMGUI_API void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window,double xoffset, CIMGUI_API void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window,int key,int scancode,int action,int mods); CIMGUI_API void ImGui_ImplGlfw_CharCallback(GLFWwindow* window,unsigned int c); CIMGUI_API void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor,int event); +CIMGUI_API void ImGui_ImplGlfw_Sleep(int milliseconds); #endif #ifdef CIMGUI_USE_OPENGL3 @@ -42,19 +44,24 @@ CIMGUI_API bool ImGui_ImplOpenGL2_CreateDeviceObjects(void); CIMGUI_API void ImGui_ImplOpenGL2_DestroyDeviceObjects(void); #endif -#ifdef CIMGUI_USE_SDL +#ifdef CIMGUI_USE_SDL2 typedef struct SDL_Window SDL_Window; typedef struct SDL_Renderer SDL_Renderer; +typedef struct _SDL_GameController _SDL_GameController; struct SDL_Window; struct SDL_Renderer; -typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); +struct _SDL_GameController; +typedef union SDL_Event SDL_Event; +typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); CIMGUI_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForSDLRenderer(SDL_Window* window,SDL_Renderer* renderer); +CIMGUI_API bool ImGui_ImplSDL2_InitForOther(SDL_Window* window); CIMGUI_API void ImGui_ImplSDL2_Shutdown(void); CIMGUI_API void ImGui_ImplSDL2_NewFrame(void); CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event); +CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count); #endif diff --git a/imgui-sys/third-party/imgui-docking/definitions.json b/imgui-sys/third-party/imgui-docking/definitions.json index c1d6a6a..fff424d 100644 --- a/imgui-sys/third-party/imgui-docking/definitions.json +++ b/imgui-sys/third-party/imgui-docking/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitArray_ClearAllBits", "defaults": {}, "funcname": "ClearAllBits", - "location": "imgui_internal:587", + "location": "imgui_internal:596", "ov_cimguiname": "ImBitArray_ClearAllBits", "ret": "void", "signature": "()", @@ -39,7 +39,7 @@ "cimguiname": "ImBitArray_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:591", + "location": "imgui_internal:600", "ov_cimguiname": "ImBitArray_ClearBit", "ret": "void", "signature": "(int)", @@ -57,7 +57,7 @@ "constructor": true, "defaults": {}, "funcname": "ImBitArray", - "location": "imgui_internal:586", + "location": "imgui_internal:595", "ov_cimguiname": "ImBitArray_ImBitArray", "signature": "()", "stname": "ImBitArray", @@ -78,7 +78,7 @@ "cimguiname": "ImBitArray_SetAllBits", "defaults": {}, "funcname": "SetAllBits", - "location": "imgui_internal:588", + "location": "imgui_internal:597", "ov_cimguiname": "ImBitArray_SetAllBits", "ret": "void", "signature": "()", @@ -104,7 +104,7 @@ "cimguiname": "ImBitArray_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:590", + "location": "imgui_internal:599", "ov_cimguiname": "ImBitArray_SetBit", "ret": "void", "signature": "(int)", @@ -134,7 +134,7 @@ "cimguiname": "ImBitArray_SetBitRange", "defaults": {}, "funcname": "SetBitRange", - "location": "imgui_internal:592", + "location": "imgui_internal:601", "ov_cimguiname": "ImBitArray_SetBitRange", "ret": "void", "signature": "(int,int)", @@ -160,7 +160,7 @@ "cimguiname": "ImBitArray_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:589", + "location": "imgui_internal:598", "ov_cimguiname": "ImBitArray_TestBit", "ret": "bool", "signature": "(int)const", @@ -202,7 +202,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:602", + "location": "imgui_internal:611", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -227,7 +227,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": {}, "funcname": "ClearBit", - "location": "imgui_internal:605", + "location": "imgui_internal:614", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -252,7 +252,7 @@ "cimguiname": "ImBitVector_Create", "defaults": {}, "funcname": "Create", - "location": "imgui_internal:601", + "location": "imgui_internal:610", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -277,7 +277,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui_internal:604", + "location": "imgui_internal:613", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -302,7 +302,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": {}, "funcname": "TestBit", - "location": "imgui_internal:603", + "location": "imgui_internal:612", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -327,7 +327,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": {}, "funcname": "alloc_chunk", - "location": "imgui_internal:708", + "location": "imgui_internal:715", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -349,7 +349,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:709", + "location": "imgui_internal:716", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -375,7 +375,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": {}, "funcname": "chunk_size", - "location": "imgui_internal:711", + "location": "imgui_internal:718", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -397,7 +397,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:705", + "location": "imgui_internal:712", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -419,7 +419,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": {}, "funcname": "empty", - "location": "imgui_internal:706", + "location": "imgui_internal:713", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -441,7 +441,7 @@ "cimguiname": "ImChunkStream_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:712", + "location": "imgui_internal:719", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -467,7 +467,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": {}, "funcname": "next_chunk", - "location": "imgui_internal:710", + "location": "imgui_internal:717", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -493,7 +493,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": {}, "funcname": "offset_from_ptr", - "location": "imgui_internal:713", + "location": "imgui_internal:720", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -519,7 +519,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": {}, "funcname": "ptr_from_offset", - "location": "imgui_internal:714", + "location": "imgui_internal:721", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -541,7 +541,7 @@ "cimguiname": "ImChunkStream_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:707", + "location": "imgui_internal:714", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -568,7 +568,7 @@ "cimguiname": "ImChunkStream_swap", "defaults": {}, "funcname": "swap", - "location": "imgui_internal:715", + "location": "imgui_internal:722", "ov_cimguiname": "ImChunkStream_swap", "ret": "void", "signature": "(ImChunkStream_T *)", @@ -609,7 +609,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2469", + "location": "imgui:2859", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -627,7 +627,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2459", + "location": "imgui:2849", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -660,7 +660,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2460", + "location": "imgui:2850", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -679,7 +679,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2461", + "location": "imgui:2851", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -712,7 +712,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2462", + "location": "imgui:2852", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -731,7 +731,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2463", + "location": "imgui:2853", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -769,7 +769,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2468", + "location": "imgui:2858", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -809,7 +809,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2517", + "location": "imgui:3055", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -826,7 +826,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2514", + "location": "imgui:3052", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -851,28 +851,23 @@ "stname": "ImDrawCmd" } ], - "ImDrawDataBuilder_Clear": [ + "ImDrawDataBuilder_ImDrawDataBuilder": [ { - "args": "(ImDrawDataBuilder* self)", - "argsT": [ - { - "name": "self", - "type": "ImDrawDataBuilder*" - } - ], + "args": "()", + "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImDrawDataBuilder_Clear", + "cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", + "constructor": true, "defaults": {}, - "funcname": "Clear", - "location": "imgui_internal:791", - "ov_cimguiname": "ImDrawDataBuilder_Clear", - "ret": "void", + "funcname": "ImDrawDataBuilder", + "location": "imgui_internal:801", + "ov_cimguiname": "ImDrawDataBuilder_ImDrawDataBuilder", "signature": "()", "stname": "ImDrawDataBuilder" } ], - "ImDrawDataBuilder_ClearFreeMemory": [ + "ImDrawDataBuilder_destroy": [ { "args": "(ImDrawDataBuilder* self)", "argsT": [ @@ -881,58 +876,39 @@ "type": "ImDrawDataBuilder*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", + "call_args": "(self)", + "cimguiname": "ImDrawDataBuilder_destroy", "defaults": {}, - "funcname": "ClearFreeMemory", - "location": "imgui_internal:792", - "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", + "destructor": true, + "ov_cimguiname": "ImDrawDataBuilder_destroy", "ret": "void", - "signature": "()", + "signature": "(ImDrawDataBuilder*)", "stname": "ImDrawDataBuilder" } ], - "ImDrawDataBuilder_FlattenIntoSingleLayer": [ + "ImDrawData_AddDrawList": [ { - "args": "(ImDrawDataBuilder* self)", + "args": "(ImDrawData* self,ImDrawList* draw_list)", "argsT": [ { "name": "self", - "type": "ImDrawDataBuilder*" + "type": "ImDrawData*" + }, + { + "name": "draw_list", + "type": "ImDrawList*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", + "argsoriginal": "(ImDrawList* draw_list)", + "call_args": "(draw_list)", + "cimguiname": "ImDrawData_AddDrawList", "defaults": {}, - "funcname": "FlattenIntoSingleLayer", - "location": "imgui_internal:794", - "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", + "funcname": "AddDrawList", + "location": "imgui:3303", + "ov_cimguiname": "ImDrawData_AddDrawList", "ret": "void", - "signature": "()", - "stname": "ImDrawDataBuilder" - } - ], - "ImDrawDataBuilder_GetDrawListCount": [ - { - "args": "(ImDrawDataBuilder* self)", - "argsT": [ - { - "name": "self", - "type": "ImDrawDataBuilder*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImDrawDataBuilder_GetDrawListCount", - "defaults": {}, - "funcname": "GetDrawListCount", - "location": "imgui_internal:793", - "ov_cimguiname": "ImDrawDataBuilder_GetDrawListCount", - "ret": "int", - "signature": "()const", - "stname": "ImDrawDataBuilder" + "signature": "(ImDrawList*)", + "stname": "ImDrawData" } ], "ImDrawData_Clear": [ @@ -949,7 +925,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2751", + "location": "imgui:3302", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -970,7 +946,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2752", + "location": "imgui:3304", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -987,7 +963,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2750", + "location": "imgui:3301", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -1011,7 +987,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2753", + "location": "imgui:3305", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -1047,7 +1023,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSharedData", - "location": "imgui_internal:783", + "location": "imgui_internal:792", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -1071,7 +1047,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "defaults": {}, "funcname": "SetCircleTessellationMaxError", - "location": "imgui_internal:784", + "location": "imgui_internal:793", "ov_cimguiname": "ImDrawListSharedData_SetCircleTessellationMaxError", "ret": "void", "signature": "(float)", @@ -1111,7 +1087,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2562", + "location": "imgui:3100", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -1132,7 +1108,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2563", + "location": "imgui:3101", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -1149,7 +1125,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2560", + "location": "imgui:3098", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -1173,7 +1149,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2565", + "location": "imgui:3103", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -1202,7 +1178,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2566", + "location": "imgui:3104", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1231,7 +1207,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2564", + "location": "imgui:3102", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -1251,7 +1227,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2561", + "location": "imgui:3099", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -1303,7 +1279,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2665", + "location": "imgui:3203", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1350,7 +1326,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2666", + "location": "imgui:3204", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1379,7 +1355,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2690", + "location": "imgui:3238", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1423,7 +1399,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2657", + "location": "imgui:3195", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1462,13 +1438,46 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2658", + "location": "imgui:3196", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" } ], + "ImDrawList_AddConcavePolyFilled": [ + { + "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "points", + "type": "const ImVec2*" + }, + { + "name": "num_points", + "type": "int" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col)", + "call_args": "(points,num_points,col)", + "cimguiname": "ImDrawList_AddConcavePolyFilled", + "defaults": {}, + "funcname": "AddConcavePolyFilled", + "location": "imgui:3211", + "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", + "ret": "void", + "signature": "(const ImVec2*,int,ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddConvexPolyFilled": [ { "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", @@ -1495,7 +1504,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2664", + "location": "imgui:3210", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1516,13 +1525,106 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2691", + "location": "imgui:3239", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_AddEllipse": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + }, + { + "name": "thickness", + "type": "float" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)", + "call_args": "(center,radius,col,rot,num_segments,thickness)", + "cimguiname": "ImDrawList_AddEllipse", + "defaults": { + "num_segments": "0", + "rot": "0.0f", + "thickness": "1.0f" + }, + "funcname": "AddEllipse", + "location": "imgui:3199", + "ov_cimguiname": "ImDrawList_AddEllipse", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", + "stname": "ImDrawList" + } + ], + "ImDrawList_AddEllipseFilled": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)", + "call_args": "(center,radius,col,rot,num_segments)", + "cimguiname": "ImDrawList_AddEllipseFilled", + "defaults": { + "num_segments": "0", + "rot": "0.0f" + }, + "funcname": "AddEllipseFilled", + "location": "imgui:3200", + "ov_cimguiname": "ImDrawList_AddEllipseFilled", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddImage": [ { "args": "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)", @@ -1565,7 +1667,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2672", + "location": "imgui:3217", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1632,7 +1734,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2673", + "location": "imgui:3218", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1687,7 +1789,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2674", + "location": "imgui:3219", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1726,7 +1828,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2649", + "location": "imgui:3187", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1769,7 +1871,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2659", + "location": "imgui:3197", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1806,7 +1908,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2660", + "location": "imgui:3198", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1847,7 +1949,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2663", + "location": "imgui:3209", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1894,7 +1996,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2653", + "location": "imgui:3191", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1935,7 +2037,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2654", + "location": "imgui:3192", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1984,7 +2086,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2650", + "location": "imgui:3188", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -2028,7 +2130,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2651", + "location": "imgui:3189", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -2073,7 +2175,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2652", + "location": "imgui:3190", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -2112,7 +2214,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2661", + "location": "imgui:3201", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -2167,7 +2269,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2662", + "location": "imgui:3202", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -2210,7 +2312,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2655", + "location": "imgui:3193", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -2247,7 +2349,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2656", + "location": "imgui:3194", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2268,7 +2370,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2701", + "location": "imgui:3249", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -2293,7 +2395,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2702", + "location": "imgui:3250", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2318,7 +2420,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2700", + "location": "imgui:3248", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2339,7 +2441,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2692", + "location": "imgui:3240", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2364,7 +2466,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2640", + "location": "imgui:3178", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2390,7 +2492,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2639", + "location": "imgui:3177", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2413,7 +2515,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2631", + "location": "imgui:3169", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2455,7 +2557,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2683", + "location": "imgui:3230", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2492,7 +2594,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2684", + "location": "imgui:3231", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2531,7 +2633,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2685", + "location": "imgui:3233", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2566,7 +2668,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2686", + "location": "imgui:3234", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -2587,13 +2689,85 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2678", + "location": "imgui:3224", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_PathEllipticalArcTo": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "a_min", + "type": "float" + }, + { + "name": "a_max", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)", + "call_args": "(center,radius,rot,a_min,a_max,num_segments)", + "cimguiname": "ImDrawList_PathEllipticalArcTo", + "defaults": { + "num_segments": "0" + }, + "funcname": "PathEllipticalArcTo", + "location": "imgui:3232", + "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,float,float,float,int)", + "stname": "ImDrawList" + } + ], + "ImDrawList_PathFillConcave": [ + { + "args": "(ImDrawList* self,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col)", + "call_args": "(col)", + "cimguiname": "ImDrawList_PathFillConcave", + "defaults": {}, + "funcname": "PathFillConcave", + "location": "imgui:3228", + "ov_cimguiname": "ImDrawList_PathFillConcave", + "ret": "void", + "signature": "(ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_PathFillConvex": [ { "args": "(ImDrawList* self,ImU32 col)", @@ -2612,7 +2786,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2681", + "location": "imgui:3227", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2637,7 +2811,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2679", + "location": "imgui:3225", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2662,7 +2836,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2680", + "location": "imgui:3226", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2702,7 +2876,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2687", + "location": "imgui:3235", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2738,7 +2912,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2682", + "location": "imgui:3229", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2759,7 +2933,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2636", + "location": "imgui:3174", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2780,7 +2954,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2638", + "location": "imgui:3176", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2837,7 +3011,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2711", + "location": "imgui:3259", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2870,7 +3044,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2709", + "location": "imgui:3257", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2911,7 +3085,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2710", + "location": "imgui:3258", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2940,7 +3114,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2707", + "location": "imgui:3255", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2969,7 +3143,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2708", + "location": "imgui:3256", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -3002,7 +3176,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2714", + "location": "imgui:3262", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3027,7 +3201,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2713", + "location": "imgui:3261", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -3060,7 +3234,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2712", + "location": "imgui:3260", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -3095,7 +3269,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2634", + "location": "imgui:3172", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -3116,7 +3290,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2635", + "location": "imgui:3173", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -3141,7 +3315,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2637", + "location": "imgui:3175", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -3166,7 +3340,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2729", + "location": "imgui:3280", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -3187,7 +3361,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2723", + "location": "imgui:3273", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -3208,7 +3382,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2726", + "location": "imgui:3276", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -3229,7 +3403,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2727", + "location": "imgui:3277", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -3250,7 +3424,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2728", + "location": "imgui:3278", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -3291,7 +3465,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2730", + "location": "imgui:3281", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -3332,7 +3506,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2731", + "location": "imgui:3282", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -3353,7 +3527,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2724", + "location": "imgui:3274", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -3374,13 +3548,38 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2722", + "location": "imgui:3272", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList__SetTextureID": [ + { + "args": "(ImDrawList* self,ImTextureID texture_id)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "texture_id", + "type": "ImTextureID" + } + ], + "argsoriginal": "(ImTextureID texture_id)", + "call_args": "(texture_id)", + "cimguiname": "ImDrawList__SetTextureID", + "defaults": {}, + "funcname": "_SetTextureID", + "location": "imgui:3279", + "ov_cimguiname": "ImDrawList__SetTextureID", + "ret": "void", + "signature": "(ImTextureID)", + "stname": "ImDrawList" + } + ], "ImDrawList__TryMergeDrawCmds": [ { "args": "(ImDrawList* self)", @@ -3395,7 +3594,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:2725", + "location": "imgui:3275", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -3415,7 +3614,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2633", + "location": "imgui:3171", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -3433,7 +3632,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2824", + "location": "imgui:3377", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -3453,7 +3652,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2825", + "location": "imgui:3378", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3519,7 +3718,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2909", + "location": "imgui:3463", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3548,7 +3747,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2908", + "location": "imgui:3462", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3573,7 +3772,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2858", + "location": "imgui:3411", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3600,7 +3799,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2859", + "location": "imgui:3412", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3640,7 +3839,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2860", + "location": "imgui:3413", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3680,7 +3879,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2863", + "location": "imgui:3416", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3689,7 +3888,7 @@ ], "ImFontAtlas_AddFontFromMemoryCompressedTTF": [ { - "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -3700,7 +3899,7 @@ "type": "const void*" }, { - "name": "compressed_font_size", + "name": "compressed_font_data_size", "type": "int" }, { @@ -3716,15 +3915,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2862", + "location": "imgui:3415", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3733,7 +3932,7 @@ ], "ImFontAtlas_AddFontFromMemoryTTF": [ { - "args": "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -3744,7 +3943,7 @@ "type": "void*" }, { - "name": "font_size", + "name": "font_data_size", "type": "int" }, { @@ -3760,15 +3959,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2861", + "location": "imgui:3414", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3789,7 +3988,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2874", + "location": "imgui:3427", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3822,7 +4021,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2913", + "location": "imgui:3467", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3843,7 +4042,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2867", + "location": "imgui:3420", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3864,7 +4063,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2866", + "location": "imgui:3419", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3885,7 +4084,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2864", + "location": "imgui:3417", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3906,7 +4105,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2865", + "location": "imgui:3418", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3931,7 +4130,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2910", + "location": "imgui:3464", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3952,7 +4151,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2891", + "location": "imgui:3445", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3973,7 +4172,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2892", + "location": "imgui:3446", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3994,7 +4193,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2893", + "location": "imgui:3447", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -4015,7 +4214,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2887", + "location": "imgui:3441", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -4036,7 +4235,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "defaults": {}, "funcname": "GetGlyphRangesGreek", - "location": "imgui:2888", + "location": "imgui:3442", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "ret": "const ImWchar*", "signature": "()", @@ -4057,7 +4256,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2890", + "location": "imgui:3444", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -4078,7 +4277,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2889", + "location": "imgui:3443", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -4099,7 +4298,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2894", + "location": "imgui:3448", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -4120,7 +4319,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2895", + "location": "imgui:3449", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -4161,7 +4360,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2914", + "location": "imgui:3468", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -4200,7 +4399,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2875", + "location": "imgui:3428", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4239,7 +4438,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2876", + "location": "imgui:3429", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -4256,7 +4455,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2856", + "location": "imgui:3409", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -4276,7 +4475,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2877", + "location": "imgui:3430", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -4301,7 +4500,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2878", + "location": "imgui:3431", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -4321,7 +4520,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2857", + "location": "imgui:3410", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -4339,7 +4538,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2784", + "location": "imgui:3337", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -4382,7 +4581,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2809", + "location": "imgui:3362", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -4407,7 +4606,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2811", + "location": "imgui:3364", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -4438,7 +4637,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2810", + "location": "imgui:3363", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -4463,7 +4662,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2812", + "location": "imgui:3365", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -4484,7 +4683,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2806", + "location": "imgui:3359", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4509,7 +4708,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2807", + "location": "imgui:3360", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4526,7 +4725,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2805", + "location": "imgui:3358", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4550,7 +4749,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2808", + "location": "imgui:3361", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4634,7 +4833,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:3002", + "location": "imgui:3558", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4669,7 +4868,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:3003", + "location": "imgui:3559", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4690,7 +4889,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2999", + "location": "imgui:3555", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4742,7 +4941,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2993", + "location": "imgui:3549", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4780,7 +4979,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2994", + "location": "imgui:3550", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4801,7 +5000,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:3000", + "location": "imgui:3556", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4826,7 +5025,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2985", + "location": "imgui:3541", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4851,7 +5050,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2986", + "location": "imgui:3542", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4876,7 +5075,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2987", + "location": "imgui:3543", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4897,7 +5096,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2989", + "location": "imgui:3545", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4922,7 +5121,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:3001", + "location": "imgui:3557", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4939,7 +5138,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2983", + "location": "imgui:3539", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4967,7 +5166,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:3005", + "location": "imgui:3561", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4988,7 +5187,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2988", + "location": "imgui:3544", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -5029,7 +5228,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2995", + "location": "imgui:3551", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const", @@ -5089,7 +5288,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2996", + "location": "imgui:3552", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -5118,7 +5317,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:3004", + "location": "imgui:3560", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -5138,7 +5337,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2984", + "location": "imgui:3540", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -5146,6 +5345,41 @@ "stname": "ImFont" } ], + "ImGuiBoxSelectState_ImGuiBoxSelectState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiBoxSelectState", + "location": "imgui_internal:1754", + "ov_cimguiname": "ImGuiBoxSelectState_ImGuiBoxSelectState", + "signature": "()", + "stname": "ImGuiBoxSelectState" + } + ], + "ImGuiBoxSelectState_destroy": [ + { + "args": "(ImGuiBoxSelectState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiBoxSelectState*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiBoxSelectState_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiBoxSelectState_destroy", + "ret": "void", + "signature": "(ImGuiBoxSelectState*)", + "stname": "ImGuiBoxSelectState" + } + ], "ImGuiComboPreviewData_ImGuiComboPreviewData": [ { "args": "()", @@ -5156,7 +5390,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiComboPreviewData", - "location": "imgui_internal:1022", + "location": "imgui_internal:1058", "ov_cimguiname": "ImGuiComboPreviewData_ImGuiComboPreviewData", "signature": "()", "stname": "ImGuiComboPreviewData" @@ -5191,7 +5425,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContextHook", - "location": "imgui_internal:1903", + "location": "imgui_internal:2177", "ov_cimguiname": "ImGuiContextHook_ImGuiContextHook", "signature": "()", "stname": "ImGuiContextHook" @@ -5231,7 +5465,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiContext", - "location": "imgui_internal:2212", + "location": "imgui_internal:2550", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -5256,6 +5490,66 @@ "stname": "ImGuiContext" } ], + "ImGuiDataVarInfo_GetVarPtr": [ + { + "args": "(ImGuiDataVarInfo* self,void* parent)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDataVarInfo*" + }, + { + "name": "parent", + "type": "void*" + } + ], + "argsoriginal": "(void* parent)", + "call_args": "(parent)", + "cimguiname": "ImGuiDataVarInfo_GetVarPtr", + "defaults": {}, + "funcname": "GetVarPtr", + "location": "imgui_internal:813", + "ov_cimguiname": "ImGuiDataVarInfo_GetVarPtr", + "ret": "void*", + "signature": "(void*)const", + "stname": "ImGuiDataVarInfo" + } + ], + "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiDebugAllocInfo", + "location": "imgui_internal:2117", + "ov_cimguiname": "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo", + "signature": "()", + "stname": "ImGuiDebugAllocInfo" + } + ], + "ImGuiDebugAllocInfo_destroy": [ + { + "args": "(ImGuiDebugAllocInfo* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiDebugAllocInfo*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiDebugAllocInfo_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiDebugAllocInfo_destroy", + "ret": "void", + "signature": "(ImGuiDebugAllocInfo*)", + "stname": "ImGuiDebugAllocInfo" + } + ], "ImGuiDockContext_ImGuiDockContext": [ { "args": "()", @@ -5266,7 +5560,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockContext", - "location": "imgui_internal:1708", + "location": "imgui_internal:1952", "ov_cimguiname": "ImGuiDockContext_ImGuiDockContext", "signature": "()", "stname": "ImGuiDockContext" @@ -5306,7 +5600,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiDockNode", - "location": "imgui_internal:1665", + "location": "imgui_internal:1906", "ov_cimguiname": "ImGuiDockNode_ImGuiDockNode", "signature": "(ImGuiID)", "stname": "ImGuiDockNode" @@ -5326,7 +5620,7 @@ "cimguiname": "ImGuiDockNode_IsCentralNode", "defaults": {}, "funcname": "IsCentralNode", - "location": "imgui_internal:1670", + "location": "imgui_internal:1911", "ov_cimguiname": "ImGuiDockNode_IsCentralNode", "ret": "bool", "signature": "()const", @@ -5347,7 +5641,7 @@ "cimguiname": "ImGuiDockNode_IsDockSpace", "defaults": {}, "funcname": "IsDockSpace", - "location": "imgui_internal:1668", + "location": "imgui_internal:1909", "ov_cimguiname": "ImGuiDockNode_IsDockSpace", "ret": "bool", "signature": "()const", @@ -5368,7 +5662,7 @@ "cimguiname": "ImGuiDockNode_IsEmpty", "defaults": {}, "funcname": "IsEmpty", - "location": "imgui_internal:1675", + "location": "imgui_internal:1916", "ov_cimguiname": "ImGuiDockNode_IsEmpty", "ret": "bool", "signature": "()const", @@ -5389,7 +5683,7 @@ "cimguiname": "ImGuiDockNode_IsFloatingNode", "defaults": {}, "funcname": "IsFloatingNode", - "location": "imgui_internal:1669", + "location": "imgui_internal:1910", "ov_cimguiname": "ImGuiDockNode_IsFloatingNode", "ret": "bool", "signature": "()const", @@ -5410,7 +5704,7 @@ "cimguiname": "ImGuiDockNode_IsHiddenTabBar", "defaults": {}, "funcname": "IsHiddenTabBar", - "location": "imgui_internal:1671", + "location": "imgui_internal:1912", "ov_cimguiname": "ImGuiDockNode_IsHiddenTabBar", "ret": "bool", "signature": "()const", @@ -5431,7 +5725,7 @@ "cimguiname": "ImGuiDockNode_IsLeafNode", "defaults": {}, "funcname": "IsLeafNode", - "location": "imgui_internal:1674", + "location": "imgui_internal:1915", "ov_cimguiname": "ImGuiDockNode_IsLeafNode", "ret": "bool", "signature": "()const", @@ -5452,7 +5746,7 @@ "cimguiname": "ImGuiDockNode_IsNoTabBar", "defaults": {}, "funcname": "IsNoTabBar", - "location": "imgui_internal:1672", + "location": "imgui_internal:1913", "ov_cimguiname": "ImGuiDockNode_IsNoTabBar", "ret": "bool", "signature": "()const", @@ -5473,7 +5767,7 @@ "cimguiname": "ImGuiDockNode_IsRootNode", "defaults": {}, "funcname": "IsRootNode", - "location": "imgui_internal:1667", + "location": "imgui_internal:1908", "ov_cimguiname": "ImGuiDockNode_IsRootNode", "ret": "bool", "signature": "()const", @@ -5494,7 +5788,7 @@ "cimguiname": "ImGuiDockNode_IsSplitNode", "defaults": {}, "funcname": "IsSplitNode", - "location": "imgui_internal:1673", + "location": "imgui_internal:1914", "ov_cimguiname": "ImGuiDockNode_IsSplitNode", "ret": "bool", "signature": "()const", @@ -5519,7 +5813,7 @@ "cimguiname": "ImGuiDockNode_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:1676", + "location": "imgui_internal:1917", "nonUDT": 1, "ov_cimguiname": "ImGuiDockNode_Rect", "ret": "void", @@ -5545,7 +5839,7 @@ "cimguiname": "ImGuiDockNode_SetLocalFlags", "defaults": {}, "funcname": "SetLocalFlags", - "location": "imgui_internal:1678", + "location": "imgui_internal:1919", "ov_cimguiname": "ImGuiDockNode_SetLocalFlags", "ret": "void", "signature": "(ImGuiDockNodeFlags)", @@ -5566,7 +5860,7 @@ "cimguiname": "ImGuiDockNode_UpdateMergedFlags", "defaults": {}, "funcname": "UpdateMergedFlags", - "location": "imgui_internal:1679", + "location": "imgui_internal:1920", "ov_cimguiname": "ImGuiDockNode_UpdateMergedFlags", "ret": "void", "signature": "()", @@ -5586,7 +5880,7 @@ "cimguiname": "ImGuiDockNode_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1666", + "location": "imgui_internal:1907", "ov_cimguiname": "ImGuiDockNode_destroy", "realdestructor": true, "ret": "void", @@ -5594,6 +5888,41 @@ "stname": "ImGuiDockNode" } ], + "ImGuiIDStackTool_ImGuiIDStackTool": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiIDStackTool", + "location": "imgui_internal:2159", + "ov_cimguiname": "ImGuiIDStackTool_ImGuiIDStackTool", + "signature": "()", + "stname": "ImGuiIDStackTool" + } + ], + "ImGuiIDStackTool_destroy": [ + { + "args": "(ImGuiIDStackTool* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIDStackTool*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiIDStackTool_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiIDStackTool_destroy", + "ret": "void", + "signature": "(ImGuiIDStackTool*)", + "stname": "ImGuiIDStackTool" + } + ], "ImGuiIO_AddFocusEvent": [ { "args": "(ImGuiIO* self,bool focused)", @@ -5612,7 +5941,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:2060", + "location": "imgui:2408", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -5637,7 +5966,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:2061", + "location": "imgui:2409", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -5662,7 +5991,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:2062", + "location": "imgui:2410", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -5687,7 +6016,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:2063", + "location": "imgui:2411", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -5720,7 +6049,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:2055", + "location": "imgui:2402", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -5749,7 +6078,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:2054", + "location": "imgui:2401", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -5778,7 +6107,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:2057", + "location": "imgui:2404", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -5807,13 +6136,38 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:2056", + "location": "imgui:2403", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], + "ImGuiIO_AddMouseSourceEvent": [ + { + "args": "(ImGuiIO* self,ImGuiMouseSource source)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + }, + { + "name": "source", + "type": "ImGuiMouseSource" + } + ], + "argsoriginal": "(ImGuiMouseSource source)", + "call_args": "(source)", + "cimguiname": "ImGuiIO_AddMouseSourceEvent", + "defaults": {}, + "funcname": "AddMouseSourceEvent", + "location": "imgui:2406", + "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", + "ret": "void", + "signature": "(ImGuiMouseSource)", + "stname": "ImGuiIO" + } + ], "ImGuiIO_AddMouseViewportEvent": [ { "args": "(ImGuiIO* self,ImGuiID id)", @@ -5832,7 +6186,7 @@ "cimguiname": "ImGuiIO_AddMouseViewportEvent", "defaults": {}, "funcname": "AddMouseViewportEvent", - "location": "imgui:2059", + "location": "imgui:2407", "ov_cimguiname": "ImGuiIO_AddMouseViewportEvent", "ret": "void", "signature": "(ImGuiID)", @@ -5841,34 +6195,34 @@ ], "ImGuiIO_AddMouseWheelEvent": [ { - "args": "(ImGuiIO* self,float wh_x,float wh_y)", + "args": "(ImGuiIO* self,float wheel_x,float wheel_y)", "argsT": [ { "name": "self", "type": "ImGuiIO*" }, { - "name": "wh_x", + "name": "wheel_x", "type": "float" }, { - "name": "wh_y", + "name": "wheel_y", "type": "float" } ], - "argsoriginal": "(float wh_x,float wh_y)", - "call_args": "(wh_x,wh_y)", + "argsoriginal": "(float wheel_x,float wheel_y)", + "call_args": "(wheel_x,wheel_y)", "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:2058", + "location": "imgui:2405", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], - "ImGuiIO_ClearInputCharacters": [ + "ImGuiIO_ClearEventsQueue": [ { "args": "(ImGuiIO* self)", "argsT": [ @@ -5879,11 +6233,11 @@ ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiIO_ClearInputCharacters", + "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, - "funcname": "ClearInputCharacters", - "location": "imgui:2067", - "ov_cimguiname": "ImGuiIO_ClearInputCharacters", + "funcname": "ClearEventsQueue", + "location": "imgui:2415", + "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -5903,13 +6257,34 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:2068", + "location": "imgui:2416", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", "stname": "ImGuiIO" } ], + "ImGuiIO_ClearInputMouse": [ + { + "args": "(ImGuiIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIO_ClearInputMouse", + "defaults": {}, + "funcname": "ClearInputMouse", + "location": "imgui:2417", + "ov_cimguiname": "ImGuiIO_ClearInputMouse", + "ret": "void", + "signature": "()", + "stname": "ImGuiIO" + } + ], "ImGuiIO_ImGuiIO": [ { "args": "()", @@ -5920,7 +6295,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2143", + "location": "imgui:2508", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -5944,7 +6319,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:2066", + "location": "imgui:2414", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -5983,7 +6358,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:2065", + "location": "imgui:2413", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -6019,7 +6394,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputEvent", - "location": "imgui_internal:1307", + "location": "imgui_internal:1427", "ov_cimguiname": "ImGuiInputEvent_ImGuiInputEvent", "signature": "()", "stname": "ImGuiInputEvent" @@ -6058,7 +6433,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2184", + "location": "imgui:2552", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -6087,7 +6462,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2181", + "location": "imgui:2549", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -6108,7 +6483,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2185", + "location": "imgui:2553", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -6125,7 +6500,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2180", + "location": "imgui:2548", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -6159,7 +6534,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2182", + "location": "imgui:2550", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -6180,7 +6555,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2183", + "location": "imgui:2551", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -6206,6 +6581,62 @@ "stname": "ImGuiInputTextCallbackData" } ], + "ImGuiInputTextDeactivatedState_ClearFreeMemory": [ + { + "args": "(ImGuiInputTextDeactivatedState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextDeactivatedState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", + "defaults": {}, + "funcname": "ClearFreeMemory", + "location": "imgui_internal:1104", + "ov_cimguiname": "ImGuiInputTextDeactivatedState_ClearFreeMemory", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextDeactivatedState" + } + ], + "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiInputTextDeactivatedState", + "location": "imgui_internal:1103", + "ov_cimguiname": "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState", + "signature": "()", + "stname": "ImGuiInputTextDeactivatedState" + } + ], + "ImGuiInputTextDeactivatedState_destroy": [ + { + "args": "(ImGuiInputTextDeactivatedState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextDeactivatedState*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiInputTextDeactivatedState_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiInputTextDeactivatedState_destroy", + "ret": "void", + "signature": "(ImGuiInputTextDeactivatedState*)", + "stname": "ImGuiInputTextDeactivatedState" + } + ], "ImGuiInputTextState_ClearFreeMemory": [ { "args": "(ImGuiInputTextState* self)", @@ -6220,7 +6651,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui_internal:1081", + "location": "imgui_internal:1143", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -6241,7 +6672,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui_internal:1090", + "location": "imgui_internal:1151", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -6262,7 +6693,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": {}, "funcname": "ClearText", - "location": "imgui_internal:1080", + "location": "imgui_internal:1142", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -6283,7 +6714,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": {}, "funcname": "CursorAnimReset", - "location": "imgui_internal:1087", + "location": "imgui_internal:1148", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -6304,7 +6735,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": {}, "funcname": "CursorClamp", - "location": "imgui_internal:1088", + "location": "imgui_internal:1149", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -6325,34 +6756,13 @@ "cimguiname": "ImGuiInputTextState_GetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui_internal:1091", + "location": "imgui_internal:1152", "ov_cimguiname": "ImGuiInputTextState_GetCursorPos", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_GetRedoAvailCount": [ - { - "args": "(ImGuiInputTextState* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiInputTextState*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", - "defaults": {}, - "funcname": "GetRedoAvailCount", - "location": "imgui_internal:1083", - "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", - "ret": "int", - "signature": "()const", - "stname": "ImGuiInputTextState" - } - ], "ImGuiInputTextState_GetSelectionEnd": [ { "args": "(ImGuiInputTextState* self)", @@ -6367,7 +6777,7 @@ "cimguiname": "ImGuiInputTextState_GetSelectionEnd", "defaults": {}, "funcname": "GetSelectionEnd", - "location": "imgui_internal:1093", + "location": "imgui_internal:1154", "ov_cimguiname": "ImGuiInputTextState_GetSelectionEnd", "ret": "int", "signature": "()const", @@ -6388,34 +6798,13 @@ "cimguiname": "ImGuiInputTextState_GetSelectionStart", "defaults": {}, "funcname": "GetSelectionStart", - "location": "imgui_internal:1092", + "location": "imgui_internal:1153", "ov_cimguiname": "ImGuiInputTextState_GetSelectionStart", "ret": "int", "signature": "()const", "stname": "ImGuiInputTextState" } ], - "ImGuiInputTextState_GetUndoAvailCount": [ - { - "args": "(ImGuiInputTextState* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiInputTextState*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", - "defaults": {}, - "funcname": "GetUndoAvailCount", - "location": "imgui_internal:1082", - "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", - "ret": "int", - "signature": "()const", - "stname": "ImGuiInputTextState" - } - ], "ImGuiInputTextState_HasSelection": [ { "args": "(ImGuiInputTextState* self)", @@ -6430,7 +6819,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui_internal:1089", + "location": "imgui_internal:1150", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -6439,22 +6828,42 @@ ], "ImGuiInputTextState_ImGuiInputTextState": [ { - "args": "(ImGuiContext* ctx)", - "argsT": [ - { - "name": "ctx", - "type": "ImGuiContext*" - } - ], - "argsoriginal": "(ImGuiContext* ctx)", - "call_args": "(ctx)", + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", "cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextState", - "location": "imgui_internal:1079", + "location": "imgui_internal:1140", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", - "signature": "(ImGuiContext*)", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_OnCharPressed": [ + { + "args": "(ImGuiInputTextState* self,unsigned int c)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + }, + { + "name": "c", + "type": "unsigned int" + } + ], + "argsoriginal": "(unsigned int c)", + "call_args": "(c)", + "cimguiname": "ImGuiInputTextState_OnCharPressed", + "defaults": {}, + "funcname": "OnCharPressed", + "location": "imgui_internal:1145", + "ov_cimguiname": "ImGuiInputTextState_OnCharPressed", + "ret": "void", + "signature": "(unsigned int)", "stname": "ImGuiInputTextState" } ], @@ -6476,13 +6885,76 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": {}, "funcname": "OnKeyPressed", - "location": "imgui_internal:1084", + "location": "imgui_internal:1144", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", "stname": "ImGuiInputTextState" } ], + "ImGuiInputTextState_ReloadUserBufAndKeepSelection": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", + "defaults": {}, + "funcname": "ReloadUserBufAndKeepSelection", + "location": "imgui_internal:1163", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndKeepSelection", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ReloadUserBufAndMoveToEnd": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", + "defaults": {}, + "funcname": "ReloadUserBufAndMoveToEnd", + "location": "imgui_internal:1164", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndMoveToEnd", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], + "ImGuiInputTextState_ReloadUserBufAndSelectAll": [ + { + "args": "(ImGuiInputTextState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiInputTextState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", + "defaults": {}, + "funcname": "ReloadUserBufAndSelectAll", + "location": "imgui_internal:1162", + "ov_cimguiname": "ImGuiInputTextState_ReloadUserBufAndSelectAll", + "ret": "void", + "signature": "()", + "stname": "ImGuiInputTextState" + } + ], "ImGuiInputTextState_SelectAll": [ { "args": "(ImGuiInputTextState* self)", @@ -6497,7 +6969,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui_internal:1094", + "location": "imgui_internal:1155", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -6517,7 +6989,9 @@ "cimguiname": "ImGuiInputTextState_destroy", "defaults": {}, "destructor": true, + "location": "imgui_internal:1141", "ov_cimguiname": "ImGuiInputTextState_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImGuiInputTextState*)", "stname": "ImGuiInputTextState" @@ -6533,7 +7007,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyOwnerData", - "location": "imgui_internal:1349", + "location": "imgui_internal:1471", "ov_cimguiname": "ImGuiKeyOwnerData_ImGuiKeyOwnerData", "signature": "()", "stname": "ImGuiKeyOwnerData" @@ -6568,7 +7042,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingData", - "location": "imgui_internal:1325", + "location": "imgui_internal:1447", "ov_cimguiname": "ImGuiKeyRoutingData_ImGuiKeyRoutingData", "signature": "()", "stname": "ImGuiKeyRoutingData" @@ -6607,7 +7081,7 @@ "cimguiname": "ImGuiKeyRoutingTable_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1337", + "location": "imgui_internal:1459", "ov_cimguiname": "ImGuiKeyRoutingTable_Clear", "ret": "void", "signature": "()", @@ -6624,7 +7098,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiKeyRoutingTable", - "location": "imgui_internal:1336", + "location": "imgui_internal:1458", "ov_cimguiname": "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable", "signature": "()", "stname": "ImGuiKeyRoutingTable" @@ -6659,7 +7133,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiLastItemData", - "location": "imgui_internal:1185", + "location": "imgui_internal:1266", "ov_cimguiname": "ImGuiLastItemData_ImGuiLastItemData", "signature": "()", "stname": "ImGuiLastItemData" @@ -6694,7 +7168,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipperData", - "location": "imgui_internal:1425", + "location": "imgui_internal:1542", "ov_cimguiname": "ImGuiListClipperData_ImGuiListClipperData", "signature": "()", "stname": "ImGuiListClipperData" @@ -6718,7 +7192,7 @@ "cimguiname": "ImGuiListClipperData_Reset", "defaults": {}, "funcname": "Reset", - "location": "imgui_internal:1426", + "location": "imgui_internal:1543", "ov_cimguiname": "ImGuiListClipperData_Reset", "ret": "void", "signature": "(ImGuiListClipper*)", @@ -6763,7 +7237,7 @@ "defaults": {}, "funcname": "FromIndices", "is_static_function": true, - "location": "imgui_internal:1412", + "location": "imgui_internal:1529", "ov_cimguiname": "ImGuiListClipperRange_FromIndices", "ret": "ImGuiListClipperRange", "signature": "(int,int)", @@ -6797,7 +7271,7 @@ "defaults": {}, "funcname": "FromPositions", "is_static_function": true, - "location": "imgui_internal:1413", + "location": "imgui_internal:1530", "ov_cimguiname": "ImGuiListClipperRange_FromPositions", "ret": "ImGuiListClipperRange", "signature": "(float,float,int,int)", @@ -6828,7 +7302,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2417", + "location": "imgui:2768", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -6849,42 +7323,13 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2418", + "location": "imgui:2769", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" } ], - "ImGuiListClipper_ForceDisplayRangeByIndices": [ - { - "args": "(ImGuiListClipper* self,int item_min,int item_max)", - "argsT": [ - { - "name": "self", - "type": "ImGuiListClipper*" - }, - { - "name": "item_min", - "type": "int" - }, - { - "name": "item_max", - "type": "int" - } - ], - "argsoriginal": "(int item_min,int item_max)", - "call_args": "(item_min,item_max)", - "cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "defaults": {}, - "funcname": "ForceDisplayRangeByIndices", - "location": "imgui:2422", - "ov_cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "ret": "void", - "signature": "(int,int)", - "stname": "ImGuiListClipper" - } - ], "ImGuiListClipper_ImGuiListClipper": [ { "args": "()", @@ -6895,12 +7340,91 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2415", + "location": "imgui:2766", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" } ], + "ImGuiListClipper_IncludeItemByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "defaults": {}, + "funcname": "IncludeItemByIndex", + "location": "imgui:2774", + "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_IncludeItemsByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_begin,int item_end)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_begin", + "type": "int" + }, + { + "name": "item_end", + "type": "int" + } + ], + "argsoriginal": "(int item_begin,int item_end)", + "call_args": "(item_begin,item_end)", + "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "defaults": {}, + "funcname": "IncludeItemsByIndex", + "location": "imgui:2775", + "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "ret": "void", + "signature": "(int,int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_SeekCursorForItem": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_SeekCursorForItem", + "defaults": {}, + "funcname": "SeekCursorForItem", + "location": "imgui:2780", + "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], "ImGuiListClipper_Step": [ { "args": "(ImGuiListClipper* self)", @@ -6915,7 +7439,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2419", + "location": "imgui:2770", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -6935,7 +7459,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2416", + "location": "imgui:2767", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -6961,7 +7485,7 @@ "cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "defaults": {}, "funcname": "CalcNextTotalWidth", - "location": "imgui_internal:1056", + "location": "imgui_internal:1094", "ov_cimguiname": "ImGuiMenuColumns_CalcNextTotalWidth", "ret": "void", "signature": "(bool)", @@ -6998,7 +7522,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": {}, "funcname": "DeclColumns", - "location": "imgui_internal:1055", + "location": "imgui_internal:1093", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float,float)", @@ -7015,7 +7539,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiMenuColumns", - "location": "imgui_internal:1053", + "location": "imgui_internal:1091", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -7043,7 +7567,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": {}, "funcname": "Update", - "location": "imgui_internal:1054", + "location": "imgui_internal:1092", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(float,bool)", @@ -7069,39 +7593,116 @@ "stname": "ImGuiMenuColumns" } ], - "ImGuiMetricsConfig_ImGuiMetricsConfig": [ + "ImGuiMultiSelectState_ImGuiMultiSelectState": [ { "args": "()", "argsT": [], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", + "cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "constructor": true, "defaults": {}, - "funcname": "ImGuiMetricsConfig", - "location": "imgui_internal:1854", - "ov_cimguiname": "ImGuiMetricsConfig_ImGuiMetricsConfig", + "funcname": "ImGuiMultiSelectState", + "location": "imgui_internal:1801", + "ov_cimguiname": "ImGuiMultiSelectState_ImGuiMultiSelectState", "signature": "()", - "stname": "ImGuiMetricsConfig" + "stname": "ImGuiMultiSelectState" } ], - "ImGuiMetricsConfig_destroy": [ + "ImGuiMultiSelectState_destroy": [ { - "args": "(ImGuiMetricsConfig* self)", + "args": "(ImGuiMultiSelectState* self)", "argsT": [ { "name": "self", - "type": "ImGuiMetricsConfig*" + "type": "ImGuiMultiSelectState*" } ], "call_args": "(self)", - "cimguiname": "ImGuiMetricsConfig_destroy", + "cimguiname": "ImGuiMultiSelectState_destroy", "defaults": {}, "destructor": true, - "ov_cimguiname": "ImGuiMetricsConfig_destroy", + "ov_cimguiname": "ImGuiMultiSelectState_destroy", "ret": "void", - "signature": "(ImGuiMetricsConfig*)", - "stname": "ImGuiMetricsConfig" + "signature": "(ImGuiMultiSelectState*)", + "stname": "ImGuiMultiSelectState" + } + ], + "ImGuiMultiSelectTempData_Clear": [ + { + "args": "(ImGuiMultiSelectTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiMultiSelectTempData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiMultiSelectTempData_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui_internal:1785", + "ov_cimguiname": "ImGuiMultiSelectTempData_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiMultiSelectTempData" + } + ], + "ImGuiMultiSelectTempData_ClearIO": [ + { + "args": "(ImGuiMultiSelectTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiMultiSelectTempData*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiMultiSelectTempData_ClearIO", + "defaults": {}, + "funcname": "ClearIO", + "location": "imgui_internal:1786", + "ov_cimguiname": "ImGuiMultiSelectTempData_ClearIO", + "ret": "void", + "signature": "()", + "stname": "ImGuiMultiSelectTempData" + } + ], + "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiMultiSelectTempData", + "location": "imgui_internal:1784", + "ov_cimguiname": "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData", + "signature": "()", + "stname": "ImGuiMultiSelectTempData" + } + ], + "ImGuiMultiSelectTempData_destroy": [ + { + "args": "(ImGuiMultiSelectTempData* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiMultiSelectTempData*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiMultiSelectTempData_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiMultiSelectTempData_destroy", + "ret": "void", + "signature": "(ImGuiMultiSelectTempData*)", + "stname": "ImGuiMultiSelectTempData" } ], "ImGuiNavItemData_Clear": [ @@ -7118,7 +7719,7 @@ "cimguiname": "ImGuiNavItemData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:1502", + "location": "imgui_internal:1626", "ov_cimguiname": "ImGuiNavItemData_Clear", "ret": "void", "signature": "()", @@ -7135,7 +7736,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNavItemData", - "location": "imgui_internal:1501", + "location": "imgui_internal:1625", "ov_cimguiname": "ImGuiNavItemData_ImGuiNavItemData", "signature": "()", "stname": "ImGuiNavItemData" @@ -7174,7 +7775,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1172", + "location": "imgui_internal:1250", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -7191,7 +7792,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextItemData", - "location": "imgui_internal:1171", + "location": "imgui_internal:1249", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -7230,7 +7831,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": {}, "funcname": "ClearFlags", - "location": "imgui_internal:1153", + "location": "imgui_internal:1221", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -7247,7 +7848,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiNextWindowData", - "location": "imgui_internal:1152", + "location": "imgui_internal:1220", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -7282,7 +7883,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumnData", - "location": "imgui_internal:1537", + "location": "imgui_internal:1705", "ov_cimguiname": "ImGuiOldColumnData_ImGuiOldColumnData", "signature": "()", "stname": "ImGuiOldColumnData" @@ -7317,7 +7918,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOldColumns", - "location": "imgui_internal:1558", + "location": "imgui_internal:1726", "ov_cimguiname": "ImGuiOldColumns_ImGuiOldColumns", "signature": "()", "stname": "ImGuiOldColumns" @@ -7352,7 +7953,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2281", + "location": "imgui:2626", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -7391,7 +7992,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2235", + "location": "imgui:2604", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -7408,7 +8009,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2234", + "location": "imgui:2603", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -7432,7 +8033,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2236", + "location": "imgui:2605", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -7453,7 +8054,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2238", + "location": "imgui:2607", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -7474,7 +8075,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2237", + "location": "imgui:2606", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -7510,7 +8111,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformIO", - "location": "imgui:3180", + "location": "imgui:3684", "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", "signature": "()", "stname": "ImGuiPlatformIO" @@ -7545,7 +8146,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:3200", + "location": "imgui:3787", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -7580,7 +8181,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformMonitor", - "location": "imgui:3190", + "location": "imgui:3777", "ov_cimguiname": "ImGuiPlatformMonitor_ImGuiPlatformMonitor", "signature": "()", "stname": "ImGuiPlatformMonitor" @@ -7615,7 +8216,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPopupData", - "location": "imgui_internal:1109", + "location": "imgui_internal:1346", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -7655,7 +8256,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1225", + "location": "imgui_internal:1319", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -7674,7 +8275,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPtrOrIndex", - "location": "imgui_internal:1226", + "location": "imgui_internal:1320", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -7699,6 +8300,281 @@ "stname": "ImGuiPtrOrIndex" } ], + "ImGuiSelectionBasicStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:2988", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Clear": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui:2990", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Contains": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "ImGuiSelectionBasicStorage_Contains", + "defaults": {}, + "funcname": "Contains", + "location": "imgui:2989", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", + "ret": "bool", + "signature": "(ImGuiID)const", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetNextSelectedItem": [ + { + "args": "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "opaque_it", + "type": "void**" + }, + { + "name": "out_id", + "type": "ImGuiID*" + } + ], + "argsoriginal": "(void** opaque_it,ImGuiID* out_id)", + "call_args": "(opaque_it,out_id)", + "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "defaults": {}, + "funcname": "GetNextSelectedItem", + "location": "imgui:2993", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "ret": "bool", + "signature": "(void**,ImGuiID*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetStorageIdFromIndex": [ + { + "args": "(ImGuiSelectionBasicStorage* self,int idx)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "idx", + "type": "int" + } + ], + "argsoriginal": "(int idx)", + "call_args": "(idx)", + "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "defaults": {}, + "funcname": "GetStorageIdFromIndex", + "location": "imgui:2994", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionBasicStorage", + "location": "imgui:2987", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_SetItemSelected": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "selected", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiID id,bool selected)", + "call_args": "(id,selected)", + "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "defaults": {}, + "funcname": "SetItemSelected", + "location": "imgui:2992", + "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "ret": "void", + "signature": "(ImGuiID,bool)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Swap": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "r", + "reftoptr": true, + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "(ImGuiSelectionBasicStorage& r)", + "call_args": "(*r)", + "cimguiname": "ImGuiSelectionBasicStorage_Swap", + "defaults": {}, + "funcname": "Swap", + "location": "imgui:2991", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_destroy": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionBasicStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionExternalStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:3007", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionExternalStorage", + "location": "imgui:3006", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "signature": "()", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_destroy": [ + { + "args": "(ImGuiSelectionExternalStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionExternalStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionExternalStorage*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], "ImGuiSettingsHandler_ImGuiSettingsHandler": [ { "args": "()", @@ -7709,7 +8585,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiSettingsHandler", - "location": "imgui_internal:1793", + "location": "imgui_internal:2046", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -7744,7 +8620,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackLevelInfo", - "location": "imgui_internal:1872", + "location": "imgui_internal:2146", "ov_cimguiname": "ImGuiStackLevelInfo_ImGuiStackLevelInfo", "signature": "()", "stname": "ImGuiStackLevelInfo" @@ -7769,24 +8645,28 @@ "stname": "ImGuiStackLevelInfo" } ], - "ImGuiStackSizes_CompareWithCurrentState": [ + "ImGuiStackSizes_CompareWithContextState": [ { - "args": "(ImGuiStackSizes* self)", + "args": "(ImGuiStackSizes* self,ImGuiContext* ctx)", "argsT": [ { "name": "self", "type": "ImGuiStackSizes*" + }, + { + "name": "ctx", + "type": "ImGuiContext*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiStackSizes_CompareWithCurrentState", + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "ImGuiStackSizes_CompareWithContextState", "defaults": {}, - "funcname": "CompareWithCurrentState", - "location": "imgui_internal:1202", - "ov_cimguiname": "ImGuiStackSizes_CompareWithCurrentState", + "funcname": "CompareWithContextState", + "location": "imgui_internal:1295", + "ov_cimguiname": "ImGuiStackSizes_CompareWithContextState", "ret": "void", - "signature": "()", + "signature": "(ImGuiContext*)", "stname": "ImGuiStackSizes" } ], @@ -7800,30 +8680,34 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStackSizes", - "location": "imgui_internal:1200", + "location": "imgui_internal:1293", "ov_cimguiname": "ImGuiStackSizes_ImGuiStackSizes", "signature": "()", "stname": "ImGuiStackSizes" } ], - "ImGuiStackSizes_SetToCurrentState": [ + "ImGuiStackSizes_SetToContextState": [ { - "args": "(ImGuiStackSizes* self)", + "args": "(ImGuiStackSizes* self,ImGuiContext* ctx)", "argsT": [ { "name": "self", "type": "ImGuiStackSizes*" + }, + { + "name": "ctx", + "type": "ImGuiContext*" } ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiStackSizes_SetToCurrentState", + "argsoriginal": "(ImGuiContext* ctx)", + "call_args": "(ctx)", + "cimguiname": "ImGuiStackSizes_SetToContextState", "defaults": {}, - "funcname": "SetToCurrentState", - "location": "imgui_internal:1201", - "ov_cimguiname": "ImGuiStackSizes_SetToCurrentState", + "funcname": "SetToContextState", + "location": "imgui_internal:1294", + "ov_cimguiname": "ImGuiStackSizes_SetToContextState", "ret": "void", - "signature": "()", + "signature": "(ImGuiContext*)", "stname": "ImGuiStackSizes" } ], @@ -7846,107 +8730,72 @@ "stname": "ImGuiStackSizes" } ], - "ImGuiStackTool_ImGuiStackTool": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiStackTool_ImGuiStackTool", - "constructor": true, - "defaults": {}, - "funcname": "ImGuiStackTool", - "location": "imgui_internal:1885", - "ov_cimguiname": "ImGuiStackTool_ImGuiStackTool", - "signature": "()", - "stname": "ImGuiStackTool" - } - ], - "ImGuiStackTool_destroy": [ - { - "args": "(ImGuiStackTool* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiStackTool*" - } - ], - "call_args": "(self)", - "cimguiname": "ImGuiStackTool_destroy", - "defaults": {}, - "destructor": true, - "ov_cimguiname": "ImGuiStackTool_destroy", - "ret": "void", - "signature": "(ImGuiStackTool*)", - "stname": "ImGuiStackTool" - } - ], "ImGuiStoragePair_ImGuiStoragePair": [ { - "args": "(ImGuiID _key,int _val_i)", + "args": "(ImGuiID _key,int _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_i", + "name": "_val", "type": "int" } ], - "argsoriginal": "(ImGuiID _key,int _val_i)", - "call_args": "(_key,_val_i)", + "argsoriginal": "(ImGuiID _key,int _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2348", + "location": "imgui:2683", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,float _val_f)", + "args": "(ImGuiID _key,float _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_f", + "name": "_val", "type": "float" } ], - "argsoriginal": "(ImGuiID _key,float _val_f)", - "call_args": "(_key,_val_f)", + "argsoriginal": "(ImGuiID _key,float _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2349", + "location": "imgui:2684", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,void* _val_p)", + "args": "(ImGuiID _key,void* _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_p", + "name": "_val", "type": "void*" } ], - "argsoriginal": "(ImGuiID _key,void* _val_p)", - "call_args": "(_key,_val_p)", + "argsoriginal": "(ImGuiID _key,void* _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2350", + "location": "imgui:2685", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -7985,7 +8834,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2381", + "location": "imgui:2724", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -8006,7 +8855,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2358", + "location": "imgui:2704", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -8037,7 +8886,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2361", + "location": "imgui:2707", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -8068,7 +8917,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2373", + "location": "imgui:2719", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -8099,7 +8948,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2363", + "location": "imgui:2709", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -8130,7 +8979,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2374", + "location": "imgui:2720", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -8161,7 +9010,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2359", + "location": "imgui:2705", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -8192,7 +9041,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2372", + "location": "imgui:2718", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -8217,7 +9066,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2365", + "location": "imgui:2711", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -8248,7 +9097,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2375", + "location": "imgui:2721", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -8273,7 +9122,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2378", + "location": "imgui:2726", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -8302,7 +9151,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2362", + "location": "imgui:2708", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -8331,7 +9180,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2364", + "location": "imgui:2710", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -8360,7 +9209,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2360", + "location": "imgui:2706", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -8389,7 +9238,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2366", + "location": "imgui:2712", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -8415,7 +9264,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1007", + "location": "imgui_internal:1043", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Int", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -8438,7 +9287,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1008", + "location": "imgui_internal:1044", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Float", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -8461,7 +9310,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyleMod", - "location": "imgui_internal:1009", + "location": "imgui_internal:1045", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleMod_Vec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -8496,7 +9345,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1950", + "location": "imgui:2272", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -8520,7 +9369,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1951", + "location": "imgui:2273", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -8546,56 +9395,6 @@ "stname": "ImGuiStyle" } ], - "ImGuiTabBar_GetTabName": [ - { - "args": "(ImGuiTabBar* self,const ImGuiTabItem* tab)", - "argsT": [ - { - "name": "self", - "type": "ImGuiTabBar*" - }, - { - "name": "tab", - "type": "const ImGuiTabItem*" - } - ], - "argsoriginal": "(const ImGuiTabItem* tab)", - "call_args": "(tab)", - "cimguiname": "ImGuiTabBar_GetTabName", - "defaults": {}, - "funcname": "GetTabName", - "location": "imgui_internal:2661", - "ov_cimguiname": "ImGuiTabBar_GetTabName", - "ret": "const char*", - "signature": "(const ImGuiTabItem*)const", - "stname": "ImGuiTabBar" - } - ], - "ImGuiTabBar_GetTabOrder": [ - { - "args": "(ImGuiTabBar* self,const ImGuiTabItem* tab)", - "argsT": [ - { - "name": "self", - "type": "ImGuiTabBar*" - }, - { - "name": "tab", - "type": "const ImGuiTabItem*" - } - ], - "argsoriginal": "(const ImGuiTabItem* tab)", - "call_args": "(tab)", - "cimguiname": "ImGuiTabBar_GetTabOrder", - "defaults": {}, - "funcname": "GetTabOrder", - "location": "imgui_internal:2660", - "ov_cimguiname": "ImGuiTabBar_GetTabOrder", - "ret": "int", - "signature": "(const ImGuiTabItem*)const", - "stname": "ImGuiTabBar" - } - ], "ImGuiTabBar_ImGuiTabBar": [ { "args": "()", @@ -8606,7 +9405,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabBar", - "location": "imgui_internal:2659", + "location": "imgui_internal:3049", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -8641,7 +9440,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTabItem", - "location": "imgui_internal:2621", + "location": "imgui_internal:3009", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -8676,7 +9475,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSettings", - "location": "imgui_internal:2910", + "location": "imgui_internal:3317", "ov_cimguiname": "ImGuiTableColumnSettings_ImGuiTableColumnSettings", "signature": "()", "stname": "ImGuiTableColumnSettings" @@ -8711,7 +9510,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2249", + "location": "imgui:2095", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -8746,7 +9545,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumn", - "location": "imgui_internal:2730", + "location": "imgui_internal:3112", "ov_cimguiname": "ImGuiTableColumn_ImGuiTableColumn", "signature": "()", "stname": "ImGuiTableColumn" @@ -8781,7 +9580,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableInstanceData", - "location": "imgui_internal:2758", + "location": "imgui_internal:3155", "ov_cimguiname": "ImGuiTableInstanceData_ImGuiTableInstanceData", "signature": "()", "stname": "ImGuiTableInstanceData" @@ -8820,7 +9619,7 @@ "cimguiname": "ImGuiTableSettings_GetColumnSettings", "defaults": {}, "funcname": "GetColumnSettings", - "location": "imgui_internal:2933", + "location": "imgui_internal:3340", "ov_cimguiname": "ImGuiTableSettings_GetColumnSettings", "ret": "ImGuiTableColumnSettings*", "signature": "()", @@ -8837,7 +9636,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSettings", - "location": "imgui_internal:2932", + "location": "imgui_internal:3339", "ov_cimguiname": "ImGuiTableSettings_ImGuiTableSettings", "signature": "()", "stname": "ImGuiTableSettings" @@ -8872,7 +9671,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2262", + "location": "imgui:2084", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -8907,7 +9706,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableTempData", - "location": "imgui_internal:2895", + "location": "imgui_internal:3302", "ov_cimguiname": "ImGuiTableTempData_ImGuiTableTempData", "signature": "()", "stname": "ImGuiTableTempData" @@ -8942,7 +9741,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTable", - "location": "imgui_internal:2871", + "location": "imgui_internal:3274", "ov_cimguiname": "ImGuiTable_ImGuiTable", "signature": "()", "stname": "ImGuiTable" @@ -8961,7 +9760,7 @@ "cimguiname": "ImGuiTable_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2872", + "location": "imgui_internal:3275", "ov_cimguiname": "ImGuiTable_destroy", "realdestructor": true, "ret": "void", @@ -8979,7 +9778,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2319", + "location": "imgui:2664", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -9009,7 +9808,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2328", + "location": "imgui:2673", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -9039,7 +9838,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2329", + "location": "imgui:2674", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -9069,7 +9868,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2330", + "location": "imgui:2675", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -9090,7 +9889,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2321", + "location": "imgui:2666", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -9111,7 +9910,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2327", + "location": "imgui:2672", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -9132,7 +9931,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2325", + "location": "imgui:2670", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -9172,7 +9971,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2324", + "location": "imgui:2669", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -9193,7 +9992,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2322", + "location": "imgui:2667", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -9218,7 +10017,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2326", + "location": "imgui:2671", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -9239,7 +10038,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2323", + "location": "imgui:2668", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -9260,7 +10059,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2292", + "location": "imgui:2637", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -9281,7 +10080,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2293", + "location": "imgui:2638", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -9313,7 +10112,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2290", + "location": "imgui:2635", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -9337,7 +10136,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2289", + "location": "imgui:2634", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -9357,7 +10156,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2294", + "location": "imgui:2639", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -9388,7 +10187,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2291", + "location": "imgui:2636", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -9440,7 +10239,7 @@ "cimguiname": "ImGuiTextIndex_append", "defaults": {}, "funcname": "append", - "location": "imgui_internal:730", + "location": "imgui_internal:736", "ov_cimguiname": "ImGuiTextIndex_append", "ret": "void", "signature": "(const char*,int,int)", @@ -9461,7 +10260,7 @@ "cimguiname": "ImGuiTextIndex_clear", "defaults": {}, "funcname": "clear", - "location": "imgui_internal:726", + "location": "imgui_internal:732", "ov_cimguiname": "ImGuiTextIndex_clear", "ret": "void", "signature": "()", @@ -9490,7 +10289,7 @@ "cimguiname": "ImGuiTextIndex_get_line_begin", "defaults": {}, "funcname": "get_line_begin", - "location": "imgui_internal:728", + "location": "imgui_internal:734", "ov_cimguiname": "ImGuiTextIndex_get_line_begin", "ret": "const char*", "signature": "(const char*,int)", @@ -9519,7 +10318,7 @@ "cimguiname": "ImGuiTextIndex_get_line_end", "defaults": {}, "funcname": "get_line_end", - "location": "imgui_internal:729", + "location": "imgui_internal:735", "ov_cimguiname": "ImGuiTextIndex_get_line_end", "ret": "const char*", "signature": "(const char*,int)", @@ -9540,7 +10339,7 @@ "cimguiname": "ImGuiTextIndex_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:727", + "location": "imgui_internal:733", "ov_cimguiname": "ImGuiTextIndex_size", "ret": "int", "signature": "()", @@ -9557,7 +10356,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2302", + "location": "imgui:2647", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -9580,7 +10379,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2303", + "location": "imgui:2648", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -9619,7 +10418,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2304", + "location": "imgui:2649", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -9648,16 +10447,72 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2305", + "location": "imgui:2650", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", "stname": "ImGuiTextRange" } ], + "ImGuiTypingSelectState_Clear": [ + { + "args": "(ImGuiTypingSelectState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTypingSelectState*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTypingSelectState_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui_internal:1670", + "ov_cimguiname": "ImGuiTypingSelectState_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiTypingSelectState" + } + ], + "ImGuiTypingSelectState_ImGuiTypingSelectState": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiTypingSelectState", + "location": "imgui_internal:1669", + "ov_cimguiname": "ImGuiTypingSelectState_ImGuiTypingSelectState", + "signature": "()", + "stname": "ImGuiTypingSelectState" + } + ], + "ImGuiTypingSelectState_destroy": [ + { + "args": "(ImGuiTypingSelectState* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiTypingSelectState*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiTypingSelectState_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiTypingSelectState_destroy", + "ret": "void", + "signature": "(ImGuiTypingSelectState*)", + "stname": "ImGuiTypingSelectState" + } + ], "ImGuiViewportP_CalcWorkRectPos": [ { - "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)", + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min)", "argsT": [ { "name": "pOut", @@ -9668,16 +10523,16 @@ "type": "ImGuiViewportP*" }, { - "name": "off_min", + "name": "inset_min", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& off_min)", - "call_args": "(off_min)", + "argsoriginal": "(const ImVec2& inset_min)", + "call_args": "(inset_min)", "cimguiname": "ImGuiViewportP_CalcWorkRectPos", "defaults": {}, "funcname": "CalcWorkRectPos", - "location": "imgui_internal:1747", + "location": "imgui_internal:1998", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectPos", "ret": "void", @@ -9687,7 +10542,7 @@ ], "ImGuiViewportP_CalcWorkRectSize": [ { - "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)", + "args": "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max)", "argsT": [ { "name": "pOut", @@ -9698,20 +10553,20 @@ "type": "ImGuiViewportP*" }, { - "name": "off_min", + "name": "inset_min", "type": "const ImVec2" }, { - "name": "off_max", + "name": "inset_max", "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& off_min,const ImVec2& off_max)", - "call_args": "(off_min,off_max)", + "argsoriginal": "(const ImVec2& inset_min,const ImVec2& inset_max)", + "call_args": "(inset_min,inset_max)", "cimguiname": "ImGuiViewportP_CalcWorkRectSize", "defaults": {}, "funcname": "CalcWorkRectSize", - "location": "imgui_internal:1748", + "location": "imgui_internal:1999", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_CalcWorkRectSize", "ret": "void", @@ -9733,7 +10588,7 @@ "cimguiname": "ImGuiViewportP_ClearRequestFlags", "defaults": {}, "funcname": "ClearRequestFlags", - "location": "imgui_internal:1744", + "location": "imgui_internal:1995", "ov_cimguiname": "ImGuiViewportP_ClearRequestFlags", "ret": "void", "signature": "()", @@ -9758,7 +10613,7 @@ "cimguiname": "ImGuiViewportP_GetBuildWorkRect", "defaults": {}, "funcname": "GetBuildWorkRect", - "location": "imgui_internal:1754", + "location": "imgui_internal:2005", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetBuildWorkRect", "ret": "void", @@ -9784,7 +10639,7 @@ "cimguiname": "ImGuiViewportP_GetMainRect", "defaults": {}, "funcname": "GetMainRect", - "location": "imgui_internal:1752", + "location": "imgui_internal:2003", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetMainRect", "ret": "void", @@ -9810,7 +10665,7 @@ "cimguiname": "ImGuiViewportP_GetWorkRect", "defaults": {}, "funcname": "GetWorkRect", - "location": "imgui_internal:1753", + "location": "imgui_internal:2004", "nonUDT": 1, "ov_cimguiname": "ImGuiViewportP_GetWorkRect", "ret": "void", @@ -9828,7 +10683,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewportP", - "location": "imgui_internal:1742", + "location": "imgui_internal:1993", "ov_cimguiname": "ImGuiViewportP_ImGuiViewportP", "signature": "()", "stname": "ImGuiViewportP" @@ -9848,7 +10703,7 @@ "cimguiname": "ImGuiViewportP_UpdateWorkRect", "defaults": {}, "funcname": "UpdateWorkRect", - "location": "imgui_internal:1749", + "location": "imgui_internal:2000", "ov_cimguiname": "ImGuiViewportP_UpdateWorkRect", "ret": "void", "signature": "()", @@ -9868,7 +10723,7 @@ "cimguiname": "ImGuiViewportP_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:1743", + "location": "imgui_internal:1994", "ov_cimguiname": "ImGuiViewportP_destroy", "realdestructor": true, "ret": "void", @@ -9894,7 +10749,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:3068", + "location": "imgui:3627", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -9920,7 +10775,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:3069", + "location": "imgui:3628", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -9938,7 +10793,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:3064", + "location": "imgui:3623", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -9957,7 +10812,7 @@ "cimguiname": "ImGuiViewport_destroy", "defaults": {}, "destructor": true, - "location": "imgui:3065", + "location": "imgui:3624", "ov_cimguiname": "ImGuiViewport_destroy", "realdestructor": true, "ret": "void", @@ -9975,7 +10830,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowClass", - "location": "imgui:2216", + "location": "imgui:2585", "ov_cimguiname": "ImGuiWindowClass_ImGuiWindowClass", "signature": "()", "stname": "ImGuiWindowClass" @@ -10014,7 +10869,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": {}, "funcname": "GetName", - "location": "imgui_internal:1778", + "location": "imgui_internal:2031", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -10031,7 +10886,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindowSettings", - "location": "imgui_internal:1777", + "location": "imgui_internal:2030", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -10070,7 +10925,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": {}, "funcname": "CalcFontSize", - "location": "imgui_internal:2575", + "location": "imgui_internal:2966", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -10101,7 +10956,7 @@ "str_end": "NULL" }, "funcname": "GetID", - "location": "imgui_internal:2568", + "location": "imgui_internal:2958", "ov_cimguiname": "ImGuiWindow_GetID_Str", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -10124,7 +10979,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2569", + "location": "imgui_internal:2959", "ov_cimguiname": "ImGuiWindow_GetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", @@ -10147,13 +11002,38 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": {}, "funcname": "GetID", - "location": "imgui_internal:2570", + "location": "imgui_internal:2960", "ov_cimguiname": "ImGuiWindow_GetID_Int", "ret": "ImGuiID", "signature": "(int)", "stname": "ImGuiWindow" } ], + "ImGuiWindow_GetIDFromPos": [ + { + "args": "(ImGuiWindow* self,const ImVec2 p_abs)", + "argsT": [ + { + "name": "self", + "type": "ImGuiWindow*" + }, + { + "name": "p_abs", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& p_abs)", + "call_args": "(p_abs)", + "cimguiname": "ImGuiWindow_GetIDFromPos", + "defaults": {}, + "funcname": "GetIDFromPos", + "location": "imgui_internal:2961", + "ov_cimguiname": "ImGuiWindow_GetIDFromPos", + "ret": "ImGuiID", + "signature": "(const ImVec2)", + "stname": "ImGuiWindow" + } + ], "ImGuiWindow_GetIDFromRectangle": [ { "args": "(ImGuiWindow* self,const ImRect r_abs)", @@ -10172,7 +11052,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": {}, "funcname": "GetIDFromRectangle", - "location": "imgui_internal:2571", + "location": "imgui_internal:2962", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -10198,33 +11078,12 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiWindow", - "location": "imgui_internal:2564", + "location": "imgui_internal:2954", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" } ], - "ImGuiWindow_MenuBarHeight": [ - { - "args": "(ImGuiWindow* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiWindow_MenuBarHeight", - "defaults": {}, - "funcname": "MenuBarHeight", - "location": "imgui_internal:2578", - "ov_cimguiname": "ImGuiWindow_MenuBarHeight", - "ret": "float", - "signature": "()const", - "stname": "ImGuiWindow" - } - ], "ImGuiWindow_MenuBarRect": [ { "args": "(ImRect *pOut,ImGuiWindow* self)", @@ -10243,7 +11102,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": {}, "funcname": "MenuBarRect", - "location": "imgui_internal:2579", + "location": "imgui_internal:2968", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -10269,7 +11128,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": {}, "funcname": "Rect", - "location": "imgui_internal:2574", + "location": "imgui_internal:2965", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -10277,27 +11136,6 @@ "stname": "ImGuiWindow" } ], - "ImGuiWindow_TitleBarHeight": [ - { - "args": "(ImGuiWindow* self)", - "argsT": [ - { - "name": "self", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "ImGuiWindow_TitleBarHeight", - "defaults": {}, - "funcname": "TitleBarHeight", - "location": "imgui_internal:2576", - "ov_cimguiname": "ImGuiWindow_TitleBarHeight", - "ret": "float", - "signature": "()const", - "stname": "ImGuiWindow" - } - ], "ImGuiWindow_TitleBarRect": [ { "args": "(ImRect *pOut,ImGuiWindow* self)", @@ -10316,7 +11154,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": {}, "funcname": "TitleBarRect", - "location": "imgui_internal:2577", + "location": "imgui_internal:2967", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -10337,7 +11175,7 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:2566", + "location": "imgui_internal:2956", "ov_cimguiname": "ImGuiWindow_destroy", "realdestructor": true, "ret": "void", @@ -10359,7 +11197,7 @@ "cimguiname": "ImPool_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:679", + "location": "imgui_internal:689", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -10381,7 +11219,7 @@ "cimguiname": "ImPool_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui_internal:678", + "location": "imgui_internal:688", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -10407,7 +11245,7 @@ "cimguiname": "ImPool_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:677", + "location": "imgui_internal:687", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -10429,7 +11267,7 @@ "cimguiname": "ImPool_GetAliveCount", "defaults": {}, "funcname": "GetAliveCount", - "location": "imgui_internal:686", + "location": "imgui_internal:696", "ov_cimguiname": "ImPool_GetAliveCount", "ret": "int", "signature": "()const", @@ -10451,7 +11289,7 @@ "cimguiname": "ImPool_GetBufSize", "defaults": {}, "funcname": "GetBufSize", - "location": "imgui_internal:687", + "location": "imgui_internal:697", "ov_cimguiname": "ImPool_GetBufSize", "ret": "int", "signature": "()const", @@ -10477,7 +11315,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": {}, "funcname": "GetByIndex", - "location": "imgui_internal:674", + "location": "imgui_internal:684", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10503,7 +11341,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": {}, "funcname": "GetByKey", - "location": "imgui_internal:673", + "location": "imgui_internal:683", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10529,7 +11367,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": {}, "funcname": "GetIndex", - "location": "imgui_internal:675", + "location": "imgui_internal:685", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -10551,7 +11389,7 @@ "cimguiname": "ImPool_GetMapSize", "defaults": {}, "funcname": "GetMapSize", - "location": "imgui_internal:688", + "location": "imgui_internal:698", "ov_cimguiname": "ImPool_GetMapSize", "ret": "int", "signature": "()const", @@ -10577,7 +11415,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": {}, "funcname": "GetOrAddByKey", - "location": "imgui_internal:676", + "location": "imgui_internal:686", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -10595,7 +11433,7 @@ "constructor": true, "defaults": {}, "funcname": "ImPool", - "location": "imgui_internal:671", + "location": "imgui_internal:681", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -10624,7 +11462,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:680", + "location": "imgui_internal:690", "ov_cimguiname": "ImPool_Remove_TPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -10652,7 +11490,7 @@ "cimguiname": "ImPool_Remove", "defaults": {}, "funcname": "Remove", - "location": "imgui_internal:681", + "location": "imgui_internal:691", "ov_cimguiname": "ImPool_Remove_PoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -10678,7 +11516,7 @@ "cimguiname": "ImPool_Reserve", "defaults": {}, "funcname": "Reserve", - "location": "imgui_internal:682", + "location": "imgui_internal:692", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -10704,7 +11542,7 @@ "cimguiname": "ImPool_TryGetMapData", "defaults": {}, "funcname": "TryGetMapData", - "location": "imgui_internal:689", + "location": "imgui_internal:699", "ov_cimguiname": "ImPool_TryGetMapData", "ret": "T*", "signature": "(ImPoolIdx)", @@ -10725,7 +11563,7 @@ "cimguiname": "ImPool_destroy", "defaults": {}, "destructor": true, - "location": "imgui_internal:672", + "location": "imgui_internal:682", "ov_cimguiname": "ImPool_destroy", "realdestructor": true, "ret": "void", @@ -10752,7 +11590,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:548", + "location": "imgui_internal:552", "ov_cimguiname": "ImRect_Add_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10775,7 +11613,7 @@ "cimguiname": "ImRect_Add", "defaults": {}, "funcname": "Add", - "location": "imgui_internal:549", + "location": "imgui_internal:553", "ov_cimguiname": "ImRect_Add_Rect", "ret": "void", "signature": "(const ImRect)", @@ -10800,7 +11638,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": {}, "funcname": "ClipWith", - "location": "imgui_internal:555", + "location": "imgui_internal:559", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -10825,7 +11663,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": {}, "funcname": "ClipWithFull", - "location": "imgui_internal:556", + "location": "imgui_internal:560", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -10850,7 +11688,7 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:545", + "location": "imgui_internal:548", "ov_cimguiname": "ImRect_Contains_Vec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -10873,13 +11711,42 @@ "cimguiname": "ImRect_Contains", "defaults": {}, "funcname": "Contains", - "location": "imgui_internal:546", + "location": "imgui_internal:549", "ov_cimguiname": "ImRect_Contains_Rect", "ret": "bool", "signature": "(const ImRect)const", "stname": "ImRect" } ], + "ImRect_ContainsWithPad": [ + { + "args": "(ImRect* self,const ImVec2 p,const ImVec2 pad)", + "argsT": [ + { + "name": "self", + "type": "ImRect*" + }, + { + "name": "p", + "type": "const ImVec2" + }, + { + "name": "pad", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& p,const ImVec2& pad)", + "call_args": "(p,pad)", + "cimguiname": "ImRect_ContainsWithPad", + "defaults": {}, + "funcname": "ContainsWithPad", + "location": "imgui_internal:550", + "ov_cimguiname": "ImRect_ContainsWithPad", + "ret": "bool", + "signature": "(const ImVec2,const ImVec2)const", + "stname": "ImRect" + } + ], "ImRect_Expand": [ { "args": "(ImRect* self,const float amount)", @@ -10898,7 +11765,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:550", + "location": "imgui_internal:554", "ov_cimguiname": "ImRect_Expand_Float", "ret": "void", "signature": "(const float)", @@ -10921,7 +11788,7 @@ "cimguiname": "ImRect_Expand", "defaults": {}, "funcname": "Expand", - "location": "imgui_internal:551", + "location": "imgui_internal:555", "ov_cimguiname": "ImRect_Expand_Vec2", "ret": "void", "signature": "(const ImVec2)", @@ -10942,7 +11809,7 @@ "cimguiname": "ImRect_Floor", "defaults": {}, "funcname": "Floor", - "location": "imgui_internal:557", + "location": "imgui_internal:561", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -10963,7 +11830,7 @@ "cimguiname": "ImRect_GetArea", "defaults": {}, "funcname": "GetArea", - "location": "imgui_internal:540", + "location": "imgui_internal:543", "ov_cimguiname": "ImRect_GetArea", "ret": "float", "signature": "()const", @@ -10988,7 +11855,7 @@ "cimguiname": "ImRect_GetBL", "defaults": {}, "funcname": "GetBL", - "location": "imgui_internal:543", + "location": "imgui_internal:546", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -11014,7 +11881,7 @@ "cimguiname": "ImRect_GetBR", "defaults": {}, "funcname": "GetBR", - "location": "imgui_internal:544", + "location": "imgui_internal:547", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -11040,7 +11907,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui_internal:536", + "location": "imgui_internal:539", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -11062,7 +11929,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": {}, "funcname": "GetHeight", - "location": "imgui_internal:539", + "location": "imgui_internal:542", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -11087,7 +11954,7 @@ "cimguiname": "ImRect_GetSize", "defaults": {}, "funcname": "GetSize", - "location": "imgui_internal:537", + "location": "imgui_internal:540", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -11113,7 +11980,7 @@ "cimguiname": "ImRect_GetTL", "defaults": {}, "funcname": "GetTL", - "location": "imgui_internal:541", + "location": "imgui_internal:544", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -11139,7 +12006,7 @@ "cimguiname": "ImRect_GetTR", "defaults": {}, "funcname": "GetTR", - "location": "imgui_internal:542", + "location": "imgui_internal:545", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -11161,7 +12028,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": {}, "funcname": "GetWidth", - "location": "imgui_internal:538", + "location": "imgui_internal:541", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -11178,7 +12045,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:531", + "location": "imgui_internal:534", "ov_cimguiname": "ImRect_ImRect_Nil", "signature": "()", "stname": "ImRect" @@ -11201,7 +12068,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:532", + "location": "imgui_internal:535", "ov_cimguiname": "ImRect_ImRect_Vec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -11220,7 +12087,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:533", + "location": "imgui_internal:536", "ov_cimguiname": "ImRect_ImRect_Vec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -11251,7 +12118,7 @@ "constructor": true, "defaults": {}, "funcname": "ImRect", - "location": "imgui_internal:534", + "location": "imgui_internal:537", "ov_cimguiname": "ImRect_ImRect_Float", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -11271,7 +12138,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": {}, "funcname": "IsInverted", - "location": "imgui_internal:558", + "location": "imgui_internal:562", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -11296,7 +12163,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": {}, "funcname": "Overlaps", - "location": "imgui_internal:547", + "location": "imgui_internal:551", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -11321,7 +12188,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": {}, "funcname": "ToVec4", - "location": "imgui_internal:559", + "location": "imgui_internal:563", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -11347,7 +12214,7 @@ "cimguiname": "ImRect_Translate", "defaults": {}, "funcname": "Translate", - "location": "imgui_internal:552", + "location": "imgui_internal:556", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -11372,7 +12239,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": {}, "funcname": "TranslateX", - "location": "imgui_internal:553", + "location": "imgui_internal:557", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -11397,7 +12264,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": {}, "funcname": "TranslateY", - "location": "imgui_internal:554", + "location": "imgui_internal:558", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -11437,7 +12304,7 @@ "cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "defaults": {}, "funcname": "GetArenaSizeInBytes", - "location": "imgui_internal:651", + "location": "imgui_internal:661", "ov_cimguiname": "ImSpanAllocator_GetArenaSizeInBytes", "ret": "int", "signature": "()", @@ -11463,7 +12330,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "defaults": {}, "funcname": "GetSpanPtrBegin", - "location": "imgui_internal:653", + "location": "imgui_internal:663", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrBegin", "ret": "void*", "signature": "(int)", @@ -11489,7 +12356,7 @@ "cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "defaults": {}, "funcname": "GetSpanPtrEnd", - "location": "imgui_internal:654", + "location": "imgui_internal:664", "ov_cimguiname": "ImSpanAllocator_GetSpanPtrEnd", "ret": "void*", "signature": "(int)", @@ -11507,7 +12374,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpanAllocator", - "location": "imgui_internal:649", + "location": "imgui_internal:659", "ov_cimguiname": "ImSpanAllocator_ImSpanAllocator", "signature": "()", "stname": "ImSpanAllocator", @@ -11542,7 +12409,7 @@ "a": "4" }, "funcname": "Reserve", - "location": "imgui_internal:650", + "location": "imgui_internal:660", "ov_cimguiname": "ImSpanAllocator_Reserve", "ret": "void", "signature": "(int,size_t,int)", @@ -11568,7 +12435,7 @@ "cimguiname": "ImSpanAllocator_SetArenaBasePtr", "defaults": {}, "funcname": "SetArenaBasePtr", - "location": "imgui_internal:652", + "location": "imgui_internal:662", "ov_cimguiname": "ImSpanAllocator_SetArenaBasePtr", "ret": "void", "signature": "(void*)", @@ -11606,7 +12473,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:617", + "location": "imgui_internal:627", "ov_cimguiname": "ImSpan_ImSpan_Nil", "signature": "()", "stname": "ImSpan", @@ -11630,7 +12497,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:618", + "location": "imgui_internal:628", "ov_cimguiname": "ImSpan_ImSpan_TPtrInt", "signature": "(T*,int)", "stname": "ImSpan", @@ -11654,7 +12521,7 @@ "constructor": true, "defaults": {}, "funcname": "ImSpan", - "location": "imgui_internal:619", + "location": "imgui_internal:629", "ov_cimguiname": "ImSpan_ImSpan_TPtrTPtr", "signature": "(T*,T*)", "stname": "ImSpan", @@ -11675,7 +12542,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:628", + "location": "imgui_internal:638", "ov_cimguiname": "ImSpan_begin_Nil", "ret": "T*", "signature": "()", @@ -11695,7 +12562,7 @@ "cimguiname": "ImSpan_begin", "defaults": {}, "funcname": "begin", - "location": "imgui_internal:629", + "location": "imgui_internal:639", "ov_cimguiname": "ImSpan_begin__const", "ret": "const T*", "signature": "()const", @@ -11737,7 +12604,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:630", + "location": "imgui_internal:640", "ov_cimguiname": "ImSpan_end_Nil", "ret": "T*", "signature": "()", @@ -11757,7 +12624,7 @@ "cimguiname": "ImSpan_end", "defaults": {}, "funcname": "end", - "location": "imgui_internal:631", + "location": "imgui_internal:641", "ov_cimguiname": "ImSpan_end__const", "ret": "const T*", "signature": "()const", @@ -11783,7 +12650,7 @@ "cimguiname": "ImSpan_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui_internal:634", + "location": "imgui_internal:644", "ov_cimguiname": "ImSpan_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -11813,7 +12680,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:621", + "location": "imgui_internal:631", "ov_cimguiname": "ImSpan_set_Int", "ret": "void", "signature": "(T*,int)", @@ -11841,7 +12708,7 @@ "cimguiname": "ImSpan_set", "defaults": {}, "funcname": "set", - "location": "imgui_internal:622", + "location": "imgui_internal:632", "ov_cimguiname": "ImSpan_set_TPtr", "ret": "void", "signature": "(T*,T*)", @@ -11863,7 +12730,7 @@ "cimguiname": "ImSpan_size", "defaults": {}, "funcname": "size", - "location": "imgui_internal:623", + "location": "imgui_internal:633", "ov_cimguiname": "ImSpan_size", "ret": "int", "signature": "()const", @@ -11885,7 +12752,7 @@ "cimguiname": "ImSpan_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui_internal:624", + "location": "imgui_internal:634", "ov_cimguiname": "ImSpan_size_in_bytes", "ret": "int", "signature": "()const", @@ -11903,7 +12770,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:511", + "location": "imgui_internal:514", "ov_cimguiname": "ImVec1_ImVec1_Nil", "signature": "()", "stname": "ImVec1" @@ -11922,7 +12789,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec1", - "location": "imgui_internal:512", + "location": "imgui_internal:515", "ov_cimguiname": "ImVec1_ImVec1_Float", "signature": "(float)", "stname": "ImVec1" @@ -11957,7 +12824,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:262", + "location": "imgui:296", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -11980,7 +12847,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:263", + "location": "imgui:297", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -12015,7 +12882,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:519", + "location": "imgui_internal:522", "ov_cimguiname": "ImVec2ih_ImVec2ih_Nil", "signature": "()", "stname": "ImVec2ih" @@ -12038,7 +12905,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:520", + "location": "imgui_internal:523", "ov_cimguiname": "ImVec2ih_ImVec2ih_short", "signature": "(short,short)", "stname": "ImVec2ih" @@ -12057,7 +12924,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2ih", - "location": "imgui_internal:521", + "location": "imgui_internal:524", "ov_cimguiname": "ImVec2ih_ImVec2ih_Vec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -12092,7 +12959,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:275", + "location": "imgui:309", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -12123,7 +12990,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:276", + "location": "imgui:310", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -12158,7 +13025,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1847", + "location": "imgui:2152", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -12178,7 +13045,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1848", + "location": "imgui:2153", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -12203,7 +13070,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1874", + "location": "imgui:2179", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -12225,7 +13092,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1870", + "location": "imgui:2175", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -12246,7 +13113,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1871", + "location": "imgui:2176", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -12269,7 +13136,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1864", + "location": "imgui:2169", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -12289,7 +13156,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1865", + "location": "imgui:2170", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -12311,7 +13178,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1860", + "location": "imgui:2165", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -12333,7 +13200,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1852", + "location": "imgui:2157", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -12355,7 +13222,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:1853", + "location": "imgui:2158", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -12377,7 +13244,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:1854", + "location": "imgui:2159", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -12403,7 +13270,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1889", + "location": "imgui:2194", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -12424,7 +13291,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1850", + "location": "imgui:2155", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -12447,7 +13314,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1856", + "location": "imgui:2161", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -12469,7 +13336,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1866", + "location": "imgui:2171", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -12489,7 +13356,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1867", + "location": "imgui:2172", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -12515,7 +13382,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1885", + "location": "imgui:2190", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -12543,7 +13410,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1886", + "location": "imgui:2191", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -12569,7 +13436,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1887", + "location": "imgui:2192", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -12595,7 +13462,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1890", + "location": "imgui:2195", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -12619,7 +13486,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1891", + "location": "imgui:2196", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -12645,7 +13512,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1892", + "location": "imgui:2198", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -12671,7 +13538,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1893", + "location": "imgui:2199", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -12679,6 +13546,32 @@ "templated": true } ], + "ImVector_find_index": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_find_index", + "defaults": {}, + "funcname": "find_index", + "location": "imgui:2197", + "ov_cimguiname": "ImVector_find_index", + "ret": "int", + "signature": "(const T)const", + "stname": "ImVector", + "templated": true + } + ], "ImVector_front": [ { "args": "(ImVector* self)", @@ -12693,7 +13586,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1868", + "location": "imgui:2173", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -12714,7 +13607,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1869", + "location": "imgui:2174", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -12741,7 +13634,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1894", + "location": "imgui:2200", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -12771,7 +13664,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1888", + "location": "imgui:2193", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -12793,7 +13686,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1859", + "location": "imgui:2164", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -12815,7 +13708,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1883", + "location": "imgui:2188", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -12841,7 +13734,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1882", + "location": "imgui:2187", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -12867,7 +13760,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1884", + "location": "imgui:2189", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -12893,7 +13786,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1878", + "location": "imgui:2183", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -12919,7 +13812,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:1879", + "location": "imgui:2184", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -12945,7 +13838,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1875", + "location": "imgui:2180", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -12973,7 +13866,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1876", + "location": "imgui:2181", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -12999,7 +13892,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1877", + "location": "imgui:2182", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -13021,7 +13914,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1857", + "location": "imgui:2162", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -13043,7 +13936,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1858", + "location": "imgui:2163", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -13070,7 +13963,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1872", + "location": "imgui:2177", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -13098,7 +13991,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:841", + "location": "imgui:911", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -13106,7 +13999,7 @@ "stname": "" } ], - "igActivateItem": [ + "igActivateItemByID": [ { "args": "(ImGuiID id)", "argsT": [ @@ -13117,12 +14010,12 @@ ], "argsoriginal": "(ImGuiID id)", "call_args": "(id)", - "cimguiname": "igActivateItem", + "cimguiname": "igActivateItemByID", "defaults": {}, - "funcname": "ActivateItem", - "location": "imgui_internal:3109", + "funcname": "ActivateItemByID", + "location": "imgui_internal:3549", "namespace": "ImGui", - "ov_cimguiname": "igActivateItem", + "ov_cimguiname": "igActivateItemByID", "ret": "void", "signature": "(ImGuiID)", "stname": "" @@ -13146,7 +14039,7 @@ "cimguiname": "igAddContextHook", "defaults": {}, "funcname": "AddContextHook", - "location": "imgui_internal:2993", + "location": "imgui_internal:3410", "namespace": "ImGui", "ov_cimguiname": "igAddContextHook", "ret": "ImGuiID", @@ -13154,6 +14047,36 @@ "stname": "" } ], + "igAddDrawListToDrawDataEx": [ + { + "args": "(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list)", + "argsT": [ + { + "name": "draw_data", + "type": "ImDrawData*" + }, + { + "name": "out_list", + "type": "ImVector_ImDrawListPtr*" + }, + { + "name": "draw_list", + "type": "ImDrawList*" + } + ], + "argsoriginal": "(ImDrawData* draw_data,ImVector* out_list,ImDrawList* draw_list)", + "call_args": "(draw_data,out_list,draw_list)", + "cimguiname": "igAddDrawListToDrawDataEx", + "defaults": {}, + "funcname": "AddDrawListToDrawDataEx", + "location": "imgui_internal:3394", + "namespace": "ImGui", + "ov_cimguiname": "igAddDrawListToDrawDataEx", + "ret": "void", + "signature": "(ImDrawData*,ImVector_ImDrawListPtr*,ImDrawList*)", + "stname": "" + } + ], "igAddSettingsHandler": [ { "args": "(const ImGuiSettingsHandler* handler)", @@ -13168,7 +14091,7 @@ "cimguiname": "igAddSettingsHandler", "defaults": {}, "funcname": "AddSettingsHandler", - "location": "imgui_internal:3013", + "location": "imgui_internal:3427", "namespace": "ImGui", "ov_cimguiname": "igAddSettingsHandler", "ret": "void", @@ -13185,7 +14108,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:465", + "location": "imgui:508", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -13211,7 +14134,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:512", + "location": "imgui:557", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -13247,7 +14170,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "imgui_internal:3370", + "location": "imgui_internal:3846", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -13280,7 +14203,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:336", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -13288,9 +14211,43 @@ "stname": "" } ], + "igBeginBoxSelect": [ + { + "args": "(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)", + "argsT": [ + { + "name": "scope_rect", + "type": "const ImRect" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "box_select_id", + "type": "ImGuiID" + }, + { + "name": "ms_flags", + "type": "ImGuiMultiSelectFlags" + } + ], + "argsoriginal": "(const ImRect& scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)", + "call_args": "(scope_rect,window,box_select_id,ms_flags)", + "cimguiname": "igBeginBoxSelect", + "defaults": {}, + "funcname": "BeginBoxSelect", + "location": "imgui_internal:3717", + "namespace": "ImGui", + "ov_cimguiname": "igBeginBoxSelect", + "ret": "bool", + "signature": "(const ImRect,ImGuiWindow*,ImGuiID,ImGuiMultiSelectFlags)", + "stname": "" + } + ], "igBeginChild": [ { - "args": "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "str_id", @@ -13301,32 +14258,32 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(str_id,size,border,flags)", + "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(str_id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:347", + "location": "imgui:392", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", - "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", + "signature": "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" }, { - "args": "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "id", @@ -13337,34 +14294,34 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,border,flags)", + "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:348", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", - "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", + "signature": "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" } ], "igBeginChildEx": [ { - "args": "(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags)", + "args": "(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "name", @@ -13379,56 +14336,24 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* name,ImGuiID id,const ImVec2& size_arg,bool border,ImGuiWindowFlags flags)", - "call_args": "(name,id,size_arg,border,flags)", + "argsoriginal": "(const char* name,ImGuiID id,const ImVec2& size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", + "call_args": "(name,id,size_arg,child_flags,window_flags)", "cimguiname": "igBeginChildEx", "defaults": {}, "funcname": "BeginChildEx", - "location": "imgui_internal:3075", + "location": "imgui_internal:3496", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", - "signature": "(const char*,ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "" - } - ], - "igBeginChildFrame": [ - { - "args": "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)", - "argsT": [ - { - "name": "id", - "type": "ImGuiID" - }, - { - "name": "size", - "type": "const ImVec2" - }, - { - "name": "flags", - "type": "ImGuiWindowFlags" - } - ], - "argsoriginal": "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,flags)", - "cimguiname": "igBeginChildFrame", - "defaults": { - "flags": "0" - }, - "funcname": "BeginChildFrame", - "location": "imgui:905", - "namespace": "ImGui", - "ov_cimguiname": "igBeginChildFrame", - "ret": "bool", - "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", + "signature": "(const char*,ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" } ], @@ -13456,7 +14381,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "imgui_internal:3263", + "location": "imgui_internal:3730", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -13488,7 +14413,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:529", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -13518,7 +14443,7 @@ "cimguiname": "igBeginComboPopup", "defaults": {}, "funcname": "BeginComboPopup", - "location": "imgui_internal:3095", + "location": "imgui_internal:3522", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPopup", "ret": "bool", @@ -13535,7 +14460,7 @@ "cimguiname": "igBeginComboPreview", "defaults": {}, "funcname": "BeginComboPreview", - "location": "imgui_internal:3096", + "location": "imgui_internal:3523", "namespace": "ImGui", "ov_cimguiname": "igBeginComboPreview", "ret": "bool", @@ -13559,7 +14484,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:849", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -13567,6 +14492,23 @@ "stname": "" } ], + "igBeginDisabledOverrideReenable": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginDisabledOverrideReenable", + "defaults": {}, + "funcname": "BeginDisabledOverrideReenable", + "location": "imgui_internal:3486", + "namespace": "ImGui", + "ov_cimguiname": "igBeginDisabledOverrideReenable", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igBeginDockableDragDropSource": [ { "args": "(ImGuiWindow* window)", @@ -13581,7 +14523,7 @@ "cimguiname": "igBeginDockableDragDropSource", "defaults": {}, "funcname": "BeginDockableDragDropSource", - "location": "imgui_internal:3214", + "location": "imgui_internal:3663", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropSource", "ret": "void", @@ -13603,7 +14545,7 @@ "cimguiname": "igBeginDockableDragDropTarget", "defaults": {}, "funcname": "BeginDockableDragDropTarget", - "location": "imgui_internal:3215", + "location": "imgui_internal:3664", "namespace": "ImGui", "ov_cimguiname": "igBeginDockableDragDropTarget", "ret": "void", @@ -13629,7 +14571,7 @@ "cimguiname": "igBeginDocked", "defaults": {}, "funcname": "BeginDocked", - "location": "imgui_internal:3213", + "location": "imgui_internal:3662", "namespace": "ImGui", "ov_cimguiname": "igBeginDocked", "ret": "void", @@ -13653,7 +14595,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:837", + "location": "imgui:907", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -13670,7 +14612,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:840", + "location": "imgui:910", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -13696,7 +14638,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": {}, "funcname": "BeginDragDropTargetCustom", - "location": "imgui_internal:3256", + "location": "imgui_internal:3705", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -13713,7 +14655,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:454", + "location": "imgui:506", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -13721,6 +14663,23 @@ "stname": "" } ], + "igBeginItemTooltip": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginItemTooltip", + "defaults": {}, + "funcname": "BeginItemTooltip", + "location": "imgui:749", + "namespace": "ImGui", + "ov_cimguiname": "igBeginItemTooltip", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igBeginListBox": [ { "args": "(const char* label,const ImVec2 size)", @@ -13741,7 +14700,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:641", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -13758,7 +14717,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:667", + "location": "imgui:729", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -13786,7 +14745,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:669", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -13803,7 +14762,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:665", + "location": "imgui:727", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -13835,7 +14794,7 @@ "enabled": "true" }, "funcname": "BeginMenuEx", - "location": "imgui_internal:3091", + "location": "imgui_internal:3518", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuEx", "ret": "bool", @@ -13843,6 +14802,39 @@ "stname": "" } ], + "igBeginMultiSelect": [ + { + "args": "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiMultiSelectFlags" + }, + { + "name": "selection_size", + "type": "int" + }, + { + "name": "items_count", + "type": "int" + } + ], + "argsoriginal": "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)", + "call_args": "(flags,selection_size,items_count)", + "cimguiname": "igBeginMultiSelect", + "defaults": { + "items_count": "-1", + "selection_size": "-1" + }, + "funcname": "BeginMultiSelect", + "location": "imgui:692", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "(ImGuiMultiSelectFlags,int,int)", + "stname": "" + } + ], "igBeginPopup": [ { "args": "(const char* str_id,ImGuiWindowFlags flags)", @@ -13863,7 +14855,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:693", + "location": "imgui:763", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -13892,7 +14884,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:715", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -13921,7 +14913,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:717", + "location": "imgui:787", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -13950,7 +14942,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:716", + "location": "imgui:786", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -13960,23 +14952,23 @@ ], "igBeginPopupEx": [ { - "args": "(ImGuiID id,ImGuiWindowFlags extra_flags)", + "args": "(ImGuiID id,ImGuiWindowFlags extra_window_flags)", "argsT": [ { "name": "id", "type": "ImGuiID" }, { - "name": "extra_flags", + "name": "extra_window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_flags)", - "call_args": "(id,extra_flags)", + "argsoriginal": "(ImGuiID id,ImGuiWindowFlags extra_window_flags)", + "call_args": "(id,extra_window_flags)", "cimguiname": "igBeginPopupEx", "defaults": {}, "funcname": "BeginPopupEx", - "location": "imgui_internal:3081", + "location": "imgui_internal:3499", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -14009,7 +15001,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:694", + "location": "imgui:764", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -14037,7 +15029,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:795", + "location": "imgui:865", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -14047,7 +15039,7 @@ ], "igBeginTabBarEx": [ { - "args": "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)", + "args": "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags)", "argsT": [ { "name": "tab_bar", @@ -14060,22 +15052,18 @@ { "name": "flags", "type": "ImGuiTabBarFlags" - }, - { - "name": "dock_node", - "type": "ImGuiDockNode*" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)", - "call_args": "(tab_bar,bb,flags,dock_node)", + "argsoriginal": "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags)", + "call_args": "(tab_bar,bb,flags)", "cimguiname": "igBeginTabBarEx", "defaults": {}, "funcname": "BeginTabBarEx", - "location": "imgui_internal:3327", + "location": "imgui_internal:3798", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", - "signature": "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags,ImGuiDockNode*)", + "signature": "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags)", "stname": "" } ], @@ -14104,7 +15092,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:797", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -14114,14 +15102,14 @@ ], "igBeginTable": [ { - "args": "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", + "args": "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", "argsT": [ { "name": "str_id", "type": "const char*" }, { - "name": "column", + "name": "columns", "type": "int" }, { @@ -14137,8 +15125,8 @@ "type": "float" } ], - "argsoriginal": "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", - "call_args": "(str_id,column,flags,outer_size,inner_width)", + "argsoriginal": "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", + "call_args": "(str_id,columns,flags,outer_size,inner_width)", "cimguiname": "igBeginTable", "defaults": { "flags": "0", @@ -14146,7 +15134,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:748", + "location": "imgui:816", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -14192,7 +15180,7 @@ "outer_size": "ImVec2(0,0)" }, "funcname": "BeginTableEx", - "location": "imgui_internal:3285", + "location": "imgui_internal:3754", "namespace": "ImGui", "ov_cimguiname": "igBeginTableEx", "ret": "bool", @@ -14209,10 +15197,10 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:676", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", - "ret": "void", + "ret": "bool", "signature": "()", "stname": "" } @@ -14235,14 +15223,31 @@ "cimguiname": "igBeginTooltipEx", "defaults": {}, "funcname": "BeginTooltipEx", - "location": "imgui_internal:3082", + "location": "imgui_internal:3513", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", - "ret": "void", + "ret": "bool", "signature": "(ImGuiTooltipFlags,ImGuiWindowFlags)", "stname": "" } ], + "igBeginTooltipHidden": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginTooltipHidden", + "defaults": {}, + "funcname": "BeginTooltipHidden", + "location": "imgui_internal:3514", + "namespace": "ImGui", + "ov_cimguiname": "igBeginTooltipHidden", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igBeginViewportSideBar": [ { "args": "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)", @@ -14273,7 +15278,7 @@ "cimguiname": "igBeginViewportSideBar", "defaults": {}, "funcname": "BeginViewportSideBar", - "location": "imgui_internal:3090", + "location": "imgui_internal:3517", "namespace": "ImGui", "ov_cimguiname": "igBeginViewportSideBar", "ret": "bool", @@ -14295,7 +15300,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": {}, "funcname": "BringWindowToDisplayBack", - "location": "imgui_internal:2970", + "location": "imgui_internal:3382", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -14321,7 +15326,7 @@ "cimguiname": "igBringWindowToDisplayBehind", "defaults": {}, "funcname": "BringWindowToDisplayBehind", - "location": "imgui_internal:2971", + "location": "imgui_internal:3383", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBehind", "ret": "void", @@ -14343,7 +15348,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": {}, "funcname": "BringWindowToDisplayFront", - "location": "imgui_internal:2969", + "location": "imgui_internal:3381", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -14365,7 +15370,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": {}, "funcname": "BringWindowToFocusFront", - "location": "imgui_internal:2968", + "location": "imgui_internal:3380", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -14382,7 +15387,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:519", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -14409,7 +15414,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:503", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -14435,7 +15440,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:504", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -14463,7 +15468,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:509", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -14503,7 +15508,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "imgui_internal:3387", + "location": "imgui_internal:3864", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -14536,7 +15541,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "imgui_internal:3369", + "location": "imgui_internal:3845", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -14570,7 +15575,7 @@ "cimguiname": "igCalcItemSize", "defaults": {}, "funcname": "CalcItemSize", - "location": "imgui_internal:3057", + "location": "imgui_internal:3479", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -14588,7 +15593,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:426", + "location": "imgui:463", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -14618,7 +15623,7 @@ "cimguiname": "igCalcRoundingFlagsForRectInRect", "defaults": {}, "funcname": "CalcRoundingFlagsForRectInRect", - "location": "imgui_internal:3365", + "location": "imgui_internal:3841", "namespace": "ImGui", "ov_cimguiname": "igCalcRoundingFlagsForRectInRect", "ret": "ImDrawFlags", @@ -14660,7 +15665,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:909", + "location": "imgui:978", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -14695,7 +15700,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": {}, "funcname": "CalcTypematicRepeatAmount", - "location": "imgui_internal:3140", + "location": "imgui_internal:3578", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -14721,7 +15726,7 @@ "cimguiname": "igCalcWindowNextAutoFitSize", "defaults": {}, "funcname": "CalcWindowNextAutoFitSize", - "location": "imgui_internal:2953", + "location": "imgui_internal:3361", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowNextAutoFitSize", @@ -14748,7 +15753,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": {}, "funcname": "CalcWrapWidthForPos", - "location": "imgui_internal:3058", + "location": "imgui_internal:3480", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -14774,7 +15779,7 @@ "cimguiname": "igCallContextHooks", "defaults": {}, "funcname": "CallContextHooks", - "location": "imgui_internal:2995", + "location": "imgui_internal:3412", "namespace": "ImGui", "ov_cimguiname": "igCallContextHooks", "ret": "void", @@ -14800,7 +15805,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:513", + "location": "imgui:558", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -14830,7 +15835,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:514", + "location": "imgui:559", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -14858,7 +15863,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:515", + "location": "imgui:560", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -14886,7 +15891,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3373", + "location": "imgui_internal:3850", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_S64Ptr", "ret": "bool", @@ -14914,7 +15919,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui_internal:3374", + "location": "imgui_internal:3851", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_U64Ptr", "ret": "bool", @@ -14931,7 +15936,7 @@ "cimguiname": "igClearActiveID", "defaults": {}, "funcname": "ClearActiveID", - "location": "imgui_internal:3042", + "location": "imgui_internal:3462", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -14948,7 +15953,7 @@ "cimguiname": "igClearDragDrop", "defaults": {}, "funcname": "ClearDragDrop", - "location": "imgui_internal:3257", + "location": "imgui_internal:3706", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -14965,7 +15970,7 @@ "cimguiname": "igClearIniSettings", "defaults": {}, "funcname": "ClearIniSettings", - "location": "imgui_internal:3009", + "location": "imgui_internal:3426", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -14973,6 +15978,28 @@ "stname": "" } ], + "igClearWindowSettings": [ + { + "args": "(const char* name)", + "argsT": [ + { + "name": "name", + "type": "const char*" + } + ], + "argsoriginal": "(const char* name)", + "call_args": "(name)", + "cimguiname": "igClearWindowSettings", + "defaults": {}, + "funcname": "ClearWindowSettings", + "location": "imgui_internal:3435", + "namespace": "ImGui", + "ov_cimguiname": "igClearWindowSettings", + "ret": "void", + "signature": "(const char*)", + "stname": "" + } + ], "igCloseButton": [ { "args": "(ImGuiID id,const ImVec2 pos)", @@ -14991,7 +16018,7 @@ "cimguiname": "igCloseButton", "defaults": {}, "funcname": "CloseButton", - "location": "imgui_internal:3377", + "location": "imgui_internal:3854", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -15008,7 +16035,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:708", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -15034,7 +16061,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": {}, "funcname": "ClosePopupToLevel", - "location": "imgui_internal:3077", + "location": "imgui_internal:3501", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -15051,7 +16078,7 @@ "cimguiname": "igClosePopupsExceptModals", "defaults": {}, "funcname": "ClosePopupsExceptModals", - "location": "imgui_internal:3079", + "location": "imgui_internal:3503", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsExceptModals", "ret": "void", @@ -15077,7 +16104,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": {}, "funcname": "ClosePopupsOverWindow", - "location": "imgui_internal:3078", + "location": "imgui_internal:3502", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -15107,7 +16134,7 @@ "cimguiname": "igCollapseButton", "defaults": {}, "funcname": "CollapseButton", - "location": "imgui_internal:3378", + "location": "imgui_internal:3855", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -15135,7 +16162,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:625", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -15165,7 +16192,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:626", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -15202,7 +16229,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:606", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -15224,7 +16251,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:913", + "location": "imgui:982", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -15269,7 +16296,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:915", + "location": "imgui:984", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -15314,7 +16341,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:914", + "location": "imgui:983", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -15340,7 +16367,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:912", + "location": "imgui:981", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -15373,7 +16400,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:602", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -15405,7 +16432,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:603", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -15431,7 +16458,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": {}, "funcname": "ColorEditOptionsPopup", - "location": "imgui_internal:3423", + "location": "imgui_internal:3905", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -15463,7 +16490,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:604", + "location": "imgui:653", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -15500,7 +16527,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:605", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -15526,7 +16553,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": {}, "funcname": "ColorPickerOptionsPopup", - "location": "imgui_internal:3424", + "location": "imgui_internal:3906", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -15556,7 +16583,7 @@ "cimguiname": "igColorTooltip", "defaults": {}, "funcname": "ColorTooltip", - "location": "imgui_internal:3422", + "location": "imgui_internal:3904", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -15566,7 +16593,7 @@ ], "igColumns": [ { - "args": "(int count,const char* id,bool border)", + "args": "(int count,const char* id,bool borders)", "argsT": [ { "name": "count", @@ -15577,20 +16604,20 @@ "type": "const char*" }, { - "name": "border", + "name": "borders", "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", - "call_args": "(count,id,border)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool borders=true)", + "call_args": "(count,id,borders)", "cimguiname": "igColumns", "defaults": { - "border": "true", + "borders": "true", "count": "1", "id": "NULL" }, "funcname": "Columns", - "location": "imgui:784", + "location": "imgui:854", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -15630,7 +16657,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:531", + "location": "imgui:580", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -15664,7 +16691,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:532", + "location": "imgui:581", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -15672,7 +16699,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)", "argsT": [ { "name": "label", @@ -15683,13 +16710,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -15701,40 +16728,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)", "cimguiname": "igCombo", "defaults": { "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:533", + "location": "imgui:582", "namespace": "ImGui", - "ov_cimguiname": "igCombo_FnBoolPtr", + "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", - "stname": "" - } - ], - "igConvertShortcutMod": [ - { - "args": "(ImGuiKeyChord key_chord)", - "argsT": [ - { - "name": "key_chord", - "type": "ImGuiKeyChord" - } - ], - "argsoriginal": "(ImGuiKeyChord key_chord)", - "call_args": "(key_chord)", - "cimguiname": "igConvertShortcutMod", - "defaults": {}, - "funcname": "ConvertShortcutMod", - "location": "imgui_internal:3122", - "namespace": "ImGui", - "ov_cimguiname": "igConvertShortcutMod", - "ret": "ImGuiKeyChord", - "signature": "(ImGuiKeyChord)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -15752,7 +16757,7 @@ "cimguiname": "igConvertSingleModFlagToKey", "defaults": {}, "funcname": "ConvertSingleModFlagToKey", - "location": "imgui_internal:3123", + "location": "imgui_internal:3562", "namespace": "ImGui", "ov_cimguiname": "igConvertSingleModFlagToKey", "ret": "ImGuiKey", @@ -15776,7 +16781,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:294", + "location": "imgui:328", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -15798,7 +16803,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": {}, "funcname": "CreateNewWindowSettings", - "location": "imgui_internal:3010", + "location": "imgui_internal:3432", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -15808,7 +16813,7 @@ ], "igDataTypeApplyFromText": [ { - "args": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)", + "args": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty)", "argsT": [ { "name": "buf", @@ -15825,18 +16830,24 @@ { "name": "format", "type": "const char*" + }, + { + "name": "p_data_when_empty", + "type": "void*" } ], - "argsoriginal": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)", - "call_args": "(buf,data_type,p_data,format)", + "argsoriginal": "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty=((void*)0))", + "call_args": "(buf,data_type,p_data,format,p_data_when_empty)", "cimguiname": "igDataTypeApplyFromText", - "defaults": {}, + "defaults": { + "p_data_when_empty": "NULL" + }, "funcname": "DataTypeApplyFromText", - "location": "imgui_internal:3410", + "location": "imgui_internal:3890", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyFromText", "ret": "bool", - "signature": "(const char*,ImGuiDataType,void*,const char*)", + "signature": "(const char*,ImGuiDataType,void*,const char*,void*)", "stname": "" } ], @@ -15870,7 +16881,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": {}, "funcname": "DataTypeApplyOp", - "location": "imgui_internal:3409", + "location": "imgui_internal:3889", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -15904,7 +16915,7 @@ "cimguiname": "igDataTypeClamp", "defaults": {}, "funcname": "DataTypeClamp", - "location": "imgui_internal:3412", + "location": "imgui_internal:3892", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -15934,7 +16945,7 @@ "cimguiname": "igDataTypeCompare", "defaults": {}, "funcname": "DataTypeCompare", - "location": "imgui_internal:3411", + "location": "imgui_internal:3891", "namespace": "ImGui", "ov_cimguiname": "igDataTypeCompare", "ret": "int", @@ -15972,7 +16983,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": {}, "funcname": "DataTypeFormatString", - "location": "imgui_internal:3408", + "location": "imgui_internal:3888", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -15994,7 +17005,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": {}, "funcname": "DataTypeGetInfo", - "location": "imgui_internal:3407", + "location": "imgui_internal:3887", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -16002,6 +17013,109 @@ "stname": "" } ], + "igDebugAllocHook": [ + { + "args": "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)", + "argsT": [ + { + "name": "info", + "type": "ImGuiDebugAllocInfo*" + }, + { + "name": "frame_count", + "type": "int" + }, + { + "name": "ptr", + "type": "void*" + }, + { + "name": "size", + "type": "size_t" + } + ], + "argsoriginal": "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)", + "call_args": "(info,frame_count,ptr,size)", + "cimguiname": "igDebugAllocHook", + "defaults": {}, + "funcname": "DebugAllocHook", + "location": "imgui_internal:3922", + "namespace": "ImGui", + "ov_cimguiname": "igDebugAllocHook", + "ret": "void", + "signature": "(ImGuiDebugAllocInfo*,int,void*,size_t)", + "stname": "" + } + ], + "igDebugBreakButton": [ + { + "args": "(const char* label,const char* description_of_location)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "description_of_location", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label,const char* description_of_location)", + "call_args": "(label,description_of_location)", + "cimguiname": "igDebugBreakButton", + "defaults": {}, + "funcname": "DebugBreakButton", + "location": "imgui_internal:3934", + "namespace": "ImGui", + "ov_cimguiname": "igDebugBreakButton", + "ret": "bool", + "signature": "(const char*,const char*)", + "stname": "" + } + ], + "igDebugBreakButtonTooltip": [ + { + "args": "(bool keyboard_only,const char* description_of_location)", + "argsT": [ + { + "name": "keyboard_only", + "type": "bool" + }, + { + "name": "description_of_location", + "type": "const char*" + } + ], + "argsoriginal": "(bool keyboard_only,const char* description_of_location)", + "call_args": "(keyboard_only,description_of_location)", + "cimguiname": "igDebugBreakButtonTooltip", + "defaults": {}, + "funcname": "DebugBreakButtonTooltip", + "location": "imgui_internal:3935", + "namespace": "ImGui", + "ov_cimguiname": "igDebugBreakButtonTooltip", + "ret": "void", + "signature": "(bool,const char*)", + "stname": "" + } + ], + "igDebugBreakClearData": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDebugBreakClearData", + "defaults": {}, + "funcname": "DebugBreakClearData", + "location": "imgui_internal:3933", + "namespace": "ImGui", + "ov_cimguiname": "igDebugBreakClearData", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igDebugCheckVersionAndDataLayout": [ { "args": "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)", @@ -16040,7 +17154,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:966", + "location": "imgui:1065", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -16048,6 +17162,30 @@ "stname": "" } ], + "igDebugDrawCursorPos": [ + { + "args": "(ImU32 col)", + "argsT": [ + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))", + "call_args": "(col)", + "cimguiname": "igDebugDrawCursorPos", + "defaults": { + "col": "4278190335" + }, + "funcname": "DebugDrawCursorPos", + "location": "imgui_internal:3926", + "namespace": "ImGui", + "ov_cimguiname": "igDebugDrawCursorPos", + "ret": "void", + "signature": "(ImU32)", + "stname": "" + } + ], "igDebugDrawItemRect": [ { "args": "(ImU32 col)", @@ -16064,7 +17202,7 @@ "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "imgui_internal:3449", + "location": "imgui_internal:3928", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -16072,6 +17210,52 @@ "stname": "" } ], + "igDebugDrawLineExtents": [ + { + "args": "(ImU32 col)", + "argsT": [ + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))", + "call_args": "(col)", + "cimguiname": "igDebugDrawLineExtents", + "defaults": { + "col": "4278190335" + }, + "funcname": "DebugDrawLineExtents", + "location": "imgui_internal:3927", + "namespace": "ImGui", + "ov_cimguiname": "igDebugDrawLineExtents", + "ret": "void", + "signature": "(ImU32)", + "stname": "" + } + ], + "igDebugFlashStyleColor": [ + { + "args": "(ImGuiCol idx)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiCol" + } + ], + "argsoriginal": "(ImGuiCol idx)", + "call_args": "(idx)", + "cimguiname": "igDebugFlashStyleColor", + "defaults": {}, + "funcname": "DebugFlashStyleColor", + "location": "imgui:1063", + "namespace": "ImGui", + "ov_cimguiname": "igDebugFlashStyleColor", + "ret": "void", + "signature": "(ImGuiCol)", + "stname": "" + } + ], "igDebugHookIdInfo": [ { "args": "(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end)", @@ -16098,7 +17282,7 @@ "cimguiname": "igDebugHookIdInfo", "defaults": {}, "funcname": "DebugHookIdInfo", - "location": "imgui_internal:3452", + "location": "imgui_internal:3937", "namespace": "ImGui", "ov_cimguiname": "igDebugHookIdInfo", "ret": "void", @@ -16120,7 +17304,7 @@ "cimguiname": "igDebugLocateItem", "defaults": {}, "funcname": "DebugLocateItem", - "location": "imgui_internal:3446", + "location": "imgui_internal:3930", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItem", "ret": "void", @@ -16142,7 +17326,7 @@ "cimguiname": "igDebugLocateItemOnHover", "defaults": {}, "funcname": "DebugLocateItemOnHover", - "location": "imgui_internal:3447", + "location": "imgui_internal:3931", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemOnHover", "ret": "void", @@ -16159,7 +17343,7 @@ "cimguiname": "igDebugLocateItemResolveWithLastItem", "defaults": {}, "funcname": "DebugLocateItemResolveWithLastItem", - "location": "imgui_internal:3448", + "location": "imgui_internal:3932", "namespace": "ImGui", "ov_cimguiname": "igDebugLocateItemResolveWithLastItem", "ret": "void", @@ -16186,7 +17370,7 @@ "defaults": {}, "funcname": "DebugLog", "isvararg": "...)", - "location": "imgui_internal:3439", + "location": "imgui:1067", "namespace": "ImGui", "ov_cimguiname": "igDebugLog", "ret": "void", @@ -16212,7 +17396,7 @@ "cimguiname": "igDebugLogV", "defaults": {}, "funcname": "DebugLogV", - "location": "imgui_internal:3440", + "location": "imgui:1068", "namespace": "ImGui", "ov_cimguiname": "igDebugLogV", "ret": "void", @@ -16234,7 +17418,7 @@ "cimguiname": "igDebugNodeColumns", "defaults": {}, "funcname": "DebugNodeColumns", - "location": "imgui_internal:3453", + "location": "imgui_internal:3938", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeColumns", "ret": "void", @@ -16260,7 +17444,7 @@ "cimguiname": "igDebugNodeDockNode", "defaults": {}, "funcname": "DebugNodeDockNode", - "location": "imgui_internal:3454", + "location": "imgui_internal:3939", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDockNode", "ret": "void", @@ -16298,7 +17482,7 @@ "cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "defaults": {}, "funcname": "DebugNodeDrawCmdShowMeshAndBoundingBox", - "location": "imgui_internal:3456", + "location": "imgui_internal:3941", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawCmdShowMeshAndBoundingBox", "ret": "void", @@ -16332,7 +17516,7 @@ "cimguiname": "igDebugNodeDrawList", "defaults": {}, "funcname": "DebugNodeDrawList", - "location": "imgui_internal:3455", + "location": "imgui_internal:3940", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeDrawList", "ret": "void", @@ -16354,7 +17538,7 @@ "cimguiname": "igDebugNodeFont", "defaults": {}, "funcname": "DebugNodeFont", - "location": "imgui_internal:3457", + "location": "imgui_internal:3942", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFont", "ret": "void", @@ -16380,7 +17564,7 @@ "cimguiname": "igDebugNodeFontGlyph", "defaults": {}, "funcname": "DebugNodeFontGlyph", - "location": "imgui_internal:3458", + "location": "imgui_internal:3943", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeFontGlyph", "ret": "void", @@ -16402,7 +17586,7 @@ "cimguiname": "igDebugNodeInputTextState", "defaults": {}, "funcname": "DebugNodeInputTextState", - "location": "imgui_internal:3463", + "location": "imgui_internal:3948", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeInputTextState", "ret": "void", @@ -16410,6 +17594,58 @@ "stname": "" } ], + "igDebugNodeMultiSelectState": [ + { + "args": "(ImGuiMultiSelectState* state)", + "argsT": [ + { + "name": "state", + "type": "ImGuiMultiSelectState*" + } + ], + "argsoriginal": "(ImGuiMultiSelectState* state)", + "call_args": "(state)", + "cimguiname": "igDebugNodeMultiSelectState", + "defaults": {}, + "funcname": "DebugNodeMultiSelectState", + "location": "imgui_internal:3950", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeMultiSelectState", + "ret": "void", + "signature": "(ImGuiMultiSelectState*)", + "stname": "" + } + ], + "igDebugNodePlatformMonitor": [ + { + "args": "(ImGuiPlatformMonitor* monitor,const char* label,int idx)", + "argsT": [ + { + "name": "monitor", + "type": "ImGuiPlatformMonitor*" + }, + { + "name": "label", + "type": "const char*" + }, + { + "name": "idx", + "type": "int" + } + ], + "argsoriginal": "(ImGuiPlatformMonitor* monitor,const char* label,int idx)", + "call_args": "(monitor,label,idx)", + "cimguiname": "igDebugNodePlatformMonitor", + "defaults": {}, + "funcname": "DebugNodePlatformMonitor", + "location": "imgui_internal:3956", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodePlatformMonitor", + "ret": "void", + "signature": "(ImGuiPlatformMonitor*,const char*,int)", + "stname": "" + } + ], "igDebugNodeStorage": [ { "args": "(ImGuiStorage* storage,const char* label)", @@ -16428,7 +17664,7 @@ "cimguiname": "igDebugNodeStorage", "defaults": {}, "funcname": "DebugNodeStorage", - "location": "imgui_internal:3459", + "location": "imgui_internal:3944", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeStorage", "ret": "void", @@ -16454,7 +17690,7 @@ "cimguiname": "igDebugNodeTabBar", "defaults": {}, "funcname": "DebugNodeTabBar", - "location": "imgui_internal:3460", + "location": "imgui_internal:3945", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTabBar", "ret": "void", @@ -16476,7 +17712,7 @@ "cimguiname": "igDebugNodeTable", "defaults": {}, "funcname": "DebugNodeTable", - "location": "imgui_internal:3461", + "location": "imgui_internal:3946", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTable", "ret": "void", @@ -16498,7 +17734,7 @@ "cimguiname": "igDebugNodeTableSettings", "defaults": {}, "funcname": "DebugNodeTableSettings", - "location": "imgui_internal:3462", + "location": "imgui_internal:3947", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeTableSettings", "ret": "void", @@ -16506,6 +17742,28 @@ "stname": "" } ], + "igDebugNodeTypingSelectState": [ + { + "args": "(ImGuiTypingSelectState* state)", + "argsT": [ + { + "name": "state", + "type": "ImGuiTypingSelectState*" + } + ], + "argsoriginal": "(ImGuiTypingSelectState* state)", + "call_args": "(state)", + "cimguiname": "igDebugNodeTypingSelectState", + "defaults": {}, + "funcname": "DebugNodeTypingSelectState", + "location": "imgui_internal:3949", + "namespace": "ImGui", + "ov_cimguiname": "igDebugNodeTypingSelectState", + "ret": "void", + "signature": "(ImGuiTypingSelectState*)", + "stname": "" + } + ], "igDebugNodeViewport": [ { "args": "(ImGuiViewportP* viewport)", @@ -16520,7 +17778,7 @@ "cimguiname": "igDebugNodeViewport", "defaults": {}, "funcname": "DebugNodeViewport", - "location": "imgui_internal:3468", + "location": "imgui_internal:3955", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeViewport", "ret": "void", @@ -16546,7 +17804,7 @@ "cimguiname": "igDebugNodeWindow", "defaults": {}, "funcname": "DebugNodeWindow", - "location": "imgui_internal:3464", + "location": "imgui_internal:3951", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindow", "ret": "void", @@ -16568,7 +17826,7 @@ "cimguiname": "igDebugNodeWindowSettings", "defaults": {}, "funcname": "DebugNodeWindowSettings", - "location": "imgui_internal:3465", + "location": "imgui_internal:3952", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowSettings", "ret": "void", @@ -16594,7 +17852,7 @@ "cimguiname": "igDebugNodeWindowsList", "defaults": {}, "funcname": "DebugNodeWindowsList", - "location": "imgui_internal:3466", + "location": "imgui_internal:3953", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsList", "ret": "void", @@ -16624,7 +17882,7 @@ "cimguiname": "igDebugNodeWindowsListByBeginStackParent", "defaults": {}, "funcname": "DebugNodeWindowsListByBeginStackParent", - "location": "imgui_internal:3467", + "location": "imgui_internal:3954", "namespace": "ImGui", "ov_cimguiname": "igDebugNodeWindowsListByBeginStackParent", "ret": "void", @@ -16646,7 +17904,7 @@ "cimguiname": "igDebugRenderKeyboardPreview", "defaults": {}, "funcname": "DebugRenderKeyboardPreview", - "location": "imgui_internal:3469", + "location": "imgui_internal:3957", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderKeyboardPreview", "ret": "void", @@ -16676,7 +17934,7 @@ "cimguiname": "igDebugRenderViewportThumbnail", "defaults": {}, "funcname": "DebugRenderViewportThumbnail", - "location": "imgui_internal:3470", + "location": "imgui_internal:3958", "namespace": "ImGui", "ov_cimguiname": "igDebugRenderViewportThumbnail", "ret": "void", @@ -16693,7 +17951,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": {}, "funcname": "DebugStartItemPicker", - "location": "imgui_internal:3450", + "location": "imgui:1064", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -16715,7 +17973,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:965", + "location": "imgui:1062", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -16723,6 +17981,32 @@ "stname": "" } ], + "igDebugTextUnformattedWithLocateItem": [ + { + "args": "(const char* line_begin,const char* line_end)", + "argsT": [ + { + "name": "line_begin", + "type": "const char*" + }, + { + "name": "line_end", + "type": "const char*" + } + ], + "argsoriginal": "(const char* line_begin,const char* line_end)", + "call_args": "(line_begin,line_end)", + "cimguiname": "igDebugTextUnformattedWithLocateItem", + "defaults": {}, + "funcname": "DebugTextUnformattedWithLocateItem", + "location": "imgui_internal:3929", + "namespace": "ImGui", + "ov_cimguiname": "igDebugTextUnformattedWithLocateItem", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igDestroyContext": [ { "args": "(ImGuiContext* ctx)", @@ -16739,7 +18023,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:295", + "location": "imgui:329", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -16761,7 +18045,7 @@ "cimguiname": "igDestroyPlatformWindow", "defaults": {}, "funcname": "DestroyPlatformWindow", - "location": "imgui_internal:3000", + "location": "imgui_internal:3417", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindow", "ret": "void", @@ -16778,7 +18062,7 @@ "cimguiname": "igDestroyPlatformWindows", "defaults": {}, "funcname": "DestroyPlatformWindows", - "location": "imgui:983", + "location": "imgui:1085", "namespace": "ImGui", "ov_cimguiname": "igDestroyPlatformWindows", "ret": "void", @@ -16807,7 +18091,7 @@ "node_id": "0" }, "funcname": "DockBuilderAddNode", - "location": "imgui_internal:3230", + "location": "imgui_internal:3679", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderAddNode", "ret": "ImGuiID", @@ -16837,7 +18121,7 @@ "cimguiname": "igDockBuilderCopyDockSpace", "defaults": {}, "funcname": "DockBuilderCopyDockSpace", - "location": "imgui_internal:3237", + "location": "imgui_internal:3686", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyDockSpace", "ret": "void", @@ -16867,7 +18151,7 @@ "cimguiname": "igDockBuilderCopyNode", "defaults": {}, "funcname": "DockBuilderCopyNode", - "location": "imgui_internal:3238", + "location": "imgui_internal:3687", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyNode", "ret": "void", @@ -16893,7 +18177,7 @@ "cimguiname": "igDockBuilderCopyWindowSettings", "defaults": {}, "funcname": "DockBuilderCopyWindowSettings", - "location": "imgui_internal:3239", + "location": "imgui_internal:3688", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderCopyWindowSettings", "ret": "void", @@ -16919,7 +18203,7 @@ "cimguiname": "igDockBuilderDockWindow", "defaults": {}, "funcname": "DockBuilderDockWindow", - "location": "imgui_internal:3227", + "location": "imgui_internal:3676", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderDockWindow", "ret": "void", @@ -16941,7 +18225,7 @@ "cimguiname": "igDockBuilderFinish", "defaults": {}, "funcname": "DockBuilderFinish", - "location": "imgui_internal:3240", + "location": "imgui_internal:3689", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderFinish", "ret": "void", @@ -16963,7 +18247,7 @@ "cimguiname": "igDockBuilderGetCentralNode", "defaults": {}, "funcname": "DockBuilderGetCentralNode", - "location": "imgui_internal:3229", + "location": "imgui_internal:3678", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetCentralNode", "ret": "ImGuiDockNode*", @@ -16985,7 +18269,7 @@ "cimguiname": "igDockBuilderGetNode", "defaults": {}, "funcname": "DockBuilderGetNode", - "location": "imgui_internal:3228", + "location": "imgui_internal:3677", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderGetNode", "ret": "ImGuiDockNode*", @@ -17007,7 +18291,7 @@ "cimguiname": "igDockBuilderRemoveNode", "defaults": {}, "funcname": "DockBuilderRemoveNode", - "location": "imgui_internal:3231", + "location": "imgui_internal:3680", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNode", "ret": "void", @@ -17029,7 +18313,7 @@ "cimguiname": "igDockBuilderRemoveNodeChildNodes", "defaults": {}, "funcname": "DockBuilderRemoveNodeChildNodes", - "location": "imgui_internal:3233", + "location": "imgui_internal:3682", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeChildNodes", "ret": "void", @@ -17057,7 +18341,7 @@ "clear_settings_refs": "true" }, "funcname": "DockBuilderRemoveNodeDockedWindows", - "location": "imgui_internal:3232", + "location": "imgui_internal:3681", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderRemoveNodeDockedWindows", "ret": "void", @@ -17083,7 +18367,7 @@ "cimguiname": "igDockBuilderSetNodePos", "defaults": {}, "funcname": "DockBuilderSetNodePos", - "location": "imgui_internal:3234", + "location": "imgui_internal:3683", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodePos", "ret": "void", @@ -17109,7 +18393,7 @@ "cimguiname": "igDockBuilderSetNodeSize", "defaults": {}, "funcname": "DockBuilderSetNodeSize", - "location": "imgui_internal:3235", + "location": "imgui_internal:3684", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSetNodeSize", "ret": "void", @@ -17147,7 +18431,7 @@ "cimguiname": "igDockBuilderSplitNode", "defaults": {}, "funcname": "DockBuilderSplitNode", - "location": "imgui_internal:3236", + "location": "imgui_internal:3685", "namespace": "ImGui", "ov_cimguiname": "igDockBuilderSplitNode", "ret": "ImGuiID", @@ -17193,7 +18477,7 @@ "cimguiname": "igDockContextCalcDropPosForDocking", "defaults": {}, "funcname": "DockContextCalcDropPosForDocking", - "location": "imgui_internal:3203", + "location": "imgui_internal:3651", "namespace": "ImGui", "ov_cimguiname": "igDockContextCalcDropPosForDocking", "ret": "bool", @@ -17223,7 +18507,7 @@ "cimguiname": "igDockContextClearNodes", "defaults": {}, "funcname": "DockContextClearNodes", - "location": "imgui_internal:3194", + "location": "imgui_internal:3640", "namespace": "ImGui", "ov_cimguiname": "igDockContextClearNodes", "ret": "void", @@ -17245,7 +18529,7 @@ "cimguiname": "igDockContextEndFrame", "defaults": {}, "funcname": "DockContextEndFrame", - "location": "imgui_internal:3198", + "location": "imgui_internal:3644", "namespace": "ImGui", "ov_cimguiname": "igDockContextEndFrame", "ret": "void", @@ -17271,7 +18555,7 @@ "cimguiname": "igDockContextFindNodeByID", "defaults": {}, "funcname": "DockContextFindNodeByID", - "location": "imgui_internal:3204", + "location": "imgui_internal:3652", "namespace": "ImGui", "ov_cimguiname": "igDockContextFindNodeByID", "ret": "ImGuiDockNode*", @@ -17293,7 +18577,7 @@ "cimguiname": "igDockContextGenNodeID", "defaults": {}, "funcname": "DockContextGenNodeID", - "location": "imgui_internal:3199", + "location": "imgui_internal:3645", "namespace": "ImGui", "ov_cimguiname": "igDockContextGenNodeID", "ret": "ImGuiID", @@ -17315,7 +18599,7 @@ "cimguiname": "igDockContextInitialize", "defaults": {}, "funcname": "DockContextInitialize", - "location": "imgui_internal:3192", + "location": "imgui_internal:3638", "namespace": "ImGui", "ov_cimguiname": "igDockContextInitialize", "ret": "void", @@ -17337,7 +18621,7 @@ "cimguiname": "igDockContextNewFrameUpdateDocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateDocking", - "location": "imgui_internal:3197", + "location": "imgui_internal:3643", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateDocking", "ret": "void", @@ -17359,7 +18643,7 @@ "cimguiname": "igDockContextNewFrameUpdateUndocking", "defaults": {}, "funcname": "DockContextNewFrameUpdateUndocking", - "location": "imgui_internal:3196", + "location": "imgui_internal:3642", "namespace": "ImGui", "ov_cimguiname": "igDockContextNewFrameUpdateUndocking", "ret": "void", @@ -17367,6 +18651,64 @@ "stname": "" } ], + "igDockContextProcessUndockNode": [ + { + "args": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node)", + "call_args": "(ctx,node)", + "cimguiname": "igDockContextProcessUndockNode", + "defaults": {}, + "funcname": "DockContextProcessUndockNode", + "location": "imgui_internal:3650", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextProcessUndockNode", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*)", + "stname": "" + } + ], + "igDockContextProcessUndockWindow": [ + { + "args": "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "clear_persistent_docking_ref", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref=true)", + "call_args": "(ctx,window,clear_persistent_docking_ref)", + "cimguiname": "igDockContextProcessUndockWindow", + "defaults": { + "clear_persistent_docking_ref": "true" + }, + "funcname": "DockContextProcessUndockWindow", + "location": "imgui_internal:3649", + "namespace": "ImGui", + "ov_cimguiname": "igDockContextProcessUndockWindow", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiWindow*,bool)", + "stname": "" + } + ], "igDockContextQueueDock": [ { "args": "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)", @@ -17405,7 +18747,7 @@ "cimguiname": "igDockContextQueueDock", "defaults": {}, "funcname": "DockContextQueueDock", - "location": "imgui_internal:3200", + "location": "imgui_internal:3646", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueDock", "ret": "void", @@ -17431,7 +18773,7 @@ "cimguiname": "igDockContextQueueUndockNode", "defaults": {}, "funcname": "DockContextQueueUndockNode", - "location": "imgui_internal:3202", + "location": "imgui_internal:3648", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockNode", "ret": "void", @@ -17457,7 +18799,7 @@ "cimguiname": "igDockContextQueueUndockWindow", "defaults": {}, "funcname": "DockContextQueueUndockWindow", - "location": "imgui_internal:3201", + "location": "imgui_internal:3647", "namespace": "ImGui", "ov_cimguiname": "igDockContextQueueUndockWindow", "ret": "void", @@ -17479,7 +18821,7 @@ "cimguiname": "igDockContextRebuildNodes", "defaults": {}, "funcname": "DockContextRebuildNodes", - "location": "imgui_internal:3195", + "location": "imgui_internal:3641", "namespace": "ImGui", "ov_cimguiname": "igDockContextRebuildNodes", "ret": "void", @@ -17501,7 +18843,7 @@ "cimguiname": "igDockContextShutdown", "defaults": {}, "funcname": "DockContextShutdown", - "location": "imgui_internal:3193", + "location": "imgui_internal:3639", "namespace": "ImGui", "ov_cimguiname": "igDockContextShutdown", "ret": "void", @@ -17523,7 +18865,7 @@ "cimguiname": "igDockNodeBeginAmendTabBar", "defaults": {}, "funcname": "DockNodeBeginAmendTabBar", - "location": "imgui_internal:3205", + "location": "imgui_internal:3654", "namespace": "ImGui", "ov_cimguiname": "igDockNodeBeginAmendTabBar", "ret": "bool", @@ -17540,7 +18882,7 @@ "cimguiname": "igDockNodeEndAmendTabBar", "defaults": {}, "funcname": "DockNodeEndAmendTabBar", - "location": "imgui_internal:3206", + "location": "imgui_internal:3655", "namespace": "ImGui", "ov_cimguiname": "igDockNodeEndAmendTabBar", "ret": "void", @@ -17562,7 +18904,7 @@ "cimguiname": "igDockNodeGetDepth", "defaults": {}, "funcname": "DockNodeGetDepth", - "location": "imgui_internal:3209", + "location": "imgui_internal:3658", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetDepth", "ret": "int", @@ -17584,7 +18926,7 @@ "cimguiname": "igDockNodeGetRootNode", "defaults": {}, "funcname": "DockNodeGetRootNode", - "location": "imgui_internal:3207", + "location": "imgui_internal:3656", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetRootNode", "ret": "ImGuiDockNode*", @@ -17606,7 +18948,7 @@ "cimguiname": "igDockNodeGetWindowMenuButtonId", "defaults": {}, "funcname": "DockNodeGetWindowMenuButtonId", - "location": "imgui_internal:3210", + "location": "imgui_internal:3659", "namespace": "ImGui", "ov_cimguiname": "igDockNodeGetWindowMenuButtonId", "ret": "ImGuiID", @@ -17632,7 +18974,7 @@ "cimguiname": "igDockNodeIsInHierarchyOf", "defaults": {}, "funcname": "DockNodeIsInHierarchyOf", - "location": "imgui_internal:3208", + "location": "imgui_internal:3657", "namespace": "ImGui", "ov_cimguiname": "igDockNodeIsInHierarchyOf", "ret": "bool", @@ -17640,12 +18982,42 @@ "stname": "" } ], - "igDockSpace": [ + "igDockNodeWindowMenuHandler_Default": [ { - "args": "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "args": "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)", "argsT": [ { - "name": "id", + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "node", + "type": "ImGuiDockNode*" + }, + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)", + "call_args": "(ctx,node,tab_bar)", + "cimguiname": "igDockNodeWindowMenuHandler_Default", + "defaults": {}, + "funcname": "DockNodeWindowMenuHandler_Default", + "location": "imgui_internal:3653", + "namespace": "ImGui", + "ov_cimguiname": "igDockNodeWindowMenuHandler_Default", + "ret": "void", + "signature": "(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)", + "stname": "" + } + ], + "igDockSpace": [ + { + "args": "(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "argsT": [ + { + "name": "dockspace_id", "type": "ImGuiID" }, { @@ -17661,8 +19033,8 @@ "type": "const ImGuiWindowClass*" } ], - "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", - "call_args": "(id,size,flags,window_class)", + "argsoriginal": "(ImGuiID dockspace_id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", + "call_args": "(dockspace_id,size,flags,window_class)", "cimguiname": "igDockSpace", "defaults": { "flags": "0", @@ -17670,7 +19042,7 @@ "window_class": "NULL" }, "funcname": "DockSpace", - "location": "imgui:815", + "location": "imgui:885", "namespace": "ImGui", "ov_cimguiname": "igDockSpace", "ret": "ImGuiID", @@ -17680,8 +19052,12 @@ ], "igDockSpaceOverViewport": [ { - "args": "(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", + "args": "(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)", "argsT": [ + { + "name": "dockspace_id", + "type": "ImGuiID" + }, { "name": "viewport", "type": "const ImGuiViewport*" @@ -17695,20 +19071,21 @@ "type": "const ImGuiWindowClass*" } ], - "argsoriginal": "(const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", - "call_args": "(viewport,flags,window_class)", + "argsoriginal": "(ImGuiID dockspace_id=0,const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))", + "call_args": "(dockspace_id,viewport,flags,window_class)", "cimguiname": "igDockSpaceOverViewport", "defaults": { + "dockspace_id": "0", "flags": "0", "viewport": "NULL", "window_class": "NULL" }, "funcname": "DockSpaceOverViewport", - "location": "imgui:816", + "location": "imgui:886", "namespace": "ImGui", "ov_cimguiname": "igDockSpaceOverViewport", "ret": "ImGuiID", - "signature": "(const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)", + "signature": "(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)", "stname": "" } ], @@ -17754,7 +19131,7 @@ "cimguiname": "igDragBehavior", "defaults": {}, "funcname": "DragBehavior", - "location": "imgui_internal:3388", + "location": "imgui_internal:3865", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -17806,7 +19183,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:547", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -17858,7 +19235,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:548", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -17910,7 +19287,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:549", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -17962,7 +19339,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:550", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -18023,7 +19400,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:551", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -18075,7 +19452,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:552", + "location": "imgui:601", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -18127,7 +19504,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:553", + "location": "imgui:602", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -18179,7 +19556,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:554", + "location": "imgui:603", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -18231,7 +19608,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:555", + "location": "imgui:604", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -18292,7 +19669,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:556", + "location": "imgui:605", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -18348,7 +19725,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:557", + "location": "imgui:606", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -18408,7 +19785,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:558", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -18430,7 +19807,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:451", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -18447,7 +19824,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:337", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -18455,6 +19832,32 @@ "stname": "" } ], + "igEndBoxSelect": [ + { + "args": "(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags)", + "argsT": [ + { + "name": "scope_rect", + "type": "const ImRect" + }, + { + "name": "ms_flags", + "type": "ImGuiMultiSelectFlags" + } + ], + "argsoriginal": "(const ImRect& scope_rect,ImGuiMultiSelectFlags ms_flags)", + "call_args": "(scope_rect,ms_flags)", + "cimguiname": "igEndBoxSelect", + "defaults": {}, + "funcname": "EndBoxSelect", + "location": "imgui_internal:3718", + "namespace": "ImGui", + "ov_cimguiname": "igEndBoxSelect", + "ret": "void", + "signature": "(const ImRect,ImGuiMultiSelectFlags)", + "stname": "" + } + ], "igEndChild": [ { "args": "()", @@ -18464,7 +19867,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:349", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -18472,23 +19875,6 @@ "stname": "" } ], - "igEndChildFrame": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igEndChildFrame", - "defaults": {}, - "funcname": "EndChildFrame", - "location": "imgui:906", - "namespace": "ImGui", - "ov_cimguiname": "igEndChildFrame", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igEndColumns": [ { "args": "()", @@ -18498,7 +19884,7 @@ "cimguiname": "igEndColumns", "defaults": {}, "funcname": "EndColumns", - "location": "imgui_internal:3264", + "location": "imgui_internal:3731", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -18515,7 +19901,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:530", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -18532,7 +19918,7 @@ "cimguiname": "igEndComboPreview", "defaults": {}, "funcname": "EndComboPreview", - "location": "imgui_internal:3097", + "location": "imgui_internal:3524", "namespace": "ImGui", "ov_cimguiname": "igEndComboPreview", "ret": "void", @@ -18549,7 +19935,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:850", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -18557,6 +19943,23 @@ "stname": "" } ], + "igEndDisabledOverrideReenable": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndDisabledOverrideReenable", + "defaults": {}, + "funcname": "EndDisabledOverrideReenable", + "location": "imgui_internal:3487", + "namespace": "ImGui", + "ov_cimguiname": "igEndDisabledOverrideReenable", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igEndDragDropSource": [ { "args": "()", @@ -18566,7 +19969,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:839", + "location": "imgui:909", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -18583,7 +19986,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:842", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -18600,7 +20003,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:303", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -18617,7 +20020,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:455", + "location": "imgui:507", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -18634,7 +20037,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:642", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -18651,7 +20054,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:668", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -18668,7 +20071,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:670", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -18685,7 +20088,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:666", + "location": "imgui:728", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -18693,6 +20096,23 @@ "stname": "" } ], + "igEndMultiSelect": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndMultiSelect", + "defaults": {}, + "funcname": "EndMultiSelect", + "location": "imgui:693", + "namespace": "ImGui", + "ov_cimguiname": "igEndMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "()", + "stname": "" + } + ], "igEndPopup": [ { "args": "()", @@ -18702,7 +20122,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:695", + "location": "imgui:765", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -18719,7 +20139,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:796", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -18736,7 +20156,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:798", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -18753,7 +20173,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:749", + "location": "imgui:817", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -18770,7 +20190,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:677", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -18798,7 +20218,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndFrameRecover", - "location": "imgui_internal:3443", + "location": "imgui_internal:3923", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndFrameRecover", "ret": "void", @@ -18826,7 +20246,7 @@ "user_data": "NULL" }, "funcname": "ErrorCheckEndWindowRecover", - "location": "imgui_internal:3444", + "location": "imgui_internal:3924", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckEndWindowRecover", "ret": "void", @@ -18843,7 +20263,7 @@ "cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "defaults": {}, "funcname": "ErrorCheckUsingSetCursorPosToExtendParentBoundaries", - "location": "imgui_internal:3445", + "location": "imgui_internal:3925", "namespace": "ImGui", "ov_cimguiname": "igErrorCheckUsingSetCursorPosToExtendParentBoundaries", "ret": "void", @@ -18869,7 +20289,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": {}, "funcname": "FindBestWindowPosForPopup", - "location": "imgui_internal:3086", + "location": "imgui_internal:3509", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -18916,7 +20336,7 @@ "cimguiname": "igFindBestWindowPosForPopupEx", "defaults": {}, "funcname": "FindBestWindowPosForPopupEx", - "location": "imgui_internal:3087", + "location": "imgui_internal:3510", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -18925,6 +20345,28 @@ "stname": "" } ], + "igFindBlockingModal": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igFindBlockingModal", + "defaults": {}, + "funcname": "FindBlockingModal", + "location": "imgui_internal:3508", + "namespace": "ImGui", + "ov_cimguiname": "igFindBlockingModal", + "ret": "ImGuiWindow*", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igFindBottomMostVisibleWindowWithinBeginStack": [ { "args": "(ImGuiWindow* window)", @@ -18939,7 +20381,7 @@ "cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "defaults": {}, "funcname": "FindBottomMostVisibleWindowWithinBeginStack", - "location": "imgui_internal:2973", + "location": "imgui_internal:3385", "namespace": "ImGui", "ov_cimguiname": "igFindBottomMostVisibleWindowWithinBeginStack", "ret": "ImGuiWindow*", @@ -18961,7 +20403,7 @@ "cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "defaults": {}, "funcname": "FindHoveredViewportFromPlatformWindowStack", - "location": "imgui_internal:3004", + "location": "imgui_internal:3421", "namespace": "ImGui", "ov_cimguiname": "igFindHoveredViewportFromPlatformWindowStack", "ret": "ImGuiViewportP*", @@ -18969,6 +20411,40 @@ "stname": "" } ], + "igFindHoveredWindowEx": [ + { + "args": "(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", + "argsT": [ + { + "name": "pos", + "type": "const ImVec2" + }, + { + "name": "find_first_and_in_any_viewport", + "type": "bool" + }, + { + "name": "out_hovered_window", + "type": "ImGuiWindow**" + }, + { + "name": "out_hovered_window_under_moving_window", + "type": "ImGuiWindow**" + } + ], + "argsoriginal": "(const ImVec2& pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)", + "call_args": "(pos,find_first_and_in_any_viewport,out_hovered_window,out_hovered_window_under_moving_window)", + "cimguiname": "igFindHoveredWindowEx", + "defaults": {}, + "funcname": "FindHoveredWindowEx", + "location": "imgui_internal:3403", + "namespace": "ImGui", + "ov_cimguiname": "igFindHoveredWindowEx", + "ret": "void", + "signature": "(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)", + "stname": "" + } + ], "igFindOrCreateColumns": [ { "args": "(ImGuiWindow* window,ImGuiID id)", @@ -18987,7 +20463,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": {}, "funcname": "FindOrCreateColumns", - "location": "imgui_internal:3269", + "location": "imgui_internal:3736", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiOldColumns*", @@ -18995,28 +20471,6 @@ "stname": "" } ], - "igFindOrCreateWindowSettings": [ - { - "args": "(const char* name)", - "argsT": [ - { - "name": "name", - "type": "const char*" - } - ], - "argsoriginal": "(const char* name)", - "call_args": "(name)", - "cimguiname": "igFindOrCreateWindowSettings", - "defaults": {}, - "funcname": "FindOrCreateWindowSettings", - "location": "imgui_internal:3012", - "namespace": "ImGui", - "ov_cimguiname": "igFindOrCreateWindowSettings", - "ret": "ImGuiWindowSettings*", - "signature": "(const char*)", - "stname": "" - } - ], "igFindRenderedTextEnd": [ { "args": "(const char* text,const char* text_end)", @@ -19037,7 +20491,7 @@ "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "imgui_internal:3354", + "location": "imgui_internal:3830", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -19059,7 +20513,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": {}, "funcname": "FindSettingsHandler", - "location": "imgui_internal:3015", + "location": "imgui_internal:3429", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -19081,7 +20535,7 @@ "cimguiname": "igFindViewportByID", "defaults": {}, "funcname": "FindViewportByID", - "location": "imgui:984", + "location": "imgui:1086", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByID", "ret": "ImGuiViewport*", @@ -19103,7 +20557,7 @@ "cimguiname": "igFindViewportByPlatformHandle", "defaults": {}, "funcname": "FindViewportByPlatformHandle", - "location": "imgui:985", + "location": "imgui:1087", "namespace": "ImGui", "ov_cimguiname": "igFindViewportByPlatformHandle", "ret": "ImGuiViewport*", @@ -19125,7 +20579,7 @@ "cimguiname": "igFindWindowByID", "defaults": {}, "funcname": "FindWindowByID", - "location": "imgui_internal:2950", + "location": "imgui_internal:3357", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -19147,7 +20601,7 @@ "cimguiname": "igFindWindowByName", "defaults": {}, "funcname": "FindWindowByName", - "location": "imgui_internal:2951", + "location": "imgui_internal:3358", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -19169,7 +20623,7 @@ "cimguiname": "igFindWindowDisplayIndex", "defaults": {}, "funcname": "FindWindowDisplayIndex", - "location": "imgui_internal:2972", + "location": "imgui_internal:3384", "namespace": "ImGui", "ov_cimguiname": "igFindWindowDisplayIndex", "ret": "int", @@ -19177,7 +20631,7 @@ "stname": "" } ], - "igFindWindowSettings": [ + "igFindWindowSettingsByID": [ { "args": "(ImGuiID id)", "argsT": [ @@ -19188,44 +20642,18 @@ ], "argsoriginal": "(ImGuiID id)", "call_args": "(id)", - "cimguiname": "igFindWindowSettings", + "cimguiname": "igFindWindowSettingsByID", "defaults": {}, - "funcname": "FindWindowSettings", - "location": "imgui_internal:3011", + "funcname": "FindWindowSettingsByID", + "location": "imgui_internal:3433", "namespace": "ImGui", - "ov_cimguiname": "igFindWindowSettings", + "ov_cimguiname": "igFindWindowSettingsByID", "ret": "ImGuiWindowSettings*", "signature": "(ImGuiID)", "stname": "" } ], - "igFocusTopMostWindowUnderOne": [ - { - "args": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)", - "argsT": [ - { - "name": "under_this_window", - "type": "ImGuiWindow*" - }, - { - "name": "ignore_window", - "type": "ImGuiWindow*" - } - ], - "argsoriginal": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)", - "call_args": "(under_this_window,ignore_window)", - "cimguiname": "igFocusTopMostWindowUnderOne", - "defaults": {}, - "funcname": "FocusTopMostWindowUnderOne", - "location": "imgui_internal:2967", - "namespace": "ImGui", - "ov_cimguiname": "igFocusTopMostWindowUnderOne", - "ret": "void", - "signature": "(ImGuiWindow*,ImGuiWindow*)", - "stname": "" - } - ], - "igFocusWindow": [ + "igFindWindowSettingsByWindow": [ { "args": "(ImGuiWindow* window)", "argsT": [ @@ -19236,14 +20664,115 @@ ], "argsoriginal": "(ImGuiWindow* window)", "call_args": "(window)", - "cimguiname": "igFocusWindow", + "cimguiname": "igFindWindowSettingsByWindow", "defaults": {}, + "funcname": "FindWindowSettingsByWindow", + "location": "imgui_internal:3434", + "namespace": "ImGui", + "ov_cimguiname": "igFindWindowSettingsByWindow", + "ret": "ImGuiWindowSettings*", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], + "igFixupKeyChord": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igFixupKeyChord", + "defaults": {}, + "funcname": "FixupKeyChord", + "location": "imgui_internal:3561", + "namespace": "ImGui", + "ov_cimguiname": "igFixupKeyChord", + "ret": "ImGuiKeyChord", + "signature": "(ImGuiKeyChord)", + "stname": "" + } + ], + "igFocusItem": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igFocusItem", + "defaults": {}, + "funcname": "FocusItem", + "location": "imgui_internal:3548", + "namespace": "ImGui", + "ov_cimguiname": "igFocusItem", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igFocusTopMostWindowUnderOne": [ + { + "args": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)", + "argsT": [ + { + "name": "under_this_window", + "type": "ImGuiWindow*" + }, + { + "name": "ignore_window", + "type": "ImGuiWindow*" + }, + { + "name": "filter_viewport", + "type": "ImGuiViewport*" + }, + { + "name": "flags", + "type": "ImGuiFocusRequestFlags" + } + ], + "argsoriginal": "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)", + "call_args": "(under_this_window,ignore_window,filter_viewport,flags)", + "cimguiname": "igFocusTopMostWindowUnderOne", + "defaults": {}, + "funcname": "FocusTopMostWindowUnderOne", + "location": "imgui_internal:3379", + "namespace": "ImGui", + "ov_cimguiname": "igFocusTopMostWindowUnderOne", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiWindow*,ImGuiViewport*,ImGuiFocusRequestFlags)", + "stname": "" + } + ], + "igFocusWindow": [ + { + "args": "(ImGuiWindow* window,ImGuiFocusRequestFlags flags)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "flags", + "type": "ImGuiFocusRequestFlags" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiFocusRequestFlags flags=0)", + "call_args": "(window,flags)", + "cimguiname": "igFocusWindow", + "defaults": { + "flags": "0" + }, "funcname": "FocusWindow", - "location": "imgui_internal:2966", + "location": "imgui_internal:3378", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", - "signature": "(ImGuiWindow*)", + "signature": "(ImGuiWindow*,ImGuiFocusRequestFlags)", "stname": "" } ], @@ -19261,7 +20790,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": {}, "funcname": "GcAwakeTransientWindowBuffers", - "location": "imgui_internal:3436", + "location": "imgui_internal:3919", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -19278,7 +20807,7 @@ "cimguiname": "igGcCompactTransientMiscBuffers", "defaults": {}, "funcname": "GcCompactTransientMiscBuffers", - "location": "imgui_internal:3434", + "location": "imgui_internal:3917", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientMiscBuffers", "ret": "void", @@ -19300,7 +20829,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": {}, "funcname": "GcCompactTransientWindowBuffers", - "location": "imgui_internal:3435", + "location": "imgui_internal:3918", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -19317,7 +20846,7 @@ "cimguiname": "igGetActiveID", "defaults": {}, "funcname": "GetActiveID", - "location": "imgui_internal:3038", + "location": "imgui_internal:3458", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -19347,7 +20876,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:973", + "location": "imgui:1076", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -19356,21 +20885,6 @@ } ], "igGetBackgroundDrawList": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetBackgroundDrawList", - "defaults": {}, - "funcname": "GetBackgroundDrawList", - "location": "imgui:891", - "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawList_Nil", - "ret": "ImDrawList*", - "signature": "()", - "stname": "" - }, { "args": "(ImGuiViewport* viewport)", "argsT": [ @@ -19379,19 +20893,43 @@ "type": "ImGuiViewport*" } ], - "argsoriginal": "(ImGuiViewport* viewport)", + "argsoriginal": "(ImGuiViewport* viewport=((void*)0))", "call_args": "(viewport)", "cimguiname": "igGetBackgroundDrawList", - "defaults": {}, + "defaults": { + "viewport": "NULL" + }, "funcname": "GetBackgroundDrawList", - "location": "imgui:893", + "location": "imgui:964", "namespace": "ImGui", - "ov_cimguiname": "igGetBackgroundDrawList_ViewportPtr", + "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", "signature": "(ImGuiViewport*)", "stname": "" } ], + "igGetBoxSelectState": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igGetBoxSelectState", + "defaults": {}, + "funcname": "GetBoxSelectState", + "location": "imgui_internal:3725", + "namespace": "ImGui", + "ov_cimguiname": "igGetBoxSelectState", + "ret": "ImGuiBoxSelectState*", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igGetClipboardText": [ { "args": "()", @@ -19401,7 +20939,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:952", + "location": "imgui:1048", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -19429,7 +20967,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:435", + "location": "imgui:472", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -19449,7 +20987,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:436", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -19457,23 +20995,29 @@ "stname": "" }, { - "args": "(ImU32 col)", + "args": "(ImU32 col,float alpha_mul)", "argsT": [ { "name": "col", "type": "ImU32" + }, + { + "name": "alpha_mul", + "type": "float" } ], - "argsoriginal": "(ImU32 col)", - "call_args": "(col)", + "argsoriginal": "(ImU32 col,float alpha_mul=1.0f)", + "call_args": "(col,alpha_mul)", "cimguiname": "igGetColorU32", - "defaults": {}, + "defaults": { + "alpha_mul": "1.0f" + }, "funcname": "GetColorU32", - "location": "imgui:437", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", - "signature": "(ImU32)", + "signature": "(ImU32,float)", "stname": "" } ], @@ -19486,7 +21030,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:786", + "location": "imgui:856", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -19512,7 +21056,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": {}, "funcname": "GetColumnNormFromOffset", - "location": "imgui_internal:3271", + "location": "imgui_internal:3738", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -19536,7 +21080,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:789", + "location": "imgui:859", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -19562,7 +21106,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": {}, "funcname": "GetColumnOffsetFromNorm", - "location": "imgui_internal:3270", + "location": "imgui_internal:3737", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -19586,7 +21130,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:787", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -19603,7 +21147,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:791", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -19629,7 +21173,7 @@ "cimguiname": "igGetColumnsID", "defaults": {}, "funcname": "GetColumnsID", - "location": "imgui_internal:3268", + "location": "imgui_internal:3735", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -19651,7 +21195,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:389", + "location": "imgui:489", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -19660,52 +21204,6 @@ "stname": "" } ], - "igGetContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetContentRegionMax", - "defaults": {}, - "funcname": "GetContentRegionMax", - "location": "imgui:390", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igGetContentRegionMaxAbs": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetContentRegionMaxAbs", - "defaults": {}, - "funcname": "GetContentRegionMaxAbs", - "location": "imgui_internal:3061", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetContentRegionMaxAbs", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetCurrentContext": [ { "args": "()", @@ -19715,7 +21213,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:296", + "location": "imgui:330", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -19732,7 +21230,7 @@ "cimguiname": "igGetCurrentFocusScope", "defaults": {}, "funcname": "GetCurrentFocusScope", - "location": "imgui_internal:3252", + "location": "imgui_internal:3701", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentFocusScope", "ret": "ImGuiID", @@ -19740,6 +21238,23 @@ "stname": "" } ], + "igGetCurrentTabBar": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetCurrentTabBar", + "defaults": {}, + "funcname": "GetCurrentTabBar", + "location": "imgui_internal:3797", + "namespace": "ImGui", + "ov_cimguiname": "igGetCurrentTabBar", + "ret": "ImGuiTabBar*", + "signature": "()", + "stname": "" + } + ], "igGetCurrentTable": [ { "args": "()", @@ -19749,7 +21264,7 @@ "cimguiname": "igGetCurrentTable", "defaults": {}, "funcname": "GetCurrentTable", - "location": "imgui_internal:3283", + "location": "imgui_internal:3752", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentTable", "ret": "ImGuiTable*", @@ -19766,7 +21281,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": {}, "funcname": "GetCurrentWindow", - "location": "imgui_internal:2949", + "location": "imgui_internal:3356", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -19783,7 +21298,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": {}, "funcname": "GetCurrentWindowRead", - "location": "imgui_internal:2948", + "location": "imgui_internal:3355", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -19805,7 +21320,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:456", + "location": "imgui:490", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -19823,7 +21338,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:457", + "location": "imgui:491", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -19840,7 +21355,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:458", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -19862,7 +21377,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:463", + "location": "imgui:487", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -19885,7 +21400,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:462", + "location": "imgui:496", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -19903,7 +21418,7 @@ "cimguiname": "igGetDefaultFont", "defaults": {}, "funcname": "GetDefaultFont", - "location": "imgui_internal:2977", + "location": "imgui_internal:3392", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -19920,7 +21435,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:843", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -19937,7 +21452,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:305", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -19954,7 +21469,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:901", + "location": "imgui:972", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -19971,7 +21486,7 @@ "cimguiname": "igGetFocusID", "defaults": {}, "funcname": "GetFocusID", - "location": "imgui_internal:3039", + "location": "imgui_internal:3459", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -19988,7 +21503,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:432", + "location": "imgui:469", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -20005,7 +21520,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:433", + "location": "imgui:470", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -20027,7 +21542,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:434", + "location": "imgui:471", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -20037,21 +21552,6 @@ } ], "igGetForegroundDrawList": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetForegroundDrawList", - "defaults": {}, - "funcname": "GetForegroundDrawList", - "location": "imgui:892", - "namespace": "ImGui", - "ov_cimguiname": "igGetForegroundDrawList_Nil", - "ret": "ImDrawList*", - "signature": "()", - "stname": "" - }, { "args": "(ImGuiViewport* viewport)", "argsT": [ @@ -20060,12 +21560,14 @@ "type": "ImGuiViewport*" } ], - "argsoriginal": "(ImGuiViewport* viewport)", + "argsoriginal": "(ImGuiViewport* viewport=((void*)0))", "call_args": "(viewport)", "cimguiname": "igGetForegroundDrawList", - "defaults": {}, + "defaults": { + "viewport": "NULL" + }, "funcname": "GetForegroundDrawList", - "location": "imgui:894", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_ViewportPtr", "ret": "ImDrawList*", @@ -20085,7 +21587,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui_internal:2978", + "location": "imgui_internal:3393", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList_WindowPtr", "ret": "ImDrawList*", @@ -20102,7 +21604,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:900", + "location": "imgui:971", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -20119,7 +21621,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:468", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -20136,7 +21638,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:469", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -20153,7 +21655,7 @@ "cimguiname": "igGetHoveredID", "defaults": {}, "funcname": "GetHoveredID", - "location": "imgui_internal:3043", + "location": "imgui_internal:3463", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -20175,7 +21677,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:487", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -20199,7 +21701,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:488", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -20219,12 +21721,32 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:489", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "" + }, + { + "args": "(int int_id)", + "argsT": [ + { + "name": "int_id", + "type": "int" + } + ], + "argsoriginal": "(int int_id)", + "call_args": "(int_id)", + "cimguiname": "igGetID", + "defaults": {}, + "funcname": "GetID", + "location": "imgui:533", + "namespace": "ImGui", + "ov_cimguiname": "igGetID_Int", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "" } ], "igGetIDWithSeed": [ @@ -20249,12 +21771,36 @@ "cimguiname": "igGetIDWithSeed", "defaults": {}, "funcname": "GetIDWithSeed", - "location": "imgui_internal:3048", + "location": "imgui_internal:3468", "namespace": "ImGui", - "ov_cimguiname": "igGetIDWithSeed", + "ov_cimguiname": "igGetIDWithSeed_Str", "ret": "ImGuiID", "signature": "(const char*,const char*,ImGuiID)", "stname": "" + }, + { + "args": "(int n,ImGuiID seed)", + "argsT": [ + { + "name": "n", + "type": "int" + }, + { + "name": "seed", + "type": "ImGuiID" + } + ], + "argsoriginal": "(int n,ImGuiID seed)", + "call_args": "(n,seed)", + "cimguiname": "igGetIDWithSeed", + "defaults": {}, + "funcname": "GetIDWithSeed", + "location": "imgui_internal:3469", + "namespace": "ImGui", + "ov_cimguiname": "igGetIDWithSeed_Int", + "ret": "ImGuiID", + "signature": "(int,ImGuiID)", + "stname": "" } ], "igGetIO": [ @@ -20266,7 +21812,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:300", + "location": "imgui:334", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -20289,7 +21835,7 @@ "cimguiname": "igGetInputTextState", "defaults": {}, "funcname": "GetInputTextState", - "location": "imgui_internal:3419", + "location": "imgui_internal:3900", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -20306,7 +21852,7 @@ "cimguiname": "igGetItemFlags", "defaults": {}, "funcname": "GetItemFlags", - "location": "imgui_internal:3037", + "location": "imgui_internal:3457", "namespace": "ImGui", "ov_cimguiname": "igGetItemFlags", "ret": "ImGuiItemFlags", @@ -20323,7 +21869,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:878", + "location": "imgui:952", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -20345,7 +21891,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:880", + "location": "imgui:954", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -20368,7 +21914,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:879", + "location": "imgui:953", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -20391,7 +21937,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:881", + "location": "imgui:955", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -20409,7 +21955,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": {}, "funcname": "GetItemStatusFlags", - "location": "imgui_internal:3036", + "location": "imgui_internal:3456", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -20419,35 +21965,51 @@ ], "igGetKeyChordName": [ { - "args": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", + "args": "(ImGuiKeyChord key_chord)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" - }, - { - "name": "out_buf", - "type": "char*" - }, - { - "name": "out_buf_size", - "type": "int" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)", - "call_args": "(key_chord,out_buf,out_buf_size)", + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", "cimguiname": "igGetKeyChordName", "defaults": {}, "funcname": "GetKeyChordName", - "location": "imgui_internal:3135", + "location": "imgui_internal:3573", "namespace": "ImGui", "ov_cimguiname": "igGetKeyChordName", - "ret": "void", - "signature": "(ImGuiKeyChord,char*,int)", + "ret": "const char*", + "signature": "(ImGuiKeyChord)", "stname": "" } ], "igGetKeyData": [ + { + "args": "(ImGuiContext* ctx,ImGuiKey key)", + "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiContext* ctx,ImGuiKey key)", + "call_args": "(ctx,key)", + "cimguiname": "igGetKeyData", + "defaults": {}, + "funcname": "GetKeyData", + "location": "imgui_internal:3571", + "namespace": "ImGui", + "ov_cimguiname": "igGetKeyData_ContextPtr", + "ret": "ImGuiKeyData*", + "signature": "(ImGuiContext*,ImGuiKey)", + "stname": "" + }, { "args": "(ImGuiKey key)", "argsT": [ @@ -20461,36 +22023,14 @@ "cimguiname": "igGetKeyData", "defaults": {}, "funcname": "GetKeyData", - "location": "imgui_internal:3134", + "location": "imgui_internal:3572", "namespace": "ImGui", - "ov_cimguiname": "igGetKeyData", + "ov_cimguiname": "igGetKeyData_Key", "ret": "ImGuiKeyData*", "signature": "(ImGuiKey)", "stname": "" } ], - "igGetKeyIndex": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igGetKeyIndex", - "defaults": {}, - "funcname": "GetKeyIndex", - "location": "imgui:3212", - "namespace": "ImGui", - "ov_cimguiname": "igGetKeyIndex", - "ret": "ImGuiKey", - "signature": "(ImGuiKey)", - "stname": "" - } - ], "igGetKeyMagnitude2d": [ { "args": "(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)", @@ -20521,7 +22061,7 @@ "cimguiname": "igGetKeyMagnitude2d", "defaults": {}, "funcname": "GetKeyMagnitude2d", - "location": "imgui_internal:3138", + "location": "imgui_internal:3576", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetKeyMagnitude2d", @@ -20544,7 +22084,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:926", + "location": "imgui:996", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -20566,7 +22106,7 @@ "cimguiname": "igGetKeyOwner", "defaults": {}, "funcname": "GetKeyOwner", - "location": "imgui_internal:3156", + "location": "imgui_internal:3595", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwner", "ret": "ImGuiID", @@ -20576,23 +22116,27 @@ ], "igGetKeyOwnerData": [ { - "args": "(ImGuiKey key)", + "args": "(ImGuiContext* ctx,ImGuiKey key)", "argsT": [ + { + "name": "ctx", + "type": "ImGuiContext*" + }, { "name": "key", "type": "ImGuiKey" } ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", + "argsoriginal": "(ImGuiContext* ctx,ImGuiKey key)", + "call_args": "(ctx,key)", "cimguiname": "igGetKeyOwnerData", "defaults": {}, "funcname": "GetKeyOwnerData", - "location": "imgui_internal:3160", + "location": "imgui_internal:3600", "namespace": "ImGui", "ov_cimguiname": "igGetKeyOwnerData", "ret": "ImGuiKeyOwnerData*", - "signature": "(ImGuiKey)", + "signature": "(ImGuiContext*,ImGuiKey)", "stname": "" } ], @@ -20618,7 +22162,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:925", + "location": "imgui:995", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -20635,7 +22179,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:888", + "location": "imgui:961", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -20657,7 +22201,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:937", + "location": "imgui:1033", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -20674,7 +22218,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:946", + "location": "imgui:1042", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -20707,7 +22251,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:944", + "location": "imgui:1040", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -20730,7 +22274,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:941", + "location": "imgui:1037", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -20753,7 +22297,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:942", + "location": "imgui:1038", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -20762,6 +22306,28 @@ "stname": "" } ], + "igGetMultiSelectState": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igGetMultiSelectState", + "defaults": {}, + "funcname": "GetMultiSelectState", + "location": "imgui_internal:3726", + "namespace": "ImGui", + "ov_cimguiname": "igGetMultiSelectState", + "ret": "ImGuiMultiSelectState*", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igGetNavTweakPressedAmount": [ { "args": "(ImGuiAxis axis)", @@ -20776,7 +22342,7 @@ "cimguiname": "igGetNavTweakPressedAmount", "defaults": {}, "funcname": "GetNavTweakPressedAmount", - "location": "imgui_internal:3139", + "location": "imgui_internal:3577", "namespace": "ImGui", "ov_cimguiname": "igGetNavTweakPressedAmount", "ret": "float", @@ -20793,7 +22359,7 @@ "cimguiname": "igGetPlatformIO", "defaults": {}, "funcname": "GetPlatformIO", - "location": "imgui:980", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetPlatformIO", "ret": "ImGuiPlatformIO*", @@ -20820,7 +22386,7 @@ "cimguiname": "igGetPopupAllowedExtentRect", "defaults": {}, "funcname": "GetPopupAllowedExtentRect", - "location": "imgui_internal:3083", + "location": "imgui_internal:3505", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetPopupAllowedExtentRect", @@ -20838,7 +22404,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:401", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -20855,7 +22421,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:402", + "location": "imgui:439", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -20872,7 +22438,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:397", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -20889,7 +22455,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:398", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -20911,7 +22477,7 @@ "cimguiname": "igGetShortcutRoutingData", "defaults": {}, "funcname": "GetShortcutRoutingData", - "location": "imgui_internal:3188", + "location": "imgui_internal:3634", "namespace": "ImGui", "ov_cimguiname": "igGetShortcutRoutingData", "ret": "ImGuiKeyRoutingData*", @@ -20928,7 +22494,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:904", + "location": "imgui:975", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -20945,7 +22511,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:301", + "location": "imgui:336", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -20968,7 +22534,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:902", + "location": "imgui:973", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -20990,7 +22556,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:438", + "location": "imgui:475", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -20999,6 +22565,28 @@ "stname": "" } ], + "igGetStyleVarInfo": [ + { + "args": "(ImGuiStyleVar idx)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + } + ], + "argsoriginal": "(ImGuiStyleVar idx)", + "call_args": "(idx)", + "cimguiname": "igGetStyleVarInfo", + "defaults": {}, + "funcname": "GetStyleVarInfo", + "location": "imgui_internal:3485", + "namespace": "ImGui", + "ov_cimguiname": "igGetStyleVarInfo", + "ret": "const ImGuiDataVarInfo*", + "signature": "(ImGuiStyleVar)", + "stname": "" + } + ], "igGetTextLineHeight": [ { "args": "()", @@ -21008,7 +22596,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:466", + "location": "imgui:509", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -21025,7 +22613,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:467", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -21042,7 +22630,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:899", + "location": "imgui:970", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -21059,7 +22647,7 @@ "cimguiname": "igGetTopMostAndVisiblePopupModal", "defaults": {}, "funcname": "GetTopMostAndVisiblePopupModal", - "location": "imgui_internal:3085", + "location": "imgui_internal:3507", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostAndVisiblePopupModal", "ret": "ImGuiWindow*", @@ -21076,7 +22664,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": {}, "funcname": "GetTopMostPopupModal", - "location": "imgui_internal:3084", + "location": "imgui_internal:3506", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -21093,7 +22681,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:624", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -21123,7 +22711,7 @@ "cimguiname": "igGetTypematicRepeatRate", "defaults": {}, "funcname": "GetTypematicRepeatRate", - "location": "imgui_internal:3141", + "location": "imgui_internal:3579", "namespace": "ImGui", "ov_cimguiname": "igGetTypematicRepeatRate", "ret": "void", @@ -21131,6 +22719,30 @@ "stname": "" } ], + "igGetTypingSelectRequest": [ + { + "args": "(ImGuiTypingSelectFlags flags)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiTypingSelectFlags" + } + ], + "argsoriginal": "(ImGuiTypingSelectFlags flags=ImGuiTypingSelectFlags_None)", + "call_args": "(flags)", + "cimguiname": "igGetTypingSelectRequest", + "defaults": { + "flags": "ImGuiTypingSelectFlags_None" + }, + "funcname": "GetTypingSelectRequest", + "location": "imgui_internal:3711", + "namespace": "ImGui", + "ov_cimguiname": "igGetTypingSelectRequest", + "ret": "ImGuiTypingSelectRequest*", + "signature": "(ImGuiTypingSelectFlags)", + "stname": "" + } + ], "igGetVersion": [ { "args": "()", @@ -21140,7 +22752,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:317", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -21162,7 +22774,7 @@ "cimguiname": "igGetViewportPlatformMonitor", "defaults": {}, "funcname": "GetViewportPlatformMonitor", - "location": "imgui_internal:3003", + "location": "imgui_internal:3420", "namespace": "ImGui", "ov_cimguiname": "igGetViewportPlatformMonitor", "ret": "const ImGuiPlatformMonitor*", @@ -21184,7 +22796,7 @@ "cimguiname": "igGetWindowAlwaysWantOwnTabBar", "defaults": {}, "funcname": "GetWindowAlwaysWantOwnTabBar", - "location": "imgui_internal:3212", + "location": "imgui_internal:3661", "namespace": "ImGui", "ov_cimguiname": "igGetWindowAlwaysWantOwnTabBar", "ret": "bool", @@ -21192,52 +22804,6 @@ "stname": "" } ], - "igGetWindowContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMax", - "defaults": {}, - "funcname": "GetWindowContentRegionMax", - "location": "imgui:392", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igGetWindowContentRegionMin": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMin", - "defaults": {}, - "funcname": "GetWindowContentRegionMin", - "location": "imgui:391", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMin", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetWindowDockID": [ { "args": "()", @@ -21247,7 +22813,7 @@ "cimguiname": "igGetWindowDockID", "defaults": {}, "funcname": "GetWindowDockID", - "location": "imgui:819", + "location": "imgui:889", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockID", "ret": "ImGuiID", @@ -21264,7 +22830,7 @@ "cimguiname": "igGetWindowDockNode", "defaults": {}, "funcname": "GetWindowDockNode", - "location": "imgui_internal:3211", + "location": "imgui_internal:3660", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDockNode", "ret": "ImGuiDockNode*", @@ -21281,7 +22847,7 @@ "cimguiname": "igGetWindowDpiScale", "defaults": {}, "funcname": "GetWindowDpiScale", - "location": "imgui:358", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDpiScale", "ret": "float", @@ -21298,7 +22864,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:357", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -21315,7 +22881,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:362", + "location": "imgui:407", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -21337,7 +22903,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:359", + "location": "imgui:404", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -21364,7 +22930,7 @@ "cimguiname": "igGetWindowResizeBorderID", "defaults": {}, "funcname": "GetWindowResizeBorderID", - "location": "imgui_internal:3384", + "location": "imgui_internal:3861", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeBorderID", "ret": "ImGuiID", @@ -21390,7 +22956,7 @@ "cimguiname": "igGetWindowResizeCornerID", "defaults": {}, "funcname": "GetWindowResizeCornerID", - "location": "imgui_internal:3383", + "location": "imgui_internal:3860", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeCornerID", "ret": "ImGuiID", @@ -21416,7 +22982,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": {}, "funcname": "GetWindowScrollbarID", - "location": "imgui_internal:3382", + "location": "imgui_internal:3859", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -21446,7 +23012,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": {}, "funcname": "GetWindowScrollbarRect", - "location": "imgui_internal:3381", + "location": "imgui_internal:3858", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -21469,7 +23035,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:360", + "location": "imgui:405", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -21487,7 +23053,7 @@ "cimguiname": "igGetWindowViewport", "defaults": {}, "funcname": "GetWindowViewport", - "location": "imgui:363", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igGetWindowViewport", "ret": "ImGuiViewport*", @@ -21504,7 +23070,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:361", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -21526,7 +23092,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:448", + "location": "imgui_internal:450", "ov_cimguiname": "igImAbs_Int", "ret": "int", "signature": "(int)", @@ -21545,7 +23111,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:449", + "location": "imgui_internal:451", "ov_cimguiname": "igImAbs_Float", "ret": "float", "signature": "(float)", @@ -21564,7 +23130,7 @@ "cimguiname": "igImAbs", "defaults": {}, "funcname": "ImAbs", - "location": "imgui_internal:450", + "location": "imgui_internal:452", "ov_cimguiname": "igImAbs_double", "ret": "double", "signature": "(double)", @@ -21589,7 +23155,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": {}, "funcname": "ImAlphaBlendColors", - "location": "imgui_internal:338", + "location": "imgui_internal:361", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -21630,7 +23196,7 @@ "cimguiname": "igImBezierCubicCalc", "defaults": {}, "funcname": "ImBezierCubicCalc", - "location": "imgui_internal:494", + "location": "imgui_internal:497", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicCalc", "ret": "void", @@ -21676,7 +23242,7 @@ "cimguiname": "igImBezierCubicClosestPoint", "defaults": {}, "funcname": "ImBezierCubicClosestPoint", - "location": "imgui_internal:495", + "location": "imgui_internal:498", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPoint", "ret": "void", @@ -21722,7 +23288,7 @@ "cimguiname": "igImBezierCubicClosestPointCasteljau", "defaults": {}, "funcname": "ImBezierCubicClosestPointCasteljau", - "location": "imgui_internal:496", + "location": "imgui_internal:499", "nonUDT": 1, "ov_cimguiname": "igImBezierCubicClosestPointCasteljau", "ret": "void", @@ -21760,7 +23326,7 @@ "cimguiname": "igImBezierQuadraticCalc", "defaults": {}, "funcname": "ImBezierQuadraticCalc", - "location": "imgui_internal:497", + "location": "imgui_internal:500", "nonUDT": 1, "ov_cimguiname": "igImBezierQuadraticCalc", "ret": "void", @@ -21768,6 +23334,31 @@ "stname": "" } ], + "igImBitArrayClearAllBits": [ + { + "args": "(ImU32* arr,int bitcount)", + "argsT": [ + { + "name": "arr", + "type": "ImU32*" + }, + { + "name": "bitcount", + "type": "int" + } + ], + "argsoriginal": "(ImU32* arr,int bitcount)", + "call_args": "(arr,bitcount)", + "cimguiname": "igImBitArrayClearAllBits", + "defaults": {}, + "funcname": "ImBitArrayClearAllBits", + "location": "imgui_internal:570", + "ov_cimguiname": "igImBitArrayClearAllBits", + "ret": "void", + "signature": "(ImU32*,int)", + "stname": "" + } + ], "igImBitArrayClearBit": [ { "args": "(ImU32* arr,int n)", @@ -21786,13 +23377,34 @@ "cimguiname": "igImBitArrayClearBit", "defaults": {}, "funcname": "ImBitArrayClearBit", - "location": "imgui_internal:565", + "location": "imgui_internal:572", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", "stname": "" } ], + "igImBitArrayGetStorageSizeInBytes": [ + { + "args": "(int bitcount)", + "argsT": [ + { + "name": "bitcount", + "type": "int" + } + ], + "argsoriginal": "(int bitcount)", + "call_args": "(bitcount)", + "cimguiname": "igImBitArrayGetStorageSizeInBytes", + "defaults": {}, + "funcname": "ImBitArrayGetStorageSizeInBytes", + "location": "imgui_internal:569", + "ov_cimguiname": "igImBitArrayGetStorageSizeInBytes", + "ret": "size_t", + "signature": "(int)", + "stname": "" + } + ], "igImBitArraySetBit": [ { "args": "(ImU32* arr,int n)", @@ -21811,7 +23423,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": {}, "funcname": "ImBitArraySetBit", - "location": "imgui_internal:566", + "location": "imgui_internal:573", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -21840,7 +23452,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": {}, "funcname": "ImBitArraySetBitRange", - "location": "imgui_internal:567", + "location": "imgui_internal:574", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -21865,7 +23477,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": {}, "funcname": "ImBitArrayTestBit", - "location": "imgui_internal:564", + "location": "imgui_internal:571", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -21886,7 +23498,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": {}, "funcname": "ImCharIsBlankA", - "location": "imgui_internal:360", + "location": "imgui_internal:383", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -21907,16 +23519,37 @@ "cimguiname": "igImCharIsBlankW", "defaults": {}, "funcname": "ImCharIsBlankW", - "location": "imgui_internal:361", + "location": "imgui_internal:384", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", "stname": "" } ], + "igImCharIsXdigitA": [ + { + "args": "(char c)", + "argsT": [ + { + "name": "c", + "type": "char" + } + ], + "argsoriginal": "(char c)", + "call_args": "(c)", + "cimguiname": "igImCharIsXdigitA", + "defaults": {}, + "funcname": "ImCharIsXdigitA", + "location": "imgui_internal:385", + "ov_cimguiname": "igImCharIsXdigitA", + "ret": "bool", + "signature": "(char)", + "stname": "" + } + ], "igImClamp": [ { - "args": "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx)", + "args": "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx)", "argsT": [ { "name": "pOut", @@ -21932,19 +23565,19 @@ }, { "name": "mx", - "type": "ImVec2" + "type": "const ImVec2" } ], - "argsoriginal": "(const ImVec2& v,const ImVec2& mn,ImVec2 mx)", + "argsoriginal": "(const ImVec2& v,const ImVec2&mn,const ImVec2&mx)", "call_args": "(v,mn,mx)", "cimguiname": "igImClamp", "defaults": {}, "funcname": "ImClamp", - "location": "imgui_internal:472", + "location": "imgui_internal:474", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", - "signature": "(const ImVec2,const ImVec2,ImVec2)", + "signature": "(const ImVec2,const ImVec2,const ImVec2)", "stname": "" } ], @@ -21966,7 +23599,7 @@ "cimguiname": "igImDot", "defaults": {}, "funcname": "ImDot", - "location": "imgui_internal:485", + "location": "imgui_internal:487", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -21995,7 +23628,7 @@ "cimguiname": "igImExponentialMovingAverage", "defaults": {}, "funcname": "ImExponentialMovingAverage", - "location": "imgui_internal:490", + "location": "imgui_internal:493", "ov_cimguiname": "igImExponentialMovingAverage", "ret": "float", "signature": "(float,float,int)", @@ -22016,7 +23649,7 @@ "cimguiname": "igImFileClose", "defaults": {}, "funcname": "ImFileClose", - "location": "imgui_internal:421", + "location": "imgui_internal:424", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -22037,7 +23670,7 @@ "cimguiname": "igImFileGetSize", "defaults": {}, "funcname": "ImFileGetSize", - "location": "imgui_internal:422", + "location": "imgui_internal:425", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -22073,7 +23706,7 @@ "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "imgui_internal:428", + "location": "imgui_internal:431", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -22098,7 +23731,7 @@ "cimguiname": "igImFileOpen", "defaults": {}, "funcname": "ImFileOpen", - "location": "imgui_internal:420", + "location": "imgui_internal:423", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -22131,7 +23764,7 @@ "cimguiname": "igImFileRead", "defaults": {}, "funcname": "ImFileRead", - "location": "imgui_internal:423", + "location": "imgui_internal:426", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -22164,7 +23797,7 @@ "cimguiname": "igImFileWrite", "defaults": {}, "funcname": "ImFileWrite", - "location": "imgui_internal:424", + "location": "imgui_internal:427", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -22185,7 +23818,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:480", + "location": "imgui_internal:484", "ov_cimguiname": "igImFloor_Float", "ret": "float", "signature": "(float)", @@ -22208,7 +23841,7 @@ "cimguiname": "igImFloor", "defaults": {}, "funcname": "ImFloor", - "location": "imgui_internal:482", + "location": "imgui_internal:485", "nonUDT": 1, "ov_cimguiname": "igImFloor_Vec2", "ret": "void", @@ -22216,51 +23849,6 @@ "stname": "" } ], - "igImFloorSigned": [ - { - "args": "(float f)", - "argsT": [ - { - "name": "f", - "type": "float" - } - ], - "argsoriginal": "(float f)", - "call_args": "(f)", - "cimguiname": "igImFloorSigned", - "defaults": {}, - "funcname": "ImFloorSigned", - "location": "imgui_internal:481", - "ov_cimguiname": "igImFloorSigned_Float", - "ret": "float", - "signature": "(float)", - "stname": "" - }, - { - "args": "(ImVec2 *pOut,const ImVec2 v)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - }, - { - "name": "v", - "type": "const ImVec2" - } - ], - "argsoriginal": "(const ImVec2& v)", - "call_args": "(v)", - "cimguiname": "igImFloorSigned", - "defaults": {}, - "funcname": "ImFloorSigned", - "location": "imgui_internal:483", - "nonUDT": 1, - "ov_cimguiname": "igImFloorSigned_Vec2", - "ret": "void", - "signature": "(const ImVec2)", - "stname": "" - } - ], "igImFontAtlasBuildFinish": [ { "args": "(ImFontAtlas* atlas)", @@ -22275,7 +23863,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": {}, "funcname": "ImFontAtlasBuildFinish", - "location": "imgui_internal:3509", + "location": "imgui_internal:3996", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22296,7 +23884,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": {}, "funcname": "ImFontAtlasBuildInit", - "location": "imgui_internal:3506", + "location": "imgui_internal:3993", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -22321,7 +23909,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "imgui_internal:3512", + "location": "imgui_internal:3999", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -22366,7 +23954,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": {}, "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "imgui_internal:3513", + "location": "imgui_internal:4000", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -22391,7 +23979,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": {}, "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "imgui_internal:3508", + "location": "imgui_internal:3995", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -22440,7 +24028,7 @@ "cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender32bppRectFromString", - "location": "imgui_internal:3511", + "location": "imgui_internal:3998", "ov_cimguiname": "igImFontAtlasBuildRender32bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)", @@ -22489,7 +24077,7 @@ "cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "defaults": {}, "funcname": "ImFontAtlasBuildRender8bppRectFromString", - "location": "imgui_internal:3510", + "location": "imgui_internal:3997", "ov_cimguiname": "igImFontAtlasBuildRender8bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -22526,7 +24114,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": {}, "funcname": "ImFontAtlasBuildSetupFont", - "location": "imgui_internal:3507", + "location": "imgui_internal:3994", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -22542,13 +24130,34 @@ "cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "defaults": {}, "funcname": "ImFontAtlasGetBuilderForStbTruetype", - "location": "imgui_internal:3504", + "location": "imgui_internal:3990", "ov_cimguiname": "igImFontAtlasGetBuilderForStbTruetype", "ret": "const ImFontBuilderIO*", "signature": "()", "stname": "" } ], + "igImFontAtlasUpdateConfigDataPointers": [ + { + "args": "(ImFontAtlas* atlas)", + "argsT": [ + { + "name": "atlas", + "type": "ImFontAtlas*" + } + ], + "argsoriginal": "(ImFontAtlas* atlas)", + "call_args": "(atlas)", + "cimguiname": "igImFontAtlasUpdateConfigDataPointers", + "defaults": {}, + "funcname": "ImFontAtlasUpdateConfigDataPointers", + "location": "imgui_internal:3992", + "ov_cimguiname": "igImFontAtlasUpdateConfigDataPointers", + "ret": "void", + "signature": "(ImFontAtlas*)", + "stname": "" + } + ], "igImFormatString": [ { "args": "(char* buf,size_t buf_size,const char* fmt,...)", @@ -22576,7 +24185,7 @@ "defaults": {}, "funcname": "ImFormatString", "isvararg": "...)", - "location": "imgui_internal:365", + "location": "imgui_internal:389", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -22610,7 +24219,7 @@ "defaults": {}, "funcname": "ImFormatStringToTempBuffer", "isvararg": "...)", - "location": "imgui_internal:367", + "location": "imgui_internal:391", "ov_cimguiname": "igImFormatStringToTempBuffer", "ret": "void", "signature": "(const char**,const char**,const char*,...)", @@ -22643,7 +24252,7 @@ "cimguiname": "igImFormatStringToTempBufferV", "defaults": {}, "funcname": "ImFormatStringToTempBufferV", - "location": "imgui_internal:368", + "location": "imgui_internal:392", "ov_cimguiname": "igImFormatStringToTempBufferV", "ret": "void", "signature": "(const char**,const char**,const char*,va_list)", @@ -22676,41 +24285,16 @@ "cimguiname": "igImFormatStringV", "defaults": {}, "funcname": "ImFormatStringV", - "location": "imgui_internal:366", + "location": "imgui_internal:390", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", "stname": "" } ], - "igImGetDirQuadrantFromDelta": [ - { - "args": "(float dx,float dy)", - "argsT": [ - { - "name": "dx", - "type": "float" - }, - { - "name": "dy", - "type": "float" - } - ], - "argsoriginal": "(float dx,float dy)", - "call_args": "(dx,dy)", - "cimguiname": "igImGetDirQuadrantFromDelta", - "defaults": {}, - "funcname": "ImGetDirQuadrantFromDelta", - "location": "imgui_internal:503", - "ov_cimguiname": "igImGetDirQuadrantFromDelta", - "ret": "ImGuiDir", - "signature": "(float,float)", - "stname": "" - } - ], "igImHashData": [ { - "args": "(const void* data,size_t data_size,ImU32 seed)", + "args": "(const void* data,size_t data_size,ImGuiID seed)", "argsT": [ { "name": "data", @@ -22722,26 +24306,26 @@ }, { "name": "seed", - "type": "ImU32" + "type": "ImGuiID" } ], - "argsoriginal": "(const void* data,size_t data_size,ImU32 seed=0)", + "argsoriginal": "(const void* data,size_t data_size,ImGuiID seed=0)", "call_args": "(data,data_size,seed)", "cimguiname": "igImHashData", "defaults": { "seed": "0" }, "funcname": "ImHashData", - "location": "imgui_internal:329", + "location": "imgui_internal:352", "ov_cimguiname": "igImHashData", "ret": "ImGuiID", - "signature": "(const void*,size_t,ImU32)", + "signature": "(const void*,size_t,ImGuiID)", "stname": "" } ], "igImHashStr": [ { - "args": "(const char* data,size_t data_size,ImU32 seed)", + "args": "(const char* data,size_t data_size,ImGuiID seed)", "argsT": [ { "name": "data", @@ -22753,10 +24337,10 @@ }, { "name": "seed", - "type": "ImU32" + "type": "ImGuiID" } ], - "argsoriginal": "(const char* data,size_t data_size=0,ImU32 seed=0)", + "argsoriginal": "(const char* data,size_t data_size=0,ImGuiID seed=0)", "call_args": "(data,data_size,seed)", "cimguiname": "igImHashStr", "defaults": { @@ -22764,10 +24348,10 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "imgui_internal:330", + "location": "imgui_internal:353", "ov_cimguiname": "igImHashStr", "ret": "ImGuiID", - "signature": "(const char*,size_t,ImU32)", + "signature": "(const char*,size_t,ImGuiID)", "stname": "" } ], @@ -22789,7 +24373,7 @@ "cimguiname": "igImInvLength", "defaults": {}, "funcname": "ImInvLength", - "location": "imgui_internal:479", + "location": "imgui_internal:481", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -22810,7 +24394,7 @@ "cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "defaults": {}, "funcname": "ImIsFloatAboveGuaranteedIntegerPrecision", - "location": "imgui_internal:489", + "location": "imgui_internal:492", "ov_cimguiname": "igImIsFloatAboveGuaranteedIntegerPrecision", "ret": "bool", "signature": "(float)", @@ -22831,7 +24415,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:341", + "location": "imgui_internal:364", "ov_cimguiname": "igImIsPowerOfTwo_Int", "ret": "bool", "signature": "(int)", @@ -22850,7 +24434,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": {}, "funcname": "ImIsPowerOfTwo", - "location": "imgui_internal:342", + "location": "imgui_internal:365", "ov_cimguiname": "igImIsPowerOfTwo_U64", "ret": "bool", "signature": "(ImU64)", @@ -22871,7 +24455,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:477", + "location": "imgui_internal:479", "ov_cimguiname": "igImLengthSqr_Vec2", "ret": "float", "signature": "(const ImVec2)", @@ -22890,7 +24474,7 @@ "cimguiname": "igImLengthSqr", "defaults": {}, "funcname": "ImLengthSqr", - "location": "imgui_internal:478", + "location": "imgui_internal:480", "ov_cimguiname": "igImLengthSqr_Vec4", "ret": "float", "signature": "(const ImVec4)", @@ -22923,7 +24507,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:473", + "location": "imgui_internal:475", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Float", "ret": "void", @@ -22955,7 +24539,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:474", + "location": "imgui_internal:476", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec2Vec2", "ret": "void", @@ -22987,7 +24571,7 @@ "cimguiname": "igImLerp", "defaults": {}, "funcname": "ImLerp", - "location": "imgui_internal:475", + "location": "imgui_internal:477", "nonUDT": 1, "ov_cimguiname": "igImLerp_Vec4", "ret": "void", @@ -23021,7 +24605,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": {}, "funcname": "ImLineClosestPoint", - "location": "imgui_internal:498", + "location": "imgui_internal:501", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -23029,6 +24613,43 @@ "stname": "" } ], + "igImLinearRemapClamp": [ + { + "args": "(float s0,float s1,float d0,float d1,float x)", + "argsT": [ + { + "name": "s0", + "type": "float" + }, + { + "name": "s1", + "type": "float" + }, + { + "name": "d0", + "type": "float" + }, + { + "name": "d1", + "type": "float" + }, + { + "name": "x", + "type": "float" + } + ], + "argsoriginal": "(float s0,float s1,float d0,float d1,float x)", + "call_args": "(s0,s1,d0,d1,x)", + "cimguiname": "igImLinearRemapClamp", + "defaults": {}, + "funcname": "ImLinearRemapClamp", + "location": "imgui_internal:490", + "ov_cimguiname": "igImLinearRemapClamp", + "ret": "float", + "signature": "(float,float,float,float,float)", + "stname": "" + } + ], "igImLinearSweep": [ { "args": "(float current,float target,float speed)", @@ -23051,7 +24672,7 @@ "cimguiname": "igImLinearSweep", "defaults": {}, "funcname": "ImLinearSweep", - "location": "imgui_internal:487", + "location": "imgui_internal:489", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -23072,7 +24693,7 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:446", + "location": "imgui_internal:448", "ov_cimguiname": "igImLog_Float", "ret": "float", "signature": "(float)", @@ -23091,13 +24712,42 @@ "cimguiname": "igImLog", "defaults": {}, "funcname": "ImLog", - "location": "imgui_internal:447", + "location": "imgui_internal:449", "ov_cimguiname": "igImLog_double", "ret": "double", "signature": "(double)", "stname": "" } ], + "igImLowerBound": [ + { + "args": "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)", + "argsT": [ + { + "name": "in_begin", + "type": "ImGuiStoragePair*" + }, + { + "name": "in_end", + "type": "ImGuiStoragePair*" + }, + { + "name": "key", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)", + "call_args": "(in_begin,in_end,key)", + "cimguiname": "igImLowerBound", + "defaults": {}, + "funcname": "ImLowerBound", + "location": "imgui_internal:740", + "ov_cimguiname": "igImLowerBound", + "ret": "ImGuiStoragePair*", + "signature": "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)", + "stname": "" + } + ], "igImMax": [ { "args": "(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs)", @@ -23120,7 +24770,7 @@ "cimguiname": "igImMax", "defaults": {}, "funcname": "ImMax", - "location": "imgui_internal:471", + "location": "imgui_internal:473", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -23150,7 +24800,7 @@ "cimguiname": "igImMin", "defaults": {}, "funcname": "ImMin", - "location": "imgui_internal:470", + "location": "imgui_internal:472", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -23176,7 +24826,7 @@ "cimguiname": "igImModPositive", "defaults": {}, "funcname": "ImModPositive", - "location": "imgui_internal:484", + "location": "imgui_internal:486", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -23205,7 +24855,7 @@ "cimguiname": "igImMul", "defaults": {}, "funcname": "ImMul", - "location": "imgui_internal:488", + "location": "imgui_internal:491", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -23227,7 +24877,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": {}, "funcname": "ImParseFormatFindEnd", - "location": "imgui_internal:370", + "location": "imgui_internal:394", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -23248,7 +24898,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": {}, "funcname": "ImParseFormatFindStart", - "location": "imgui_internal:369", + "location": "imgui_internal:393", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -23273,7 +24923,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": {}, "funcname": "ImParseFormatPrecision", - "location": "imgui_internal:374", + "location": "imgui_internal:398", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -23302,7 +24952,7 @@ "cimguiname": "igImParseFormatSanitizeForPrinting", "defaults": {}, "funcname": "ImParseFormatSanitizeForPrinting", - "location": "imgui_internal:372", + "location": "imgui_internal:396", "ov_cimguiname": "igImParseFormatSanitizeForPrinting", "ret": "void", "signature": "(const char*,char*,size_t)", @@ -23331,7 +24981,7 @@ "cimguiname": "igImParseFormatSanitizeForScanning", "defaults": {}, "funcname": "ImParseFormatSanitizeForScanning", - "location": "imgui_internal:373", + "location": "imgui_internal:397", "ov_cimguiname": "igImParseFormatSanitizeForScanning", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -23360,7 +25010,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": {}, "funcname": "ImParseFormatTrimDecorations", - "location": "imgui_internal:371", + "location": "imgui_internal:395", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -23385,7 +25035,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:444", + "location": "imgui_internal:446", "ov_cimguiname": "igImPow_Float", "ret": "float", "signature": "(float,float)", @@ -23408,7 +25058,7 @@ "cimguiname": "igImPow", "defaults": {}, "funcname": "ImPow", - "location": "imgui_internal:445", + "location": "imgui_internal:447", "ov_cimguiname": "igImPow_double", "ret": "double", "signature": "(double,double)", @@ -23443,7 +25093,7 @@ "cimguiname": "igImQsort", "defaults": {}, "funcname": "ImQsort", - "location": "imgui_internal:334", + "location": "imgui_internal:357", "ov_cimguiname": "igImQsort", "ret": "void", "signature": "(void*,size_t,size_t,int(*)(void const*,void const*))", @@ -23476,7 +25126,7 @@ "cimguiname": "igImRotate", "defaults": {}, "funcname": "ImRotate", - "location": "imgui_internal:486", + "location": "imgui_internal:488", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -23498,7 +25148,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:454", + "location": "imgui_internal:458", "ov_cimguiname": "igImRsqrt_Float", "ret": "float", "signature": "(float)", @@ -23517,7 +25167,7 @@ "cimguiname": "igImRsqrt", "defaults": {}, "funcname": "ImRsqrt", - "location": "imgui_internal:458", + "location": "imgui_internal:460", "ov_cimguiname": "igImRsqrt_double", "ret": "double", "signature": "(double)", @@ -23538,7 +25188,7 @@ "cimguiname": "igImSaturate", "defaults": {}, "funcname": "ImSaturate", - "location": "imgui_internal:476", + "location": "imgui_internal:478", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -23559,7 +25209,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:451", + "location": "imgui_internal:453", "ov_cimguiname": "igImSign_Float", "ret": "float", "signature": "(float)", @@ -23578,7 +25228,7 @@ "cimguiname": "igImSign", "defaults": {}, "funcname": "ImSign", - "location": "imgui_internal:452", + "location": "imgui_internal:454", "ov_cimguiname": "igImSign_double", "ret": "double", "signature": "(double)", @@ -23599,7 +25249,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": {}, "funcname": "ImStrSkipBlank", - "location": "imgui_internal:357", + "location": "imgui_internal:378", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -23620,35 +25270,35 @@ "cimguiname": "igImStrTrimBlanks", "defaults": {}, "funcname": "ImStrTrimBlanks", - "location": "imgui_internal:356", + "location": "imgui_internal:377", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", "stname": "" } ], - "igImStrbolW": [ + "igImStrbol": [ { - "args": "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)", + "args": "(const char* buf_mid_line,const char* buf_begin)", "argsT": [ { "name": "buf_mid_line", - "type": "const ImWchar*" + "type": "const char*" }, { "name": "buf_begin", - "type": "const ImWchar*" + "type": "const char*" } ], - "argsoriginal": "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)", + "argsoriginal": "(const char* buf_mid_line,const char* buf_begin)", "call_args": "(buf_mid_line,buf_begin)", - "cimguiname": "igImStrbolW", + "cimguiname": "igImStrbol", "defaults": {}, - "funcname": "ImStrbolW", - "location": "imgui_internal:354", - "ov_cimguiname": "igImStrbolW", - "ret": "const ImWchar*", - "signature": "(const ImWchar*,const ImWchar*)", + "funcname": "ImStrbol", + "location": "imgui_internal:380", + "ov_cimguiname": "igImStrbol", + "ret": "const char*", + "signature": "(const char*,const char*)", "stname": "" } ], @@ -23674,7 +25324,7 @@ "cimguiname": "igImStrchrRange", "defaults": {}, "funcname": "ImStrchrRange", - "location": "imgui_internal:351", + "location": "imgui_internal:374", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -23695,7 +25345,7 @@ "cimguiname": "igImStrdup", "defaults": {}, "funcname": "ImStrdup", - "location": "imgui_internal:349", + "location": "imgui_internal:372", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -23724,7 +25374,7 @@ "cimguiname": "igImStrdupcpy", "defaults": {}, "funcname": "ImStrdupcpy", - "location": "imgui_internal:350", + "location": "imgui_internal:373", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -23749,7 +25399,7 @@ "cimguiname": "igImStreolRange", "defaults": {}, "funcname": "ImStreolRange", - "location": "imgui_internal:353", + "location": "imgui_internal:375", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -23774,7 +25424,7 @@ "cimguiname": "igImStricmp", "defaults": {}, "funcname": "ImStricmp", - "location": "imgui_internal:346", + "location": "imgui_internal:369", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -23807,7 +25457,7 @@ "cimguiname": "igImStristr", "defaults": {}, "funcname": "ImStristr", - "location": "imgui_internal:355", + "location": "imgui_internal:376", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -23828,7 +25478,7 @@ "cimguiname": "igImStrlenW", "defaults": {}, "funcname": "ImStrlenW", - "location": "imgui_internal:352", + "location": "imgui_internal:379", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -23857,7 +25507,7 @@ "cimguiname": "igImStrncpy", "defaults": {}, "funcname": "ImStrncpy", - "location": "imgui_internal:348", + "location": "imgui_internal:371", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -23886,7 +25536,7 @@ "cimguiname": "igImStrnicmp", "defaults": {}, "funcname": "ImStrnicmp", - "location": "imgui_internal:347", + "location": "imgui_internal:370", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -23915,7 +25565,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": {}, "funcname": "ImTextCharFromUtf8", - "location": "imgui_internal:379", + "location": "imgui_internal:403", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -23940,7 +25590,7 @@ "cimguiname": "igImTextCharToUtf8", "defaults": {}, "funcname": "ImTextCharToUtf8", - "location": "imgui_internal:377", + "location": "imgui_internal:401", "ov_cimguiname": "igImTextCharToUtf8", "ret": "const char*", "signature": "(char[5],unsigned int)", @@ -23965,13 +25615,38 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": {}, "funcname": "ImTextCountCharsFromUtf8", - "location": "imgui_internal:381", + "location": "imgui_internal:405", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", "stname": "" } ], + "igImTextCountLines": [ + { + "args": "(const char* in_text,const char* in_text_end)", + "argsT": [ + { + "name": "in_text", + "type": "const char*" + }, + { + "name": "in_text_end", + "type": "const char*" + } + ], + "argsoriginal": "(const char* in_text,const char* in_text_end)", + "call_args": "(in_text,in_text_end)", + "cimguiname": "igImTextCountLines", + "defaults": {}, + "funcname": "ImTextCountLines", + "location": "imgui_internal:409", + "ov_cimguiname": "igImTextCountLines", + "ret": "int", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igImTextCountUtf8BytesFromChar": [ { "args": "(const char* in_text,const char* in_text_end)", @@ -23990,7 +25665,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromChar", - "location": "imgui_internal:382", + "location": "imgui_internal:406", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -24015,13 +25690,38 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": {}, "funcname": "ImTextCountUtf8BytesFromStr", - "location": "imgui_internal:383", + "location": "imgui_internal:407", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", "stname": "" } ], + "igImTextFindPreviousUtf8Codepoint": [ + { + "args": "(const char* in_text_start,const char* in_text_curr)", + "argsT": [ + { + "name": "in_text_start", + "type": "const char*" + }, + { + "name": "in_text_curr", + "type": "const char*" + } + ], + "argsoriginal": "(const char* in_text_start,const char* in_text_curr)", + "call_args": "(in_text_start,in_text_curr)", + "cimguiname": "igImTextFindPreviousUtf8Codepoint", + "defaults": {}, + "funcname": "ImTextFindPreviousUtf8Codepoint", + "location": "imgui_internal:408", + "ov_cimguiname": "igImTextFindPreviousUtf8Codepoint", + "ret": "const char*", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igImTextStrFromUtf8": [ { "args": "(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining)", @@ -24054,7 +25754,7 @@ "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "imgui_internal:380", + "location": "imgui_internal:404", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -24087,7 +25787,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": {}, "funcname": "ImTextStrToUtf8", - "location": "imgui_internal:378", + "location": "imgui_internal:402", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -24108,7 +25808,7 @@ "cimguiname": "igImToUpper", "defaults": {}, "funcname": "ImToUpper", - "location": "imgui_internal:359", + "location": "imgui_internal:382", "ov_cimguiname": "igImToUpper", "ret": "char", "signature": "(char)", @@ -24137,7 +25837,7 @@ "cimguiname": "igImTriangleArea", "defaults": {}, "funcname": "ImTriangleArea", - "location": "imgui_internal:502", + "location": "imgui_internal:505", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -24185,7 +25885,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": {}, "funcname": "ImTriangleBarycentricCoords", - "location": "imgui_internal:501", + "location": "imgui_internal:504", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -24222,7 +25922,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": {}, "funcname": "ImTriangleClosestPoint", - "location": "imgui_internal:500", + "location": "imgui_internal:503", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -24256,13 +25956,87 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": {}, "funcname": "ImTriangleContainsPoint", - "location": "imgui_internal:499", + "location": "imgui_internal:502", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", "stname": "" } ], + "igImTriangleIsClockwise": [ + { + "args": "(const ImVec2 a,const ImVec2 b,const ImVec2 c)", + "argsT": [ + { + "name": "a", + "type": "const ImVec2" + }, + { + "name": "b", + "type": "const ImVec2" + }, + { + "name": "c", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& a,const ImVec2& b,const ImVec2& c)", + "call_args": "(a,b,c)", + "cimguiname": "igImTriangleIsClockwise", + "defaults": {}, + "funcname": "ImTriangleIsClockwise", + "location": "imgui_internal:506", + "ov_cimguiname": "igImTriangleIsClockwise", + "ret": "bool", + "signature": "(const ImVec2,const ImVec2,const ImVec2)", + "stname": "" + } + ], + "igImTrunc": [ + { + "args": "(float f)", + "argsT": [ + { + "name": "f", + "type": "float" + } + ], + "argsoriginal": "(float f)", + "call_args": "(f)", + "cimguiname": "igImTrunc", + "defaults": {}, + "funcname": "ImTrunc", + "location": "imgui_internal:482", + "ov_cimguiname": "igImTrunc_Float", + "ret": "float", + "signature": "(float)", + "stname": "" + }, + { + "args": "(ImVec2 *pOut,const ImVec2 v)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "v", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& v)", + "call_args": "(v)", + "cimguiname": "igImTrunc", + "defaults": {}, + "funcname": "ImTrunc", + "location": "imgui_internal:483", + "nonUDT": 1, + "ov_cimguiname": "igImTrunc_Vec2", + "ret": "void", + "signature": "(const ImVec2)", + "stname": "" + } + ], "igImUpperPowerOfTwo": [ { "args": "(int v)", @@ -24277,7 +26051,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": {}, "funcname": "ImUpperPowerOfTwo", - "location": "imgui_internal:343", + "location": "imgui_internal:366", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -24286,14 +26060,14 @@ ], "igImage": [ { - "args": "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", + "args": "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", "argsT": [ { "name": "user_texture_id", "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -24313,8 +26087,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", - "call_args": "(user_texture_id,size,uv0,uv1,tint_col,border_col)", + "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", + "call_args": "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)", "cimguiname": "igImage", "defaults": { "border_col": "ImVec4(0,0,0,0)", @@ -24323,7 +26097,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:523", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -24333,7 +26107,7 @@ ], "igImageButton": [ { - "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", "argsT": [ { "name": "str_id", @@ -24344,7 +26118,7 @@ "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -24364,8 +26138,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", - "call_args": "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)", + "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", + "call_args": "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)", "cimguiname": "igImageButton", "defaults": { "bg_col": "ImVec4(0,0,0,0)", @@ -24374,7 +26148,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:524", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -24384,7 +26158,7 @@ ], "igImageButtonEx": [ { - "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)", "argsT": [ { "name": "id", @@ -24395,7 +26169,7 @@ "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -24413,18 +26187,24 @@ { "name": "tint_col", "type": "const ImVec4" + }, + { + "name": "flags", + "type": "ImGuiButtonFlags" } ], - "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col)", - "call_args": "(id,texture_id,size,uv0,uv1,bg_col,tint_col)", + "argsoriginal": "(ImGuiID id,ImTextureID texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)", + "call_args": "(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)", "cimguiname": "igImageButtonEx", - "defaults": {}, + "defaults": { + "flags": "0" + }, "funcname": "ImageButtonEx", - "location": "imgui_internal:3371", + "location": "imgui_internal:3847", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", - "signature": "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)", + "signature": "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4,ImGuiButtonFlags)", "stname": "" } ], @@ -24444,7 +26224,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:452", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -24461,7 +26241,7 @@ "cimguiname": "igInitialize", "defaults": {}, "funcname": "Initialize", - "location": "imgui_internal:2981", + "location": "imgui_internal:3397", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -24508,7 +26288,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:595", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -24555,7 +26335,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:587", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -24592,7 +26372,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:588", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -24629,7 +26409,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:589", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -24666,7 +26446,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:590", + "location": "imgui:639", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -24708,7 +26488,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:591", + "location": "imgui:640", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -24740,7 +26520,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:592", + "location": "imgui:641", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -24772,7 +26552,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:593", + "location": "imgui:642", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -24804,7 +26584,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:594", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -24855,7 +26635,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:596", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -24910,7 +26690,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:597", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -24956,7 +26736,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:584", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -24964,6 +26744,28 @@ "stname": "" } ], + "igInputTextDeactivateHook": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igInputTextDeactivateHook", + "defaults": {}, + "funcname": "InputTextDeactivateHook", + "location": "imgui_internal:3896", + "namespace": "ImGui", + "ov_cimguiname": "igInputTextDeactivateHook", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igInputTextEx": [ { "args": "(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data)", @@ -25009,7 +26811,7 @@ "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "imgui_internal:3415", + "location": "imgui_internal:3895", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -25060,7 +26862,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:585", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -25110,7 +26912,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:586", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -25142,7 +26944,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:511", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -25164,7 +26966,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": {}, "funcname": "IsActiveIdUsingNavDir", - "location": "imgui_internal:3143", + "location": "imgui_internal:3582", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -25186,7 +26988,7 @@ "cimguiname": "igIsAliasKey", "defaults": {}, "funcname": "IsAliasKey", - "location": "imgui_internal:3121", + "location": "imgui_internal:3559", "namespace": "ImGui", "ov_cimguiname": "igIsAliasKey", "ret": "bool", @@ -25203,7 +27005,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:876", + "location": "imgui:950", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -25220,7 +27022,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:877", + "location": "imgui:951", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -25237,7 +27039,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:875", + "location": "imgui:949", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -25254,7 +27056,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:940", + "location": "imgui:1036", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -25280,7 +27082,7 @@ "cimguiname": "igIsClippedEx", "defaults": {}, "funcname": "IsClippedEx", - "location": "imgui_internal:3055", + "location": "imgui_internal:3477", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -25297,7 +27099,7 @@ "cimguiname": "igIsDragDropActive", "defaults": {}, "funcname": "IsDragDropActive", - "location": "imgui_internal:3255", + "location": "imgui_internal:3704", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropActive", "ret": "bool", @@ -25314,7 +27116,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": {}, "funcname": "IsDragDropPayloadBeingAccepted", - "location": "imgui_internal:3258", + "location": "imgui_internal:3707", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -25336,7 +27138,7 @@ "cimguiname": "igIsGamepadKey", "defaults": {}, "funcname": "IsGamepadKey", - "location": "imgui_internal:3119", + "location": "imgui_internal:3557", "namespace": "ImGui", "ov_cimguiname": "igIsGamepadKey", "ret": "bool", @@ -25353,7 +27155,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:871", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -25370,7 +27172,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:866", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -25394,7 +27196,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:868", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -25411,7 +27213,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:872", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -25428,7 +27230,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:873", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -25445,7 +27247,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:870", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -25462,7 +27264,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:867", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -25486,7 +27288,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:865", + "location": "imgui:939", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -25503,7 +27305,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:874", + "location": "imgui:948", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -25520,7 +27322,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": {}, "funcname": "IsItemToggledSelection", - "location": "imgui_internal:3060", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -25537,7 +27339,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:869", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -25545,6 +27347,58 @@ "stname": "" } ], + "igIsKeyChordPressed": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igIsKeyChordPressed", + "defaults": {}, + "funcname": "IsKeyChordPressed", + "location": "imgui:994", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyChordPressed_Nil", + "ret": "bool", + "signature": "(ImGuiKeyChord)", + "stname": "" + }, + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id=0)", + "call_args": "(key_chord,flags,owner_id)", + "cimguiname": "igIsKeyChordPressed", + "defaults": { + "owner_id": "0" + }, + "funcname": "IsKeyChordPressed", + "location": "imgui_internal:3611", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyChordPressed_InputFlags", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)", + "stname": "" + } + ], "igIsKeyDown": [ { "args": "(ImGuiKey key)", @@ -25559,7 +27413,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:922", + "location": "imgui:991", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_Nil", "ret": "bool", @@ -25583,7 +27437,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui_internal:3168", + "location": "imgui_internal:3608", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown_ID", "ret": "bool", @@ -25611,7 +27465,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:923", + "location": "imgui:992", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed_Bool", "ret": "bool", @@ -25619,61 +27473,33 @@ "stname": "" }, { - "args": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id)", "argsT": [ { "name": "key", "type": "ImGuiKey" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" - } - ], - "argsoriginal": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)", - "call_args": "(key,owner_id,flags)", - "cimguiname": "igIsKeyPressed", - "defaults": { - "flags": "0" - }, - "funcname": "IsKeyPressed", - "location": "imgui_internal:3169", - "namespace": "ImGui", - "ov_cimguiname": "igIsKeyPressed_ID", - "ret": "bool", - "signature": "(ImGuiKey,ImGuiID,ImGuiInputFlags)", - "stname": "" - } - ], - "igIsKeyPressedMap": [ - { - "args": "(ImGuiKey key,bool repeat)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" }, { - "name": "repeat", - "type": "bool" + "name": "owner_id", + "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiKey key,bool repeat=true)", - "call_args": "(key,repeat)", - "cimguiname": "igIsKeyPressedMap", + "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id=0)", + "call_args": "(key,flags,owner_id)", + "cimguiname": "igIsKeyPressed", "defaults": { - "repeat": "true" + "owner_id": "0" }, - "funcname": "IsKeyPressedMap", - "location": "imgui_internal:3486", + "funcname": "IsKeyPressed", + "location": "imgui_internal:3609", "namespace": "ImGui", - "ov_cimguiname": "igIsKeyPressedMap", + "ov_cimguiname": "igIsKeyPressed_InputFlags", "ret": "bool", - "signature": "(ImGuiKey,bool)", + "signature": "(ImGuiKey,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -25691,7 +27517,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:924", + "location": "imgui:993", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_Nil", "ret": "bool", @@ -25715,7 +27541,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui_internal:3170", + "location": "imgui_internal:3610", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased_ID", "ret": "bool", @@ -25737,7 +27563,7 @@ "cimguiname": "igIsKeyboardKey", "defaults": {}, "funcname": "IsKeyboardKey", - "location": "imgui_internal:3118", + "location": "imgui_internal:3556", "namespace": "ImGui", "ov_cimguiname": "igIsKeyboardKey", "ret": "bool", @@ -25745,6 +27571,28 @@ "stname": "" } ], + "igIsLRModKey": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igIsLRModKey", + "defaults": {}, + "funcname": "IsLRModKey", + "location": "imgui_internal:3560", + "namespace": "ImGui", + "ov_cimguiname": "igIsLRModKey", + "ret": "bool", + "signature": "(ImGuiKey)", + "stname": "" + } + ], "igIsLegacyKey": [ { "args": "(ImGuiKey key)", @@ -25759,7 +27607,7 @@ "cimguiname": "igIsLegacyKey", "defaults": {}, "funcname": "IsLegacyKey", - "location": "imgui_internal:3117", + "location": "imgui_internal:3555", "namespace": "ImGui", "ov_cimguiname": "igIsLegacyKey", "ret": "bool", @@ -25787,7 +27635,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:934", + "location": "imgui:1030", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked_Bool", "ret": "bool", @@ -25795,33 +27643,33 @@ "stname": "" }, { - "args": "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id)", "argsT": [ { "name": "button", "type": "ImGuiMouseButton" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags=0)", - "call_args": "(button,owner_id,flags)", + "argsoriginal": "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id=0)", + "call_args": "(button,flags,owner_id)", "cimguiname": "igIsMouseClicked", "defaults": { - "flags": "0" + "owner_id": "0" }, "funcname": "IsMouseClicked", - "location": "imgui_internal:3172", + "location": "imgui_internal:3613", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseClicked_ID", + "ov_cimguiname": "igIsMouseClicked_InputFlags", "ret": "bool", - "signature": "(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)", + "signature": "(ImGuiMouseButton,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -25839,12 +27687,36 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:936", + "location": "imgui:1032", "namespace": "ImGui", - "ov_cimguiname": "igIsMouseDoubleClicked", + "ov_cimguiname": "igIsMouseDoubleClicked_Nil", "ret": "bool", "signature": "(ImGuiMouseButton)", "stname": "" + }, + { + "args": "(ImGuiMouseButton button,ImGuiID owner_id)", + "argsT": [ + { + "name": "button", + "type": "ImGuiMouseButton" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiMouseButton button,ImGuiID owner_id)", + "call_args": "(button,owner_id)", + "cimguiname": "igIsMouseDoubleClicked", + "defaults": {}, + "funcname": "IsMouseDoubleClicked", + "location": "imgui_internal:3615", + "namespace": "ImGui", + "ov_cimguiname": "igIsMouseDoubleClicked_ID", + "ret": "bool", + "signature": "(ImGuiMouseButton,ImGuiID)", + "stname": "" } ], "igIsMouseDown": [ @@ -25861,7 +27733,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:933", + "location": "imgui:1029", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_Nil", "ret": "bool", @@ -25885,7 +27757,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui_internal:3171", + "location": "imgui_internal:3612", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown_ID", "ret": "bool", @@ -25913,7 +27785,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "imgui_internal:3137", + "location": "imgui_internal:3575", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -25941,7 +27813,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:943", + "location": "imgui:1039", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -25973,7 +27845,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:938", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -25995,7 +27867,7 @@ "cimguiname": "igIsMouseKey", "defaults": {}, "funcname": "IsMouseKey", - "location": "imgui_internal:3120", + "location": "imgui_internal:3558", "namespace": "ImGui", "ov_cimguiname": "igIsMouseKey", "ret": "bool", @@ -26019,7 +27891,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:939", + "location": "imgui:1035", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -26041,7 +27913,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:935", + "location": "imgui:1031", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_Nil", "ret": "bool", @@ -26065,7 +27937,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui_internal:3173", + "location": "imgui_internal:3614", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased_ID", "ret": "bool", @@ -26087,7 +27959,7 @@ "cimguiname": "igIsNamedKey", "defaults": {}, "funcname": "IsNamedKey", - "location": "imgui_internal:3115", + "location": "imgui_internal:3553", "namespace": "ImGui", "ov_cimguiname": "igIsNamedKey", "ret": "bool", @@ -26095,7 +27967,7 @@ "stname": "" } ], - "igIsNamedKeyOrModKey": [ + "igIsNamedKeyOrMod": [ { "args": "(ImGuiKey key)", "argsT": [ @@ -26106,12 +27978,12 @@ ], "argsoriginal": "(ImGuiKey key)", "call_args": "(key)", - "cimguiname": "igIsNamedKeyOrModKey", + "cimguiname": "igIsNamedKeyOrMod", "defaults": {}, - "funcname": "IsNamedKeyOrModKey", - "location": "imgui_internal:3116", + "funcname": "IsNamedKeyOrMod", + "location": "imgui_internal:3554", "namespace": "ImGui", - "ov_cimguiname": "igIsNamedKeyOrModKey", + "ov_cimguiname": "igIsNamedKeyOrMod", "ret": "bool", "signature": "(ImGuiKey)", "stname": "" @@ -26137,7 +28009,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:723", + "location": "imgui:793", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_Str", "ret": "bool", @@ -26161,7 +28033,7 @@ "cimguiname": "igIsPopupOpen", "defaults": {}, "funcname": "IsPopupOpen", - "location": "imgui_internal:3080", + "location": "imgui_internal:3504", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen_ID", "ret": "bool", @@ -26183,7 +28055,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:897", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -26207,7 +28079,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:898", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -26233,7 +28105,7 @@ "cimguiname": "igIsWindowAbove", "defaults": {}, "funcname": "IsWindowAbove", - "location": "imgui_internal:2956", + "location": "imgui_internal:3364", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAbove", "ret": "bool", @@ -26250,7 +28122,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:353", + "location": "imgui:398", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -26284,7 +28156,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": {}, "funcname": "IsWindowChildOf", - "location": "imgui_internal:2954", + "location": "imgui_internal:3362", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -26301,7 +28173,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:354", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -26309,6 +28181,34 @@ "stname": "" } ], + "igIsWindowContentHoverable": [ + { + "args": "(ImGuiWindow* window,ImGuiHoveredFlags flags)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "flags", + "type": "ImGuiHoveredFlags" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiHoveredFlags flags=0)", + "call_args": "(window,flags)", + "cimguiname": "igIsWindowContentHoverable", + "defaults": { + "flags": "0" + }, + "funcname": "IsWindowContentHoverable", + "location": "imgui_internal:3476", + "namespace": "ImGui", + "ov_cimguiname": "igIsWindowContentHoverable", + "ret": "bool", + "signature": "(ImGuiWindow*,ImGuiHoveredFlags)", + "stname": "" + } + ], "igIsWindowDocked": [ { "args": "()", @@ -26318,7 +28218,7 @@ "cimguiname": "igIsWindowDocked", "defaults": {}, "funcname": "IsWindowDocked", - "location": "imgui:820", + "location": "imgui:890", "namespace": "ImGui", "ov_cimguiname": "igIsWindowDocked", "ret": "bool", @@ -26342,7 +28242,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:355", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -26366,7 +28266,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:356", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -26388,7 +28288,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": {}, "funcname": "IsWindowNavFocusable", - "location": "imgui_internal:2957", + "location": "imgui_internal:3365", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -26414,7 +28314,7 @@ "cimguiname": "igIsWindowWithinBeginStackOf", "defaults": {}, "funcname": "IsWindowWithinBeginStackOf", - "location": "imgui_internal:2955", + "location": "imgui_internal:3363", "namespace": "ImGui", "ov_cimguiname": "igIsWindowWithinBeginStackOf", "ret": "bool", @@ -26451,7 +28351,7 @@ "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "imgui_internal:3053", + "location": "imgui_internal:3474", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -26461,7 +28361,7 @@ ], "igItemHoverable": [ { - "args": "(const ImRect bb,ImGuiID id)", + "args": "(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags)", "argsT": [ { "name": "bb", @@ -26470,18 +28370,22 @@ { "name": "id", "type": "ImGuiID" + }, + { + "name": "item_flags", + "type": "ImGuiItemFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id)", - "call_args": "(bb,id)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiItemFlags item_flags)", + "call_args": "(bb,id,item_flags)", "cimguiname": "igItemHoverable", "defaults": {}, "funcname": "ItemHoverable", - "location": "imgui_internal:3054", + "location": "imgui_internal:3475", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", - "signature": "(const ImRect,ImGuiID)", + "signature": "(const ImRect,ImGuiID,ImGuiItemFlags)", "stname": "" } ], @@ -26505,7 +28409,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3051", + "location": "imgui_internal:3472", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Vec2", "ret": "void", @@ -26531,7 +28435,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "imgui_internal:3052", + "location": "imgui_internal:3473", "namespace": "ImGui", "ov_cimguiname": "igItemSize_Rect", "ret": "void", @@ -26553,7 +28457,7 @@ "cimguiname": "igKeepAliveID", "defaults": {}, "funcname": "KeepAliveID", - "location": "imgui_internal:3045", + "location": "imgui_internal:3465", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -26584,7 +28488,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:501", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -26614,7 +28518,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:502", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -26654,7 +28558,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:643", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -26662,7 +28566,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)", "argsT": [ { "name": "label", @@ -26673,13 +28577,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -26691,18 +28595,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,height_in_items)", "cimguiname": "igListBox", "defaults": { "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:644", + "location": "imgui:706", "namespace": "ImGui", - "ov_cimguiname": "igListBox_FnBoolPtr", + "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -26720,7 +28624,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:959", + "location": "imgui:1055", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -26748,7 +28652,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:960", + "location": "imgui:1056", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -26770,7 +28674,7 @@ "cimguiname": "igLocalizeGetMsg", "defaults": {}, "funcname": "LocalizeGetMsg", - "location": "imgui_internal:3019", + "location": "imgui_internal:3439", "namespace": "ImGui", "ov_cimguiname": "igLocalizeGetMsg", "ret": "const char*", @@ -26796,7 +28700,7 @@ "cimguiname": "igLocalizeRegisterEntries", "defaults": {}, "funcname": "LocalizeRegisterEntries", - "location": "imgui_internal:3018", + "location": "imgui_internal:3438", "namespace": "ImGui", "ov_cimguiname": "igLocalizeRegisterEntries", "ret": "void", @@ -26822,7 +28726,7 @@ "cimguiname": "igLogBegin", "defaults": {}, "funcname": "LogBegin", - "location": "imgui_internal:3069", + "location": "imgui_internal:3490", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -26839,7 +28743,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:828", + "location": "imgui:898", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -26856,7 +28760,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:827", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -26888,7 +28792,7 @@ "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "imgui_internal:3071", + "location": "imgui_internal:3492", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -26914,7 +28818,7 @@ "cimguiname": "igLogSetNextTextDecoration", "defaults": {}, "funcname": "LogSetNextTextDecoration", - "location": "imgui_internal:3072", + "location": "imgui_internal:3493", "namespace": "ImGui", "ov_cimguiname": "igLogSetNextTextDecoration", "ret": "void", @@ -26941,7 +28845,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:829", + "location": "imgui:899", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -26968,7 +28872,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:830", + "location": "imgui:900", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -26992,7 +28896,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "imgui_internal:3070", + "location": "imgui_internal:3491", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -27016,7 +28920,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:826", + "location": "imgui:896", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -27045,7 +28949,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:825", + "location": "imgui:895", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -27069,7 +28973,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:824", + "location": "imgui:894", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -27086,7 +28990,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3007", + "location": "imgui_internal:3424", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_Nil", "ret": "void", @@ -27106,7 +29010,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": {}, "funcname": "MarkIniSettingsDirty", - "location": "imgui_internal:3008", + "location": "imgui_internal:3425", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirty_WindowPtr", "ret": "void", @@ -27128,7 +29032,7 @@ "cimguiname": "igMarkItemEdited", "defaults": {}, "funcname": "MarkItemEdited", - "location": "imgui_internal:3046", + "location": "imgui_internal:3466", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -27150,7 +29054,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:974", + "location": "imgui:1077", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -27172,7 +29076,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:975", + "location": "imgui:1078", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -27210,7 +29114,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:671", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -27244,7 +29148,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:672", + "location": "imgui:734", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -27286,7 +29190,7 @@ "shortcut": "NULL" }, "funcname": "MenuItemEx", - "location": "imgui_internal:3092", + "location": "imgui_internal:3519", "namespace": "ImGui", "ov_cimguiname": "igMenuItemEx", "ret": "bool", @@ -27308,7 +29212,7 @@ "cimguiname": "igMouseButtonToKey", "defaults": {}, "funcname": "MouseButtonToKey", - "location": "imgui_internal:3136", + "location": "imgui_internal:3574", "namespace": "ImGui", "ov_cimguiname": "igMouseButtonToKey", "ret": "ImGuiKey", @@ -27316,6 +29220,174 @@ "stname": "" } ], + "igMultiSelectAddSetAll": [ + { + "args": "(ImGuiMultiSelectTempData* ms,bool selected)", + "argsT": [ + { + "name": "ms", + "type": "ImGuiMultiSelectTempData*" + }, + { + "name": "selected", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiMultiSelectTempData* ms,bool selected)", + "call_args": "(ms,selected)", + "cimguiname": "igMultiSelectAddSetAll", + "defaults": {}, + "funcname": "MultiSelectAddSetAll", + "location": "imgui_internal:3723", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectAddSetAll", + "ret": "void", + "signature": "(ImGuiMultiSelectTempData*,bool)", + "stname": "" + } + ], + "igMultiSelectAddSetRange": [ + { + "args": "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)", + "argsT": [ + { + "name": "ms", + "type": "ImGuiMultiSelectTempData*" + }, + { + "name": "selected", + "type": "bool" + }, + { + "name": "range_dir", + "type": "int" + }, + { + "name": "first_item", + "type": "ImGuiSelectionUserData" + }, + { + "name": "last_item", + "type": "ImGuiSelectionUserData" + } + ], + "argsoriginal": "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)", + "call_args": "(ms,selected,range_dir,first_item,last_item)", + "cimguiname": "igMultiSelectAddSetRange", + "defaults": {}, + "funcname": "MultiSelectAddSetRange", + "location": "imgui_internal:3724", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectAddSetRange", + "ret": "void", + "signature": "(ImGuiMultiSelectTempData*,bool,int,ImGuiSelectionUserData,ImGuiSelectionUserData)", + "stname": "" + } + ], + "igMultiSelectItemFooter": [ + { + "args": "(ImGuiID id,bool* p_selected,bool* p_pressed)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "p_selected", + "type": "bool*" + }, + { + "name": "p_pressed", + "type": "bool*" + } + ], + "argsoriginal": "(ImGuiID id,bool* p_selected,bool* p_pressed)", + "call_args": "(id,p_selected,p_pressed)", + "cimguiname": "igMultiSelectItemFooter", + "defaults": {}, + "funcname": "MultiSelectItemFooter", + "location": "imgui_internal:3722", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectItemFooter", + "ret": "void", + "signature": "(ImGuiID,bool*,bool*)", + "stname": "" + } + ], + "igMultiSelectItemHeader": [ + { + "args": "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "p_selected", + "type": "bool*" + }, + { + "name": "p_button_flags", + "type": "ImGuiButtonFlags*" + } + ], + "argsoriginal": "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)", + "call_args": "(id,p_selected,p_button_flags)", + "cimguiname": "igMultiSelectItemHeader", + "defaults": {}, + "funcname": "MultiSelectItemHeader", + "location": "imgui_internal:3721", + "namespace": "ImGui", + "ov_cimguiname": "igMultiSelectItemHeader", + "ret": "void", + "signature": "(ImGuiID,bool*,ImGuiButtonFlags*)", + "stname": "" + } + ], + "igNavClearPreferredPosForAxis": [ + { + "args": "(ImGuiAxis axis)", + "argsT": [ + { + "name": "axis", + "type": "ImGuiAxis" + } + ], + "argsoriginal": "(ImGuiAxis axis)", + "call_args": "(axis)", + "cimguiname": "igNavClearPreferredPosForAxis", + "defaults": {}, + "funcname": "NavClearPreferredPosForAxis", + "location": "imgui_internal:3538", + "namespace": "ImGui", + "ov_cimguiname": "igNavClearPreferredPosForAxis", + "ret": "void", + "signature": "(ImGuiAxis)", + "stname": "" + } + ], + "igNavHighlightActivated": [ + { + "args": "(ImGuiID id)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "igNavHighlightActivated", + "defaults": {}, + "funcname": "NavHighlightActivated", + "location": "imgui_internal:3537", + "namespace": "ImGui", + "ov_cimguiname": "igNavHighlightActivated", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igNavInitRequestApplyResult": [ { "args": "()", @@ -27325,7 +29397,7 @@ "cimguiname": "igNavInitRequestApplyResult", "defaults": {}, "funcname": "NavInitRequestApplyResult", - "location": "imgui_internal:3101", + "location": "imgui_internal:3528", "namespace": "ImGui", "ov_cimguiname": "igNavInitRequestApplyResult", "ret": "void", @@ -27351,7 +29423,7 @@ "cimguiname": "igNavInitWindow", "defaults": {}, "funcname": "NavInitWindow", - "location": "imgui_internal:3100", + "location": "imgui_internal:3527", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -27368,7 +29440,7 @@ "cimguiname": "igNavMoveRequestApplyResult", "defaults": {}, "funcname": "NavMoveRequestApplyResult", - "location": "imgui_internal:3107", + "location": "imgui_internal:3535", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestApplyResult", "ret": "void", @@ -27385,7 +29457,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": {}, "funcname": "NavMoveRequestButNoResultYet", - "location": "imgui_internal:3102", + "location": "imgui_internal:3529", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -27402,7 +29474,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": {}, "funcname": "NavMoveRequestCancel", - "location": "imgui_internal:3106", + "location": "imgui_internal:3534", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -27436,7 +29508,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": {}, "funcname": "NavMoveRequestForward", - "location": "imgui_internal:3104", + "location": "imgui_internal:3531", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -27458,7 +29530,7 @@ "cimguiname": "igNavMoveRequestResolveWithLastItem", "defaults": {}, "funcname": "NavMoveRequestResolveWithLastItem", - "location": "imgui_internal:3105", + "location": "imgui_internal:3532", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestResolveWithLastItem", "ret": "void", @@ -27466,6 +29538,32 @@ "stname": "" } ], + "igNavMoveRequestResolveWithPastTreeNode": [ + { + "args": "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)", + "argsT": [ + { + "name": "result", + "type": "ImGuiNavItemData*" + }, + { + "name": "tree_node_data", + "type": "ImGuiTreeNodeStackData*" + } + ], + "argsoriginal": "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)", + "call_args": "(result,tree_node_data)", + "cimguiname": "igNavMoveRequestResolveWithPastTreeNode", + "defaults": {}, + "funcname": "NavMoveRequestResolveWithPastTreeNode", + "location": "imgui_internal:3533", + "namespace": "ImGui", + "ov_cimguiname": "igNavMoveRequestResolveWithPastTreeNode", + "ret": "void", + "signature": "(ImGuiNavItemData*,ImGuiTreeNodeStackData*)", + "stname": "" + } + ], "igNavMoveRequestSubmit": [ { "args": "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags)", @@ -27492,7 +29590,7 @@ "cimguiname": "igNavMoveRequestSubmit", "defaults": {}, "funcname": "NavMoveRequestSubmit", - "location": "imgui_internal:3103", + "location": "imgui_internal:3530", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestSubmit", "ret": "void", @@ -27518,7 +29616,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": {}, "funcname": "NavMoveRequestTryWrapping", - "location": "imgui_internal:3108", + "location": "imgui_internal:3536", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -27526,6 +29624,40 @@ "stname": "" } ], + "igNavRestoreHighlightAfterMove": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igNavRestoreHighlightAfterMove", + "defaults": {}, + "funcname": "NavRestoreHighlightAfterMove", + "location": "imgui_internal:3539", + "namespace": "ImGui", + "ov_cimguiname": "igNavRestoreHighlightAfterMove", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igNavUpdateCurrentWindowIsScrollPushableX": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", + "defaults": {}, + "funcname": "NavUpdateCurrentWindowIsScrollPushableX", + "location": "imgui_internal:3540", + "namespace": "ImGui", + "ov_cimguiname": "igNavUpdateCurrentWindowIsScrollPushableX", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igNewFrame": [ { "args": "()", @@ -27535,7 +29667,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:302", + "location": "imgui:337", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -27552,7 +29684,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:449", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -27569,7 +29701,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:785", + "location": "imgui:855", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -27597,7 +29729,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:705", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -27623,7 +29755,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:706", + "location": "imgui:776", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -27651,7 +29783,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "imgui_internal:3076", + "location": "imgui_internal:3500", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -27680,7 +29812,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:707", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -27690,7 +29822,7 @@ ], "igPlotEx": [ { - "args": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)", + "args": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg)", "argsT": [ { "name": "plot_type", @@ -27731,20 +29863,20 @@ "type": "float" }, { - "name": "frame_size", - "type": "ImVec2" + "name": "size_arg", + "type": "const ImVec2" } ], - "argsoriginal": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)", - "call_args": "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size)", + "argsoriginal": "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2& size_arg)", + "call_args": "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,size_arg)", "cimguiname": "igPlotEx", "defaults": {}, "funcname": "PlotEx", - "location": "imgui_internal:3427", + "location": "imgui_internal:3909", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", - "signature": "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)", + "signature": "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,const ImVec2)", "stname": "" } ], @@ -27789,7 +29921,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "defaults": { @@ -27801,7 +29933,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:650", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -27850,7 +29982,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "defaults": { @@ -27861,7 +29993,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:651", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -27910,7 +30042,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "defaults": { @@ -27922,7 +30054,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:648", + "location": "imgui:710", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -27971,7 +30103,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "defaults": { @@ -27982,7 +30114,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:649", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -27990,40 +30122,6 @@ "stname": "" } ], - "igPopAllowKeyboardFocus": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopAllowKeyboardFocus", - "defaults": {}, - "funcname": "PopAllowKeyboardFocus", - "location": "imgui:418", - "namespace": "ImGui", - "ov_cimguiname": "igPopAllowKeyboardFocus", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igPopButtonRepeat": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopButtonRepeat", - "defaults": {}, - "funcname": "PopButtonRepeat", - "location": "imgui:420", - "namespace": "ImGui", - "ov_cimguiname": "igPopButtonRepeat", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igPopClipRect": [ { "args": "()", @@ -28033,7 +30131,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:855", + "location": "imgui:926", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -28050,7 +30148,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": {}, "funcname": "PopColumnsBackground", - "location": "imgui_internal:3267", + "location": "imgui_internal:3734", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -28067,7 +30165,7 @@ "cimguiname": "igPopFocusScope", "defaults": {}, "funcname": "PopFocusScope", - "location": "imgui_internal:3251", + "location": "imgui_internal:3700", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -28084,7 +30182,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:410", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -28101,7 +30199,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:486", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -28118,7 +30216,7 @@ "cimguiname": "igPopItemFlag", "defaults": {}, "funcname": "PopItemFlag", - "location": "imgui_internal:3066", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -28135,7 +30233,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:424", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -28159,7 +30257,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:413", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -28183,7 +30281,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:416", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -28200,7 +30298,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:428", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -28225,7 +30323,7 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "defaults": { @@ -28233,7 +30331,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:518", + "location": "imgui:563", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -28241,50 +30339,6 @@ "stname": "" } ], - "igPushAllowKeyboardFocus": [ - { - "args": "(bool allow_keyboard_focus)", - "argsT": [ - { - "name": "allow_keyboard_focus", - "type": "bool" - } - ], - "argsoriginal": "(bool allow_keyboard_focus)", - "call_args": "(allow_keyboard_focus)", - "cimguiname": "igPushAllowKeyboardFocus", - "defaults": {}, - "funcname": "PushAllowKeyboardFocus", - "location": "imgui:417", - "namespace": "ImGui", - "ov_cimguiname": "igPushAllowKeyboardFocus", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], - "igPushButtonRepeat": [ - { - "args": "(bool repeat)", - "argsT": [ - { - "name": "repeat", - "type": "bool" - } - ], - "argsoriginal": "(bool repeat)", - "call_args": "(repeat)", - "cimguiname": "igPushButtonRepeat", - "defaults": {}, - "funcname": "PushButtonRepeat", - "location": "imgui:419", - "namespace": "ImGui", - "ov_cimguiname": "igPushButtonRepeat", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], "igPushClipRect": [ { "args": "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)", @@ -28307,7 +30361,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:854", + "location": "imgui:925", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -28329,7 +30383,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": {}, "funcname": "PushColumnClipRect", - "location": "imgui_internal:3265", + "location": "imgui_internal:3732", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -28346,7 +30400,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": {}, "funcname": "PushColumnsBackground", - "location": "imgui_internal:3266", + "location": "imgui_internal:3733", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -28368,7 +30422,7 @@ "cimguiname": "igPushFocusScope", "defaults": {}, "funcname": "PushFocusScope", - "location": "imgui_internal:3250", + "location": "imgui_internal:3699", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -28390,7 +30444,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:409", + "location": "imgui:446", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -28412,7 +30466,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:482", + "location": "imgui:525", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -28436,7 +30490,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:483", + "location": "imgui:526", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -28456,7 +30510,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:484", + "location": "imgui:527", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -28476,7 +30530,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:485", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -28502,7 +30556,7 @@ "cimguiname": "igPushItemFlag", "defaults": {}, "funcname": "PushItemFlag", - "location": "imgui_internal:3065", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -28524,7 +30578,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:423", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -28550,7 +30604,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": {}, "funcname": "PushMultiItemsWidths", - "location": "imgui_internal:3059", + "location": "imgui_internal:3481", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -28572,7 +30626,7 @@ "cimguiname": "igPushOverrideID", "defaults": {}, "funcname": "PushOverrideID", - "location": "imgui_internal:3047", + "location": "imgui_internal:3467", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -28598,7 +30652,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:411", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -28622,7 +30676,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:412", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -28648,7 +30702,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:414", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -28672,7 +30726,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:415", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -28680,6 +30734,58 @@ "stname": "" } ], + "igPushStyleVarX": [ + { + "args": "(ImGuiStyleVar idx,float val_x)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_x", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_x)", + "call_args": "(idx,val_x)", + "cimguiname": "igPushStyleVarX", + "defaults": {}, + "funcname": "PushStyleVarX", + "location": "imgui:453", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarX", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], + "igPushStyleVarY": [ + { + "args": "(ImGuiStyleVar idx,float val_y)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_y", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_y)", + "call_args": "(idx,val_y)", + "cimguiname": "igPushStyleVarY", + "defaults": {}, + "funcname": "PushStyleVarY", + "location": "imgui:454", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarY", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], "igPushTextWrapPos": [ { "args": "(float wrap_local_pos_x)", @@ -28696,7 +30802,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:427", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -28722,7 +30828,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:516", + "location": "imgui:561", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -28750,7 +30856,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:517", + "location": "imgui:562", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -28776,7 +30882,7 @@ "cimguiname": "igRemoveContextHook", "defaults": {}, "funcname": "RemoveContextHook", - "location": "imgui_internal:2994", + "location": "imgui_internal:3411", "namespace": "ImGui", "ov_cimguiname": "igRemoveContextHook", "ret": "void", @@ -28798,7 +30904,7 @@ "cimguiname": "igRemoveSettingsHandler", "defaults": {}, "funcname": "RemoveSettingsHandler", - "location": "imgui_internal:3014", + "location": "imgui_internal:3428", "namespace": "ImGui", "ov_cimguiname": "igRemoveSettingsHandler", "ret": "void", @@ -28815,7 +30921,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:304", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -28855,7 +30961,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "imgui_internal:3358", + "location": "imgui_internal:3834", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -28889,7 +30995,7 @@ "cimguiname": "igRenderArrowDockMenu", "defaults": {}, "funcname": "RenderArrowDockMenu", - "location": "imgui_internal:3362", + "location": "imgui_internal:3838", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowDockMenu", "ret": "void", @@ -28927,7 +31033,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": {}, "funcname": "RenderArrowPointingAt", - "location": "imgui_internal:3361", + "location": "imgui_internal:3837", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -28957,7 +31063,7 @@ "cimguiname": "igRenderBullet", "defaults": {}, "funcname": "RenderBullet", - "location": "imgui_internal:3359", + "location": "imgui_internal:3835", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -28991,7 +31097,7 @@ "cimguiname": "igRenderCheckMark", "defaults": {}, "funcname": "RenderCheckMark", - "location": "imgui_internal:3360", + "location": "imgui_internal:3836", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -29044,7 +31150,7 @@ "rounding": "0.0f" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "imgui_internal:3352", + "location": "imgui_internal:3828", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -29054,29 +31160,33 @@ ], "igRenderDragDropTargetRect": [ { - "args": "(const ImRect bb)", + "args": "(const ImRect bb,const ImRect item_clip_rect)", "argsT": [ { "name": "bb", "type": "const ImRect" + }, + { + "name": "item_clip_rect", + "type": "const ImRect" } ], - "argsoriginal": "(const ImRect& bb)", - "call_args": "(bb)", + "argsoriginal": "(const ImRect& bb,const ImRect& item_clip_rect)", + "call_args": "(bb,item_clip_rect)", "cimguiname": "igRenderDragDropTargetRect", "defaults": {}, "funcname": "RenderDragDropTargetRect", - "location": "imgui_internal:3259", + "location": "imgui_internal:3708", "namespace": "ImGui", "ov_cimguiname": "igRenderDragDropTargetRect", "ret": "void", - "signature": "(const ImRect)", + "signature": "(const ImRect,const ImRect)", "stname": "" } ], "igRenderFrame": [ { - "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)", + "args": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding)", "argsT": [ { "name": "p_min", @@ -29091,7 +31201,7 @@ "type": "ImU32" }, { - "name": "border", + "name": "borders", "type": "bool" }, { @@ -29099,15 +31209,15 @@ "type": "float" } ], - "argsoriginal": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border=true,float rounding=0.0f)", - "call_args": "(p_min,p_max,fill_col,border,rounding)", + "argsoriginal": "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders=true,float rounding=0.0f)", + "call_args": "(p_min,p_max,fill_col,borders,rounding)", "cimguiname": "igRenderFrame", "defaults": { - "border": "true", + "borders": "true", "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "imgui_internal:3350", + "location": "imgui_internal:3826", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -29139,7 +31249,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "imgui_internal:3351", + "location": "imgui_internal:3827", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -29181,7 +31291,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": {}, "funcname": "RenderMouseCursor", - "location": "imgui_internal:3355", + "location": "imgui_internal:3831", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -29206,14 +31316,14 @@ "type": "ImGuiNavHighlightFlags" } ], - "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_TypeDefault)", + "argsoriginal": "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_None)", "call_args": "(bb,id,flags)", "cimguiname": "igRenderNavHighlight", "defaults": { - "flags": "ImGuiNavHighlightFlags_TypeDefault" + "flags": "ImGuiNavHighlightFlags_None" }, "funcname": "RenderNavHighlight", - "location": "imgui_internal:3353", + "location": "imgui_internal:3829", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -29242,7 +31352,7 @@ "renderer_render_arg": "NULL" }, "funcname": "RenderPlatformWindowsDefault", - "location": "imgui:982", + "location": "imgui:1084", "namespace": "ImGui", "ov_cimguiname": "igRenderPlatformWindowsDefault", "ret": "void", @@ -29284,7 +31394,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": {}, "funcname": "RenderRectFilledRangeH", - "location": "imgui_internal:3363", + "location": "imgui_internal:3839", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -29322,7 +31432,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": {}, "funcname": "RenderRectFilledWithHole", - "location": "imgui_internal:3364", + "location": "imgui_internal:3840", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -29359,7 +31469,7 @@ "text_end": "NULL" }, "funcname": "RenderText", - "location": "imgui_internal:3345", + "location": "imgui_internal:3821", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -29408,7 +31518,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "imgui_internal:3347", + "location": "imgui_internal:3823", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -29461,7 +31571,7 @@ "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "imgui_internal:3348", + "location": "imgui_internal:3824", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -29511,7 +31621,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": {}, "funcname": "RenderTextEllipsis", - "location": "imgui_internal:3349", + "location": "imgui_internal:3825", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -29545,7 +31655,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": {}, "funcname": "RenderTextWrapped", - "location": "imgui_internal:3346", + "location": "imgui_internal:3822", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -29569,7 +31679,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:945", + "location": "imgui:1041", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -29598,7 +31708,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:448", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -29620,7 +31730,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:961", + "location": "imgui:1057", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -29644,7 +31754,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:962", + "location": "imgui:1058", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -29670,7 +31780,7 @@ "cimguiname": "igScaleWindowsInViewport", "defaults": {}, "funcname": "ScaleWindowsInViewport", - "location": "imgui_internal:2999", + "location": "imgui_internal:3416", "namespace": "ImGui", "ov_cimguiname": "igScaleWindowsInViewport", "ret": "void", @@ -29696,7 +31806,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": {}, "funcname": "ScrollToBringRectIntoView", - "location": "imgui_internal:3032", + "location": "imgui_internal:3452", "namespace": "ImGui", "ov_cimguiname": "igScrollToBringRectIntoView", "ret": "void", @@ -29720,7 +31830,7 @@ "flags": "0" }, "funcname": "ScrollToItem", - "location": "imgui_internal:3028", + "location": "imgui_internal:3448", "namespace": "ImGui", "ov_cimguiname": "igScrollToItem", "ret": "void", @@ -29752,7 +31862,7 @@ "flags": "0" }, "funcname": "ScrollToRect", - "location": "imgui_internal:3029", + "location": "imgui_internal:3449", "namespace": "ImGui", "ov_cimguiname": "igScrollToRect", "ret": "void", @@ -29788,7 +31898,7 @@ "flags": "0" }, "funcname": "ScrollToRectEx", - "location": "imgui_internal:3030", + "location": "imgui_internal:3450", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToRectEx", @@ -29811,7 +31921,7 @@ "cimguiname": "igScrollbar", "defaults": {}, "funcname": "Scrollbar", - "location": "imgui_internal:3379", + "location": "imgui_internal:3856", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -29857,7 +31967,7 @@ "cimguiname": "igScrollbarEx", "defaults": {}, "funcname": "ScrollbarEx", - "location": "imgui_internal:3380", + "location": "imgui_internal:3857", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -29895,7 +32005,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:632", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -29930,7 +32040,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:633", + "location": "imgui:683", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -29947,7 +32057,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:447", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -29957,23 +32067,85 @@ ], "igSeparatorEx": [ { - "args": "(ImGuiSeparatorFlags flags)", + "args": "(ImGuiSeparatorFlags flags,float thickness)", "argsT": [ { "name": "flags", "type": "ImGuiSeparatorFlags" + }, + { + "name": "thickness", + "type": "float" } ], - "argsoriginal": "(ImGuiSeparatorFlags flags)", - "call_args": "(flags)", + "argsoriginal": "(ImGuiSeparatorFlags flags,float thickness=1.0f)", + "call_args": "(flags,thickness)", "cimguiname": "igSeparatorEx", - "defaults": {}, + "defaults": { + "thickness": "1.0f" + }, "funcname": "SeparatorEx", - "location": "imgui_internal:3372", + "location": "imgui_internal:3848", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", - "signature": "(ImGuiSeparatorFlags)", + "signature": "(ImGuiSeparatorFlags,float)", + "stname": "" + } + ], + "igSeparatorText": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igSeparatorText", + "defaults": {}, + "funcname": "SeparatorText", + "location": "imgui:549", + "namespace": "ImGui", + "ov_cimguiname": "igSeparatorText", + "ret": "void", + "signature": "(const char*)", + "stname": "" + } + ], + "igSeparatorTextEx": [ + { + "args": "(ImGuiID id,const char* label,const char* label_end,float extra_width)", + "argsT": [ + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "label", + "type": "const char*" + }, + { + "name": "label_end", + "type": "const char*" + }, + { + "name": "extra_width", + "type": "float" + } + ], + "argsoriginal": "(ImGuiID id,const char* label,const char* label_end,float extra_width)", + "call_args": "(id,label,label_end,extra_width)", + "cimguiname": "igSeparatorTextEx", + "defaults": {}, + "funcname": "SeparatorTextEx", + "location": "imgui_internal:3849", + "namespace": "ImGui", + "ov_cimguiname": "igSeparatorTextEx", + "ret": "void", + "signature": "(ImGuiID,const char*,const char*,float)", "stname": "" } ], @@ -29995,7 +32167,7 @@ "cimguiname": "igSetActiveID", "defaults": {}, "funcname": "SetActiveID", - "location": "imgui_internal:3040", + "location": "imgui_internal:3460", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -30012,7 +32184,7 @@ "cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "defaults": {}, "funcname": "SetActiveIdUsingAllKeyboardKeys", - "location": "imgui_internal:3142", + "location": "imgui_internal:3581", "namespace": "ImGui", "ov_cimguiname": "igSetActiveIdUsingAllKeyboardKeys", "ret": "void", @@ -30044,7 +32216,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:972", + "location": "imgui:1075", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -30066,7 +32238,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:953", + "location": "imgui:1049", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -30088,7 +32260,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:607", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -30114,7 +32286,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:790", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -30140,7 +32312,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:788", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -30162,7 +32334,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:297", + "location": "imgui:331", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -30184,7 +32356,7 @@ "cimguiname": "igSetCurrentFont", "defaults": {}, "funcname": "SetCurrentFont", - "location": "imgui_internal:2976", + "location": "imgui_internal:3391", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -30210,7 +32382,7 @@ "cimguiname": "igSetCurrentViewport", "defaults": {}, "funcname": "SetCurrentViewport", - "location": "imgui_internal:3002", + "location": "imgui_internal:3419", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentViewport", "ret": "void", @@ -30232,7 +32404,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:459", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -30254,7 +32426,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:460", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -30276,7 +32448,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:461", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -30298,7 +32470,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:464", + "location": "imgui:488", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -30334,7 +32506,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:838", + "location": "imgui:908", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -30360,7 +32532,7 @@ "cimguiname": "igSetFocusID", "defaults": {}, "funcname": "SetFocusID", - "location": "imgui_internal:3041", + "location": "imgui_internal:3461", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -30382,7 +32554,7 @@ "cimguiname": "igSetHoveredID", "defaults": {}, "funcname": "SetHoveredID", - "location": "imgui_internal:3044", + "location": "imgui_internal:3464", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -30390,23 +32562,6 @@ "stname": "" } ], - "igSetItemAllowOverlap": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igSetItemAllowOverlap", - "defaults": {}, - "funcname": "SetItemAllowOverlap", - "location": "imgui:882", - "namespace": "ImGui", - "ov_cimguiname": "igSetItemAllowOverlap", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igSetItemDefaultFocus": [ { "args": "()", @@ -30416,7 +32571,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:859", + "location": "imgui:930", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -30425,6 +32580,26 @@ } ], "igSetItemKeyOwner": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igSetItemKeyOwner", + "defaults": {}, + "funcname": "SetItemKeyOwner", + "location": "imgui:1023", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemKeyOwner_Nil", + "ret": "void", + "signature": "(ImGuiKey)", + "stname": "" + }, { "args": "(ImGuiKey key,ImGuiInputFlags flags)", "argsT": [ @@ -30437,21 +32612,72 @@ "type": "ImGuiInputFlags" } ], - "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags=0)", + "argsoriginal": "(ImGuiKey key,ImGuiInputFlags flags)", "call_args": "(key,flags)", "cimguiname": "igSetItemKeyOwner", - "defaults": { - "flags": "0" - }, + "defaults": {}, "funcname": "SetItemKeyOwner", - "location": "imgui_internal:3158", + "location": "imgui_internal:3598", "namespace": "ImGui", - "ov_cimguiname": "igSetItemKeyOwner", + "ov_cimguiname": "igSetItemKeyOwner_InputFlags", "ret": "void", "signature": "(ImGuiKey,ImGuiInputFlags)", "stname": "" } ], + "igSetItemTooltip": [ + { + "args": "(const char* fmt,...)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "...", + "type": "..." + } + ], + "argsoriginal": "(const char* fmt,...)", + "call_args": "(fmt,...)", + "cimguiname": "igSetItemTooltip", + "defaults": {}, + "funcname": "SetItemTooltip", + "isvararg": "...)", + "location": "imgui:750", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltip", + "ret": "void", + "signature": "(const char*,...)", + "stname": "" + } + ], + "igSetItemTooltipV": [ + { + "args": "(const char* fmt,va_list args)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "args", + "type": "va_list" + } + ], + "argsoriginal": "(const char* fmt,va_list args)", + "call_args": "(fmt,args)", + "cimguiname": "igSetItemTooltipV", + "defaults": {}, + "funcname": "SetItemTooltipV", + "location": "imgui:751", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltipV", + "ret": "void", + "signature": "(const char*,va_list)", + "stname": "" + } + ], "igSetKeyOwner": [ { "args": "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)", @@ -30476,7 +32702,7 @@ "flags": "0" }, "funcname": "SetKeyOwner", - "location": "imgui_internal:3157", + "location": "imgui_internal:3596", "namespace": "ImGui", "ov_cimguiname": "igSetKeyOwner", "ret": "void", @@ -30484,6 +32710,38 @@ "stname": "" } ], + "igSetKeyOwnersForKeyChord": [ + { + "args": "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKeyChord" + }, + { + "name": "owner_id", + "type": "ImGuiID" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags=0)", + "call_args": "(key,owner_id,flags)", + "cimguiname": "igSetKeyOwnersForKeyChord", + "defaults": { + "flags": "0" + }, + "funcname": "SetKeyOwnersForKeyChord", + "location": "imgui_internal:3597", + "namespace": "ImGui", + "ov_cimguiname": "igSetKeyOwnersForKeyChord", + "ret": "void", + "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "stname": "" + } + ], "igSetKeyboardFocusHere": [ { "args": "(int offset)", @@ -30500,7 +32758,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:860", + "location": "imgui:931", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -30534,7 +32792,7 @@ "cimguiname": "igSetLastItemData", "defaults": {}, "funcname": "SetLastItemData", - "location": "imgui_internal:3056", + "location": "imgui_internal:3478", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -30556,7 +32814,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:947", + "location": "imgui:1043", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -30564,6 +32822,28 @@ "stname": "" } ], + "igSetNavFocusScope": [ + { + "args": "(ImGuiID focus_scope_id)", + "argsT": [ + { + "name": "focus_scope_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID focus_scope_id)", + "call_args": "(focus_scope_id)", + "cimguiname": "igSetNavFocusScope", + "defaults": {}, + "funcname": "SetNavFocusScope", + "location": "imgui_internal:3543", + "namespace": "ImGui", + "ov_cimguiname": "igSetNavFocusScope", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNavID": [ { "args": "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)", @@ -30590,7 +32870,7 @@ "cimguiname": "igSetNavID", "defaults": {}, "funcname": "SetNavID", - "location": "imgui_internal:3111", + "location": "imgui_internal:3542", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -30612,7 +32892,7 @@ "cimguiname": "igSetNavWindow", "defaults": {}, "funcname": "SetNavWindow", - "location": "imgui_internal:3110", + "location": "imgui_internal:3541", "namespace": "ImGui", "ov_cimguiname": "igSetNavWindow", "ret": "void", @@ -30634,7 +32914,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:927", + "location": "imgui:997", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -30656,7 +32936,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:948", + "location": "imgui:1044", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -30664,6 +32944,23 @@ "stname": "" } ], + "igSetNextItemAllowOverlap": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igSetNextItemAllowOverlap", + "defaults": {}, + "funcname": "SetNextItemAllowOverlap", + "location": "imgui:934", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemAllowOverlap", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igSetNextItemOpen": [ { "args": "(bool is_open,ImGuiCond cond)", @@ -30684,7 +32981,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:627", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -30692,6 +32989,104 @@ "stname": "" } ], + "igSetNextItemRefVal": [ + { + "args": "(ImGuiDataType data_type,void* p_data)", + "argsT": [ + { + "name": "data_type", + "type": "ImGuiDataType" + }, + { + "name": "p_data", + "type": "void*" + } + ], + "argsoriginal": "(ImGuiDataType data_type,void* p_data)", + "call_args": "(data_type,p_data)", + "cimguiname": "igSetNextItemRefVal", + "defaults": {}, + "funcname": "SetNextItemRefVal", + "location": "imgui_internal:3901", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemRefVal", + "ret": "void", + "signature": "(ImGuiDataType,void*)", + "stname": "" + } + ], + "igSetNextItemSelectionUserData": [ + { + "args": "(ImGuiSelectionUserData selection_user_data)", + "argsT": [ + { + "name": "selection_user_data", + "type": "ImGuiSelectionUserData" + } + ], + "argsoriginal": "(ImGuiSelectionUserData selection_user_data)", + "call_args": "(selection_user_data)", + "cimguiname": "igSetNextItemSelectionUserData", + "defaults": {}, + "funcname": "SetNextItemSelectionUserData", + "location": "imgui:694", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemSelectionUserData", + "ret": "void", + "signature": "(ImGuiSelectionUserData)", + "stname": "" + } + ], + "igSetNextItemShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", + "cimguiname": "igSetNextItemShortcut", + "defaults": { + "flags": "0" + }, + "funcname": "SetNextItemShortcut", + "location": "imgui:1015", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemShortcut", + "ret": "void", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + } + ], + "igSetNextItemStorageID": [ + { + "args": "(ImGuiID storage_id)", + "argsT": [ + { + "name": "storage_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID storage_id)", + "call_args": "(storage_id)", + "cimguiname": "igSetNextItemStorageID", + "defaults": {}, + "funcname": "SetNextItemStorageID", + "location": "imgui:677", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemStorageID", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNextItemWidth": [ { "args": "(float item_width)", @@ -30706,7 +33101,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:425", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -30728,7 +33123,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:374", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -30750,7 +33145,7 @@ "cimguiname": "igSetNextWindowClass", "defaults": {}, "funcname": "SetNextWindowClass", - "location": "imgui:818", + "location": "imgui:888", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowClass", "ret": "void", @@ -30778,7 +33173,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:371", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -30800,7 +33195,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:370", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -30828,7 +33223,7 @@ "cond": "0" }, "funcname": "SetNextWindowDockID", - "location": "imgui:817", + "location": "imgui:887", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowDockID", "ret": "void", @@ -30845,7 +33240,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:372", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -30878,7 +33273,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:367", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -30886,6 +33281,28 @@ "stname": "" } ], + "igSetNextWindowRefreshPolicy": [ + { + "args": "(ImGuiWindowRefreshFlags flags)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiWindowRefreshFlags" + } + ], + "argsoriginal": "(ImGuiWindowRefreshFlags flags)", + "call_args": "(flags)", + "cimguiname": "igSetNextWindowRefreshPolicy", + "defaults": {}, + "funcname": "SetNextWindowRefreshPolicy", + "location": "imgui_internal:3388", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextWindowRefreshPolicy", + "ret": "void", + "signature": "(ImGuiWindowRefreshFlags)", + "stname": "" + } + ], "igSetNextWindowScroll": [ { "args": "(const ImVec2 scroll)", @@ -30900,7 +33317,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:373", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -30928,7 +33345,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:368", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -30965,7 +33382,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:369", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -30987,7 +33404,7 @@ "cimguiname": "igSetNextWindowViewport", "defaults": {}, "funcname": "SetNextWindowViewport", - "location": "imgui:375", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowViewport", "ret": "void", @@ -31015,7 +33432,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:405", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_Float", "ret": "void", @@ -31043,7 +33460,7 @@ "cimguiname": "igSetScrollFromPosX", "defaults": {}, "funcname": "SetScrollFromPosX", - "location": "imgui_internal:3024", + "location": "imgui_internal:3444", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX_WindowPtr", "ret": "void", @@ -31071,7 +33488,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:406", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_Float", "ret": "void", @@ -31099,7 +33516,7 @@ "cimguiname": "igSetScrollFromPosY", "defaults": {}, "funcname": "SetScrollFromPosY", - "location": "imgui_internal:3025", + "location": "imgui_internal:3445", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY_WindowPtr", "ret": "void", @@ -31123,7 +33540,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:403", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -31147,7 +33564,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:404", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -31169,7 +33586,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:399", + "location": "imgui:436", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_Float", "ret": "void", @@ -31193,7 +33610,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui_internal:3022", + "location": "imgui_internal:3442", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX_WindowPtr", "ret": "void", @@ -31215,7 +33632,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:400", + "location": "imgui:437", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_Float", "ret": "void", @@ -31239,7 +33656,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui_internal:3023", + "location": "imgui_internal:3443", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY_WindowPtr", "ret": "void", @@ -31249,34 +33666,31 @@ ], "igSetShortcutRouting": [ { - "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", - "call_args": "(key_chord,owner_id,flags)", + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "call_args": "(key_chord,flags,owner_id)", "cimguiname": "igSetShortcutRouting", - "defaults": { - "flags": "0", - "owner_id": "0" - }, + "defaults": {}, "funcname": "SetShortcutRouting", - "location": "imgui_internal:3186", + "location": "imgui_internal:3632", "namespace": "ImGui", "ov_cimguiname": "igSetShortcutRouting", "ret": "bool", - "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "signature": "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -31294,7 +33708,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:903", + "location": "imgui:974", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -31316,7 +33730,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:800", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -31343,7 +33757,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:678", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -31369,7 +33783,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:679", + "location": "imgui:743", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -31395,7 +33809,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": {}, "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "imgui_internal:3262", + "location": "imgui_internal:3729", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -31423,7 +33837,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:378", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -31453,7 +33867,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:383", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -31483,7 +33897,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui_internal:2960", + "location": "imgui_internal:3368", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_WindowPtr", "ret": "void", @@ -31513,7 +33927,7 @@ "cimguiname": "igSetWindowDock", "defaults": {}, "funcname": "SetWindowDock", - "location": "imgui_internal:3216", + "location": "imgui_internal:3665", "namespace": "ImGui", "ov_cimguiname": "igSetWindowDock", "ret": "void", @@ -31530,7 +33944,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:379", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -31550,7 +33964,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:384", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -31572,7 +33986,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:380", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -31580,6 +33994,28 @@ "stname": "" } ], + "igSetWindowHiddenAndSkipItemsForCurrentFrame": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", + "defaults": {}, + "funcname": "SetWindowHiddenAndSkipItemsForCurrentFrame", + "location": "imgui_internal:3370", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowHiddenAndSkipItemsForCurrentFrame", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igSetWindowHitTestHole": [ { "args": "(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size)", @@ -31602,7 +34038,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": {}, "funcname": "SetWindowHitTestHole", - "location": "imgui_internal:2961", + "location": "imgui_internal:3369", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -31610,6 +34046,32 @@ "stname": "" } ], + "igSetWindowParentWindowForFocusRoute": [ + { + "args": "(ImGuiWindow* window,ImGuiWindow* parent_window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "parent_window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window,ImGuiWindow* parent_window)", + "call_args": "(window,parent_window)", + "cimguiname": "igSetWindowParentWindowForFocusRoute", + "defaults": {}, + "funcname": "SetWindowParentWindowForFocusRoute", + "location": "imgui_internal:3371", + "namespace": "ImGui", + "ov_cimguiname": "igSetWindowParentWindowForFocusRoute", + "ret": "void", + "signature": "(ImGuiWindow*,ImGuiWindow*)", + "stname": "" + } + ], "igSetWindowPos": [ { "args": "(const ImVec2 pos,ImGuiCond cond)", @@ -31630,7 +34092,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:376", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -31660,7 +34122,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:381", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -31690,7 +34152,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui_internal:2958", + "location": "imgui_internal:3366", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_WindowPtr", "ret": "void", @@ -31718,7 +34180,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:377", + "location": "imgui:422", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -31748,7 +34210,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:382", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -31778,7 +34240,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui_internal:2959", + "location": "imgui_internal:3367", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_WindowPtr", "ret": "void", @@ -31804,7 +34266,7 @@ "cimguiname": "igSetWindowViewport", "defaults": {}, "funcname": "SetWindowViewport", - "location": "imgui_internal:3001", + "location": "imgui_internal:3418", "namespace": "ImGui", "ov_cimguiname": "igSetWindowViewport", "ret": "void", @@ -31850,7 +34312,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": {}, "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "imgui_internal:3430", + "location": "imgui_internal:3912", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -31900,7 +34362,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": {}, "funcname": "ShadeVertsLinearUV", - "location": "imgui_internal:3431", + "location": "imgui_internal:3913", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -31908,36 +34370,105 @@ "stname": "" } ], + "igShadeVertsTransformPos": [ + { + "args": "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out)", + "argsT": [ + { + "name": "draw_list", + "type": "ImDrawList*" + }, + { + "name": "vert_start_idx", + "type": "int" + }, + { + "name": "vert_end_idx", + "type": "int" + }, + { + "name": "pivot_in", + "type": "const ImVec2" + }, + { + "name": "cos_a", + "type": "float" + }, + { + "name": "sin_a", + "type": "float" + }, + { + "name": "pivot_out", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2& pivot_in,float cos_a,float sin_a,const ImVec2& pivot_out)", + "call_args": "(draw_list,vert_start_idx,vert_end_idx,pivot_in,cos_a,sin_a,pivot_out)", + "cimguiname": "igShadeVertsTransformPos", + "defaults": {}, + "funcname": "ShadeVertsTransformPos", + "location": "imgui_internal:3914", + "namespace": "ImGui", + "ov_cimguiname": "igShadeVertsTransformPos", + "ret": "void", + "signature": "(ImDrawList*,int,int,const ImVec2,float,float,const ImVec2)", + "stname": "" + } + ], "igShortcut": [ { - "args": "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)", + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", "argsT": [ { "name": "key_chord", "type": "ImGuiKeyChord" }, - { - "name": "owner_id", - "type": "ImGuiID" - }, { "name": "flags", "type": "ImGuiInputFlags" } ], - "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)", - "call_args": "(key_chord,owner_id,flags)", + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", "cimguiname": "igShortcut", "defaults": { - "flags": "0", - "owner_id": "0" + "flags": "0" }, "funcname": "Shortcut", - "location": "imgui_internal:3185", + "location": "imgui:1014", "namespace": "ImGui", - "ov_cimguiname": "igShortcut", + "ov_cimguiname": "igShortcut_Nil", "ret": "bool", - "signature": "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + }, + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + }, + { + "name": "owner_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)", + "call_args": "(key_chord,flags,owner_id)", + "cimguiname": "igShortcut", + "defaults": {}, + "funcname": "Shortcut", + "location": "imgui_internal:3631", + "namespace": "ImGui", + "ov_cimguiname": "igShortcut_ID", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)", "stname": "" } ], @@ -31957,7 +34488,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:312", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -31981,7 +34512,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:310", + "location": "imgui:345", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -32005,7 +34536,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:308", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -32027,7 +34558,7 @@ "cimguiname": "igShowFontAtlas", "defaults": {}, "funcname": "ShowFontAtlas", - "location": "imgui_internal:3451", + "location": "imgui_internal:3936", "namespace": "ImGui", "ov_cimguiname": "igShowFontAtlas", "ret": "void", @@ -32049,7 +34580,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:315", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -32057,6 +34588,30 @@ "stname": "" } ], + "igShowIDStackToolWindow": [ + { + "args": "(bool* p_open)", + "argsT": [ + { + "name": "p_open", + "type": "bool*" + } + ], + "argsoriginal": "(bool* p_open=((void*)0))", + "call_args": "(p_open)", + "cimguiname": "igShowIDStackToolWindow", + "defaults": { + "p_open": "NULL" + }, + "funcname": "ShowIDStackToolWindow", + "location": "imgui:346", + "namespace": "ImGui", + "ov_cimguiname": "igShowIDStackToolWindow", + "ret": "void", + "signature": "(bool*)", + "stname": "" + } + ], "igShowMetricsWindow": [ { "args": "(bool* p_open)", @@ -32073,7 +34628,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:309", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -32081,30 +34636,6 @@ "stname": "" } ], - "igShowStackToolWindow": [ - { - "args": "(bool* p_open)", - "argsT": [ - { - "name": "p_open", - "type": "bool*" - } - ], - "argsoriginal": "(bool* p_open=((void*)0))", - "call_args": "(p_open)", - "cimguiname": "igShowStackToolWindow", - "defaults": { - "p_open": "NULL" - }, - "funcname": "ShowStackToolWindow", - "location": "imgui:311", - "namespace": "ImGui", - "ov_cimguiname": "igShowStackToolWindow", - "ret": "void", - "signature": "(bool*)", - "stname": "" - } - ], "igShowStyleEditor": [ { "args": "(ImGuiStyle* ref)", @@ -32121,7 +34652,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:313", + "location": "imgui:348", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -32143,7 +34674,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:314", + "location": "imgui:349", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -32160,7 +34691,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:316", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -32190,7 +34721,7 @@ "cimguiname": "igShrinkWidths", "defaults": {}, "funcname": "ShrinkWidths", - "location": "imgui_internal:3062", + "location": "imgui_internal:3482", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -32207,7 +34738,7 @@ "cimguiname": "igShutdown", "defaults": {}, "funcname": "Shutdown", - "location": "imgui_internal:2982", + "location": "imgui_internal:3398", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -32254,7 +34785,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:570", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -32308,7 +34839,7 @@ "cimguiname": "igSliderBehavior", "defaults": {}, "funcname": "SliderBehavior", - "location": "imgui_internal:3389", + "location": "imgui_internal:3866", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -32353,7 +34884,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:566", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -32398,7 +34929,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:567", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -32443,7 +34974,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:568", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -32488,7 +35019,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:569", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -32533,7 +35064,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:571", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -32578,7 +35109,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:572", + "location": "imgui:621", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -32623,7 +35154,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:573", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -32668,7 +35199,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:574", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -32717,7 +35248,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:575", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -32770,7 +35301,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:576", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -32792,7 +35323,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:510", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -32809,7 +35340,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:450", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -32871,7 +35402,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "imgui_internal:3390", + "location": "imgui_internal:3867", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -32893,7 +35424,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": {}, "funcname": "StartMouseMovingWindow", - "location": "imgui_internal:2987", + "location": "imgui_internal:3404", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -32903,7 +35434,7 @@ ], "igStartMouseMovingWindowOrNode": [ { - "args": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)", + "args": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)", "argsT": [ { "name": "window", @@ -32914,16 +35445,16 @@ "type": "ImGuiDockNode*" }, { - "name": "undock_floating_node", + "name": "undock", "type": "bool" } ], - "argsoriginal": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)", - "call_args": "(window,node,undock_floating_node)", + "argsoriginal": "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)", + "call_args": "(window,node,undock)", "cimguiname": "igStartMouseMovingWindowOrNode", "defaults": {}, "funcname": "StartMouseMovingWindowOrNode", - "location": "imgui_internal:2988", + "location": "imgui_internal:3405", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindowOrNode", "ret": "void", @@ -32947,7 +35478,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:322", + "location": "imgui:357", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -32971,7 +35502,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:320", + "location": "imgui:355", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -32995,7 +35526,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:321", + "location": "imgui:356", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -33025,7 +35556,7 @@ "cimguiname": "igTabBarAddTab", "defaults": {}, "funcname": "TabBarAddTab", - "location": "imgui_internal:3330", + "location": "imgui_internal:3805", "namespace": "ImGui", "ov_cimguiname": "igTabBarAddTab", "ret": "void", @@ -33051,7 +35582,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": {}, "funcname": "TabBarCloseTab", - "location": "imgui_internal:3332", + "location": "imgui_internal:3807", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -33073,7 +35604,7 @@ "cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "defaults": {}, "funcname": "TabBarFindMostRecentlySelectedTabForActiveWindow", - "location": "imgui_internal:3329", + "location": "imgui_internal:3801", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindMostRecentlySelectedTabForActiveWindow", "ret": "ImGuiTabItem*", @@ -33099,7 +35630,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": {}, "funcname": "TabBarFindTabByID", - "location": "imgui_internal:3328", + "location": "imgui_internal:3799", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -33107,6 +35638,106 @@ "stname": "" } ], + "igTabBarFindTabByOrder": [ + { + "args": "(ImGuiTabBar* tab_bar,int order)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "order", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,int order)", + "call_args": "(tab_bar,order)", + "cimguiname": "igTabBarFindTabByOrder", + "defaults": {}, + "funcname": "TabBarFindTabByOrder", + "location": "imgui_internal:3800", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarFindTabByOrder", + "ret": "ImGuiTabItem*", + "signature": "(ImGuiTabBar*,int)", + "stname": "" + } + ], + "igTabBarGetCurrentTab": [ + { + "args": "(ImGuiTabBar* tab_bar)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar)", + "call_args": "(tab_bar)", + "cimguiname": "igTabBarGetCurrentTab", + "defaults": {}, + "funcname": "TabBarGetCurrentTab", + "location": "imgui_internal:3802", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarGetCurrentTab", + "ret": "ImGuiTabItem*", + "signature": "(ImGuiTabBar*)", + "stname": "" + } + ], + "igTabBarGetTabName": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "ImGuiTabItem*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "call_args": "(tab_bar,tab)", + "cimguiname": "igTabBarGetTabName", + "defaults": {}, + "funcname": "TabBarGetTabName", + "location": "imgui_internal:3804", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarGetTabName", + "ret": "const char*", + "signature": "(ImGuiTabBar*,ImGuiTabItem*)", + "stname": "" + } + ], + "igTabBarGetTabOrder": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "ImGuiTabItem*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "call_args": "(tab_bar,tab)", + "cimguiname": "igTabBarGetTabOrder", + "defaults": {}, + "funcname": "TabBarGetTabOrder", + "location": "imgui_internal:3803", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarGetTabOrder", + "ret": "int", + "signature": "(ImGuiTabBar*,ImGuiTabItem*)", + "stname": "" + } + ], "igTabBarProcessReorder": [ { "args": "(ImGuiTabBar* tab_bar)", @@ -33121,7 +35752,7 @@ "cimguiname": "igTabBarProcessReorder", "defaults": {}, "funcname": "TabBarProcessReorder", - "location": "imgui_internal:3335", + "location": "imgui_internal:3811", "namespace": "ImGui", "ov_cimguiname": "igTabBarProcessReorder", "ret": "bool", @@ -33129,9 +35760,9 @@ "stname": "" } ], - "igTabBarQueueReorder": [ + "igTabBarQueueFocus": [ { - "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)", + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", "argsT": [ { "name": "tab_bar", @@ -33139,29 +35770,55 @@ }, { "name": "tab", - "type": "const ImGuiTabItem*" + "type": "ImGuiTabItem*" + } + ], + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)", + "call_args": "(tab_bar,tab)", + "cimguiname": "igTabBarQueueFocus", + "defaults": {}, + "funcname": "TabBarQueueFocus", + "location": "imgui_internal:3808", + "namespace": "ImGui", + "ov_cimguiname": "igTabBarQueueFocus", + "ret": "void", + "signature": "(ImGuiTabBar*,ImGuiTabItem*)", + "stname": "" + } + ], + "igTabBarQueueReorder": [ + { + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)", + "argsT": [ + { + "name": "tab_bar", + "type": "ImGuiTabBar*" + }, + { + "name": "tab", + "type": "ImGuiTabItem*" }, { "name": "offset", "type": "int" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)", + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)", "call_args": "(tab_bar,tab,offset)", "cimguiname": "igTabBarQueueReorder", "defaults": {}, "funcname": "TabBarQueueReorder", - "location": "imgui_internal:3333", + "location": "imgui_internal:3809", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorder", "ret": "void", - "signature": "(ImGuiTabBar*,const ImGuiTabItem*,int)", + "signature": "(ImGuiTabBar*,ImGuiTabItem*,int)", "stname": "" } ], "igTabBarQueueReorderFromMousePos": [ { - "args": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)", + "args": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)", "argsT": [ { "name": "tab_bar", @@ -33169,23 +35826,23 @@ }, { "name": "tab", - "type": "const ImGuiTabItem*" + "type": "ImGuiTabItem*" }, { "name": "mouse_pos", "type": "ImVec2" } ], - "argsoriginal": "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)", + "argsoriginal": "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)", "call_args": "(tab_bar,tab,mouse_pos)", "cimguiname": "igTabBarQueueReorderFromMousePos", "defaults": {}, "funcname": "TabBarQueueReorderFromMousePos", - "location": "imgui_internal:3334", + "location": "imgui_internal:3810", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueReorderFromMousePos", "ret": "void", - "signature": "(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)", + "signature": "(ImGuiTabBar*,ImGuiTabItem*,ImVec2)", "stname": "" } ], @@ -33207,7 +35864,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": {}, "funcname": "TabBarRemoveTab", - "location": "imgui_internal:3331", + "location": "imgui_internal:3806", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -33241,7 +35898,7 @@ "cimguiname": "igTabItemBackground", "defaults": {}, "funcname": "TabItemBackground", - "location": "imgui_internal:3339", + "location": "imgui_internal:3815", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -33269,7 +35926,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:799", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -33299,7 +35956,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3337", + "location": "imgui_internal:3813", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_Str", @@ -33324,7 +35981,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": {}, "funcname": "TabItemCalcSize", - "location": "imgui_internal:3338", + "location": "imgui_internal:3814", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize_WindowPtr", @@ -33363,7 +36020,7 @@ "cimguiname": "igTabItemEx", "defaults": {}, "funcname": "TabItemEx", - "location": "imgui_internal:3336", + "location": "imgui_internal:3812", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -33421,7 +36078,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": {}, "funcname": "TabItemLabelAndCloseButton", - "location": "imgui_internal:3340", + "location": "imgui_internal:3816", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "void", @@ -33429,6 +36086,61 @@ "stname": "" } ], + "igTableAngledHeadersRow": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableAngledHeadersRow", + "defaults": {}, + "funcname": "TableAngledHeadersRow", + "location": "imgui:834", + "namespace": "ImGui", + "ov_cimguiname": "igTableAngledHeadersRow", + "ret": "void", + "signature": "()", + "stname": "" + } + ], + "igTableAngledHeadersRowEx": [ + { + "args": "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)", + "argsT": [ + { + "name": "row_id", + "type": "ImGuiID" + }, + { + "name": "angle", + "type": "float" + }, + { + "name": "max_label_width", + "type": "float" + }, + { + "name": "data", + "type": "const ImGuiTableHeaderData*" + }, + { + "name": "data_count", + "type": "int" + } + ], + "argsoriginal": "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)", + "call_args": "(row_id,angle,max_label_width,data,data_count)", + "cimguiname": "igTableAngledHeadersRowEx", + "defaults": {}, + "funcname": "TableAngledHeadersRowEx", + "location": "imgui_internal:3749", + "namespace": "ImGui", + "ov_cimguiname": "igTableAngledHeadersRowEx", + "ret": "void", + "signature": "(ImGuiID,float,float,const ImGuiTableHeaderData*,int)", + "stname": "" + } + ], "igTableBeginApplyRequests": [ { "args": "(ImGuiTable* table)", @@ -33443,7 +36155,7 @@ "cimguiname": "igTableBeginApplyRequests", "defaults": {}, "funcname": "TableBeginApplyRequests", - "location": "imgui_internal:3287", + "location": "imgui_internal:3756", "namespace": "ImGui", "ov_cimguiname": "igTableBeginApplyRequests", "ret": "void", @@ -33469,7 +36181,7 @@ "cimguiname": "igTableBeginCell", "defaults": {}, "funcname": "TableBeginCell", - "location": "imgui_internal:3304", + "location": "imgui_internal:3774", "namespace": "ImGui", "ov_cimguiname": "igTableBeginCell", "ret": "void", @@ -33491,7 +36203,7 @@ "cimguiname": "igTableBeginContextMenuPopup", "defaults": {}, "funcname": "TableBeginContextMenuPopup", - "location": "imgui_internal:3294", + "location": "imgui_internal:3763", "namespace": "ImGui", "ov_cimguiname": "igTableBeginContextMenuPopup", "ret": "bool", @@ -33517,7 +36229,7 @@ "cimguiname": "igTableBeginInitMemory", "defaults": {}, "funcname": "TableBeginInitMemory", - "location": "imgui_internal:3286", + "location": "imgui_internal:3755", "namespace": "ImGui", "ov_cimguiname": "igTableBeginInitMemory", "ret": "void", @@ -33539,7 +36251,7 @@ "cimguiname": "igTableBeginRow", "defaults": {}, "funcname": "TableBeginRow", - "location": "imgui_internal:3302", + "location": "imgui_internal:3772", "namespace": "ImGui", "ov_cimguiname": "igTableBeginRow", "ret": "void", @@ -33547,6 +36259,32 @@ "stname": "" } ], + "igTableCalcMaxColumnWidth": [ + { + "args": "(const ImGuiTable* table,int column_n)", + "argsT": [ + { + "name": "table", + "type": "const ImGuiTable*" + }, + { + "name": "column_n", + "type": "int" + } + ], + "argsoriginal": "(const ImGuiTable* table,int column_n)", + "call_args": "(table,column_n)", + "cimguiname": "igTableCalcMaxColumnWidth", + "defaults": {}, + "funcname": "TableCalcMaxColumnWidth", + "location": "imgui_internal:3779", + "namespace": "ImGui", + "ov_cimguiname": "igTableCalcMaxColumnWidth", + "ret": "float", + "signature": "(const ImGuiTable*,int)", + "stname": "" + } + ], "igTableDrawBorders": [ { "args": "(ImGuiTable* table)", @@ -33561,7 +36299,7 @@ "cimguiname": "igTableDrawBorders", "defaults": {}, "funcname": "TableDrawBorders", - "location": "imgui_internal:3292", + "location": "imgui_internal:3761", "namespace": "ImGui", "ov_cimguiname": "igTableDrawBorders", "ret": "void", @@ -33569,25 +36307,29 @@ "stname": "" } ], - "igTableDrawContextMenu": [ + "igTableDrawDefaultContextMenu": [ { - "args": "(ImGuiTable* table)", + "args": "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)", "argsT": [ { "name": "table", "type": "ImGuiTable*" + }, + { + "name": "flags_for_section_to_display", + "type": "ImGuiTableFlags" } ], - "argsoriginal": "(ImGuiTable* table)", - "call_args": "(table)", - "cimguiname": "igTableDrawContextMenu", + "argsoriginal": "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)", + "call_args": "(table,flags_for_section_to_display)", + "cimguiname": "igTableDrawDefaultContextMenu", "defaults": {}, - "funcname": "TableDrawContextMenu", - "location": "imgui_internal:3293", + "funcname": "TableDrawDefaultContextMenu", + "location": "imgui_internal:3762", "namespace": "ImGui", - "ov_cimguiname": "igTableDrawContextMenu", + "ov_cimguiname": "igTableDrawDefaultContextMenu", "ret": "void", - "signature": "(ImGuiTable*)", + "signature": "(ImGuiTable*,ImGuiTableFlags)", "stname": "" } ], @@ -33605,7 +36347,7 @@ "cimguiname": "igTableEndCell", "defaults": {}, "funcname": "TableEndCell", - "location": "imgui_internal:3305", + "location": "imgui_internal:3775", "namespace": "ImGui", "ov_cimguiname": "igTableEndCell", "ret": "void", @@ -33627,7 +36369,7 @@ "cimguiname": "igTableEndRow", "defaults": {}, "funcname": "TableEndRow", - "location": "imgui_internal:3303", + "location": "imgui_internal:3773", "namespace": "ImGui", "ov_cimguiname": "igTableEndRow", "ret": "void", @@ -33649,7 +36391,7 @@ "cimguiname": "igTableFindByID", "defaults": {}, "funcname": "TableFindByID", - "location": "imgui_internal:3284", + "location": "imgui_internal:3753", "namespace": "ImGui", "ov_cimguiname": "igTableFindByID", "ret": "ImGuiTable*", @@ -33675,7 +36417,7 @@ "cimguiname": "igTableFixColumnSortDirection", "defaults": {}, "funcname": "TableFixColumnSortDirection", - "location": "imgui_internal:3300", + "location": "imgui_internal:3770", "namespace": "ImGui", "ov_cimguiname": "igTableFixColumnSortDirection", "ret": "void", @@ -33692,7 +36434,7 @@ "cimguiname": "igTableGcCompactSettings", "defaults": {}, "funcname": "TableGcCompactSettings", - "location": "imgui_internal:3315", + "location": "imgui_internal:3785", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactSettings", "ret": "void", @@ -33714,7 +36456,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3313", + "location": "imgui_internal:3783", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TablePtr", "ret": "void", @@ -33734,7 +36476,7 @@ "cimguiname": "igTableGcCompactTransientBuffers", "defaults": {}, "funcname": "TableGcCompactTransientBuffers", - "location": "imgui_internal:3314", + "location": "imgui_internal:3784", "namespace": "ImGui", "ov_cimguiname": "igTableGcCompactTransientBuffers_TableTempDataPtr", "ret": "void", @@ -33756,7 +36498,7 @@ "cimguiname": "igTableGetBoundSettings", "defaults": {}, "funcname": "TableGetBoundSettings", - "location": "imgui_internal:3321", + "location": "imgui_internal:3791", "namespace": "ImGui", "ov_cimguiname": "igTableGetBoundSettings", "ret": "ImGuiTableSettings*", @@ -33786,7 +36528,7 @@ "cimguiname": "igTableGetCellBgRect", "defaults": {}, "funcname": "TableGetCellBgRect", - "location": "imgui_internal:3306", + "location": "imgui_internal:3776", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTableGetCellBgRect", @@ -33804,7 +36546,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:774", + "location": "imgui:843", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -33828,7 +36570,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:778", + "location": "imgui:847", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -33845,7 +36587,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:775", + "location": "imgui:844", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -33869,7 +36611,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:777", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_Int", "ret": "const char*", @@ -33893,7 +36635,7 @@ "cimguiname": "igTableGetColumnName", "defaults": {}, "funcname": "TableGetColumnName", - "location": "imgui_internal:3307", + "location": "imgui_internal:3777", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName_TablePtr", "ret": "const char*", @@ -33915,7 +36657,7 @@ "cimguiname": "igTableGetColumnNextSortDirection", "defaults": {}, "funcname": "TableGetColumnNextSortDirection", - "location": "imgui_internal:3299", + "location": "imgui_internal:3769", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnNextSortDirection", "ret": "ImGuiSortDirection", @@ -33925,11 +36667,11 @@ ], "igTableGetColumnResizeID": [ { - "args": "(const ImGuiTable* table,int column_n,int instance_no)", + "args": "(ImGuiTable* table,int column_n,int instance_no)", "argsT": [ { "name": "table", - "type": "const ImGuiTable*" + "type": "ImGuiTable*" }, { "name": "column_n", @@ -33940,18 +36682,18 @@ "type": "int" } ], - "argsoriginal": "(const ImGuiTable* table,int column_n,int instance_no=0)", + "argsoriginal": "(ImGuiTable* table,int column_n,int instance_no=0)", "call_args": "(table,column_n,instance_no)", "cimguiname": "igTableGetColumnResizeID", "defaults": { "instance_no": "0" }, "funcname": "TableGetColumnResizeID", - "location": "imgui_internal:3308", + "location": "imgui_internal:3778", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnResizeID", "ret": "ImGuiID", - "signature": "(const ImGuiTable*,int,int)", + "signature": "(ImGuiTable*,int,int)", "stname": "" } ], @@ -33973,7 +36715,7 @@ "cimguiname": "igTableGetColumnWidthAuto", "defaults": {}, "funcname": "TableGetColumnWidthAuto", - "location": "imgui_internal:3301", + "location": "imgui_internal:3771", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnWidthAuto", "ret": "float", @@ -33981,6 +36723,23 @@ "stname": "" } ], + "igTableGetHeaderAngledMaxLabelWidth": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableGetHeaderAngledMaxLabelWidth", + "defaults": {}, + "funcname": "TableGetHeaderAngledMaxLabelWidth", + "location": "imgui_internal:3746", + "namespace": "ImGui", + "ov_cimguiname": "igTableGetHeaderAngledMaxLabelWidth", + "ret": "float", + "signature": "()", + "stname": "" + } + ], "igTableGetHeaderRowHeight": [ { "args": "()", @@ -33990,7 +36749,7 @@ "cimguiname": "igTableGetHeaderRowHeight", "defaults": {}, "funcname": "TableGetHeaderRowHeight", - "location": "imgui_internal:3278", + "location": "imgui_internal:3745", "namespace": "ImGui", "ov_cimguiname": "igTableGetHeaderRowHeight", "ret": "float", @@ -34007,7 +36766,7 @@ "cimguiname": "igTableGetHoveredColumn", "defaults": {}, "funcname": "TableGetHoveredColumn", - "location": "imgui_internal:3277", + "location": "imgui:849", "namespace": "ImGui", "ov_cimguiname": "igTableGetHoveredColumn", "ret": "int", @@ -34015,6 +36774,23 @@ "stname": "" } ], + "igTableGetHoveredRow": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableGetHoveredRow", + "defaults": {}, + "funcname": "TableGetHoveredRow", + "location": "imgui_internal:3744", + "namespace": "ImGui", + "ov_cimguiname": "igTableGetHoveredRow", + "ret": "int", + "signature": "()", + "stname": "" + } + ], "igTableGetInstanceData": [ { "args": "(ImGuiTable* table,int instance_no)", @@ -34033,7 +36809,7 @@ "cimguiname": "igTableGetInstanceData", "defaults": {}, "funcname": "TableGetInstanceData", - "location": "imgui_internal:3296", + "location": "imgui_internal:3765", "namespace": "ImGui", "ov_cimguiname": "igTableGetInstanceData", "ret": "ImGuiTableInstanceData*", @@ -34041,29 +36817,29 @@ "stname": "" } ], - "igTableGetMaxColumnWidth": [ + "igTableGetInstanceID": [ { - "args": "(const ImGuiTable* table,int column_n)", + "args": "(ImGuiTable* table,int instance_no)", "argsT": [ { "name": "table", - "type": "const ImGuiTable*" + "type": "ImGuiTable*" }, { - "name": "column_n", + "name": "instance_no", "type": "int" } ], - "argsoriginal": "(const ImGuiTable* table,int column_n)", - "call_args": "(table,column_n)", - "cimguiname": "igTableGetMaxColumnWidth", + "argsoriginal": "(ImGuiTable* table,int instance_no)", + "call_args": "(table,instance_no)", + "cimguiname": "igTableGetInstanceID", "defaults": {}, - "funcname": "TableGetMaxColumnWidth", - "location": "imgui_internal:3309", + "funcname": "TableGetInstanceID", + "location": "imgui_internal:3766", "namespace": "ImGui", - "ov_cimguiname": "igTableGetMaxColumnWidth", - "ret": "float", - "signature": "(const ImGuiTable*,int)", + "ov_cimguiname": "igTableGetInstanceID", + "ret": "ImGuiID", + "signature": "(ImGuiTable*,int)", "stname": "" } ], @@ -34076,7 +36852,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:776", + "location": "imgui:845", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -34093,7 +36869,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:773", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -34115,7 +36891,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:765", + "location": "imgui:832", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -34132,7 +36908,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:764", + "location": "imgui:833", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -34154,7 +36930,7 @@ "cimguiname": "igTableLoadSettings", "defaults": {}, "funcname": "TableLoadSettings", - "location": "imgui_internal:3318", + "location": "imgui_internal:3788", "namespace": "ImGui", "ov_cimguiname": "igTableLoadSettings", "ret": "void", @@ -34176,7 +36952,7 @@ "cimguiname": "igTableMergeDrawChannels", "defaults": {}, "funcname": "TableMergeDrawChannels", - "location": "imgui_internal:3295", + "location": "imgui_internal:3764", "namespace": "ImGui", "ov_cimguiname": "igTableMergeDrawChannels", "ret": "void", @@ -34193,7 +36969,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:751", + "location": "imgui:819", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -34222,7 +36998,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:750", + "location": "imgui:818", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -34246,7 +37022,7 @@ "column_n": "-1" }, "funcname": "TableOpenContextMenu", - "location": "imgui_internal:3274", + "location": "imgui_internal:3741", "namespace": "ImGui", "ov_cimguiname": "igTableOpenContextMenu", "ret": "void", @@ -34263,7 +37039,7 @@ "cimguiname": "igTablePopBackgroundChannel", "defaults": {}, "funcname": "TablePopBackgroundChannel", - "location": "imgui_internal:3280", + "location": "imgui_internal:3748", "namespace": "ImGui", "ov_cimguiname": "igTablePopBackgroundChannel", "ret": "void", @@ -34280,7 +37056,7 @@ "cimguiname": "igTablePushBackgroundChannel", "defaults": {}, "funcname": "TablePushBackgroundChannel", - "location": "imgui_internal:3279", + "location": "imgui_internal:3747", "namespace": "ImGui", "ov_cimguiname": "igTablePushBackgroundChannel", "ret": "void", @@ -34302,7 +37078,7 @@ "cimguiname": "igTableRemove", "defaults": {}, "funcname": "TableRemove", - "location": "imgui_internal:3312", + "location": "imgui_internal:3782", "namespace": "ImGui", "ov_cimguiname": "igTableRemove", "ret": "void", @@ -34324,7 +37100,7 @@ "cimguiname": "igTableResetSettings", "defaults": {}, "funcname": "TableResetSettings", - "location": "imgui_internal:3320", + "location": "imgui_internal:3790", "namespace": "ImGui", "ov_cimguiname": "igTableResetSettings", "ret": "void", @@ -34346,7 +37122,7 @@ "cimguiname": "igTableSaveSettings", "defaults": {}, "funcname": "TableSaveSettings", - "location": "imgui_internal:3319", + "location": "imgui_internal:3789", "namespace": "ImGui", "ov_cimguiname": "igTableSaveSettings", "ret": "void", @@ -34378,7 +37154,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:780", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -34404,7 +37180,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:779", + "location": "imgui:848", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -34426,7 +37202,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:752", + "location": "imgui:820", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -34456,7 +37232,7 @@ "cimguiname": "igTableSetColumnSortDirection", "defaults": {}, "funcname": "TableSetColumnSortDirection", - "location": "imgui_internal:3276", + "location": "imgui_internal:3743", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnSortDirection", "ret": "void", @@ -34482,7 +37258,7 @@ "cimguiname": "igTableSetColumnWidth", "defaults": {}, "funcname": "TableSetColumnWidth", - "location": "imgui_internal:3275", + "location": "imgui_internal:3742", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidth", "ret": "void", @@ -34504,7 +37280,7 @@ "cimguiname": "igTableSetColumnWidthAutoAll", "defaults": {}, "funcname": "TableSetColumnWidthAutoAll", - "location": "imgui_internal:3311", + "location": "imgui_internal:3781", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoAll", "ret": "void", @@ -34530,7 +37306,7 @@ "cimguiname": "igTableSetColumnWidthAutoSingle", "defaults": {}, "funcname": "TableSetColumnWidthAutoSingle", - "location": "imgui_internal:3310", + "location": "imgui_internal:3780", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnWidthAutoSingle", "ret": "void", @@ -34547,7 +37323,7 @@ "cimguiname": "igTableSettingsAddSettingsHandler", "defaults": {}, "funcname": "TableSettingsAddSettingsHandler", - "location": "imgui_internal:3322", + "location": "imgui_internal:3792", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsAddSettingsHandler", "ret": "void", @@ -34573,7 +37349,7 @@ "cimguiname": "igTableSettingsCreate", "defaults": {}, "funcname": "TableSettingsCreate", - "location": "imgui_internal:3323", + "location": "imgui_internal:3793", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsCreate", "ret": "ImGuiTableSettings*", @@ -34595,7 +37371,7 @@ "cimguiname": "igTableSettingsFindByID", "defaults": {}, "funcname": "TableSettingsFindByID", - "location": "imgui_internal:3324", + "location": "imgui_internal:3794", "namespace": "ImGui", "ov_cimguiname": "igTableSettingsFindByID", "ret": "ImGuiTableSettings*", @@ -34633,7 +37409,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:762", + "location": "imgui:830", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -34655,7 +37431,7 @@ "cimguiname": "igTableSetupDrawChannels", "defaults": {}, "funcname": "TableSetupDrawChannels", - "location": "imgui_internal:3288", + "location": "imgui_internal:3757", "namespace": "ImGui", "ov_cimguiname": "igTableSetupDrawChannels", "ret": "void", @@ -34681,7 +37457,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:763", + "location": "imgui:831", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -34703,7 +37479,7 @@ "cimguiname": "igTableSortSpecsBuild", "defaults": {}, "funcname": "TableSortSpecsBuild", - "location": "imgui_internal:3298", + "location": "imgui_internal:3768", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsBuild", "ret": "void", @@ -34725,7 +37501,7 @@ "cimguiname": "igTableSortSpecsSanitize", "defaults": {}, "funcname": "TableSortSpecsSanitize", - "location": "imgui_internal:3297", + "location": "imgui_internal:3767", "namespace": "ImGui", "ov_cimguiname": "igTableSortSpecsSanitize", "ret": "void", @@ -34747,7 +37523,7 @@ "cimguiname": "igTableUpdateBorders", "defaults": {}, "funcname": "TableUpdateBorders", - "location": "imgui_internal:3290", + "location": "imgui_internal:3759", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateBorders", "ret": "void", @@ -34769,7 +37545,7 @@ "cimguiname": "igTableUpdateColumnsWeightFromWidth", "defaults": {}, "funcname": "TableUpdateColumnsWeightFromWidth", - "location": "imgui_internal:3291", + "location": "imgui_internal:3760", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateColumnsWeightFromWidth", "ret": "void", @@ -34791,7 +37567,7 @@ "cimguiname": "igTableUpdateLayout", "defaults": {}, "funcname": "TableUpdateLayout", - "location": "imgui_internal:3289", + "location": "imgui_internal:3758", "namespace": "ImGui", "ov_cimguiname": "igTableUpdateLayout", "ret": "void", @@ -34799,6 +37575,28 @@ "stname": "" } ], + "igTeleportMousePos": [ + { + "args": "(const ImVec2 pos)", + "argsT": [ + { + "name": "pos", + "type": "const ImVec2" + } + ], + "argsoriginal": "(const ImVec2& pos)", + "call_args": "(pos)", + "cimguiname": "igTeleportMousePos", + "defaults": {}, + "funcname": "TeleportMousePos", + "location": "imgui_internal:3580", + "namespace": "ImGui", + "ov_cimguiname": "igTeleportMousePos", + "ret": "void", + "signature": "(const ImVec2)", + "stname": "" + } + ], "igTempInputIsActive": [ { "args": "(ImGuiID id)", @@ -34813,7 +37611,7 @@ "cimguiname": "igTempInputIsActive", "defaults": {}, "funcname": "TempInputIsActive", - "location": "imgui_internal:3418", + "location": "imgui_internal:3899", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -34866,7 +37664,7 @@ "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "imgui_internal:3417", + "location": "imgui_internal:3898", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -34908,7 +37706,7 @@ "cimguiname": "igTempInputText", "defaults": {}, "funcname": "TempInputText", - "location": "imgui_internal:3416", + "location": "imgui_internal:3897", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -34934,7 +37732,7 @@ "cimguiname": "igTestKeyOwner", "defaults": {}, "funcname": "TestKeyOwner", - "location": "imgui_internal:3159", + "location": "imgui_internal:3599", "namespace": "ImGui", "ov_cimguiname": "igTestKeyOwner", "ret": "bool", @@ -34960,7 +37758,7 @@ "cimguiname": "igTestShortcutRouting", "defaults": {}, "funcname": "TestShortcutRouting", - "location": "imgui_internal:3187", + "location": "imgui_internal:3633", "namespace": "ImGui", "ov_cimguiname": "igTestShortcutRouting", "ret": "bool", @@ -34987,7 +37785,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:493", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -35018,7 +37816,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:495", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -35048,7 +37846,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:496", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -35075,7 +37873,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:497", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -35101,7 +37899,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:498", + "location": "imgui:542", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -35134,7 +37932,7 @@ "text_end": "NULL" }, "funcname": "TextEx", - "location": "imgui_internal:3368", + "location": "imgui_internal:3844", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -35142,6 +37940,56 @@ "stname": "" } ], + "igTextLink": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igTextLink", + "defaults": {}, + "funcname": "TextLink", + "location": "imgui:565", + "namespace": "ImGui", + "ov_cimguiname": "igTextLink", + "ret": "bool", + "signature": "(const char*)", + "stname": "" + } + ], + "igTextLinkOpenURL": [ + { + "args": "(const char* label,const char* url)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "url", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label,const char* url=((void*)0))", + "call_args": "(label,url)", + "cimguiname": "igTextLinkOpenURL", + "defaults": { + "url": "NULL" + }, + "funcname": "TextLinkOpenURL", + "location": "imgui:566", + "namespace": "ImGui", + "ov_cimguiname": "igTextLinkOpenURL", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igTextUnformatted": [ { "args": "(const char* text,const char* text_end)", @@ -35162,7 +38010,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:492", + "location": "imgui:536", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -35188,7 +38036,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:494", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -35215,7 +38063,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:499", + "location": "imgui:543", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -35241,7 +38089,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:500", + "location": "imgui:544", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -35251,7 +38099,7 @@ ], "igTranslateWindowsInViewport": [ { - "args": "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos)", + "args": "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size)", "argsT": [ { "name": "viewport", @@ -35264,18 +38112,26 @@ { "name": "new_pos", "type": "const ImVec2" + }, + { + "name": "old_size", + "type": "const ImVec2" + }, + { + "name": "new_size", + "type": "const ImVec2" } ], - "argsoriginal": "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos)", - "call_args": "(viewport,old_pos,new_pos)", + "argsoriginal": "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos,const ImVec2& old_size,const ImVec2& new_size)", + "call_args": "(viewport,old_pos,new_pos,old_size,new_size)", "cimguiname": "igTranslateWindowsInViewport", "defaults": {}, "funcname": "TranslateWindowsInViewport", - "location": "imgui_internal:2998", + "location": "imgui_internal:3415", "namespace": "ImGui", "ov_cimguiname": "igTranslateWindowsInViewport", "ret": "void", - "signature": "(ImGuiViewportP*,const ImVec2,const ImVec2)", + "signature": "(ImGuiViewportP*,const ImVec2,const ImVec2,const ImVec2,const ImVec2)", "stname": "" } ], @@ -35293,7 +38149,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:611", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -35322,7 +38178,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:612", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -35351,7 +38207,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:613", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -35387,7 +38243,7 @@ "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "imgui_internal:3391", + "location": "imgui_internal:3870", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -35415,7 +38271,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:616", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -35448,7 +38304,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:617", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -35481,7 +38337,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:618", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -35515,7 +38371,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:619", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -35547,7 +38403,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:620", + "location": "imgui:669", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -35555,12 +38411,34 @@ "stname": "" } ], - "igTreeNodeSetOpen": [ + "igTreeNodeGetOpen": [ { - "args": "(ImGuiID id,bool open)", + "args": "(ImGuiID storage_id)", "argsT": [ { - "name": "id", + "name": "storage_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID storage_id)", + "call_args": "(storage_id)", + "cimguiname": "igTreeNodeGetOpen", + "defaults": {}, + "funcname": "TreeNodeGetOpen", + "location": "imgui_internal:3872", + "namespace": "ImGui", + "ov_cimguiname": "igTreeNodeGetOpen", + "ret": "bool", + "signature": "(ImGuiID)", + "stname": "" + } + ], + "igTreeNodeSetOpen": [ + { + "args": "(ImGuiID storage_id,bool open)", + "argsT": [ + { + "name": "storage_id", "type": "ImGuiID" }, { @@ -35568,12 +38446,12 @@ "type": "bool" } ], - "argsoriginal": "(ImGuiID id,bool open)", - "call_args": "(id,open)", + "argsoriginal": "(ImGuiID storage_id,bool open)", + "call_args": "(storage_id,open)", "cimguiname": "igTreeNodeSetOpen", "defaults": {}, "funcname": "TreeNodeSetOpen", - "location": "imgui_internal:3393", + "location": "imgui_internal:3873", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeSetOpen", "ret": "void", @@ -35583,10 +38461,10 @@ ], "igTreeNodeUpdateNextOpen": [ { - "args": "(ImGuiID id,ImGuiTreeNodeFlags flags)", + "args": "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)", "argsT": [ { - "name": "id", + "name": "storage_id", "type": "ImGuiID" }, { @@ -35594,12 +38472,12 @@ "type": "ImGuiTreeNodeFlags" } ], - "argsoriginal": "(ImGuiID id,ImGuiTreeNodeFlags flags)", - "call_args": "(id,flags)", + "argsoriginal": "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)", + "call_args": "(storage_id,flags)", "cimguiname": "igTreeNodeUpdateNextOpen", "defaults": {}, "funcname": "TreeNodeUpdateNextOpen", - "location": "imgui_internal:3394", + "location": "imgui_internal:3874", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeUpdateNextOpen", "ret": "bool", @@ -35629,7 +38507,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:614", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -35657,7 +38535,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:615", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -35674,7 +38552,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:623", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -35696,7 +38574,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:621", + "location": "imgui:670", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -35716,7 +38594,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:622", + "location": "imgui:671", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -35738,7 +38616,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": {}, "funcname": "TreePushOverrideID", - "location": "imgui_internal:3392", + "location": "imgui_internal:3871", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -35746,6 +38624,122 @@ "stname": "" } ], + "igTypingSelectFindBestLeadingMatch": [ + { + "args": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)", + "argsT": [ + { + "name": "req", + "type": "ImGuiTypingSelectRequest*" + }, + { + "name": "items_count", + "type": "int" + }, + { + "name": "get_item_name_func", + "ret": "const char*", + "signature": "(void*,int)", + "type": "const char*(*)(void*,int)" + }, + { + "name": "user_data", + "type": "void*" + } + ], + "argsoriginal": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)", + "call_args": "(req,items_count,get_item_name_func,user_data)", + "cimguiname": "igTypingSelectFindBestLeadingMatch", + "defaults": {}, + "funcname": "TypingSelectFindBestLeadingMatch", + "location": "imgui_internal:3714", + "namespace": "ImGui", + "ov_cimguiname": "igTypingSelectFindBestLeadingMatch", + "ret": "int", + "signature": "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*)", + "stname": "" + } + ], + "igTypingSelectFindMatch": [ + { + "args": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "argsT": [ + { + "name": "req", + "type": "ImGuiTypingSelectRequest*" + }, + { + "name": "items_count", + "type": "int" + }, + { + "name": "get_item_name_func", + "ret": "const char*", + "signature": "(void*,int)", + "type": "const char*(*)(void*,int)" + }, + { + "name": "user_data", + "type": "void*" + }, + { + "name": "nav_item_idx", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "call_args": "(req,items_count,get_item_name_func,user_data,nav_item_idx)", + "cimguiname": "igTypingSelectFindMatch", + "defaults": {}, + "funcname": "TypingSelectFindMatch", + "location": "imgui_internal:3712", + "namespace": "ImGui", + "ov_cimguiname": "igTypingSelectFindMatch", + "ret": "int", + "signature": "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)", + "stname": "" + } + ], + "igTypingSelectFindNextSingleCharMatch": [ + { + "args": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "argsT": [ + { + "name": "req", + "type": "ImGuiTypingSelectRequest*" + }, + { + "name": "items_count", + "type": "int" + }, + { + "name": "get_item_name_func", + "ret": "const char*", + "signature": "(void*,int)", + "type": "const char*(*)(void*,int)" + }, + { + "name": "user_data", + "type": "void*" + }, + { + "name": "nav_item_idx", + "type": "int" + } + ], + "argsoriginal": "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)", + "call_args": "(req,items_count,get_item_name_func,user_data,nav_item_idx)", + "cimguiname": "igTypingSelectFindNextSingleCharMatch", + "defaults": {}, + "funcname": "TypingSelectFindNextSingleCharMatch", + "location": "imgui_internal:3713", + "namespace": "ImGui", + "ov_cimguiname": "igTypingSelectFindNextSingleCharMatch", + "ret": "int", + "signature": "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)", + "stname": "" + } + ], "igUnindent": [ { "args": "(float indent_w)", @@ -35762,7 +38756,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:453", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -35779,7 +38773,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": {}, "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "imgui_internal:2986", + "location": "imgui_internal:3402", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -35801,7 +38795,7 @@ "cimguiname": "igUpdateInputEvents", "defaults": {}, "funcname": "UpdateInputEvents", - "location": "imgui_internal:2985", + "location": "imgui_internal:3401", "namespace": "ImGui", "ov_cimguiname": "igUpdateInputEvents", "ret": "void", @@ -35818,7 +38812,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "imgui_internal:2990", + "location": "imgui_internal:3407", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -35835,7 +38829,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": {}, "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "imgui_internal:2989", + "location": "imgui_internal:3406", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -35852,7 +38846,7 @@ "cimguiname": "igUpdatePlatformWindows", "defaults": {}, "funcname": "UpdatePlatformWindows", - "location": "imgui:981", + "location": "imgui:1083", "namespace": "ImGui", "ov_cimguiname": "igUpdatePlatformWindows", "ret": "void", @@ -35882,7 +38876,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": {}, "funcname": "UpdateWindowParentAndRootLinks", - "location": "imgui_internal:2952", + "location": "imgui_internal:3359", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -35890,6 +38884,28 @@ "stname": "" } ], + "igUpdateWindowSkipRefresh": [ + { + "args": "(ImGuiWindow* window)", + "argsT": [ + { + "name": "window", + "type": "ImGuiWindow*" + } + ], + "argsoriginal": "(ImGuiWindow* window)", + "call_args": "(window)", + "cimguiname": "igUpdateWindowSkipRefresh", + "defaults": {}, + "funcname": "UpdateWindowSkipRefresh", + "location": "imgui_internal:3360", + "namespace": "ImGui", + "ov_cimguiname": "igUpdateWindowSkipRefresh", + "ret": "void", + "signature": "(ImGuiWindow*)", + "stname": "" + } + ], "igVSliderFloat": [ { "args": "(const char* label,const ImVec2 size,float* v,float v_min,float v_max,const char* format,ImGuiSliderFlags flags)", @@ -35931,7 +38947,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:577", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -35980,7 +38996,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:578", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -36033,7 +39049,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:579", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -36059,7 +39075,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:655", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -36083,7 +39099,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:656", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -36107,7 +39123,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:657", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -36137,7 +39153,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:658", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", @@ -36145,6 +39161,68 @@ "stname": "" } ], + "igWindowPosAbsToRel": [ + { + "args": "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "p", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImGuiWindow* window,const ImVec2& p)", + "call_args": "(window,p)", + "cimguiname": "igWindowPosAbsToRel", + "defaults": {}, + "funcname": "WindowPosAbsToRel", + "location": "imgui_internal:3374", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igWindowPosAbsToRel", + "ret": "void", + "signature": "(ImGuiWindow*,const ImVec2)", + "stname": "" + } + ], + "igWindowPosRelToAbs": [ + { + "args": "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)", + "argsT": [ + { + "name": "pOut", + "type": "ImVec2*" + }, + { + "name": "window", + "type": "ImGuiWindow*" + }, + { + "name": "p", + "type": "const ImVec2" + } + ], + "argsoriginal": "(ImGuiWindow* window,const ImVec2& p)", + "call_args": "(window,p)", + "cimguiname": "igWindowPosRelToAbs", + "defaults": {}, + "funcname": "WindowPosRelToAbs", + "location": "imgui_internal:3375", + "namespace": "ImGui", + "nonUDT": 1, + "ov_cimguiname": "igWindowPosRelToAbs", + "ret": "void", + "signature": "(ImGuiWindow*,const ImVec2)", + "stname": "" + } + ], "igWindowRectAbsToRel": [ { "args": "(ImRect *pOut,ImGuiWindow* window,const ImRect r)", @@ -36167,7 +39245,7 @@ "cimguiname": "igWindowRectAbsToRel", "defaults": {}, "funcname": "WindowRectAbsToRel", - "location": "imgui_internal:2962", + "location": "imgui_internal:3372", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectAbsToRel", @@ -36198,7 +39276,7 @@ "cimguiname": "igWindowRectRelToAbs", "defaults": {}, "funcname": "WindowRectRelToAbs", - "location": "imgui_internal:2963", + "location": "imgui_internal:3373", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igWindowRectRelToAbs", diff --git a/imgui-sys/third-party/imgui-docking/definitions.lua b/imgui-sys/third-party/imgui-docking/definitions.lua index 22fa36f..070e324 100644 --- a/imgui-sys/third-party/imgui-docking/definitions.lua +++ b/imgui-sys/third-party/imgui-docking/definitions.lua @@ -11,7 +11,7 @@ defs["ImBitArray_ClearAllBits"][1]["call_args"] = "()" defs["ImBitArray_ClearAllBits"][1]["cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["defaults"] = {} defs["ImBitArray_ClearAllBits"][1]["funcname"] = "ClearAllBits" -defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:587" +defs["ImBitArray_ClearAllBits"][1]["location"] = "imgui_internal:596" defs["ImBitArray_ClearAllBits"][1]["ov_cimguiname"] = "ImBitArray_ClearAllBits" defs["ImBitArray_ClearAllBits"][1]["ret"] = "void" defs["ImBitArray_ClearAllBits"][1]["signature"] = "()" @@ -33,7 +33,7 @@ defs["ImBitArray_ClearBit"][1]["call_args"] = "(n)" defs["ImBitArray_ClearBit"][1]["cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["defaults"] = {} defs["ImBitArray_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:591" +defs["ImBitArray_ClearBit"][1]["location"] = "imgui_internal:600" defs["ImBitArray_ClearBit"][1]["ov_cimguiname"] = "ImBitArray_ClearBit" defs["ImBitArray_ClearBit"][1]["ret"] = "void" defs["ImBitArray_ClearBit"][1]["signature"] = "(int)" @@ -50,7 +50,7 @@ defs["ImBitArray_ImBitArray"][1]["cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["constructor"] = true defs["ImBitArray_ImBitArray"][1]["defaults"] = {} defs["ImBitArray_ImBitArray"][1]["funcname"] = "ImBitArray" -defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:586" +defs["ImBitArray_ImBitArray"][1]["location"] = "imgui_internal:595" defs["ImBitArray_ImBitArray"][1]["ov_cimguiname"] = "ImBitArray_ImBitArray" defs["ImBitArray_ImBitArray"][1]["signature"] = "()" defs["ImBitArray_ImBitArray"][1]["stname"] = "ImBitArray" @@ -68,7 +68,7 @@ defs["ImBitArray_SetAllBits"][1]["call_args"] = "()" defs["ImBitArray_SetAllBits"][1]["cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["defaults"] = {} defs["ImBitArray_SetAllBits"][1]["funcname"] = "SetAllBits" -defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:588" +defs["ImBitArray_SetAllBits"][1]["location"] = "imgui_internal:597" defs["ImBitArray_SetAllBits"][1]["ov_cimguiname"] = "ImBitArray_SetAllBits" defs["ImBitArray_SetAllBits"][1]["ret"] = "void" defs["ImBitArray_SetAllBits"][1]["signature"] = "()" @@ -90,7 +90,7 @@ defs["ImBitArray_SetBit"][1]["call_args"] = "(n)" defs["ImBitArray_SetBit"][1]["cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["defaults"] = {} defs["ImBitArray_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:590" +defs["ImBitArray_SetBit"][1]["location"] = "imgui_internal:599" defs["ImBitArray_SetBit"][1]["ov_cimguiname"] = "ImBitArray_SetBit" defs["ImBitArray_SetBit"][1]["ret"] = "void" defs["ImBitArray_SetBit"][1]["signature"] = "(int)" @@ -115,7 +115,7 @@ defs["ImBitArray_SetBitRange"][1]["call_args"] = "(n,n2)" defs["ImBitArray_SetBitRange"][1]["cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["defaults"] = {} defs["ImBitArray_SetBitRange"][1]["funcname"] = "SetBitRange" -defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:592" +defs["ImBitArray_SetBitRange"][1]["location"] = "imgui_internal:601" defs["ImBitArray_SetBitRange"][1]["ov_cimguiname"] = "ImBitArray_SetBitRange" defs["ImBitArray_SetBitRange"][1]["ret"] = "void" defs["ImBitArray_SetBitRange"][1]["signature"] = "(int,int)" @@ -137,7 +137,7 @@ defs["ImBitArray_TestBit"][1]["call_args"] = "(n)" defs["ImBitArray_TestBit"][1]["cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["defaults"] = {} defs["ImBitArray_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:589" +defs["ImBitArray_TestBit"][1]["location"] = "imgui_internal:598" defs["ImBitArray_TestBit"][1]["ov_cimguiname"] = "ImBitArray_TestBit" defs["ImBitArray_TestBit"][1]["ret"] = "bool" defs["ImBitArray_TestBit"][1]["signature"] = "(int)const" @@ -173,7 +173,7 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" -defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:602" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:611" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -194,7 +194,7 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:605" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:614" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -215,7 +215,7 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" -defs["ImBitVector_Create"][1]["location"] = "imgui_internal:601" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:610" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -236,7 +236,7 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:604" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:613" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -257,7 +257,7 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:603" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:612" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -278,7 +278,7 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" -defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:708" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:715" defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -297,7 +297,7 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" -defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:709" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:716" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -319,7 +319,7 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" -defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:711" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:718" defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -338,7 +338,7 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" -defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:705" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:712" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -357,7 +357,7 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" -defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:706" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:713" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -376,7 +376,7 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" -defs["ImChunkStream_end"][1]["location"] = "imgui_internal:712" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:719" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -398,7 +398,7 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" -defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:710" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:717" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -420,7 +420,7 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" -defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:713" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:720" defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -442,7 +442,7 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" -defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:714" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:721" defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -461,7 +461,7 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" -defs["ImChunkStream_size"][1]["location"] = "imgui_internal:707" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:714" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -484,7 +484,7 @@ defs["ImChunkStream_swap"][1]["call_args"] = "(*rhs)" defs["ImChunkStream_swap"][1]["cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["defaults"] = {} defs["ImChunkStream_swap"][1]["funcname"] = "swap" -defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:715" +defs["ImChunkStream_swap"][1]["location"] = "imgui_internal:722" defs["ImChunkStream_swap"][1]["ov_cimguiname"] = "ImChunkStream_swap" defs["ImChunkStream_swap"][1]["ret"] = "void" defs["ImChunkStream_swap"][1]["signature"] = "(ImChunkStream_T *)" @@ -517,7 +517,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:2469" +defs["ImColor_HSV"][1]["location"] = "imgui:2859" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -534,7 +534,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:2459" +defs["ImColor_ImColor"][1]["location"] = "imgui:2849" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -560,7 +560,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2460" +defs["ImColor_ImColor"][2]["location"] = "imgui:2850" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -576,7 +576,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:2461" +defs["ImColor_ImColor"][3]["location"] = "imgui:2851" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -602,7 +602,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2462" +defs["ImColor_ImColor"][4]["location"] = "imgui:2852" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -618,7 +618,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:2463" +defs["ImColor_ImColor"][5]["location"] = "imgui:2853" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -652,7 +652,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:2468" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2858" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -686,7 +686,7 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" -defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2517" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:3055" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -702,7 +702,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2514" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:3052" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -723,78 +723,58 @@ defs["ImDrawCmd_destroy"][1]["ret"] = "void" defs["ImDrawCmd_destroy"][1]["signature"] = "(ImDrawCmd*)" defs["ImDrawCmd_destroy"][1]["stname"] = "ImDrawCmd" defs["ImDrawCmd_destroy"]["(ImDrawCmd*)"] = defs["ImDrawCmd_destroy"][1] -defs["ImDrawDataBuilder_Clear"] = {} -defs["ImDrawDataBuilder_Clear"][1] = {} -defs["ImDrawDataBuilder_Clear"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_Clear"][1]["argsT"] = {} -defs["ImDrawDataBuilder_Clear"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_Clear"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_Clear"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_Clear"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_Clear"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_Clear"][1]["cimguiname"] = "ImDrawDataBuilder_Clear" -defs["ImDrawDataBuilder_Clear"][1]["defaults"] = {} -defs["ImDrawDataBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:791" -defs["ImDrawDataBuilder_Clear"][1]["ov_cimguiname"] = "ImDrawDataBuilder_Clear" -defs["ImDrawDataBuilder_Clear"][1]["ret"] = "void" -defs["ImDrawDataBuilder_Clear"][1]["signature"] = "()" -defs["ImDrawDataBuilder_Clear"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_Clear"]["()"] = defs["ImDrawDataBuilder_Clear"][1] -defs["ImDrawDataBuilder_ClearFreeMemory"] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["defaults"] = {} -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:792" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ret"] = "void" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["signature"] = "()" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_ClearFreeMemory"]["()"] = defs["ImDrawDataBuilder_ClearFreeMemory"][1] -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["defaults"] = {} -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["funcname"] = "FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:794" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ov_cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ret"] = "void" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["signature"] = "()" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"]["()"] = defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1] -defs["ImDrawDataBuilder_GetDrawListCount"] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["args"] = "(ImDrawDataBuilder* self)" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"][1] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"][1]["name"] = "self" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["argsoriginal"] = "()" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["call_args"] = "()" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["defaults"] = {} -defs["ImDrawDataBuilder_GetDrawListCount"][1]["funcname"] = "GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["location"] = "imgui_internal:793" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["ov_cimguiname"] = "ImDrawDataBuilder_GetDrawListCount" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["ret"] = "int" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["signature"] = "()const" -defs["ImDrawDataBuilder_GetDrawListCount"][1]["stname"] = "ImDrawDataBuilder" -defs["ImDrawDataBuilder_GetDrawListCount"]["()const"] = defs["ImDrawDataBuilder_GetDrawListCount"][1] +defs["ImDrawDataBuilder_ImDrawDataBuilder"] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["args"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["argsT"] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["argsoriginal"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["call_args"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["cimguiname"] = "ImDrawDataBuilder_ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["constructor"] = true +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["defaults"] = {} +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["funcname"] = "ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["location"] = "imgui_internal:801" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["signature"] = "()" +defs["ImDrawDataBuilder_ImDrawDataBuilder"][1]["stname"] = "ImDrawDataBuilder" +defs["ImDrawDataBuilder_ImDrawDataBuilder"]["()"] = defs["ImDrawDataBuilder_ImDrawDataBuilder"][1] +defs["ImDrawDataBuilder_destroy"] = {} +defs["ImDrawDataBuilder_destroy"][1] = {} +defs["ImDrawDataBuilder_destroy"][1]["args"] = "(ImDrawDataBuilder* self)" +defs["ImDrawDataBuilder_destroy"][1]["argsT"] = {} +defs["ImDrawDataBuilder_destroy"][1]["argsT"][1] = {} +defs["ImDrawDataBuilder_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImDrawDataBuilder_destroy"][1]["argsT"][1]["type"] = "ImDrawDataBuilder*" +defs["ImDrawDataBuilder_destroy"][1]["call_args"] = "(self)" +defs["ImDrawDataBuilder_destroy"][1]["cimguiname"] = "ImDrawDataBuilder_destroy" +defs["ImDrawDataBuilder_destroy"][1]["defaults"] = {} +defs["ImDrawDataBuilder_destroy"][1]["destructor"] = true +defs["ImDrawDataBuilder_destroy"][1]["ov_cimguiname"] = "ImDrawDataBuilder_destroy" +defs["ImDrawDataBuilder_destroy"][1]["ret"] = "void" +defs["ImDrawDataBuilder_destroy"][1]["signature"] = "(ImDrawDataBuilder*)" +defs["ImDrawDataBuilder_destroy"][1]["stname"] = "ImDrawDataBuilder" +defs["ImDrawDataBuilder_destroy"]["(ImDrawDataBuilder*)"] = defs["ImDrawDataBuilder_destroy"][1] +defs["ImDrawData_AddDrawList"] = {} +defs["ImDrawData_AddDrawList"][1] = {} +defs["ImDrawData_AddDrawList"][1]["args"] = "(ImDrawData* self,ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["argsT"] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["name"] = "self" +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["type"] = "ImDrawData*" +defs["ImDrawData_AddDrawList"][1]["argsT"][2] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["name"] = "draw_list" +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["type"] = "ImDrawList*" +defs["ImDrawData_AddDrawList"][1]["argsoriginal"] = "(ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["call_args"] = "(draw_list)" +defs["ImDrawData_AddDrawList"][1]["cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["defaults"] = {} +defs["ImDrawData_AddDrawList"][1]["funcname"] = "AddDrawList" +defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3303" +defs["ImDrawData_AddDrawList"][1]["ov_cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["ret"] = "void" +defs["ImDrawData_AddDrawList"][1]["signature"] = "(ImDrawList*)" +defs["ImDrawData_AddDrawList"][1]["stname"] = "ImDrawData" +defs["ImDrawData_AddDrawList"]["(ImDrawList*)"] = defs["ImDrawData_AddDrawList"][1] defs["ImDrawData_Clear"] = {} defs["ImDrawData_Clear"][1] = {} defs["ImDrawData_Clear"][1]["args"] = "(ImDrawData* self)" @@ -807,7 +787,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2751" +defs["ImDrawData_Clear"][1]["location"] = "imgui:3302" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -825,7 +805,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2752" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:3304" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -841,7 +821,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2750" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:3301" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -861,7 +841,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2753" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:3305" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -893,7 +873,7 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" -defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:783" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:792" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -913,7 +893,7 @@ defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["call_args"] = "(m defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["funcname"] = "SetCircleTessellationMaxError" -defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:784" +defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["location"] = "imgui_internal:793" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleTessellationMaxError" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleTessellationMaxError"][1]["signature"] = "(float)" @@ -947,7 +927,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2562" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:3100" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -965,7 +945,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2563" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:3101" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -981,7 +961,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2560" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:3098" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -1001,7 +981,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2565" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:3103" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -1025,7 +1005,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2566" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:3104" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -1049,7 +1029,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2564" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:3102" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -1066,7 +1046,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2561" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:3099" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -1107,7 +1087,7 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" -defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2665" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3203" defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1144,7 +1124,7 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" -defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2666" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3204" defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -1168,7 +1148,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2690" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3238" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -1203,7 +1183,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2657" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3195" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1234,12 +1214,39 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2658" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3196" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" defs["ImDrawList_AddCircleFilled"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddCircleFilled"]["(const ImVec2,float,ImU32,int)"] = defs["ImDrawList_AddCircleFilled"][1] +defs["ImDrawList_AddConcavePolyFilled"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["name"] = "points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["type"] = "const ImVec2*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["name"] = "num_points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["type"] = "int" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsoriginal"] = "(const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3211" +defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" +defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" +defs["ImDrawList_AddConcavePolyFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddConcavePolyFilled"]["(const ImVec2*,int,ImU32)"] = defs["ImDrawList_AddConcavePolyFilled"][1] defs["ImDrawList_AddConvexPolyFilled"] = {} defs["ImDrawList_AddConvexPolyFilled"][1] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" @@ -1261,7 +1268,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2664" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3210" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1279,12 +1286,86 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2691" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3239" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddDrawCmd"]["()"] = defs["ImDrawList_AddDrawCmd"][1] +defs["ImDrawList_AddEllipse"] = {} +defs["ImDrawList_AddEllipse"][1] = {} +defs["ImDrawList_AddEllipse"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)" +defs["ImDrawList_AddEllipse"][1]["argsT"] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipse"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipse"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipse"][1]["argsT"][7] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["name"] = "thickness" +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)" +defs["ImDrawList_AddEllipse"][1]["call_args"] = "(center,radius,col,rot,num_segments,thickness)" +defs["ImDrawList_AddEllipse"][1]["cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["defaults"] = {} +defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" +defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3199" +defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["ret"] = "void" +defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" +defs["ImDrawList_AddEllipse"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipse"]["(const ImVec2,const ImVec2,ImU32,float,int,float)"] = defs["ImDrawList_AddEllipse"][1] +defs["ImDrawList_AddEllipseFilled"] = {} +defs["ImDrawList_AddEllipseFilled"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipseFilled"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)" +defs["ImDrawList_AddEllipseFilled"][1]["call_args"] = "(center,radius,col,rot,num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3200" +defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" +defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" +defs["ImDrawList_AddEllipseFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipseFilled"]["(const ImVec2,const ImVec2,ImU32,float,int)"] = defs["ImDrawList_AddEllipseFilled"][1] defs["ImDrawList_AddImage"] = {} defs["ImDrawList_AddImage"][1] = {} defs["ImDrawList_AddImage"][1]["args"] = "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)" @@ -1318,7 +1399,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:2672" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:3217" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1371,7 +1452,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2673" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3218" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1414,7 +1495,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2674" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3219" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1445,7 +1526,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:2649" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:3187" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1479,7 +1560,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2659" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3197" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1509,7 +1590,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2660" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3198" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1542,7 +1623,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2663" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3209" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -1579,7 +1660,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2653" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3191" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1612,7 +1693,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2654" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3192" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1651,7 +1732,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:2650" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:3188" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1686,7 +1767,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2651" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3189" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1722,7 +1803,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2652" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3190" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1753,7 +1834,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:2661" +defs["ImDrawList_AddText"][1]["location"] = "imgui:3201" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1796,7 +1877,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:2662" +defs["ImDrawList_AddText"][2]["location"] = "imgui:3202" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1831,7 +1912,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2655" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3193" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1861,7 +1942,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2656" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3194" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1879,7 +1960,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2701" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3249" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1900,7 +1981,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2702" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3250" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1921,7 +2002,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2700" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3248" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1939,7 +2020,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2692" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3240" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1960,7 +2041,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2640" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3178" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1982,7 +2063,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2639" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3177" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -2002,7 +2083,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2631" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3169" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -2035,7 +2116,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2683" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3230" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2065,7 +2146,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2684" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3231" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -2096,7 +2177,7 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" -defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2685" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3233" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -2124,7 +2205,7 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" -defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2686" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3234" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -2142,12 +2223,70 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:2678" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:3224" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" defs["ImDrawList_PathClear"]["()"] = defs["ImDrawList_PathClear"][1] +defs["ImDrawList_PathEllipticalArcTo"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["name"] = "rot" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["name"] = "a_min" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["name"] = "a_max" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["name"] = "num_segments" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["type"] = "int" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)" +defs["ImDrawList_PathEllipticalArcTo"][1]["call_args"] = "(center,radius,rot,a_min,a_max,num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3232" +defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" +defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" +defs["ImDrawList_PathEllipticalArcTo"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathEllipticalArcTo"]["(const ImVec2,const ImVec2,float,float,float,int)"] = defs["ImDrawList_PathEllipticalArcTo"][1] +defs["ImDrawList_PathFillConcave"] = {} +defs["ImDrawList_PathFillConcave"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["args"] = "(ImDrawList* self,ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["argsT"] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["name"] = "col" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["type"] = "ImU32" +defs["ImDrawList_PathFillConcave"][1]["argsoriginal"] = "(ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" +defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} +defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3228" +defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" +defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" +defs["ImDrawList_PathFillConcave"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathFillConcave"]["(ImU32)"] = defs["ImDrawList_PathFillConcave"][1] defs["ImDrawList_PathFillConvex"] = {} defs["ImDrawList_PathFillConvex"][1] = {} defs["ImDrawList_PathFillConvex"][1]["args"] = "(ImDrawList* self,ImU32 col)" @@ -2163,7 +2302,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2681" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3227" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -2184,7 +2323,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2679" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3225" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -2205,7 +2344,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2680" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3226" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -2237,7 +2376,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:2687" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3235" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -2266,7 +2405,7 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2682" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3229" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -2284,7 +2423,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2636" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3174" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2302,7 +2441,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2638" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3176" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2347,7 +2486,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2711" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3259" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2374,7 +2513,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2709" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3257" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2407,7 +2546,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2710" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3258" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2431,7 +2570,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2707" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3255" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2455,7 +2594,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2708" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3256" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2482,7 +2621,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2714" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3262" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2503,7 +2642,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2713" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3261" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2530,7 +2669,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2712" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3260" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2558,7 +2697,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2634" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3172" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -2576,7 +2715,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2635" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3173" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2597,7 +2736,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2637" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3175" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2618,7 +2757,7 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" -defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2729" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:3280" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2636,7 +2775,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2723" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3273" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2654,7 +2793,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2726" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3276" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2672,7 +2811,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2727" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3277" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2690,7 +2829,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2728" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3278" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2723,7 +2862,7 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" -defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2730" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:3281" defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2756,7 +2895,7 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" -defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2731" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:3282" defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2774,7 +2913,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2724" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3274" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2792,12 +2931,33 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2722" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3272" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["stname"] = "ImDrawList" defs["ImDrawList__ResetForNewFrame"]["()"] = defs["ImDrawList__ResetForNewFrame"][1] +defs["ImDrawList__SetTextureID"] = {} +defs["ImDrawList__SetTextureID"][1] = {} +defs["ImDrawList__SetTextureID"][1]["args"] = "(ImDrawList* self,ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["argsT"] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList__SetTextureID"][1]["argsT"][2] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["name"] = "texture_id" +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["type"] = "ImTextureID" +defs["ImDrawList__SetTextureID"][1]["argsoriginal"] = "(ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["call_args"] = "(texture_id)" +defs["ImDrawList__SetTextureID"][1]["cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["defaults"] = {} +defs["ImDrawList__SetTextureID"][1]["funcname"] = "_SetTextureID" +defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3279" +defs["ImDrawList__SetTextureID"][1]["ov_cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["ret"] = "void" +defs["ImDrawList__SetTextureID"][1]["signature"] = "(ImTextureID)" +defs["ImDrawList__SetTextureID"][1]["stname"] = "ImDrawList" +defs["ImDrawList__SetTextureID"]["(ImTextureID)"] = defs["ImDrawList__SetTextureID"][1] defs["ImDrawList__TryMergeDrawCmds"] = {} defs["ImDrawList__TryMergeDrawCmds"][1] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["args"] = "(ImDrawList* self)" @@ -2810,7 +2970,7 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" -defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2725" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3275" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2827,7 +2987,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:2633" +defs["ImDrawList_destroy"][1]["location"] = "imgui:3171" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2844,7 +3004,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2824" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3377" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2861,7 +3021,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2825" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3378" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2914,7 +3074,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2909" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3463" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2938,7 +3098,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2908" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3462" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2959,7 +3119,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2858" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3411" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2981,7 +3141,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2859" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3412" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -3013,7 +3173,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2860" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3413" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3045,7 +3205,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2863" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3416" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -3053,7 +3213,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["stname"] = "ImFontA defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"]["(const char*,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1] defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1]["name"] = "self" @@ -3062,7 +3222,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["name"] = "compressed_font_data" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["type"] = "const void*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_size" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_data_size" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -3073,14 +3233,14 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2862" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3415" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3088,7 +3248,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"]["(const void*,int,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] defs["ImFontAtlas_AddFontFromMemoryTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1]["name"] = "self" @@ -3097,7 +3257,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["name"] = "font_data" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["type"] = "void*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_size" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_data_size" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -3108,14 +3268,14 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2861" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3414" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -3133,7 +3293,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2874" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:3427" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -3160,7 +3320,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2913" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3467" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -3178,7 +3338,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2867" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3420" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -3196,7 +3356,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2866" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3419" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -3214,7 +3374,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2864" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3417" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -3232,7 +3392,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2865" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3418" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -3253,7 +3413,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2910" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3464" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -3271,7 +3431,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2891" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3445" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -3289,7 +3449,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2892" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3446" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -3307,7 +3467,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2893" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3447" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -3325,7 +3485,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2887" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3441" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -3343,7 +3503,7 @@ defs["ImFontAtlas_GetGlyphRangesGreek"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesGreek"][1]["funcname"] = "GetGlyphRangesGreek" -defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:2888" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3442" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" @@ -3361,7 +3521,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2890" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3444" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -3379,7 +3539,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2889" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3443" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -3397,7 +3557,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2894" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3448" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3415,7 +3575,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2895" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3449" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3448,7 +3608,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2914" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3468" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3479,7 +3639,7 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2875" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3428" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3510,7 +3670,7 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2876" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3429" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3526,7 +3686,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2856" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3409" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3543,7 +3703,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2877" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3430" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3564,7 +3724,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2878" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3431" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3581,7 +3741,7 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true -defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2857" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3410" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -3598,7 +3758,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2784" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:3337" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3634,7 +3794,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2809" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:3362" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3655,7 +3815,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2811" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:3364" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3680,7 +3840,7 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2810" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:3363" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3701,7 +3861,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2812" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:3365" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3719,7 +3879,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2806" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:3359" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3740,7 +3900,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2807" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:3360" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3756,7 +3916,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2805" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:3358" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3776,7 +3936,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2808" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:3361" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3843,7 +4003,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:3002" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3558" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3871,7 +4031,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3003" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3559" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3889,7 +4049,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2999" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3555" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3930,7 +4090,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2993" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3549" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3961,7 +4121,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2994" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3550" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3979,7 +4139,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3000" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3556" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -4000,7 +4160,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui:2985" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:3541" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -4021,7 +4181,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2986" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3542" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -4042,7 +4202,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2987" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3543" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -4060,7 +4220,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui:2989" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:3545" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -4081,7 +4241,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui:3001" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3557" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -4097,7 +4257,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui:2983" +defs["ImFont_ImFont"][1]["location"] = "imgui:3539" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -4120,7 +4280,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3005" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3561" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -4138,7 +4298,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui:2988" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:3544" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -4171,7 +4331,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui:2995" +defs["ImFont_RenderChar"][1]["location"] = "imgui:3551" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const" @@ -4218,7 +4378,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui:2996" +defs["ImFont_RenderText"][1]["location"] = "imgui:3552" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -4242,7 +4402,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3004" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3560" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -4259,13 +4419,44 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true -defs["ImFont_destroy"][1]["location"] = "imgui:2984" +defs["ImFont_destroy"][1]["location"] = "imgui:3540" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" defs["ImFont_destroy"][1]["signature"] = "(ImFont*)" defs["ImFont_destroy"][1]["stname"] = "ImFont" defs["ImFont_destroy"]["(ImFont*)"] = defs["ImFont_destroy"][1] +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["args"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["argsT"] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["argsoriginal"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["call_args"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["cimguiname"] = "ImGuiBoxSelectState_ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["constructor"] = true +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["defaults"] = {} +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["funcname"] = "ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["location"] = "imgui_internal:1754" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["signature"] = "()" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1]["stname"] = "ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_ImGuiBoxSelectState"]["()"] = defs["ImGuiBoxSelectState_ImGuiBoxSelectState"][1] +defs["ImGuiBoxSelectState_destroy"] = {} +defs["ImGuiBoxSelectState_destroy"][1] = {} +defs["ImGuiBoxSelectState_destroy"][1]["args"] = "(ImGuiBoxSelectState* self)" +defs["ImGuiBoxSelectState_destroy"][1]["argsT"] = {} +defs["ImGuiBoxSelectState_destroy"][1]["argsT"][1] = {} +defs["ImGuiBoxSelectState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiBoxSelectState_destroy"][1]["argsT"][1]["type"] = "ImGuiBoxSelectState*" +defs["ImGuiBoxSelectState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiBoxSelectState_destroy"][1]["cimguiname"] = "ImGuiBoxSelectState_destroy" +defs["ImGuiBoxSelectState_destroy"][1]["defaults"] = {} +defs["ImGuiBoxSelectState_destroy"][1]["destructor"] = true +defs["ImGuiBoxSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiBoxSelectState_destroy" +defs["ImGuiBoxSelectState_destroy"][1]["ret"] = "void" +defs["ImGuiBoxSelectState_destroy"][1]["signature"] = "(ImGuiBoxSelectState*)" +defs["ImGuiBoxSelectState_destroy"][1]["stname"] = "ImGuiBoxSelectState" +defs["ImGuiBoxSelectState_destroy"]["(ImGuiBoxSelectState*)"] = defs["ImGuiBoxSelectState_destroy"][1] defs["ImGuiComboPreviewData_ImGuiComboPreviewData"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["args"] = "()" @@ -4276,7 +4467,7 @@ defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["cimguiname"] = "ImGuiCom defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["constructor"] = true defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["defaults"] = {} defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["funcname"] = "ImGuiComboPreviewData" -defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1022" +defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["location"] = "imgui_internal:1058" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["ov_cimguiname"] = "ImGuiComboPreviewData_ImGuiComboPreviewData" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["signature"] = "()" defs["ImGuiComboPreviewData_ImGuiComboPreviewData"][1]["stname"] = "ImGuiComboPreviewData" @@ -4307,7 +4498,7 @@ defs["ImGuiContextHook_ImGuiContextHook"][1]["cimguiname"] = "ImGuiContextHook_I defs["ImGuiContextHook_ImGuiContextHook"][1]["constructor"] = true defs["ImGuiContextHook_ImGuiContextHook"][1]["defaults"] = {} defs["ImGuiContextHook_ImGuiContextHook"][1]["funcname"] = "ImGuiContextHook" -defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:1903" +defs["ImGuiContextHook_ImGuiContextHook"][1]["location"] = "imgui_internal:2177" defs["ImGuiContextHook_ImGuiContextHook"][1]["ov_cimguiname"] = "ImGuiContextHook_ImGuiContextHook" defs["ImGuiContextHook_ImGuiContextHook"][1]["signature"] = "()" defs["ImGuiContextHook_ImGuiContextHook"][1]["stname"] = "ImGuiContextHook" @@ -4341,7 +4532,7 @@ defs["ImGuiContext_ImGuiContext"][1]["cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["constructor"] = true defs["ImGuiContext_ImGuiContext"][1]["defaults"] = {} defs["ImGuiContext_ImGuiContext"][1]["funcname"] = "ImGuiContext" -defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2212" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:2550" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -4362,6 +4553,58 @@ defs["ImGuiContext_destroy"][1]["ret"] = "void" defs["ImGuiContext_destroy"][1]["signature"] = "(ImGuiContext*)" defs["ImGuiContext_destroy"][1]["stname"] = "ImGuiContext" defs["ImGuiContext_destroy"]["(ImGuiContext*)"] = defs["ImGuiContext_destroy"][1] +defs["ImGuiDataVarInfo_GetVarPtr"] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["args"] = "(ImGuiDataVarInfo* self,void* parent)" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][1] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][1]["type"] = "ImGuiDataVarInfo*" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][2] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][2]["name"] = "parent" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsT"][2]["type"] = "void*" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["argsoriginal"] = "(void* parent)" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["call_args"] = "(parent)" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["defaults"] = {} +defs["ImGuiDataVarInfo_GetVarPtr"][1]["funcname"] = "GetVarPtr" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["location"] = "imgui_internal:813" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["ov_cimguiname"] = "ImGuiDataVarInfo_GetVarPtr" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["ret"] = "void*" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["signature"] = "(void*)const" +defs["ImGuiDataVarInfo_GetVarPtr"][1]["stname"] = "ImGuiDataVarInfo" +defs["ImGuiDataVarInfo_GetVarPtr"]["(void*)const"] = defs["ImGuiDataVarInfo_GetVarPtr"][1] +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["args"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["argsT"] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["argsoriginal"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["call_args"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["constructor"] = true +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["defaults"] = {} +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["funcname"] = "ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["location"] = "imgui_internal:2117" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["signature"] = "()" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1]["stname"] = "ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"]["()"] = defs["ImGuiDebugAllocInfo_ImGuiDebugAllocInfo"][1] +defs["ImGuiDebugAllocInfo_destroy"] = {} +defs["ImGuiDebugAllocInfo_destroy"][1] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["args"] = "(ImGuiDebugAllocInfo* self)" +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"][1] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiDebugAllocInfo_destroy"][1]["argsT"][1]["type"] = "ImGuiDebugAllocInfo*" +defs["ImGuiDebugAllocInfo_destroy"][1]["call_args"] = "(self)" +defs["ImGuiDebugAllocInfo_destroy"][1]["cimguiname"] = "ImGuiDebugAllocInfo_destroy" +defs["ImGuiDebugAllocInfo_destroy"][1]["defaults"] = {} +defs["ImGuiDebugAllocInfo_destroy"][1]["destructor"] = true +defs["ImGuiDebugAllocInfo_destroy"][1]["ov_cimguiname"] = "ImGuiDebugAllocInfo_destroy" +defs["ImGuiDebugAllocInfo_destroy"][1]["ret"] = "void" +defs["ImGuiDebugAllocInfo_destroy"][1]["signature"] = "(ImGuiDebugAllocInfo*)" +defs["ImGuiDebugAllocInfo_destroy"][1]["stname"] = "ImGuiDebugAllocInfo" +defs["ImGuiDebugAllocInfo_destroy"]["(ImGuiDebugAllocInfo*)"] = defs["ImGuiDebugAllocInfo_destroy"][1] defs["ImGuiDockContext_ImGuiDockContext"] = {} defs["ImGuiDockContext_ImGuiDockContext"][1] = {} defs["ImGuiDockContext_ImGuiDockContext"][1]["args"] = "()" @@ -4372,7 +4615,7 @@ defs["ImGuiDockContext_ImGuiDockContext"][1]["cimguiname"] = "ImGuiDockContext_I defs["ImGuiDockContext_ImGuiDockContext"][1]["constructor"] = true defs["ImGuiDockContext_ImGuiDockContext"][1]["defaults"] = {} defs["ImGuiDockContext_ImGuiDockContext"][1]["funcname"] = "ImGuiDockContext" -defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1708" +defs["ImGuiDockContext_ImGuiDockContext"][1]["location"] = "imgui_internal:1952" defs["ImGuiDockContext_ImGuiDockContext"][1]["ov_cimguiname"] = "ImGuiDockContext_ImGuiDockContext" defs["ImGuiDockContext_ImGuiDockContext"][1]["signature"] = "()" defs["ImGuiDockContext_ImGuiDockContext"][1]["stname"] = "ImGuiDockContext" @@ -4406,7 +4649,7 @@ defs["ImGuiDockNode_ImGuiDockNode"][1]["cimguiname"] = "ImGuiDockNode_ImGuiDockN defs["ImGuiDockNode_ImGuiDockNode"][1]["constructor"] = true defs["ImGuiDockNode_ImGuiDockNode"][1]["defaults"] = {} defs["ImGuiDockNode_ImGuiDockNode"][1]["funcname"] = "ImGuiDockNode" -defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1665" +defs["ImGuiDockNode_ImGuiDockNode"][1]["location"] = "imgui_internal:1906" defs["ImGuiDockNode_ImGuiDockNode"][1]["ov_cimguiname"] = "ImGuiDockNode_ImGuiDockNode" defs["ImGuiDockNode_ImGuiDockNode"][1]["signature"] = "(ImGuiID)" defs["ImGuiDockNode_ImGuiDockNode"][1]["stname"] = "ImGuiDockNode" @@ -4423,7 +4666,7 @@ defs["ImGuiDockNode_IsCentralNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsCentralNode"][1]["cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsCentralNode"][1]["funcname"] = "IsCentralNode" -defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1670" +defs["ImGuiDockNode_IsCentralNode"][1]["location"] = "imgui_internal:1911" defs["ImGuiDockNode_IsCentralNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsCentralNode" defs["ImGuiDockNode_IsCentralNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsCentralNode"][1]["signature"] = "()const" @@ -4441,7 +4684,7 @@ defs["ImGuiDockNode_IsDockSpace"][1]["call_args"] = "()" defs["ImGuiDockNode_IsDockSpace"][1]["cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["defaults"] = {} defs["ImGuiDockNode_IsDockSpace"][1]["funcname"] = "IsDockSpace" -defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1668" +defs["ImGuiDockNode_IsDockSpace"][1]["location"] = "imgui_internal:1909" defs["ImGuiDockNode_IsDockSpace"][1]["ov_cimguiname"] = "ImGuiDockNode_IsDockSpace" defs["ImGuiDockNode_IsDockSpace"][1]["ret"] = "bool" defs["ImGuiDockNode_IsDockSpace"][1]["signature"] = "()const" @@ -4459,7 +4702,7 @@ defs["ImGuiDockNode_IsEmpty"][1]["call_args"] = "()" defs["ImGuiDockNode_IsEmpty"][1]["cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["defaults"] = {} defs["ImGuiDockNode_IsEmpty"][1]["funcname"] = "IsEmpty" -defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1675" +defs["ImGuiDockNode_IsEmpty"][1]["location"] = "imgui_internal:1916" defs["ImGuiDockNode_IsEmpty"][1]["ov_cimguiname"] = "ImGuiDockNode_IsEmpty" defs["ImGuiDockNode_IsEmpty"][1]["ret"] = "bool" defs["ImGuiDockNode_IsEmpty"][1]["signature"] = "()const" @@ -4477,7 +4720,7 @@ defs["ImGuiDockNode_IsFloatingNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsFloatingNode"][1]["cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsFloatingNode"][1]["funcname"] = "IsFloatingNode" -defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1669" +defs["ImGuiDockNode_IsFloatingNode"][1]["location"] = "imgui_internal:1910" defs["ImGuiDockNode_IsFloatingNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsFloatingNode" defs["ImGuiDockNode_IsFloatingNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsFloatingNode"][1]["signature"] = "()const" @@ -4495,7 +4738,7 @@ defs["ImGuiDockNode_IsHiddenTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsHiddenTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsHiddenTabBar"][1]["funcname"] = "IsHiddenTabBar" -defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1671" +defs["ImGuiDockNode_IsHiddenTabBar"][1]["location"] = "imgui_internal:1912" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsHiddenTabBar" defs["ImGuiDockNode_IsHiddenTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsHiddenTabBar"][1]["signature"] = "()const" @@ -4513,7 +4756,7 @@ defs["ImGuiDockNode_IsLeafNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsLeafNode"][1]["cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsLeafNode"][1]["funcname"] = "IsLeafNode" -defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1674" +defs["ImGuiDockNode_IsLeafNode"][1]["location"] = "imgui_internal:1915" defs["ImGuiDockNode_IsLeafNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsLeafNode" defs["ImGuiDockNode_IsLeafNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsLeafNode"][1]["signature"] = "()const" @@ -4531,7 +4774,7 @@ defs["ImGuiDockNode_IsNoTabBar"][1]["call_args"] = "()" defs["ImGuiDockNode_IsNoTabBar"][1]["cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["defaults"] = {} defs["ImGuiDockNode_IsNoTabBar"][1]["funcname"] = "IsNoTabBar" -defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1672" +defs["ImGuiDockNode_IsNoTabBar"][1]["location"] = "imgui_internal:1913" defs["ImGuiDockNode_IsNoTabBar"][1]["ov_cimguiname"] = "ImGuiDockNode_IsNoTabBar" defs["ImGuiDockNode_IsNoTabBar"][1]["ret"] = "bool" defs["ImGuiDockNode_IsNoTabBar"][1]["signature"] = "()const" @@ -4549,7 +4792,7 @@ defs["ImGuiDockNode_IsRootNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsRootNode"][1]["cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsRootNode"][1]["funcname"] = "IsRootNode" -defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1667" +defs["ImGuiDockNode_IsRootNode"][1]["location"] = "imgui_internal:1908" defs["ImGuiDockNode_IsRootNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsRootNode" defs["ImGuiDockNode_IsRootNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsRootNode"][1]["signature"] = "()const" @@ -4567,7 +4810,7 @@ defs["ImGuiDockNode_IsSplitNode"][1]["call_args"] = "()" defs["ImGuiDockNode_IsSplitNode"][1]["cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["defaults"] = {} defs["ImGuiDockNode_IsSplitNode"][1]["funcname"] = "IsSplitNode" -defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1673" +defs["ImGuiDockNode_IsSplitNode"][1]["location"] = "imgui_internal:1914" defs["ImGuiDockNode_IsSplitNode"][1]["ov_cimguiname"] = "ImGuiDockNode_IsSplitNode" defs["ImGuiDockNode_IsSplitNode"][1]["ret"] = "bool" defs["ImGuiDockNode_IsSplitNode"][1]["signature"] = "()const" @@ -4588,7 +4831,7 @@ defs["ImGuiDockNode_Rect"][1]["call_args"] = "()" defs["ImGuiDockNode_Rect"][1]["cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["defaults"] = {} defs["ImGuiDockNode_Rect"][1]["funcname"] = "Rect" -defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1676" +defs["ImGuiDockNode_Rect"][1]["location"] = "imgui_internal:1917" defs["ImGuiDockNode_Rect"][1]["nonUDT"] = 1 defs["ImGuiDockNode_Rect"][1]["ov_cimguiname"] = "ImGuiDockNode_Rect" defs["ImGuiDockNode_Rect"][1]["ret"] = "void" @@ -4610,7 +4853,7 @@ defs["ImGuiDockNode_SetLocalFlags"][1]["call_args"] = "(flags)" defs["ImGuiDockNode_SetLocalFlags"][1]["cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["defaults"] = {} defs["ImGuiDockNode_SetLocalFlags"][1]["funcname"] = "SetLocalFlags" -defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1678" +defs["ImGuiDockNode_SetLocalFlags"][1]["location"] = "imgui_internal:1919" defs["ImGuiDockNode_SetLocalFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_SetLocalFlags" defs["ImGuiDockNode_SetLocalFlags"][1]["ret"] = "void" defs["ImGuiDockNode_SetLocalFlags"][1]["signature"] = "(ImGuiDockNodeFlags)" @@ -4628,7 +4871,7 @@ defs["ImGuiDockNode_UpdateMergedFlags"][1]["call_args"] = "()" defs["ImGuiDockNode_UpdateMergedFlags"][1]["cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["defaults"] = {} defs["ImGuiDockNode_UpdateMergedFlags"][1]["funcname"] = "UpdateMergedFlags" -defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1679" +defs["ImGuiDockNode_UpdateMergedFlags"][1]["location"] = "imgui_internal:1920" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ov_cimguiname"] = "ImGuiDockNode_UpdateMergedFlags" defs["ImGuiDockNode_UpdateMergedFlags"][1]["ret"] = "void" defs["ImGuiDockNode_UpdateMergedFlags"][1]["signature"] = "()" @@ -4645,13 +4888,44 @@ defs["ImGuiDockNode_destroy"][1]["call_args"] = "(self)" defs["ImGuiDockNode_destroy"][1]["cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["defaults"] = {} defs["ImGuiDockNode_destroy"][1]["destructor"] = true -defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1666" +defs["ImGuiDockNode_destroy"][1]["location"] = "imgui_internal:1907" defs["ImGuiDockNode_destroy"][1]["ov_cimguiname"] = "ImGuiDockNode_destroy" defs["ImGuiDockNode_destroy"][1]["realdestructor"] = true defs["ImGuiDockNode_destroy"][1]["ret"] = "void" defs["ImGuiDockNode_destroy"][1]["signature"] = "(ImGuiDockNode*)" defs["ImGuiDockNode_destroy"][1]["stname"] = "ImGuiDockNode" defs["ImGuiDockNode_destroy"]["(ImGuiDockNode*)"] = defs["ImGuiDockNode_destroy"][1] +defs["ImGuiIDStackTool_ImGuiIDStackTool"] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["args"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["argsT"] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["argsoriginal"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["call_args"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["constructor"] = true +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["defaults"] = {} +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["funcname"] = "ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["location"] = "imgui_internal:2159" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["ov_cimguiname"] = "ImGuiIDStackTool_ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["signature"] = "()" +defs["ImGuiIDStackTool_ImGuiIDStackTool"][1]["stname"] = "ImGuiIDStackTool" +defs["ImGuiIDStackTool_ImGuiIDStackTool"]["()"] = defs["ImGuiIDStackTool_ImGuiIDStackTool"][1] +defs["ImGuiIDStackTool_destroy"] = {} +defs["ImGuiIDStackTool_destroy"][1] = {} +defs["ImGuiIDStackTool_destroy"][1]["args"] = "(ImGuiIDStackTool* self)" +defs["ImGuiIDStackTool_destroy"][1]["argsT"] = {} +defs["ImGuiIDStackTool_destroy"][1]["argsT"][1] = {} +defs["ImGuiIDStackTool_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIDStackTool_destroy"][1]["argsT"][1]["type"] = "ImGuiIDStackTool*" +defs["ImGuiIDStackTool_destroy"][1]["call_args"] = "(self)" +defs["ImGuiIDStackTool_destroy"][1]["cimguiname"] = "ImGuiIDStackTool_destroy" +defs["ImGuiIDStackTool_destroy"][1]["defaults"] = {} +defs["ImGuiIDStackTool_destroy"][1]["destructor"] = true +defs["ImGuiIDStackTool_destroy"][1]["ov_cimguiname"] = "ImGuiIDStackTool_destroy" +defs["ImGuiIDStackTool_destroy"][1]["ret"] = "void" +defs["ImGuiIDStackTool_destroy"][1]["signature"] = "(ImGuiIDStackTool*)" +defs["ImGuiIDStackTool_destroy"][1]["stname"] = "ImGuiIDStackTool" +defs["ImGuiIDStackTool_destroy"]["(ImGuiIDStackTool*)"] = defs["ImGuiIDStackTool_destroy"][1] defs["ImGuiIO_AddFocusEvent"] = {} defs["ImGuiIO_AddFocusEvent"][1] = {} defs["ImGuiIO_AddFocusEvent"][1]["args"] = "(ImGuiIO* self,bool focused)" @@ -4667,7 +4941,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2060" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2408" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -4688,7 +4962,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2061" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2409" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4709,7 +4983,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2062" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2410" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4730,7 +5004,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2063" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2411" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4757,7 +5031,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2055" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2402" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -4781,7 +5055,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2054" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2401" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -4805,7 +5079,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2057" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2404" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -4829,12 +5103,33 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2056" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2403" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMousePosEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMousePosEvent"]["(float,float)"] = defs["ImGuiIO_AddMousePosEvent"][1] +defs["ImGuiIO_AddMouseSourceEvent"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["args"] = "(ImGuiIO* self,ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["name"] = "source" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["type"] = "ImGuiMouseSource" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsoriginal"] = "(ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2406" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" +defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_AddMouseSourceEvent"]["(ImGuiMouseSource)"] = defs["ImGuiIO_AddMouseSourceEvent"][1] defs["ImGuiIO_AddMouseViewportEvent"] = {} defs["ImGuiIO_AddMouseViewportEvent"][1] = {} defs["ImGuiIO_AddMouseViewportEvent"][1]["args"] = "(ImGuiIO* self,ImGuiID id)" @@ -4850,7 +5145,7 @@ defs["ImGuiIO_AddMouseViewportEvent"][1]["call_args"] = "(id)" defs["ImGuiIO_AddMouseViewportEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseViewportEvent"][1]["funcname"] = "AddMouseViewportEvent" -defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2059" +defs["ImGuiIO_AddMouseViewportEvent"][1]["location"] = "imgui:2407" defs["ImGuiIO_AddMouseViewportEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseViewportEvent" defs["ImGuiIO_AddMouseViewportEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseViewportEvent"][1]["signature"] = "(ImGuiID)" @@ -4858,46 +5153,46 @@ defs["ImGuiIO_AddMouseViewportEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseViewportEvent"]["(ImGuiID)"] = defs["ImGuiIO_AddMouseViewportEvent"][1] defs["ImGuiIO_AddMouseWheelEvent"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wh_x,float wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wheel_x,float wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["name"] = "self" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wh_x" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wheel_x" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["type"] = "float" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wh_y" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wheel_y" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["type"] = "float" -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wh_x,float wh_y)" -defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wh_x,wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wheel_x,float wheel_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2058" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2405" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMouseWheelEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseWheelEvent"]["(float,float)"] = defs["ImGuiIO_AddMouseWheelEvent"][1] -defs["ImGuiIO_ClearInputCharacters"] = {} -defs["ImGuiIO_ClearInputCharacters"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["args"] = "(ImGuiIO* self)" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["name"] = "self" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["type"] = "ImGuiIO*" -defs["ImGuiIO_ClearInputCharacters"][1]["argsoriginal"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:2067" -defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" -defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" -defs["ImGuiIO_ClearInputCharacters"]["()"] = defs["ImGuiIO_ClearInputCharacters"][1] +defs["ImGuiIO_ClearEventsQueue"] = {} +defs["ImGuiIO_ClearEventsQueue"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearEventsQueue"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2415" +defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" +defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearEventsQueue"]["()"] = defs["ImGuiIO_ClearEventsQueue"][1] defs["ImGuiIO_ClearInputKeys"] = {} defs["ImGuiIO_ClearInputKeys"][1] = {} defs["ImGuiIO_ClearInputKeys"][1]["args"] = "(ImGuiIO* self)" @@ -4910,12 +5205,30 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2068" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2416" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ClearInputKeys"]["()"] = defs["ImGuiIO_ClearInputKeys"][1] +defs["ImGuiIO_ClearInputMouse"] = {} +defs["ImGuiIO_ClearInputMouse"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearInputMouse"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2417" +defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" +defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearInputMouse"]["()"] = defs["ImGuiIO_ClearInputMouse"][1] defs["ImGuiIO_ImGuiIO"] = {} defs["ImGuiIO_ImGuiIO"][1] = {} defs["ImGuiIO_ImGuiIO"][1]["args"] = "()" @@ -4926,7 +5239,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2143" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2508" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4946,7 +5259,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2066" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2414" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -4977,7 +5290,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2065" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2413" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -5009,7 +5322,7 @@ defs["ImGuiInputEvent_ImGuiInputEvent"][1]["cimguiname"] = "ImGuiInputEvent_ImGu defs["ImGuiInputEvent_ImGuiInputEvent"][1]["constructor"] = true defs["ImGuiInputEvent_ImGuiInputEvent"][1]["defaults"] = {} defs["ImGuiInputEvent_ImGuiInputEvent"][1]["funcname"] = "ImGuiInputEvent" -defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1307" +defs["ImGuiInputEvent_ImGuiInputEvent"][1]["location"] = "imgui_internal:1427" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["ov_cimguiname"] = "ImGuiInputEvent_ImGuiInputEvent" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["signature"] = "()" defs["ImGuiInputEvent_ImGuiInputEvent"][1]["stname"] = "ImGuiInputEvent" @@ -5042,7 +5355,7 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2184" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2552" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -5066,7 +5379,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2181" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2549" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -5084,7 +5397,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2185" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2553" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -5100,7 +5413,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2180" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2548" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -5127,7 +5440,7 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2182" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2550" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -5145,7 +5458,7 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2183" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2551" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -5167,6 +5480,55 @@ defs["ImGuiInputTextCallbackData_destroy"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_destroy"][1]["signature"] = "(ImGuiInputTextCallbackData*)" defs["ImGuiInputTextCallbackData_destroy"][1]["stname"] = "ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_destroy"]["(ImGuiInputTextCallbackData*)"] = defs["ImGuiInputTextCallbackData_destroy"][1] +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["args"] = "(ImGuiInputTextDeactivatedState* self)" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"][1] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsT"][1]["type"] = "ImGuiInputTextDeactivatedState*" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["call_args"] = "()" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["defaults"] = {} +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["location"] = "imgui_internal:1104" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ClearFreeMemory" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["ret"] = "void" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["signature"] = "()" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1]["stname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"]["()"] = defs["ImGuiInputTextDeactivatedState_ClearFreeMemory"][1] +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["args"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["argsT"] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["call_args"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["constructor"] = true +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["defaults"] = {} +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["funcname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["location"] = "imgui_internal:1103" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["signature"] = "()" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1]["stname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"]["()"] = defs["ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState"][1] +defs["ImGuiInputTextDeactivatedState_destroy"] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["args"] = "(ImGuiInputTextDeactivatedState* self)" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"][1] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["argsT"][1]["type"] = "ImGuiInputTextDeactivatedState*" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["cimguiname"] = "ImGuiInputTextDeactivatedState_destroy" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["defaults"] = {} +defs["ImGuiInputTextDeactivatedState_destroy"][1]["destructor"] = true +defs["ImGuiInputTextDeactivatedState_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextDeactivatedState_destroy" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["ret"] = "void" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["signature"] = "(ImGuiInputTextDeactivatedState*)" +defs["ImGuiInputTextDeactivatedState_destroy"][1]["stname"] = "ImGuiInputTextDeactivatedState" +defs["ImGuiInputTextDeactivatedState_destroy"]["(ImGuiInputTextDeactivatedState*)"] = defs["ImGuiInputTextDeactivatedState_destroy"][1] defs["ImGuiInputTextState_ClearFreeMemory"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5179,7 +5541,7 @@ defs["ImGuiInputTextState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1081" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:1143" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -5197,7 +5559,7 @@ defs["ImGuiInputTextState_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1090" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:1151" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -5215,7 +5577,7 @@ defs["ImGuiInputTextState_ClearText"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearText"][1]["cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearText"][1]["funcname"] = "ClearText" -defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1080" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:1142" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -5233,7 +5595,7 @@ defs["ImGuiInputTextState_CursorAnimReset"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorAnimReset"][1]["cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorAnimReset"][1]["funcname"] = "CursorAnimReset" -defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1087" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:1148" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -5251,7 +5613,7 @@ defs["ImGuiInputTextState_CursorClamp"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorClamp"][1]["cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorClamp"][1]["funcname"] = "CursorClamp" -defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1088" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:1149" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -5269,30 +5631,12 @@ defs["ImGuiInputTextState_GetCursorPos"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetCursorPos"][1]["cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["defaults"] = {} defs["ImGuiInputTextState_GetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1091" +defs["ImGuiInputTextState_GetCursorPos"][1]["location"] = "imgui_internal:1152" defs["ImGuiInputTextState_GetCursorPos"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetCursorPos" defs["ImGuiInputTextState_GetCursorPos"][1]["ret"] = "int" defs["ImGuiInputTextState_GetCursorPos"][1]["signature"] = "()const" defs["ImGuiInputTextState_GetCursorPos"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_GetCursorPos"]["()const"] = defs["ImGuiInputTextState_GetCursorPos"][1] -defs["ImGuiInputTextState_GetRedoAvailCount"] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["args"] = "(ImGuiInputTextState* self)" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"][1] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"][1]["name"] = "self" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["argsoriginal"] = "()" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["call_args"] = "()" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["defaults"] = {} -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["funcname"] = "GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:1083" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["stname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_GetRedoAvailCount"]["()const"] = defs["ImGuiInputTextState_GetRedoAvailCount"][1] defs["ImGuiInputTextState_GetSelectionEnd"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5305,7 +5649,7 @@ defs["ImGuiInputTextState_GetSelectionEnd"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionEnd"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionEnd"][1]["funcname"] = "GetSelectionEnd" -defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1093" +defs["ImGuiInputTextState_GetSelectionEnd"][1]["location"] = "imgui_internal:1154" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionEnd" defs["ImGuiInputTextState_GetSelectionEnd"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionEnd"][1]["signature"] = "()const" @@ -5323,30 +5667,12 @@ defs["ImGuiInputTextState_GetSelectionStart"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetSelectionStart"][1]["cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["defaults"] = {} defs["ImGuiInputTextState_GetSelectionStart"][1]["funcname"] = "GetSelectionStart" -defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1092" +defs["ImGuiInputTextState_GetSelectionStart"][1]["location"] = "imgui_internal:1153" defs["ImGuiInputTextState_GetSelectionStart"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetSelectionStart" defs["ImGuiInputTextState_GetSelectionStart"][1]["ret"] = "int" defs["ImGuiInputTextState_GetSelectionStart"][1]["signature"] = "()const" defs["ImGuiInputTextState_GetSelectionStart"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_GetSelectionStart"]["()const"] = defs["ImGuiInputTextState_GetSelectionStart"][1] -defs["ImGuiInputTextState_GetUndoAvailCount"] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["args"] = "(ImGuiInputTextState* self)" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"][1] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"][1]["name"] = "self" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["argsoriginal"] = "()" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["call_args"] = "()" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["defaults"] = {} -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["funcname"] = "GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:1082" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["stname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_GetUndoAvailCount"]["()const"] = defs["ImGuiInputTextState_GetUndoAvailCount"][1] defs["ImGuiInputTextState_HasSelection"] = {} defs["ImGuiInputTextState_HasSelection"][1] = {} defs["ImGuiInputTextState_HasSelection"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5359,7 +5685,7 @@ defs["ImGuiInputTextState_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_HasSelection"][1]["cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1089" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:1150" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -5367,22 +5693,40 @@ defs["ImGuiInputTextState_HasSelection"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_HasSelection"]["()const"] = defs["ImGuiInputTextState_HasSelection"][1] defs["ImGuiInputTextState_ImGuiInputTextState"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1] = {} -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["args"] = "(ImGuiContext* ctx)" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["args"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"] = {} -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"][1] = {} -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"][1]["name"] = "ctx" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsT"][1]["type"] = "ImGuiContext*" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsoriginal"] = "(ImGuiContext* ctx)" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["call_args"] = "(ctx)" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["call_args"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["constructor"] = true defs["ImGuiInputTextState_ImGuiInputTextState"][1]["defaults"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1]["funcname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1079" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:1140" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "(ImGuiContext*)" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"]["(ImGuiContext*)"] = defs["ImGuiInputTextState_ImGuiInputTextState"][1] +defs["ImGuiInputTextState_ImGuiInputTextState"]["()"] = defs["ImGuiInputTextState_ImGuiInputTextState"][1] +defs["ImGuiInputTextState_OnCharPressed"] = {} +defs["ImGuiInputTextState_OnCharPressed"][1] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["args"] = "(ImGuiInputTextState* self,unsigned int c)" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][2] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][2]["name"] = "c" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsT"][2]["type"] = "unsigned int" +defs["ImGuiInputTextState_OnCharPressed"][1]["argsoriginal"] = "(unsigned int c)" +defs["ImGuiInputTextState_OnCharPressed"][1]["call_args"] = "(c)" +defs["ImGuiInputTextState_OnCharPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnCharPressed" +defs["ImGuiInputTextState_OnCharPressed"][1]["defaults"] = {} +defs["ImGuiInputTextState_OnCharPressed"][1]["funcname"] = "OnCharPressed" +defs["ImGuiInputTextState_OnCharPressed"][1]["location"] = "imgui_internal:1145" +defs["ImGuiInputTextState_OnCharPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnCharPressed" +defs["ImGuiInputTextState_OnCharPressed"][1]["ret"] = "void" +defs["ImGuiInputTextState_OnCharPressed"][1]["signature"] = "(unsigned int)" +defs["ImGuiInputTextState_OnCharPressed"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_OnCharPressed"]["(unsigned int)"] = defs["ImGuiInputTextState_OnCharPressed"][1] defs["ImGuiInputTextState_OnKeyPressed"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["args"] = "(ImGuiInputTextState* self,int key)" @@ -5398,12 +5742,66 @@ defs["ImGuiInputTextState_OnKeyPressed"][1]["call_args"] = "(key)" defs["ImGuiInputTextState_OnKeyPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["funcname"] = "OnKeyPressed" -defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1084" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:1144" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" defs["ImGuiInputTextState_OnKeyPressed"][1]["stname"] = "ImGuiInputTextState" defs["ImGuiInputTextState_OnKeyPressed"]["(int)"] = defs["ImGuiInputTextState_OnKeyPressed"][1] +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["funcname"] = "ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["location"] = "imgui_internal:1163" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndKeepSelection" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndKeepSelection"][1] +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["funcname"] = "ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["location"] = "imgui_internal:1164" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndMoveToEnd" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndMoveToEnd"][1] +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["args"] = "(ImGuiInputTextState* self)" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1]["name"] = "self" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsT"][1]["type"] = "ImGuiInputTextState*" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["argsoriginal"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["call_args"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["defaults"] = {} +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["funcname"] = "ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["location"] = "imgui_internal:1162" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_ReloadUserBufAndSelectAll" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["ret"] = "void" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["signature"] = "()" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1]["stname"] = "ImGuiInputTextState" +defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"]["()"] = defs["ImGuiInputTextState_ReloadUserBufAndSelectAll"][1] defs["ImGuiInputTextState_SelectAll"] = {} defs["ImGuiInputTextState_SelectAll"][1] = {} defs["ImGuiInputTextState_SelectAll"][1]["args"] = "(ImGuiInputTextState* self)" @@ -5416,7 +5814,7 @@ defs["ImGuiInputTextState_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_SelectAll"][1]["cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1094" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:1155" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -5433,7 +5831,9 @@ defs["ImGuiInputTextState_destroy"][1]["call_args"] = "(self)" defs["ImGuiInputTextState_destroy"][1]["cimguiname"] = "ImGuiInputTextState_destroy" defs["ImGuiInputTextState_destroy"][1]["defaults"] = {} defs["ImGuiInputTextState_destroy"][1]["destructor"] = true +defs["ImGuiInputTextState_destroy"][1]["location"] = "imgui_internal:1141" defs["ImGuiInputTextState_destroy"][1]["ov_cimguiname"] = "ImGuiInputTextState_destroy" +defs["ImGuiInputTextState_destroy"][1]["realdestructor"] = true defs["ImGuiInputTextState_destroy"][1]["ret"] = "void" defs["ImGuiInputTextState_destroy"][1]["signature"] = "(ImGuiInputTextState*)" defs["ImGuiInputTextState_destroy"][1]["stname"] = "ImGuiInputTextState" @@ -5448,7 +5848,7 @@ defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["cimguiname"] = "ImGuiKeyOwnerDat defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["constructor"] = true defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["defaults"] = {} defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["funcname"] = "ImGuiKeyOwnerData" -defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1349" +defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["location"] = "imgui_internal:1471" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["ov_cimguiname"] = "ImGuiKeyOwnerData_ImGuiKeyOwnerData" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["signature"] = "()" defs["ImGuiKeyOwnerData_ImGuiKeyOwnerData"][1]["stname"] = "ImGuiKeyOwnerData" @@ -5479,7 +5879,7 @@ defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["cimguiname"] = "ImGuiKeyRout defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["constructor"] = true defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["defaults"] = {} defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["funcname"] = "ImGuiKeyRoutingData" -defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1325" +defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["location"] = "imgui_internal:1447" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["ov_cimguiname"] = "ImGuiKeyRoutingData_ImGuiKeyRoutingData" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["signature"] = "()" defs["ImGuiKeyRoutingData_ImGuiKeyRoutingData"][1]["stname"] = "ImGuiKeyRoutingData" @@ -5512,7 +5912,7 @@ defs["ImGuiKeyRoutingTable_Clear"][1]["call_args"] = "()" defs["ImGuiKeyRoutingTable_Clear"][1]["cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_Clear"][1]["funcname"] = "Clear" -defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1337" +defs["ImGuiKeyRoutingTable_Clear"][1]["location"] = "imgui_internal:1459" defs["ImGuiKeyRoutingTable_Clear"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_Clear" defs["ImGuiKeyRoutingTable_Clear"][1]["ret"] = "void" defs["ImGuiKeyRoutingTable_Clear"][1]["signature"] = "()" @@ -5528,7 +5928,7 @@ defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["cimguiname"] = "ImGuiKeyRo defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["constructor"] = true defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["defaults"] = {} defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["funcname"] = "ImGuiKeyRoutingTable" -defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1336" +defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["location"] = "imgui_internal:1458" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["ov_cimguiname"] = "ImGuiKeyRoutingTable_ImGuiKeyRoutingTable" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["signature"] = "()" defs["ImGuiKeyRoutingTable_ImGuiKeyRoutingTable"][1]["stname"] = "ImGuiKeyRoutingTable" @@ -5559,7 +5959,7 @@ defs["ImGuiLastItemData_ImGuiLastItemData"][1]["cimguiname"] = "ImGuiLastItemDat defs["ImGuiLastItemData_ImGuiLastItemData"][1]["constructor"] = true defs["ImGuiLastItemData_ImGuiLastItemData"][1]["defaults"] = {} defs["ImGuiLastItemData_ImGuiLastItemData"][1]["funcname"] = "ImGuiLastItemData" -defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1185" +defs["ImGuiLastItemData_ImGuiLastItemData"][1]["location"] = "imgui_internal:1266" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["ov_cimguiname"] = "ImGuiLastItemData_ImGuiLastItemData" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["signature"] = "()" defs["ImGuiLastItemData_ImGuiLastItemData"][1]["stname"] = "ImGuiLastItemData" @@ -5590,7 +5990,7 @@ defs["ImGuiListClipperData_ImGuiListClipperData"][1]["cimguiname"] = "ImGuiListC defs["ImGuiListClipperData_ImGuiListClipperData"][1]["constructor"] = true defs["ImGuiListClipperData_ImGuiListClipperData"][1]["defaults"] = {} defs["ImGuiListClipperData_ImGuiListClipperData"][1]["funcname"] = "ImGuiListClipperData" -defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1425" +defs["ImGuiListClipperData_ImGuiListClipperData"][1]["location"] = "imgui_internal:1542" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["ov_cimguiname"] = "ImGuiListClipperData_ImGuiListClipperData" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["signature"] = "()" defs["ImGuiListClipperData_ImGuiListClipperData"][1]["stname"] = "ImGuiListClipperData" @@ -5610,7 +6010,7 @@ defs["ImGuiListClipperData_Reset"][1]["call_args"] = "(clipper)" defs["ImGuiListClipperData_Reset"][1]["cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["defaults"] = {} defs["ImGuiListClipperData_Reset"][1]["funcname"] = "Reset" -defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1426" +defs["ImGuiListClipperData_Reset"][1]["location"] = "imgui_internal:1543" defs["ImGuiListClipperData_Reset"][1]["ov_cimguiname"] = "ImGuiListClipperData_Reset" defs["ImGuiListClipperData_Reset"][1]["ret"] = "void" defs["ImGuiListClipperData_Reset"][1]["signature"] = "(ImGuiListClipper*)" @@ -5648,7 +6048,7 @@ defs["ImGuiListClipperRange_FromIndices"][1]["cimguiname"] = "ImGuiListClipperRa defs["ImGuiListClipperRange_FromIndices"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromIndices"][1]["funcname"] = "FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1412" +defs["ImGuiListClipperRange_FromIndices"][1]["location"] = "imgui_internal:1529" defs["ImGuiListClipperRange_FromIndices"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromIndices" defs["ImGuiListClipperRange_FromIndices"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromIndices"][1]["signature"] = "(int,int)" @@ -5676,7 +6076,7 @@ defs["ImGuiListClipperRange_FromPositions"][1]["cimguiname"] = "ImGuiListClipper defs["ImGuiListClipperRange_FromPositions"][1]["defaults"] = {} defs["ImGuiListClipperRange_FromPositions"][1]["funcname"] = "FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["is_static_function"] = true -defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1413" +defs["ImGuiListClipperRange_FromPositions"][1]["location"] = "imgui_internal:1530" defs["ImGuiListClipperRange_FromPositions"][1]["ov_cimguiname"] = "ImGuiListClipperRange_FromPositions" defs["ImGuiListClipperRange_FromPositions"][1]["ret"] = "ImGuiListClipperRange" defs["ImGuiListClipperRange_FromPositions"][1]["signature"] = "(float,float,int,int)" @@ -5701,7 +6101,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2417" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2768" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -5719,36 +6119,12 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui:2418" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2769" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] -defs["ImGuiListClipper_ForceDisplayRangeByIndices"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["args"] = "(ImGuiListClipper* self,int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["name"] = "self" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["type"] = "ImGuiListClipper*" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["name"] = "item_min" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["name"] = "item_max" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsoriginal"] = "(int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["call_args"] = "(item_min,item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["defaults"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["funcname"] = "ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2422" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ov_cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ret"] = "void" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["signature"] = "(int,int)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["stname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"]["(int,int)"] = defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" @@ -5759,11 +6135,77 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2415" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2766" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"]["()"] = defs["ImGuiListClipper_ImGuiListClipper"][1] +defs["ImGuiListClipper_IncludeItemByIndex"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2774" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemByIndex"]["(int)"] = defs["ImGuiListClipper_IncludeItemByIndex"][1] +defs["ImGuiListClipper_IncludeItemsByIndex"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["name"] = "item_begin" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["name"] = "item_end" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsoriginal"] = "(int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2775" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemsByIndex"]["(int,int)"] = defs["ImGuiListClipper_IncludeItemsByIndex"][1] +defs["ImGuiListClipper_SeekCursorForItem"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["defaults"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["funcname"] = "SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2780" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ov_cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ret"] = "void" +defs["ImGuiListClipper_SeekCursorForItem"][1]["signature"] = "(int)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_SeekCursorForItem"]["(int)"] = defs["ImGuiListClipper_SeekCursorForItem"][1] defs["ImGuiListClipper_Step"] = {} defs["ImGuiListClipper_Step"][1] = {} defs["ImGuiListClipper_Step"][1]["args"] = "(ImGuiListClipper* self)" @@ -5776,7 +6218,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2419" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2770" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -5793,7 +6235,7 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true -defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2416" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2767" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -5815,7 +6257,7 @@ defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["call_args"] = "(update_offsets)" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["funcname"] = "CalcNextTotalWidth" -defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1056" +defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["location"] = "imgui_internal:1094" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcNextTotalWidth" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["ret"] = "void" defs["ImGuiMenuColumns_CalcNextTotalWidth"][1]["signature"] = "(bool)" @@ -5845,7 +6287,7 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w_icon,w_label,w_shortc defs["ImGuiMenuColumns_DeclColumns"][1]["cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_DeclColumns"][1]["funcname"] = "DeclColumns" -defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1055" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:1093" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float,float)" @@ -5861,7 +6303,7 @@ defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["cimguiname"] = "ImGuiMenuColumns_I defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["constructor"] = true defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["funcname"] = "ImGuiMenuColumns" -defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1053" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:1091" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -5884,7 +6326,7 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(spacing,window_reappearing)" defs["ImGuiMenuColumns_Update"][1]["cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["defaults"] = {} defs["ImGuiMenuColumns_Update"][1]["funcname"] = "Update" -defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1054" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:1092" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(float,bool)" @@ -5906,37 +6348,104 @@ defs["ImGuiMenuColumns_destroy"][1]["ret"] = "void" defs["ImGuiMenuColumns_destroy"][1]["signature"] = "(ImGuiMenuColumns*)" defs["ImGuiMenuColumns_destroy"][1]["stname"] = "ImGuiMenuColumns" defs["ImGuiMenuColumns_destroy"]["(ImGuiMenuColumns*)"] = defs["ImGuiMenuColumns_destroy"][1] -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["args"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["argsT"] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["argsoriginal"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["call_args"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["cimguiname"] = "ImGuiMetricsConfig_ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["constructor"] = true -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["defaults"] = {} -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["funcname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["location"] = "imgui_internal:1854" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["ov_cimguiname"] = "ImGuiMetricsConfig_ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["signature"] = "()" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1]["stname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_ImGuiMetricsConfig"]["()"] = defs["ImGuiMetricsConfig_ImGuiMetricsConfig"][1] -defs["ImGuiMetricsConfig_destroy"] = {} -defs["ImGuiMetricsConfig_destroy"][1] = {} -defs["ImGuiMetricsConfig_destroy"][1]["args"] = "(ImGuiMetricsConfig* self)" -defs["ImGuiMetricsConfig_destroy"][1]["argsT"] = {} -defs["ImGuiMetricsConfig_destroy"][1]["argsT"][1] = {} -defs["ImGuiMetricsConfig_destroy"][1]["argsT"][1]["name"] = "self" -defs["ImGuiMetricsConfig_destroy"][1]["argsT"][1]["type"] = "ImGuiMetricsConfig*" -defs["ImGuiMetricsConfig_destroy"][1]["call_args"] = "(self)" -defs["ImGuiMetricsConfig_destroy"][1]["cimguiname"] = "ImGuiMetricsConfig_destroy" -defs["ImGuiMetricsConfig_destroy"][1]["defaults"] = {} -defs["ImGuiMetricsConfig_destroy"][1]["destructor"] = true -defs["ImGuiMetricsConfig_destroy"][1]["ov_cimguiname"] = "ImGuiMetricsConfig_destroy" -defs["ImGuiMetricsConfig_destroy"][1]["ret"] = "void" -defs["ImGuiMetricsConfig_destroy"][1]["signature"] = "(ImGuiMetricsConfig*)" -defs["ImGuiMetricsConfig_destroy"][1]["stname"] = "ImGuiMetricsConfig" -defs["ImGuiMetricsConfig_destroy"]["(ImGuiMetricsConfig*)"] = defs["ImGuiMetricsConfig_destroy"][1] +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["args"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["argsT"] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["call_args"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["cimguiname"] = "ImGuiMultiSelectState_ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["constructor"] = true +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["defaults"] = {} +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["funcname"] = "ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["location"] = "imgui_internal:1801" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["signature"] = "()" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1]["stname"] = "ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_ImGuiMultiSelectState"]["()"] = defs["ImGuiMultiSelectState_ImGuiMultiSelectState"][1] +defs["ImGuiMultiSelectState_destroy"] = {} +defs["ImGuiMultiSelectState_destroy"][1] = {} +defs["ImGuiMultiSelectState_destroy"][1]["args"] = "(ImGuiMultiSelectState* self)" +defs["ImGuiMultiSelectState_destroy"][1]["argsT"] = {} +defs["ImGuiMultiSelectState_destroy"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectState_destroy"][1]["argsT"][1]["type"] = "ImGuiMultiSelectState*" +defs["ImGuiMultiSelectState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiMultiSelectState_destroy"][1]["cimguiname"] = "ImGuiMultiSelectState_destroy" +defs["ImGuiMultiSelectState_destroy"][1]["defaults"] = {} +defs["ImGuiMultiSelectState_destroy"][1]["destructor"] = true +defs["ImGuiMultiSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiMultiSelectState_destroy" +defs["ImGuiMultiSelectState_destroy"][1]["ret"] = "void" +defs["ImGuiMultiSelectState_destroy"][1]["signature"] = "(ImGuiMultiSelectState*)" +defs["ImGuiMultiSelectState_destroy"][1]["stname"] = "ImGuiMultiSelectState" +defs["ImGuiMultiSelectState_destroy"]["(ImGuiMultiSelectState*)"] = defs["ImGuiMultiSelectState_destroy"][1] +defs["ImGuiMultiSelectTempData_Clear"] = {} +defs["ImGuiMultiSelectTempData_Clear"][1] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["args"] = "(ImGuiMultiSelectTempData* self)" +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectTempData_Clear"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["ImGuiMultiSelectTempData_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectTempData_Clear"][1]["call_args"] = "()" +defs["ImGuiMultiSelectTempData_Clear"][1]["cimguiname"] = "ImGuiMultiSelectTempData_Clear" +defs["ImGuiMultiSelectTempData_Clear"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_Clear"][1]["funcname"] = "Clear" +defs["ImGuiMultiSelectTempData_Clear"][1]["location"] = "imgui_internal:1785" +defs["ImGuiMultiSelectTempData_Clear"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_Clear" +defs["ImGuiMultiSelectTempData_Clear"][1]["ret"] = "void" +defs["ImGuiMultiSelectTempData_Clear"][1]["signature"] = "()" +defs["ImGuiMultiSelectTempData_Clear"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_Clear"]["()"] = defs["ImGuiMultiSelectTempData_Clear"][1] +defs["ImGuiMultiSelectTempData_ClearIO"] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["args"] = "(ImGuiMultiSelectTempData* self)" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["call_args"] = "()" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_ClearIO"][1]["funcname"] = "ClearIO" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["location"] = "imgui_internal:1786" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ClearIO" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["ret"] = "void" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["signature"] = "()" +defs["ImGuiMultiSelectTempData_ClearIO"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ClearIO"]["()"] = defs["ImGuiMultiSelectTempData_ClearIO"][1] +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["args"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["argsoriginal"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["call_args"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["cimguiname"] = "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["constructor"] = true +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["funcname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["location"] = "imgui_internal:1784" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["signature"] = "()" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"]["()"] = defs["ImGuiMultiSelectTempData_ImGuiMultiSelectTempData"][1] +defs["ImGuiMultiSelectTempData_destroy"] = {} +defs["ImGuiMultiSelectTempData_destroy"][1] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["args"] = "(ImGuiMultiSelectTempData* self)" +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"][1] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiMultiSelectTempData_destroy"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["ImGuiMultiSelectTempData_destroy"][1]["call_args"] = "(self)" +defs["ImGuiMultiSelectTempData_destroy"][1]["cimguiname"] = "ImGuiMultiSelectTempData_destroy" +defs["ImGuiMultiSelectTempData_destroy"][1]["defaults"] = {} +defs["ImGuiMultiSelectTempData_destroy"][1]["destructor"] = true +defs["ImGuiMultiSelectTempData_destroy"][1]["ov_cimguiname"] = "ImGuiMultiSelectTempData_destroy" +defs["ImGuiMultiSelectTempData_destroy"][1]["ret"] = "void" +defs["ImGuiMultiSelectTempData_destroy"][1]["signature"] = "(ImGuiMultiSelectTempData*)" +defs["ImGuiMultiSelectTempData_destroy"][1]["stname"] = "ImGuiMultiSelectTempData" +defs["ImGuiMultiSelectTempData_destroy"]["(ImGuiMultiSelectTempData*)"] = defs["ImGuiMultiSelectTempData_destroy"][1] defs["ImGuiNavItemData_Clear"] = {} defs["ImGuiNavItemData_Clear"][1] = {} defs["ImGuiNavItemData_Clear"][1]["args"] = "(ImGuiNavItemData* self)" @@ -5949,7 +6458,7 @@ defs["ImGuiNavItemData_Clear"][1]["call_args"] = "()" defs["ImGuiNavItemData_Clear"][1]["cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["defaults"] = {} defs["ImGuiNavItemData_Clear"][1]["funcname"] = "Clear" -defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1502" +defs["ImGuiNavItemData_Clear"][1]["location"] = "imgui_internal:1626" defs["ImGuiNavItemData_Clear"][1]["ov_cimguiname"] = "ImGuiNavItemData_Clear" defs["ImGuiNavItemData_Clear"][1]["ret"] = "void" defs["ImGuiNavItemData_Clear"][1]["signature"] = "()" @@ -5965,7 +6474,7 @@ defs["ImGuiNavItemData_ImGuiNavItemData"][1]["cimguiname"] = "ImGuiNavItemData_I defs["ImGuiNavItemData_ImGuiNavItemData"][1]["constructor"] = true defs["ImGuiNavItemData_ImGuiNavItemData"][1]["defaults"] = {} defs["ImGuiNavItemData_ImGuiNavItemData"][1]["funcname"] = "ImGuiNavItemData" -defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1501" +defs["ImGuiNavItemData_ImGuiNavItemData"][1]["location"] = "imgui_internal:1625" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["ov_cimguiname"] = "ImGuiNavItemData_ImGuiNavItemData" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["signature"] = "()" defs["ImGuiNavItemData_ImGuiNavItemData"][1]["stname"] = "ImGuiNavItemData" @@ -5998,7 +6507,7 @@ defs["ImGuiNextItemData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextItemData_ClearFlags"][1]["cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextItemData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1172" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:1250" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -6014,7 +6523,7 @@ defs["ImGuiNextItemData_ImGuiNextItemData"][1]["cimguiname"] = "ImGuiNextItemDat defs["ImGuiNextItemData_ImGuiNextItemData"][1]["constructor"] = true defs["ImGuiNextItemData_ImGuiNextItemData"][1]["defaults"] = {} defs["ImGuiNextItemData_ImGuiNextItemData"][1]["funcname"] = "ImGuiNextItemData" -defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1171" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:1249" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -6047,7 +6556,7 @@ defs["ImGuiNextWindowData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextWindowData_ClearFlags"][1]["cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextWindowData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1153" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:1221" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -6063,7 +6572,7 @@ defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["cimguiname"] = "ImGuiNextWin defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["constructor"] = true defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["defaults"] = {} defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["funcname"] = "ImGuiNextWindowData" -defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1152" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:1220" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -6094,7 +6603,7 @@ defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["cimguiname"] = "ImGuiOldColumn defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["constructor"] = true defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["defaults"] = {} defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["funcname"] = "ImGuiOldColumnData" -defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1537" +defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["location"] = "imgui_internal:1705" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["ov_cimguiname"] = "ImGuiOldColumnData_ImGuiOldColumnData" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["signature"] = "()" defs["ImGuiOldColumnData_ImGuiOldColumnData"][1]["stname"] = "ImGuiOldColumnData" @@ -6125,7 +6634,7 @@ defs["ImGuiOldColumns_ImGuiOldColumns"][1]["cimguiname"] = "ImGuiOldColumns_ImGu defs["ImGuiOldColumns_ImGuiOldColumns"][1]["constructor"] = true defs["ImGuiOldColumns_ImGuiOldColumns"][1]["defaults"] = {} defs["ImGuiOldColumns_ImGuiOldColumns"][1]["funcname"] = "ImGuiOldColumns" -defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1558" +defs["ImGuiOldColumns_ImGuiOldColumns"][1]["location"] = "imgui_internal:1726" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["ov_cimguiname"] = "ImGuiOldColumns_ImGuiOldColumns" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["signature"] = "()" defs["ImGuiOldColumns_ImGuiOldColumns"][1]["stname"] = "ImGuiOldColumns" @@ -6156,7 +6665,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2281" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2626" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -6189,7 +6698,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2235" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2604" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -6205,7 +6714,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2234" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2603" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -6225,7 +6734,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2236" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2605" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -6243,7 +6752,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2238" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2607" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -6261,7 +6770,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2237" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2606" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -6293,7 +6802,7 @@ defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGu defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" -defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3180" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3684" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" @@ -6324,7 +6833,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3200" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3787" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -6355,7 +6864,7 @@ defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["constructor"] = true defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["defaults"] = {} defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["funcname"] = "ImGuiPlatformMonitor" -defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3190" +defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["location"] = "imgui:3777" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["ov_cimguiname"] = "ImGuiPlatformMonitor_ImGuiPlatformMonitor" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["signature"] = "()" defs["ImGuiPlatformMonitor_ImGuiPlatformMonitor"][1]["stname"] = "ImGuiPlatformMonitor" @@ -6386,7 +6895,7 @@ defs["ImGuiPopupData_ImGuiPopupData"][1]["cimguiname"] = "ImGuiPopupData_ImGuiPo defs["ImGuiPopupData_ImGuiPopupData"][1]["constructor"] = true defs["ImGuiPopupData_ImGuiPopupData"][1]["defaults"] = {} defs["ImGuiPopupData_ImGuiPopupData"][1]["funcname"] = "ImGuiPopupData" -defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1109" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:1346" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -6420,7 +6929,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1225" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:1319" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -6436,7 +6945,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1226" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:1320" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -6458,6 +6967,240 @@ defs["ImGuiPtrOrIndex_destroy"][1]["ret"] = "void" defs["ImGuiPtrOrIndex_destroy"][1]["signature"] = "(ImGuiPtrOrIndex*)" defs["ImGuiPtrOrIndex_destroy"][1]["stname"] = "ImGuiPtrOrIndex" defs["ImGuiPtrOrIndex_destroy"]["(ImGuiPtrOrIndex*)"] = defs["ImGuiPtrOrIndex_destroy"][1] +defs["ImGuiSelectionBasicStorage_ApplyRequests"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2988" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] +defs["ImGuiSelectionBasicStorage_Clear"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["funcname"] = "Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2990" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Clear"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Clear"]["()"] = defs["ImGuiSelectionBasicStorage_Clear"][1] +defs["ImGuiSelectionBasicStorage_Contains"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsoriginal"] = "(ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["call_args"] = "(id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["funcname"] = "Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2989" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_Contains"][1]["signature"] = "(ImGuiID)const" +defs["ImGuiSelectionBasicStorage_Contains"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Contains"]["(ImGuiID)const"] = defs["ImGuiSelectionBasicStorage_Contains"][1] +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["args"] = "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["name"] = "opaque_it" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["type"] = "void**" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["name"] = "out_id" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["type"] = "ImGuiID*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsoriginal"] = "(void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["call_args"] = "(opaque_it,out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["funcname"] = "GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2993" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["signature"] = "(void**,ImGuiID*)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"]["(void**,ImGuiID*)"] = defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["args"] = "(ImGuiSelectionBasicStorage* self,int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["name"] = "idx" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsoriginal"] = "(int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["call_args"] = "(idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["funcname"] = "GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2994" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ret"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["signature"] = "(int)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"]["(int)"] = defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["constructor"] = true +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["funcname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2987" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"]["()"] = defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] +defs["ImGuiSelectionBasicStorage_SetItemSelected"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["name"] = "selected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["type"] = "bool" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsoriginal"] = "(ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["call_args"] = "(id,selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["funcname"] = "SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2992" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["signature"] = "(ImGuiID,bool)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_SetItemSelected"]["(ImGuiID,bool)"] = defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] +defs["ImGuiSelectionBasicStorage_Swap"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["name"] = "r" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["reftoptr"] = true +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsoriginal"] = "(ImGuiSelectionBasicStorage& r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["call_args"] = "(*r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["funcname"] = "Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2991" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Swap"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Swap"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_Swap"][1] +defs["ImGuiSelectionBasicStorage_destroy"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionBasicStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_destroy"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_destroy"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_destroy"][1] +defs["ImGuiSelectionExternalStorage_ApplyRequests"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:3007" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["constructor"] = true +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["funcname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:3006" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["signature"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"]["()"] = defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] +defs["ImGuiSelectionExternalStorage_destroy"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["args"] = "(ImGuiSelectionExternalStorage* self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionExternalStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_destroy"][1]["signature"] = "(ImGuiSelectionExternalStorage*)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_destroy"]["(ImGuiSelectionExternalStorage*)"] = defs["ImGuiSelectionExternalStorage_destroy"][1] defs["ImGuiSettingsHandler_ImGuiSettingsHandler"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["args"] = "()" @@ -6468,7 +7211,7 @@ defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["cimguiname"] = "ImGuiSetti defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["constructor"] = true defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["defaults"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["funcname"] = "ImGuiSettingsHandler" -defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1793" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:2046" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -6499,7 +7242,7 @@ defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["cimguiname"] = "ImGuiStackLe defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["constructor"] = true defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["defaults"] = {} defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["funcname"] = "ImGuiStackLevelInfo" -defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:1872" +defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["location"] = "imgui_internal:2146" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["ov_cimguiname"] = "ImGuiStackLevelInfo_ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["signature"] = "()" defs["ImGuiStackLevelInfo_ImGuiStackLevelInfo"][1]["stname"] = "ImGuiStackLevelInfo" @@ -6520,24 +7263,27 @@ defs["ImGuiStackLevelInfo_destroy"][1]["ret"] = "void" defs["ImGuiStackLevelInfo_destroy"][1]["signature"] = "(ImGuiStackLevelInfo*)" defs["ImGuiStackLevelInfo_destroy"][1]["stname"] = "ImGuiStackLevelInfo" defs["ImGuiStackLevelInfo_destroy"]["(ImGuiStackLevelInfo*)"] = defs["ImGuiStackLevelInfo_destroy"][1] -defs["ImGuiStackSizes_CompareWithCurrentState"] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["args"] = "(ImGuiStackSizes* self)" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"][1] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"][1]["name"] = "self" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["argsoriginal"] = "()" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["call_args"] = "()" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["defaults"] = {} -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["funcname"] = "CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["location"] = "imgui_internal:1202" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithCurrentState" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["ret"] = "void" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["signature"] = "()" -defs["ImGuiStackSizes_CompareWithCurrentState"][1]["stname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_CompareWithCurrentState"]["()"] = defs["ImGuiStackSizes_CompareWithCurrentState"][1] +defs["ImGuiStackSizes_CompareWithContextState"] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["args"] = "(ImGuiStackSizes* self,ImGuiContext* ctx)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][1] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][1]["name"] = "self" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][2] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][2]["name"] = "ctx" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsT"][2]["type"] = "ImGuiContext*" +defs["ImGuiStackSizes_CompareWithContextState"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["call_args"] = "(ctx)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["cimguiname"] = "ImGuiStackSizes_CompareWithContextState" +defs["ImGuiStackSizes_CompareWithContextState"][1]["defaults"] = {} +defs["ImGuiStackSizes_CompareWithContextState"][1]["funcname"] = "CompareWithContextState" +defs["ImGuiStackSizes_CompareWithContextState"][1]["location"] = "imgui_internal:1295" +defs["ImGuiStackSizes_CompareWithContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_CompareWithContextState" +defs["ImGuiStackSizes_CompareWithContextState"][1]["ret"] = "void" +defs["ImGuiStackSizes_CompareWithContextState"][1]["signature"] = "(ImGuiContext*)" +defs["ImGuiStackSizes_CompareWithContextState"][1]["stname"] = "ImGuiStackSizes" +defs["ImGuiStackSizes_CompareWithContextState"]["(ImGuiContext*)"] = defs["ImGuiStackSizes_CompareWithContextState"][1] defs["ImGuiStackSizes_ImGuiStackSizes"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["args"] = "()" @@ -6548,29 +7294,32 @@ defs["ImGuiStackSizes_ImGuiStackSizes"][1]["cimguiname"] = "ImGuiStackSizes_ImGu defs["ImGuiStackSizes_ImGuiStackSizes"][1]["constructor"] = true defs["ImGuiStackSizes_ImGuiStackSizes"][1]["defaults"] = {} defs["ImGuiStackSizes_ImGuiStackSizes"][1]["funcname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1200" +defs["ImGuiStackSizes_ImGuiStackSizes"][1]["location"] = "imgui_internal:1293" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["ov_cimguiname"] = "ImGuiStackSizes_ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["signature"] = "()" defs["ImGuiStackSizes_ImGuiStackSizes"][1]["stname"] = "ImGuiStackSizes" defs["ImGuiStackSizes_ImGuiStackSizes"]["()"] = defs["ImGuiStackSizes_ImGuiStackSizes"][1] -defs["ImGuiStackSizes_SetToCurrentState"] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["args"] = "(ImGuiStackSizes* self)" -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"][1] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"][1]["name"] = "self" -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" -defs["ImGuiStackSizes_SetToCurrentState"][1]["argsoriginal"] = "()" -defs["ImGuiStackSizes_SetToCurrentState"][1]["call_args"] = "()" -defs["ImGuiStackSizes_SetToCurrentState"][1]["cimguiname"] = "ImGuiStackSizes_SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["defaults"] = {} -defs["ImGuiStackSizes_SetToCurrentState"][1]["funcname"] = "SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["location"] = "imgui_internal:1201" -defs["ImGuiStackSizes_SetToCurrentState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToCurrentState" -defs["ImGuiStackSizes_SetToCurrentState"][1]["ret"] = "void" -defs["ImGuiStackSizes_SetToCurrentState"][1]["signature"] = "()" -defs["ImGuiStackSizes_SetToCurrentState"][1]["stname"] = "ImGuiStackSizes" -defs["ImGuiStackSizes_SetToCurrentState"]["()"] = defs["ImGuiStackSizes_SetToCurrentState"][1] +defs["ImGuiStackSizes_SetToContextState"] = {} +defs["ImGuiStackSizes_SetToContextState"][1] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["args"] = "(ImGuiStackSizes* self,ImGuiContext* ctx)" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][1] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][1]["name"] = "self" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][1]["type"] = "ImGuiStackSizes*" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][2] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][2]["name"] = "ctx" +defs["ImGuiStackSizes_SetToContextState"][1]["argsT"][2]["type"] = "ImGuiContext*" +defs["ImGuiStackSizes_SetToContextState"][1]["argsoriginal"] = "(ImGuiContext* ctx)" +defs["ImGuiStackSizes_SetToContextState"][1]["call_args"] = "(ctx)" +defs["ImGuiStackSizes_SetToContextState"][1]["cimguiname"] = "ImGuiStackSizes_SetToContextState" +defs["ImGuiStackSizes_SetToContextState"][1]["defaults"] = {} +defs["ImGuiStackSizes_SetToContextState"][1]["funcname"] = "SetToContextState" +defs["ImGuiStackSizes_SetToContextState"][1]["location"] = "imgui_internal:1294" +defs["ImGuiStackSizes_SetToContextState"][1]["ov_cimguiname"] = "ImGuiStackSizes_SetToContextState" +defs["ImGuiStackSizes_SetToContextState"][1]["ret"] = "void" +defs["ImGuiStackSizes_SetToContextState"][1]["signature"] = "(ImGuiContext*)" +defs["ImGuiStackSizes_SetToContextState"][1]["stname"] = "ImGuiStackSizes" +defs["ImGuiStackSizes_SetToContextState"]["(ImGuiContext*)"] = defs["ImGuiStackSizes_SetToContextState"][1] defs["ImGuiStackSizes_destroy"] = {} defs["ImGuiStackSizes_destroy"][1] = {} defs["ImGuiStackSizes_destroy"][1]["args"] = "(ImGuiStackSizes* self)" @@ -6587,92 +7336,61 @@ defs["ImGuiStackSizes_destroy"][1]["ret"] = "void" defs["ImGuiStackSizes_destroy"][1]["signature"] = "(ImGuiStackSizes*)" defs["ImGuiStackSizes_destroy"][1]["stname"] = "ImGuiStackSizes" defs["ImGuiStackSizes_destroy"]["(ImGuiStackSizes*)"] = defs["ImGuiStackSizes_destroy"][1] -defs["ImGuiStackTool_ImGuiStackTool"] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1]["args"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["argsT"] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1]["argsoriginal"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["call_args"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["cimguiname"] = "ImGuiStackTool_ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["constructor"] = true -defs["ImGuiStackTool_ImGuiStackTool"][1]["defaults"] = {} -defs["ImGuiStackTool_ImGuiStackTool"][1]["funcname"] = "ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["location"] = "imgui_internal:1885" -defs["ImGuiStackTool_ImGuiStackTool"][1]["ov_cimguiname"] = "ImGuiStackTool_ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"][1]["signature"] = "()" -defs["ImGuiStackTool_ImGuiStackTool"][1]["stname"] = "ImGuiStackTool" -defs["ImGuiStackTool_ImGuiStackTool"]["()"] = defs["ImGuiStackTool_ImGuiStackTool"][1] -defs["ImGuiStackTool_destroy"] = {} -defs["ImGuiStackTool_destroy"][1] = {} -defs["ImGuiStackTool_destroy"][1]["args"] = "(ImGuiStackTool* self)" -defs["ImGuiStackTool_destroy"][1]["argsT"] = {} -defs["ImGuiStackTool_destroy"][1]["argsT"][1] = {} -defs["ImGuiStackTool_destroy"][1]["argsT"][1]["name"] = "self" -defs["ImGuiStackTool_destroy"][1]["argsT"][1]["type"] = "ImGuiStackTool*" -defs["ImGuiStackTool_destroy"][1]["call_args"] = "(self)" -defs["ImGuiStackTool_destroy"][1]["cimguiname"] = "ImGuiStackTool_destroy" -defs["ImGuiStackTool_destroy"][1]["defaults"] = {} -defs["ImGuiStackTool_destroy"][1]["destructor"] = true -defs["ImGuiStackTool_destroy"][1]["ov_cimguiname"] = "ImGuiStackTool_destroy" -defs["ImGuiStackTool_destroy"][1]["ret"] = "void" -defs["ImGuiStackTool_destroy"][1]["signature"] = "(ImGuiStackTool*)" -defs["ImGuiStackTool_destroy"][1]["stname"] = "ImGuiStackTool" -defs["ImGuiStackTool_destroy"]["(ImGuiStackTool*)"] = defs["ImGuiStackTool_destroy"][1] defs["ImGuiStoragePair_ImGuiStoragePair"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val_i" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["type"] = "int" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val_i)" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2348" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2683" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val_f" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["type"] = "float" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val_f)" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2349" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2684" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val_p" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["type"] = "void*" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val_p)" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2350" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2685" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -6707,7 +7425,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2381" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2724" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -6725,7 +7443,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2358" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2704" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -6750,7 +7468,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2361" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2707" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -6775,7 +7493,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2373" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2719" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -6800,7 +7518,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2363" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2709" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -6825,7 +7543,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2374" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2720" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -6850,7 +7568,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2359" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2705" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -6875,7 +7593,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2372" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2718" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -6896,7 +7614,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2365" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2711" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -6921,7 +7639,7 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2375" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2721" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -6942,7 +7660,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2378" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2726" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -6966,7 +7684,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2362" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2708" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -6990,7 +7708,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2364" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2710" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -7014,7 +7732,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2360" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2706" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -7038,7 +7756,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2366" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2712" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -7060,7 +7778,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][1]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][1]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][1]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][1]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1007" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:1043" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Int" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -7079,7 +7797,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][2]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][2]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][2]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][2]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1008" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:1044" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Float" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -7098,7 +7816,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][3]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][3]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][3]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][3]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1009" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:1045" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleMod_Vec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -7131,7 +7849,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1950" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2272" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -7151,7 +7869,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1951" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2273" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -7173,48 +7891,6 @@ defs["ImGuiStyle_destroy"][1]["ret"] = "void" defs["ImGuiStyle_destroy"][1]["signature"] = "(ImGuiStyle*)" defs["ImGuiStyle_destroy"][1]["stname"] = "ImGuiStyle" defs["ImGuiStyle_destroy"]["(ImGuiStyle*)"] = defs["ImGuiStyle_destroy"][1] -defs["ImGuiTabBar_GetTabName"] = {} -defs["ImGuiTabBar_GetTabName"][1] = {} -defs["ImGuiTabBar_GetTabName"][1]["args"] = "(ImGuiTabBar* self,const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabName"][1]["argsT"] = {} -defs["ImGuiTabBar_GetTabName"][1]["argsT"][1] = {} -defs["ImGuiTabBar_GetTabName"][1]["argsT"][1]["name"] = "self" -defs["ImGuiTabBar_GetTabName"][1]["argsT"][1]["type"] = "ImGuiTabBar*" -defs["ImGuiTabBar_GetTabName"][1]["argsT"][2] = {} -defs["ImGuiTabBar_GetTabName"][1]["argsT"][2]["name"] = "tab" -defs["ImGuiTabBar_GetTabName"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" -defs["ImGuiTabBar_GetTabName"][1]["argsoriginal"] = "(const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabName"][1]["call_args"] = "(tab)" -defs["ImGuiTabBar_GetTabName"][1]["cimguiname"] = "ImGuiTabBar_GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["defaults"] = {} -defs["ImGuiTabBar_GetTabName"][1]["funcname"] = "GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:2661" -defs["ImGuiTabBar_GetTabName"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["ret"] = "const char*" -defs["ImGuiTabBar_GetTabName"][1]["signature"] = "(const ImGuiTabItem*)const" -defs["ImGuiTabBar_GetTabName"][1]["stname"] = "ImGuiTabBar" -defs["ImGuiTabBar_GetTabName"]["(const ImGuiTabItem*)const"] = defs["ImGuiTabBar_GetTabName"][1] -defs["ImGuiTabBar_GetTabOrder"] = {} -defs["ImGuiTabBar_GetTabOrder"][1] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["args"] = "(ImGuiTabBar* self,const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][1] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][1]["name"] = "self" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][2] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][2]["name"] = "tab" -defs["ImGuiTabBar_GetTabOrder"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" -defs["ImGuiTabBar_GetTabOrder"][1]["argsoriginal"] = "(const ImGuiTabItem* tab)" -defs["ImGuiTabBar_GetTabOrder"][1]["call_args"] = "(tab)" -defs["ImGuiTabBar_GetTabOrder"][1]["cimguiname"] = "ImGuiTabBar_GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["defaults"] = {} -defs["ImGuiTabBar_GetTabOrder"][1]["funcname"] = "GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:2660" -defs["ImGuiTabBar_GetTabOrder"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["ret"] = "int" -defs["ImGuiTabBar_GetTabOrder"][1]["signature"] = "(const ImGuiTabItem*)const" -defs["ImGuiTabBar_GetTabOrder"][1]["stname"] = "ImGuiTabBar" -defs["ImGuiTabBar_GetTabOrder"]["(const ImGuiTabItem*)const"] = defs["ImGuiTabBar_GetTabOrder"][1] defs["ImGuiTabBar_ImGuiTabBar"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["args"] = "()" @@ -7225,7 +7901,7 @@ defs["ImGuiTabBar_ImGuiTabBar"][1]["cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["constructor"] = true defs["ImGuiTabBar_ImGuiTabBar"][1]["defaults"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["funcname"] = "ImGuiTabBar" -defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:2659" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:3049" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -7256,7 +7932,7 @@ defs["ImGuiTabItem_ImGuiTabItem"][1]["cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["constructor"] = true defs["ImGuiTabItem_ImGuiTabItem"][1]["defaults"] = {} defs["ImGuiTabItem_ImGuiTabItem"][1]["funcname"] = "ImGuiTabItem" -defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:2621" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:3009" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -7287,7 +7963,7 @@ defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["cimguiname"] = "Im defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["constructor"] = true defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["defaults"] = {} defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["funcname"] = "ImGuiTableColumnSettings" -defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:2910" +defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["location"] = "imgui_internal:3317" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableColumnSettings_ImGuiTableColumnSettings" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["signature"] = "()" defs["ImGuiTableColumnSettings_ImGuiTableColumnSettings"][1]["stname"] = "ImGuiTableColumnSettings" @@ -7318,7 +7994,7 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" -defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2249" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2095" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -7349,7 +8025,7 @@ defs["ImGuiTableColumn_ImGuiTableColumn"][1]["cimguiname"] = "ImGuiTableColumn_I defs["ImGuiTableColumn_ImGuiTableColumn"][1]["constructor"] = true defs["ImGuiTableColumn_ImGuiTableColumn"][1]["defaults"] = {} defs["ImGuiTableColumn_ImGuiTableColumn"][1]["funcname"] = "ImGuiTableColumn" -defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:2730" +defs["ImGuiTableColumn_ImGuiTableColumn"][1]["location"] = "imgui_internal:3112" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["ov_cimguiname"] = "ImGuiTableColumn_ImGuiTableColumn" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["signature"] = "()" defs["ImGuiTableColumn_ImGuiTableColumn"][1]["stname"] = "ImGuiTableColumn" @@ -7380,7 +8056,7 @@ defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["cimguiname"] = "ImGuiT defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["constructor"] = true defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["defaults"] = {} defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["funcname"] = "ImGuiTableInstanceData" -defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:2758" +defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["location"] = "imgui_internal:3155" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["ov_cimguiname"] = "ImGuiTableInstanceData_ImGuiTableInstanceData" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["signature"] = "()" defs["ImGuiTableInstanceData_ImGuiTableInstanceData"][1]["stname"] = "ImGuiTableInstanceData" @@ -7413,7 +8089,7 @@ defs["ImGuiTableSettings_GetColumnSettings"][1]["call_args"] = "()" defs["ImGuiTableSettings_GetColumnSettings"][1]["cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_GetColumnSettings"][1]["funcname"] = "GetColumnSettings" -defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:2933" +defs["ImGuiTableSettings_GetColumnSettings"][1]["location"] = "imgui_internal:3340" defs["ImGuiTableSettings_GetColumnSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_GetColumnSettings" defs["ImGuiTableSettings_GetColumnSettings"][1]["ret"] = "ImGuiTableColumnSettings*" defs["ImGuiTableSettings_GetColumnSettings"][1]["signature"] = "()" @@ -7429,7 +8105,7 @@ defs["ImGuiTableSettings_ImGuiTableSettings"][1]["cimguiname"] = "ImGuiTableSett defs["ImGuiTableSettings_ImGuiTableSettings"][1]["constructor"] = true defs["ImGuiTableSettings_ImGuiTableSettings"][1]["defaults"] = {} defs["ImGuiTableSettings_ImGuiTableSettings"][1]["funcname"] = "ImGuiTableSettings" -defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:2932" +defs["ImGuiTableSettings_ImGuiTableSettings"][1]["location"] = "imgui_internal:3339" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["ov_cimguiname"] = "ImGuiTableSettings_ImGuiTableSettings" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["signature"] = "()" defs["ImGuiTableSettings_ImGuiTableSettings"][1]["stname"] = "ImGuiTableSettings" @@ -7460,7 +8136,7 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" -defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2262" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2084" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -7491,7 +8167,7 @@ defs["ImGuiTableTempData_ImGuiTableTempData"][1]["cimguiname"] = "ImGuiTableTemp defs["ImGuiTableTempData_ImGuiTableTempData"][1]["constructor"] = true defs["ImGuiTableTempData_ImGuiTableTempData"][1]["defaults"] = {} defs["ImGuiTableTempData_ImGuiTableTempData"][1]["funcname"] = "ImGuiTableTempData" -defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:2895" +defs["ImGuiTableTempData_ImGuiTableTempData"][1]["location"] = "imgui_internal:3302" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["ov_cimguiname"] = "ImGuiTableTempData_ImGuiTableTempData" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["signature"] = "()" defs["ImGuiTableTempData_ImGuiTableTempData"][1]["stname"] = "ImGuiTableTempData" @@ -7522,7 +8198,7 @@ defs["ImGuiTable_ImGuiTable"][1]["cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["constructor"] = true defs["ImGuiTable_ImGuiTable"][1]["defaults"] = {} defs["ImGuiTable_ImGuiTable"][1]["funcname"] = "ImGuiTable" -defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:2871" +defs["ImGuiTable_ImGuiTable"][1]["location"] = "imgui_internal:3274" defs["ImGuiTable_ImGuiTable"][1]["ov_cimguiname"] = "ImGuiTable_ImGuiTable" defs["ImGuiTable_ImGuiTable"][1]["signature"] = "()" defs["ImGuiTable_ImGuiTable"][1]["stname"] = "ImGuiTable" @@ -7538,7 +8214,7 @@ defs["ImGuiTable_destroy"][1]["call_args"] = "(self)" defs["ImGuiTable_destroy"][1]["cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["defaults"] = {} defs["ImGuiTable_destroy"][1]["destructor"] = true -defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:2872" +defs["ImGuiTable_destroy"][1]["location"] = "imgui_internal:3275" defs["ImGuiTable_destroy"][1]["ov_cimguiname"] = "ImGuiTable_destroy" defs["ImGuiTable_destroy"][1]["realdestructor"] = true defs["ImGuiTable_destroy"][1]["ret"] = "void" @@ -7555,7 +8231,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2319" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2664" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -7579,7 +8255,7 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2328" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2673" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -7604,7 +8280,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2329" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2674" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -7629,7 +8305,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2330" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2675" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -7647,7 +8323,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2321" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2666" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -7665,7 +8341,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2327" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2672" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -7683,7 +8359,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2325" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2670" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -7717,7 +8393,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2324" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2669" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -7735,7 +8411,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2322" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2667" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -7756,7 +8432,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2326" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2671" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -7774,7 +8450,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2323" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2668" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -7792,7 +8468,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2292" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2637" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -7810,7 +8486,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2293" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2638" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -7836,7 +8512,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2290" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2635" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -7856,7 +8532,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2289" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2634" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -7873,7 +8549,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2294" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2639" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -7898,7 +8574,7 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2291" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2636" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -7941,7 +8617,7 @@ defs["ImGuiTextIndex_append"][1]["call_args"] = "(base,old_size,new_size)" defs["ImGuiTextIndex_append"][1]["cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["defaults"] = {} defs["ImGuiTextIndex_append"][1]["funcname"] = "append" -defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:730" +defs["ImGuiTextIndex_append"][1]["location"] = "imgui_internal:736" defs["ImGuiTextIndex_append"][1]["ov_cimguiname"] = "ImGuiTextIndex_append" defs["ImGuiTextIndex_append"][1]["ret"] = "void" defs["ImGuiTextIndex_append"][1]["signature"] = "(const char*,int,int)" @@ -7959,7 +8635,7 @@ defs["ImGuiTextIndex_clear"][1]["call_args"] = "()" defs["ImGuiTextIndex_clear"][1]["cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["defaults"] = {} defs["ImGuiTextIndex_clear"][1]["funcname"] = "clear" -defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:726" +defs["ImGuiTextIndex_clear"][1]["location"] = "imgui_internal:732" defs["ImGuiTextIndex_clear"][1]["ov_cimguiname"] = "ImGuiTextIndex_clear" defs["ImGuiTextIndex_clear"][1]["ret"] = "void" defs["ImGuiTextIndex_clear"][1]["signature"] = "()" @@ -7983,7 +8659,7 @@ defs["ImGuiTextIndex_get_line_begin"][1]["call_args"] = "(base,n)" defs["ImGuiTextIndex_get_line_begin"][1]["cimguiname"] = "ImGuiTextIndex_get_line_begin" defs["ImGuiTextIndex_get_line_begin"][1]["defaults"] = {} defs["ImGuiTextIndex_get_line_begin"][1]["funcname"] = "get_line_begin" -defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:728" +defs["ImGuiTextIndex_get_line_begin"][1]["location"] = "imgui_internal:734" defs["ImGuiTextIndex_get_line_begin"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_begin" defs["ImGuiTextIndex_get_line_begin"][1]["ret"] = "const char*" defs["ImGuiTextIndex_get_line_begin"][1]["signature"] = "(const char*,int)" @@ -8007,7 +8683,7 @@ defs["ImGuiTextIndex_get_line_end"][1]["call_args"] = "(base,n)" defs["ImGuiTextIndex_get_line_end"][1]["cimguiname"] = "ImGuiTextIndex_get_line_end" defs["ImGuiTextIndex_get_line_end"][1]["defaults"] = {} defs["ImGuiTextIndex_get_line_end"][1]["funcname"] = "get_line_end" -defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:729" +defs["ImGuiTextIndex_get_line_end"][1]["location"] = "imgui_internal:735" defs["ImGuiTextIndex_get_line_end"][1]["ov_cimguiname"] = "ImGuiTextIndex_get_line_end" defs["ImGuiTextIndex_get_line_end"][1]["ret"] = "const char*" defs["ImGuiTextIndex_get_line_end"][1]["signature"] = "(const char*,int)" @@ -8025,7 +8701,7 @@ defs["ImGuiTextIndex_size"][1]["call_args"] = "()" defs["ImGuiTextIndex_size"][1]["cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["defaults"] = {} defs["ImGuiTextIndex_size"][1]["funcname"] = "size" -defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:727" +defs["ImGuiTextIndex_size"][1]["location"] = "imgui_internal:733" defs["ImGuiTextIndex_size"][1]["ov_cimguiname"] = "ImGuiTextIndex_size" defs["ImGuiTextIndex_size"][1]["ret"] = "int" defs["ImGuiTextIndex_size"][1]["signature"] = "()" @@ -8041,7 +8717,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2302" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2647" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -8060,7 +8736,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2303" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2648" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -8094,7 +8770,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2304" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2649" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -8118,15 +8794,64 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui:2305" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2650" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" defs["ImGuiTextRange_split"][1]["stname"] = "ImGuiTextRange" defs["ImGuiTextRange_split"]["(char,ImVector_ImGuiTextRange*)const"] = defs["ImGuiTextRange_split"][1] +defs["ImGuiTypingSelectState_Clear"] = {} +defs["ImGuiTypingSelectState_Clear"][1] = {} +defs["ImGuiTypingSelectState_Clear"][1]["args"] = "(ImGuiTypingSelectState* self)" +defs["ImGuiTypingSelectState_Clear"][1]["argsT"] = {} +defs["ImGuiTypingSelectState_Clear"][1]["argsT"][1] = {} +defs["ImGuiTypingSelectState_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTypingSelectState_Clear"][1]["argsT"][1]["type"] = "ImGuiTypingSelectState*" +defs["ImGuiTypingSelectState_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiTypingSelectState_Clear"][1]["call_args"] = "()" +defs["ImGuiTypingSelectState_Clear"][1]["cimguiname"] = "ImGuiTypingSelectState_Clear" +defs["ImGuiTypingSelectState_Clear"][1]["defaults"] = {} +defs["ImGuiTypingSelectState_Clear"][1]["funcname"] = "Clear" +defs["ImGuiTypingSelectState_Clear"][1]["location"] = "imgui_internal:1670" +defs["ImGuiTypingSelectState_Clear"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_Clear" +defs["ImGuiTypingSelectState_Clear"][1]["ret"] = "void" +defs["ImGuiTypingSelectState_Clear"][1]["signature"] = "()" +defs["ImGuiTypingSelectState_Clear"][1]["stname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_Clear"]["()"] = defs["ImGuiTypingSelectState_Clear"][1] +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["args"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["argsT"] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["argsoriginal"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["call_args"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["constructor"] = true +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["defaults"] = {} +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["funcname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["location"] = "imgui_internal:1669" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["signature"] = "()" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1]["stname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_ImGuiTypingSelectState"]["()"] = defs["ImGuiTypingSelectState_ImGuiTypingSelectState"][1] +defs["ImGuiTypingSelectState_destroy"] = {} +defs["ImGuiTypingSelectState_destroy"][1] = {} +defs["ImGuiTypingSelectState_destroy"][1]["args"] = "(ImGuiTypingSelectState* self)" +defs["ImGuiTypingSelectState_destroy"][1]["argsT"] = {} +defs["ImGuiTypingSelectState_destroy"][1]["argsT"][1] = {} +defs["ImGuiTypingSelectState_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiTypingSelectState_destroy"][1]["argsT"][1]["type"] = "ImGuiTypingSelectState*" +defs["ImGuiTypingSelectState_destroy"][1]["call_args"] = "(self)" +defs["ImGuiTypingSelectState_destroy"][1]["cimguiname"] = "ImGuiTypingSelectState_destroy" +defs["ImGuiTypingSelectState_destroy"][1]["defaults"] = {} +defs["ImGuiTypingSelectState_destroy"][1]["destructor"] = true +defs["ImGuiTypingSelectState_destroy"][1]["ov_cimguiname"] = "ImGuiTypingSelectState_destroy" +defs["ImGuiTypingSelectState_destroy"][1]["ret"] = "void" +defs["ImGuiTypingSelectState_destroy"][1]["signature"] = "(ImGuiTypingSelectState*)" +defs["ImGuiTypingSelectState_destroy"][1]["stname"] = "ImGuiTypingSelectState" +defs["ImGuiTypingSelectState_destroy"]["(ImGuiTypingSelectState*)"] = defs["ImGuiTypingSelectState_destroy"][1] defs["ImGuiViewportP_CalcWorkRectPos"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1] = {} -defs["ImGuiViewportP_CalcWorkRectPos"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][1] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][1]["name"] = "pOut" @@ -8135,14 +8860,14 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2]["name"] = "self" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][2]["type"] = "ImGuiViewportP*" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3] = {} -defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["name"] = "inset_min" defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsT"][3]["type"] = "const ImVec2" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsoriginal"] = "(const ImVec2& off_min)" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(off_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["argsoriginal"] = "(const ImVec2& inset_min)" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["call_args"] = "(inset_min)" defs["ImGuiViewportP_CalcWorkRectPos"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectPos"][1]["funcname"] = "CalcWorkRectPos" -defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1747" +defs["ImGuiViewportP_CalcWorkRectPos"][1]["location"] = "imgui_internal:1998" defs["ImGuiViewportP_CalcWorkRectPos"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectPos"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectPos" defs["ImGuiViewportP_CalcWorkRectPos"][1]["ret"] = "void" @@ -8151,7 +8876,7 @@ defs["ImGuiViewportP_CalcWorkRectPos"][1]["stname"] = "ImGuiViewportP" defs["ImGuiViewportP_CalcWorkRectPos"]["(const ImVec2)const"] = defs["ImGuiViewportP_CalcWorkRectPos"][1] defs["ImGuiViewportP_CalcWorkRectSize"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 off_min,const ImVec2 off_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["args"] = "(ImVec2 *pOut,ImGuiViewportP* self,const ImVec2 inset_min,const ImVec2 inset_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][1] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][1]["name"] = "pOut" @@ -8160,17 +8885,17 @@ defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2]["name"] = "self" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][2]["type"] = "ImGuiViewportP*" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["name"] = "off_min" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["name"] = "inset_min" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][3]["type"] = "const ImVec2" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4] = {} -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["name"] = "off_max" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["name"] = "inset_max" defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsT"][4]["type"] = "const ImVec2" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsoriginal"] = "(const ImVec2& off_min,const ImVec2& off_max)" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(off_min,off_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["argsoriginal"] = "(const ImVec2& inset_min,const ImVec2& inset_max)" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["call_args"] = "(inset_min,inset_max)" defs["ImGuiViewportP_CalcWorkRectSize"][1]["cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["defaults"] = {} defs["ImGuiViewportP_CalcWorkRectSize"][1]["funcname"] = "CalcWorkRectSize" -defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1748" +defs["ImGuiViewportP_CalcWorkRectSize"][1]["location"] = "imgui_internal:1999" defs["ImGuiViewportP_CalcWorkRectSize"][1]["nonUDT"] = 1 defs["ImGuiViewportP_CalcWorkRectSize"][1]["ov_cimguiname"] = "ImGuiViewportP_CalcWorkRectSize" defs["ImGuiViewportP_CalcWorkRectSize"][1]["ret"] = "void" @@ -8189,7 +8914,7 @@ defs["ImGuiViewportP_ClearRequestFlags"][1]["call_args"] = "()" defs["ImGuiViewportP_ClearRequestFlags"][1]["cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["defaults"] = {} defs["ImGuiViewportP_ClearRequestFlags"][1]["funcname"] = "ClearRequestFlags" -defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1744" +defs["ImGuiViewportP_ClearRequestFlags"][1]["location"] = "imgui_internal:1995" defs["ImGuiViewportP_ClearRequestFlags"][1]["ov_cimguiname"] = "ImGuiViewportP_ClearRequestFlags" defs["ImGuiViewportP_ClearRequestFlags"][1]["ret"] = "void" defs["ImGuiViewportP_ClearRequestFlags"][1]["signature"] = "()" @@ -8210,7 +8935,7 @@ defs["ImGuiViewportP_GetBuildWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetBuildWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetBuildWorkRect"][1]["funcname"] = "GetBuildWorkRect" -defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:1754" +defs["ImGuiViewportP_GetBuildWorkRect"][1]["location"] = "imgui_internal:2005" defs["ImGuiViewportP_GetBuildWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetBuildWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetBuildWorkRect" defs["ImGuiViewportP_GetBuildWorkRect"][1]["ret"] = "void" @@ -8232,7 +8957,7 @@ defs["ImGuiViewportP_GetMainRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetMainRect"][1]["cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetMainRect"][1]["funcname"] = "GetMainRect" -defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:1752" +defs["ImGuiViewportP_GetMainRect"][1]["location"] = "imgui_internal:2003" defs["ImGuiViewportP_GetMainRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetMainRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetMainRect" defs["ImGuiViewportP_GetMainRect"][1]["ret"] = "void" @@ -8254,7 +8979,7 @@ defs["ImGuiViewportP_GetWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_GetWorkRect"][1]["cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_GetWorkRect"][1]["funcname"] = "GetWorkRect" -defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:1753" +defs["ImGuiViewportP_GetWorkRect"][1]["location"] = "imgui_internal:2004" defs["ImGuiViewportP_GetWorkRect"][1]["nonUDT"] = 1 defs["ImGuiViewportP_GetWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_GetWorkRect" defs["ImGuiViewportP_GetWorkRect"][1]["ret"] = "void" @@ -8271,7 +8996,7 @@ defs["ImGuiViewportP_ImGuiViewportP"][1]["cimguiname"] = "ImGuiViewportP_ImGuiVi defs["ImGuiViewportP_ImGuiViewportP"][1]["constructor"] = true defs["ImGuiViewportP_ImGuiViewportP"][1]["defaults"] = {} defs["ImGuiViewportP_ImGuiViewportP"][1]["funcname"] = "ImGuiViewportP" -defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1742" +defs["ImGuiViewportP_ImGuiViewportP"][1]["location"] = "imgui_internal:1993" defs["ImGuiViewportP_ImGuiViewportP"][1]["ov_cimguiname"] = "ImGuiViewportP_ImGuiViewportP" defs["ImGuiViewportP_ImGuiViewportP"][1]["signature"] = "()" defs["ImGuiViewportP_ImGuiViewportP"][1]["stname"] = "ImGuiViewportP" @@ -8288,7 +9013,7 @@ defs["ImGuiViewportP_UpdateWorkRect"][1]["call_args"] = "()" defs["ImGuiViewportP_UpdateWorkRect"][1]["cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["defaults"] = {} defs["ImGuiViewportP_UpdateWorkRect"][1]["funcname"] = "UpdateWorkRect" -defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:1749" +defs["ImGuiViewportP_UpdateWorkRect"][1]["location"] = "imgui_internal:2000" defs["ImGuiViewportP_UpdateWorkRect"][1]["ov_cimguiname"] = "ImGuiViewportP_UpdateWorkRect" defs["ImGuiViewportP_UpdateWorkRect"][1]["ret"] = "void" defs["ImGuiViewportP_UpdateWorkRect"][1]["signature"] = "()" @@ -8305,7 +9030,7 @@ defs["ImGuiViewportP_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewportP_destroy"][1]["cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["defaults"] = {} defs["ImGuiViewportP_destroy"][1]["destructor"] = true -defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1743" +defs["ImGuiViewportP_destroy"][1]["location"] = "imgui_internal:1994" defs["ImGuiViewportP_destroy"][1]["ov_cimguiname"] = "ImGuiViewportP_destroy" defs["ImGuiViewportP_destroy"][1]["realdestructor"] = true defs["ImGuiViewportP_destroy"][1]["ret"] = "void" @@ -8327,7 +9052,7 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3068" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3627" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -8349,7 +9074,7 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" -defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3069" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3628" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -8366,7 +9091,7 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" -defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3064" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3623" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -8382,7 +9107,7 @@ defs["ImGuiViewport_destroy"][1]["call_args"] = "(self)" defs["ImGuiViewport_destroy"][1]["cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["defaults"] = {} defs["ImGuiViewport_destroy"][1]["destructor"] = true -defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3065" +defs["ImGuiViewport_destroy"][1]["location"] = "imgui:3624" defs["ImGuiViewport_destroy"][1]["ov_cimguiname"] = "ImGuiViewport_destroy" defs["ImGuiViewport_destroy"][1]["realdestructor"] = true defs["ImGuiViewport_destroy"][1]["ret"] = "void" @@ -8399,7 +9124,7 @@ defs["ImGuiWindowClass_ImGuiWindowClass"][1]["cimguiname"] = "ImGuiWindowClass_I defs["ImGuiWindowClass_ImGuiWindowClass"][1]["constructor"] = true defs["ImGuiWindowClass_ImGuiWindowClass"][1]["defaults"] = {} defs["ImGuiWindowClass_ImGuiWindowClass"][1]["funcname"] = "ImGuiWindowClass" -defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2216" +defs["ImGuiWindowClass_ImGuiWindowClass"][1]["location"] = "imgui:2585" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["ov_cimguiname"] = "ImGuiWindowClass_ImGuiWindowClass" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["signature"] = "()" defs["ImGuiWindowClass_ImGuiWindowClass"][1]["stname"] = "ImGuiWindowClass" @@ -8432,7 +9157,7 @@ defs["ImGuiWindowSettings_GetName"][1]["call_args"] = "()" defs["ImGuiWindowSettings_GetName"][1]["cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["defaults"] = {} defs["ImGuiWindowSettings_GetName"][1]["funcname"] = "GetName" -defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1778" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:2031" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -8448,7 +9173,7 @@ defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["cimguiname"] = "ImGuiWindowS defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["constructor"] = true defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["defaults"] = {} defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["funcname"] = "ImGuiWindowSettings" -defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1777" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:2030" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -8481,7 +9206,7 @@ defs["ImGuiWindow_CalcFontSize"][1]["call_args"] = "()" defs["ImGuiWindow_CalcFontSize"][1]["cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["defaults"] = {} defs["ImGuiWindow_CalcFontSize"][1]["funcname"] = "CalcFontSize" -defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2575" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:2966" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -8506,7 +9231,7 @@ defs["ImGuiWindow_GetID"][1]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][1]["defaults"] = {} defs["ImGuiWindow_GetID"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetID"][1]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2568" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:2958" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetID_Str" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -8525,7 +9250,7 @@ defs["ImGuiWindow_GetID"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetID"][2]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][2]["defaults"] = {} defs["ImGuiWindow_GetID"][2]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2569" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:2959" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetID_Ptr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -8544,7 +9269,7 @@ defs["ImGuiWindow_GetID"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetID"][3]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][3]["defaults"] = {} defs["ImGuiWindow_GetID"][3]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2570" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:2960" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetID_Int" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -8552,6 +9277,27 @@ defs["ImGuiWindow_GetID"][3]["stname"] = "ImGuiWindow" defs["ImGuiWindow_GetID"]["(const char*,const char*)"] = defs["ImGuiWindow_GetID"][1] defs["ImGuiWindow_GetID"]["(const void*)"] = defs["ImGuiWindow_GetID"][2] defs["ImGuiWindow_GetID"]["(int)"] = defs["ImGuiWindow_GetID"][3] +defs["ImGuiWindow_GetIDFromPos"] = {} +defs["ImGuiWindow_GetIDFromPos"][1] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["args"] = "(ImGuiWindow* self,const ImVec2 p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1]["name"] = "self" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2]["name"] = "p_abs" +defs["ImGuiWindow_GetIDFromPos"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImGuiWindow_GetIDFromPos"][1]["argsoriginal"] = "(const ImVec2& p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["call_args"] = "(p_abs)" +defs["ImGuiWindow_GetIDFromPos"][1]["cimguiname"] = "ImGuiWindow_GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["defaults"] = {} +defs["ImGuiWindow_GetIDFromPos"][1]["funcname"] = "GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["location"] = "imgui_internal:2961" +defs["ImGuiWindow_GetIDFromPos"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromPos" +defs["ImGuiWindow_GetIDFromPos"][1]["ret"] = "ImGuiID" +defs["ImGuiWindow_GetIDFromPos"][1]["signature"] = "(const ImVec2)" +defs["ImGuiWindow_GetIDFromPos"][1]["stname"] = "ImGuiWindow" +defs["ImGuiWindow_GetIDFromPos"]["(const ImVec2)"] = defs["ImGuiWindow_GetIDFromPos"][1] defs["ImGuiWindow_GetIDFromRectangle"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["args"] = "(ImGuiWindow* self,const ImRect r_abs)" @@ -8567,7 +9313,7 @@ defs["ImGuiWindow_GetIDFromRectangle"][1]["call_args"] = "(r_abs)" defs["ImGuiWindow_GetIDFromRectangle"][1]["cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["defaults"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["funcname"] = "GetIDFromRectangle" -defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2571" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:2962" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -8589,29 +9335,11 @@ defs["ImGuiWindow_ImGuiWindow"][1]["cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["constructor"] = true defs["ImGuiWindow_ImGuiWindow"][1]["defaults"] = {} defs["ImGuiWindow_ImGuiWindow"][1]["funcname"] = "ImGuiWindow" -defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2564" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:2954" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"]["(ImGuiContext*,const char*)"] = defs["ImGuiWindow_ImGuiWindow"][1] -defs["ImGuiWindow_MenuBarHeight"] = {} -defs["ImGuiWindow_MenuBarHeight"][1] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["args"] = "(ImGuiWindow* self)" -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"][1] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"][1]["name"] = "self" -defs["ImGuiWindow_MenuBarHeight"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["ImGuiWindow_MenuBarHeight"][1]["argsoriginal"] = "()" -defs["ImGuiWindow_MenuBarHeight"][1]["call_args"] = "()" -defs["ImGuiWindow_MenuBarHeight"][1]["cimguiname"] = "ImGuiWindow_MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["defaults"] = {} -defs["ImGuiWindow_MenuBarHeight"][1]["funcname"] = "MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:2578" -defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" -defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" -defs["ImGuiWindow_MenuBarHeight"][1]["stname"] = "ImGuiWindow" -defs["ImGuiWindow_MenuBarHeight"]["()const"] = defs["ImGuiWindow_MenuBarHeight"][1] defs["ImGuiWindow_MenuBarRect"] = {} defs["ImGuiWindow_MenuBarRect"][1] = {} defs["ImGuiWindow_MenuBarRect"][1]["args"] = "(ImRect *pOut,ImGuiWindow* self)" @@ -8627,7 +9355,7 @@ defs["ImGuiWindow_MenuBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarRect"][1]["cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarRect"][1]["funcname"] = "MenuBarRect" -defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2579" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:2968" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -8649,31 +9377,13 @@ defs["ImGuiWindow_Rect"][1]["call_args"] = "()" defs["ImGuiWindow_Rect"][1]["cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["defaults"] = {} defs["ImGuiWindow_Rect"][1]["funcname"] = "Rect" -defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2574" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:2965" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" defs["ImGuiWindow_Rect"][1]["signature"] = "()const" defs["ImGuiWindow_Rect"][1]["stname"] = "ImGuiWindow" defs["ImGuiWindow_Rect"]["()const"] = defs["ImGuiWindow_Rect"][1] -defs["ImGuiWindow_TitleBarHeight"] = {} -defs["ImGuiWindow_TitleBarHeight"][1] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["args"] = "(ImGuiWindow* self)" -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"][1] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"][1]["name"] = "self" -defs["ImGuiWindow_TitleBarHeight"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["ImGuiWindow_TitleBarHeight"][1]["argsoriginal"] = "()" -defs["ImGuiWindow_TitleBarHeight"][1]["call_args"] = "()" -defs["ImGuiWindow_TitleBarHeight"][1]["cimguiname"] = "ImGuiWindow_TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["defaults"] = {} -defs["ImGuiWindow_TitleBarHeight"][1]["funcname"] = "TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:2576" -defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" -defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" -defs["ImGuiWindow_TitleBarHeight"][1]["stname"] = "ImGuiWindow" -defs["ImGuiWindow_TitleBarHeight"]["()const"] = defs["ImGuiWindow_TitleBarHeight"][1] defs["ImGuiWindow_TitleBarRect"] = {} defs["ImGuiWindow_TitleBarRect"][1] = {} defs["ImGuiWindow_TitleBarRect"][1]["args"] = "(ImRect *pOut,ImGuiWindow* self)" @@ -8689,7 +9399,7 @@ defs["ImGuiWindow_TitleBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarRect"][1]["cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarRect"][1]["funcname"] = "TitleBarRect" -defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2577" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:2967" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -8707,7 +9417,7 @@ defs["ImGuiWindow_destroy"][1]["call_args"] = "(self)" defs["ImGuiWindow_destroy"][1]["cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["defaults"] = {} defs["ImGuiWindow_destroy"][1]["destructor"] = true -defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2566" +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:2956" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" @@ -8726,7 +9436,7 @@ defs["ImPool_Add"][1]["call_args"] = "()" defs["ImPool_Add"][1]["cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["defaults"] = {} defs["ImPool_Add"][1]["funcname"] = "Add" -defs["ImPool_Add"][1]["location"] = "imgui_internal:679" +defs["ImPool_Add"][1]["location"] = "imgui_internal:689" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -8745,7 +9455,7 @@ defs["ImPool_Clear"][1]["call_args"] = "()" defs["ImPool_Clear"][1]["cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["defaults"] = {} defs["ImPool_Clear"][1]["funcname"] = "Clear" -defs["ImPool_Clear"][1]["location"] = "imgui_internal:678" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:688" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -8767,7 +9477,7 @@ defs["ImPool_Contains"][1]["call_args"] = "(p)" defs["ImPool_Contains"][1]["cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["defaults"] = {} defs["ImPool_Contains"][1]["funcname"] = "Contains" -defs["ImPool_Contains"][1]["location"] = "imgui_internal:677" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:687" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -8786,7 +9496,7 @@ defs["ImPool_GetAliveCount"][1]["call_args"] = "()" defs["ImPool_GetAliveCount"][1]["cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["defaults"] = {} defs["ImPool_GetAliveCount"][1]["funcname"] = "GetAliveCount" -defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:686" +defs["ImPool_GetAliveCount"][1]["location"] = "imgui_internal:696" defs["ImPool_GetAliveCount"][1]["ov_cimguiname"] = "ImPool_GetAliveCount" defs["ImPool_GetAliveCount"][1]["ret"] = "int" defs["ImPool_GetAliveCount"][1]["signature"] = "()const" @@ -8805,7 +9515,7 @@ defs["ImPool_GetBufSize"][1]["call_args"] = "()" defs["ImPool_GetBufSize"][1]["cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["defaults"] = {} defs["ImPool_GetBufSize"][1]["funcname"] = "GetBufSize" -defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:687" +defs["ImPool_GetBufSize"][1]["location"] = "imgui_internal:697" defs["ImPool_GetBufSize"][1]["ov_cimguiname"] = "ImPool_GetBufSize" defs["ImPool_GetBufSize"][1]["ret"] = "int" defs["ImPool_GetBufSize"][1]["signature"] = "()const" @@ -8827,7 +9537,7 @@ defs["ImPool_GetByIndex"][1]["call_args"] = "(n)" defs["ImPool_GetByIndex"][1]["cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["defaults"] = {} defs["ImPool_GetByIndex"][1]["funcname"] = "GetByIndex" -defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:674" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:684" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -8849,7 +9559,7 @@ defs["ImPool_GetByKey"][1]["call_args"] = "(key)" defs["ImPool_GetByKey"][1]["cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["defaults"] = {} defs["ImPool_GetByKey"][1]["funcname"] = "GetByKey" -defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:673" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:683" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -8871,7 +9581,7 @@ defs["ImPool_GetIndex"][1]["call_args"] = "(p)" defs["ImPool_GetIndex"][1]["cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["defaults"] = {} defs["ImPool_GetIndex"][1]["funcname"] = "GetIndex" -defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:675" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:685" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -8890,7 +9600,7 @@ defs["ImPool_GetMapSize"][1]["call_args"] = "()" defs["ImPool_GetMapSize"][1]["cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["defaults"] = {} defs["ImPool_GetMapSize"][1]["funcname"] = "GetMapSize" -defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:688" +defs["ImPool_GetMapSize"][1]["location"] = "imgui_internal:698" defs["ImPool_GetMapSize"][1]["ov_cimguiname"] = "ImPool_GetMapSize" defs["ImPool_GetMapSize"][1]["ret"] = "int" defs["ImPool_GetMapSize"][1]["signature"] = "()const" @@ -8912,7 +9622,7 @@ defs["ImPool_GetOrAddByKey"][1]["call_args"] = "(key)" defs["ImPool_GetOrAddByKey"][1]["cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["defaults"] = {} defs["ImPool_GetOrAddByKey"][1]["funcname"] = "GetOrAddByKey" -defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:676" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:686" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -8929,7 +9639,7 @@ defs["ImPool_ImPool"][1]["cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["constructor"] = true defs["ImPool_ImPool"][1]["defaults"] = {} defs["ImPool_ImPool"][1]["funcname"] = "ImPool" -defs["ImPool_ImPool"][1]["location"] = "imgui_internal:671" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:681" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -8953,7 +9663,7 @@ defs["ImPool_Remove"][1]["call_args"] = "(key,p)" defs["ImPool_Remove"][1]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][1]["defaults"] = {} defs["ImPool_Remove"][1]["funcname"] = "Remove" -defs["ImPool_Remove"][1]["location"] = "imgui_internal:680" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:690" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_Remove_TPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -8976,7 +9686,7 @@ defs["ImPool_Remove"][2]["call_args"] = "(key,idx)" defs["ImPool_Remove"][2]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][2]["defaults"] = {} defs["ImPool_Remove"][2]["funcname"] = "Remove" -defs["ImPool_Remove"][2]["location"] = "imgui_internal:681" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:691" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_Remove_PoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -8999,7 +9709,7 @@ defs["ImPool_Reserve"][1]["call_args"] = "(capacity)" defs["ImPool_Reserve"][1]["cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["defaults"] = {} defs["ImPool_Reserve"][1]["funcname"] = "Reserve" -defs["ImPool_Reserve"][1]["location"] = "imgui_internal:682" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:692" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -9021,7 +9731,7 @@ defs["ImPool_TryGetMapData"][1]["call_args"] = "(n)" defs["ImPool_TryGetMapData"][1]["cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["defaults"] = {} defs["ImPool_TryGetMapData"][1]["funcname"] = "TryGetMapData" -defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:689" +defs["ImPool_TryGetMapData"][1]["location"] = "imgui_internal:699" defs["ImPool_TryGetMapData"][1]["ov_cimguiname"] = "ImPool_TryGetMapData" defs["ImPool_TryGetMapData"][1]["ret"] = "T*" defs["ImPool_TryGetMapData"][1]["signature"] = "(ImPoolIdx)" @@ -9039,7 +9749,7 @@ defs["ImPool_destroy"][1]["call_args"] = "(self)" defs["ImPool_destroy"][1]["cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["defaults"] = {} defs["ImPool_destroy"][1]["destructor"] = true -defs["ImPool_destroy"][1]["location"] = "imgui_internal:672" +defs["ImPool_destroy"][1]["location"] = "imgui_internal:682" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" @@ -9062,7 +9772,7 @@ defs["ImRect_Add"][1]["call_args"] = "(p)" defs["ImRect_Add"][1]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][1]["defaults"] = {} defs["ImRect_Add"][1]["funcname"] = "Add" -defs["ImRect_Add"][1]["location"] = "imgui_internal:548" +defs["ImRect_Add"][1]["location"] = "imgui_internal:552" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_Add_Vec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -9081,7 +9791,7 @@ defs["ImRect_Add"][2]["call_args"] = "(r)" defs["ImRect_Add"][2]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][2]["defaults"] = {} defs["ImRect_Add"][2]["funcname"] = "Add" -defs["ImRect_Add"][2]["location"] = "imgui_internal:549" +defs["ImRect_Add"][2]["location"] = "imgui_internal:553" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_Add_Rect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -9103,7 +9813,7 @@ defs["ImRect_ClipWith"][1]["call_args"] = "(r)" defs["ImRect_ClipWith"][1]["cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["defaults"] = {} defs["ImRect_ClipWith"][1]["funcname"] = "ClipWith" -defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:555" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:559" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -9124,7 +9834,7 @@ defs["ImRect_ClipWithFull"][1]["call_args"] = "(r)" defs["ImRect_ClipWithFull"][1]["cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["defaults"] = {} defs["ImRect_ClipWithFull"][1]["funcname"] = "ClipWithFull" -defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:556" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:560" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -9145,7 +9855,7 @@ defs["ImRect_Contains"][1]["call_args"] = "(p)" defs["ImRect_Contains"][1]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][1]["defaults"] = {} defs["ImRect_Contains"][1]["funcname"] = "Contains" -defs["ImRect_Contains"][1]["location"] = "imgui_internal:545" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:548" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_Contains_Vec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -9164,13 +9874,37 @@ defs["ImRect_Contains"][2]["call_args"] = "(r)" defs["ImRect_Contains"][2]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][2]["defaults"] = {} defs["ImRect_Contains"][2]["funcname"] = "Contains" -defs["ImRect_Contains"][2]["location"] = "imgui_internal:546" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:549" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_Contains_Rect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" defs["ImRect_Contains"][2]["stname"] = "ImRect" defs["ImRect_Contains"]["(const ImRect)const"] = defs["ImRect_Contains"][2] defs["ImRect_Contains"]["(const ImVec2)const"] = defs["ImRect_Contains"][1] +defs["ImRect_ContainsWithPad"] = {} +defs["ImRect_ContainsWithPad"][1] = {} +defs["ImRect_ContainsWithPad"][1]["args"] = "(ImRect* self,const ImVec2 p,const ImVec2 pad)" +defs["ImRect_ContainsWithPad"][1]["argsT"] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][1] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][1]["name"] = "self" +defs["ImRect_ContainsWithPad"][1]["argsT"][1]["type"] = "ImRect*" +defs["ImRect_ContainsWithPad"][1]["argsT"][2] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][2]["name"] = "p" +defs["ImRect_ContainsWithPad"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImRect_ContainsWithPad"][1]["argsT"][3] = {} +defs["ImRect_ContainsWithPad"][1]["argsT"][3]["name"] = "pad" +defs["ImRect_ContainsWithPad"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImRect_ContainsWithPad"][1]["argsoriginal"] = "(const ImVec2& p,const ImVec2& pad)" +defs["ImRect_ContainsWithPad"][1]["call_args"] = "(p,pad)" +defs["ImRect_ContainsWithPad"][1]["cimguiname"] = "ImRect_ContainsWithPad" +defs["ImRect_ContainsWithPad"][1]["defaults"] = {} +defs["ImRect_ContainsWithPad"][1]["funcname"] = "ContainsWithPad" +defs["ImRect_ContainsWithPad"][1]["location"] = "imgui_internal:550" +defs["ImRect_ContainsWithPad"][1]["ov_cimguiname"] = "ImRect_ContainsWithPad" +defs["ImRect_ContainsWithPad"][1]["ret"] = "bool" +defs["ImRect_ContainsWithPad"][1]["signature"] = "(const ImVec2,const ImVec2)const" +defs["ImRect_ContainsWithPad"][1]["stname"] = "ImRect" +defs["ImRect_ContainsWithPad"]["(const ImVec2,const ImVec2)const"] = defs["ImRect_ContainsWithPad"][1] defs["ImRect_Expand"] = {} defs["ImRect_Expand"][1] = {} defs["ImRect_Expand"][1]["args"] = "(ImRect* self,const float amount)" @@ -9186,7 +9920,7 @@ defs["ImRect_Expand"][1]["call_args"] = "(amount)" defs["ImRect_Expand"][1]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][1]["defaults"] = {} defs["ImRect_Expand"][1]["funcname"] = "Expand" -defs["ImRect_Expand"][1]["location"] = "imgui_internal:550" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:554" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_Expand_Float" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -9205,7 +9939,7 @@ defs["ImRect_Expand"][2]["call_args"] = "(amount)" defs["ImRect_Expand"][2]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][2]["defaults"] = {} defs["ImRect_Expand"][2]["funcname"] = "Expand" -defs["ImRect_Expand"][2]["location"] = "imgui_internal:551" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:555" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_Expand_Vec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -9224,7 +9958,7 @@ defs["ImRect_Floor"][1]["call_args"] = "()" defs["ImRect_Floor"][1]["cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["defaults"] = {} defs["ImRect_Floor"][1]["funcname"] = "Floor" -defs["ImRect_Floor"][1]["location"] = "imgui_internal:557" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:561" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -9242,7 +9976,7 @@ defs["ImRect_GetArea"][1]["call_args"] = "()" defs["ImRect_GetArea"][1]["cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["defaults"] = {} defs["ImRect_GetArea"][1]["funcname"] = "GetArea" -defs["ImRect_GetArea"][1]["location"] = "imgui_internal:540" +defs["ImRect_GetArea"][1]["location"] = "imgui_internal:543" defs["ImRect_GetArea"][1]["ov_cimguiname"] = "ImRect_GetArea" defs["ImRect_GetArea"][1]["ret"] = "float" defs["ImRect_GetArea"][1]["signature"] = "()const" @@ -9263,7 +9997,7 @@ defs["ImRect_GetBL"][1]["call_args"] = "()" defs["ImRect_GetBL"][1]["cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["defaults"] = {} defs["ImRect_GetBL"][1]["funcname"] = "GetBL" -defs["ImRect_GetBL"][1]["location"] = "imgui_internal:543" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:546" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -9285,7 +10019,7 @@ defs["ImRect_GetBR"][1]["call_args"] = "()" defs["ImRect_GetBR"][1]["cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["defaults"] = {} defs["ImRect_GetBR"][1]["funcname"] = "GetBR" -defs["ImRect_GetBR"][1]["location"] = "imgui_internal:544" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:547" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -9307,7 +10041,7 @@ defs["ImRect_GetCenter"][1]["call_args"] = "()" defs["ImRect_GetCenter"][1]["cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["defaults"] = {} defs["ImRect_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:536" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:539" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -9326,7 +10060,7 @@ defs["ImRect_GetHeight"][1]["call_args"] = "()" defs["ImRect_GetHeight"][1]["cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["defaults"] = {} defs["ImRect_GetHeight"][1]["funcname"] = "GetHeight" -defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:539" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:542" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -9347,7 +10081,7 @@ defs["ImRect_GetSize"][1]["call_args"] = "()" defs["ImRect_GetSize"][1]["cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["defaults"] = {} defs["ImRect_GetSize"][1]["funcname"] = "GetSize" -defs["ImRect_GetSize"][1]["location"] = "imgui_internal:537" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:540" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -9369,7 +10103,7 @@ defs["ImRect_GetTL"][1]["call_args"] = "()" defs["ImRect_GetTL"][1]["cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["defaults"] = {} defs["ImRect_GetTL"][1]["funcname"] = "GetTL" -defs["ImRect_GetTL"][1]["location"] = "imgui_internal:541" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:544" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -9391,7 +10125,7 @@ defs["ImRect_GetTR"][1]["call_args"] = "()" defs["ImRect_GetTR"][1]["cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["defaults"] = {} defs["ImRect_GetTR"][1]["funcname"] = "GetTR" -defs["ImRect_GetTR"][1]["location"] = "imgui_internal:542" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:545" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -9410,7 +10144,7 @@ defs["ImRect_GetWidth"][1]["call_args"] = "()" defs["ImRect_GetWidth"][1]["cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["defaults"] = {} defs["ImRect_GetWidth"][1]["funcname"] = "GetWidth" -defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:538" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:541" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -9426,7 +10160,7 @@ defs["ImRect_ImRect"][1]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][1]["constructor"] = true defs["ImRect_ImRect"][1]["defaults"] = {} defs["ImRect_ImRect"][1]["funcname"] = "ImRect" -defs["ImRect_ImRect"][1]["location"] = "imgui_internal:531" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:534" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRect_Nil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -9445,7 +10179,7 @@ defs["ImRect_ImRect"][2]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][2]["constructor"] = true defs["ImRect_ImRect"][2]["defaults"] = {} defs["ImRect_ImRect"][2]["funcname"] = "ImRect" -defs["ImRect_ImRect"][2]["location"] = "imgui_internal:532" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:535" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRect_Vec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -9461,7 +10195,7 @@ defs["ImRect_ImRect"][3]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][3]["constructor"] = true defs["ImRect_ImRect"][3]["defaults"] = {} defs["ImRect_ImRect"][3]["funcname"] = "ImRect" -defs["ImRect_ImRect"][3]["location"] = "imgui_internal:533" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:536" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRect_Vec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -9486,7 +10220,7 @@ defs["ImRect_ImRect"][4]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][4]["constructor"] = true defs["ImRect_ImRect"][4]["defaults"] = {} defs["ImRect_ImRect"][4]["funcname"] = "ImRect" -defs["ImRect_ImRect"][4]["location"] = "imgui_internal:534" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:537" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRect_Float" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -9506,7 +10240,7 @@ defs["ImRect_IsInverted"][1]["call_args"] = "()" defs["ImRect_IsInverted"][1]["cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["defaults"] = {} defs["ImRect_IsInverted"][1]["funcname"] = "IsInverted" -defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:558" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:562" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -9527,7 +10261,7 @@ defs["ImRect_Overlaps"][1]["call_args"] = "(r)" defs["ImRect_Overlaps"][1]["cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["defaults"] = {} defs["ImRect_Overlaps"][1]["funcname"] = "Overlaps" -defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:547" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:551" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -9548,7 +10282,7 @@ defs["ImRect_ToVec4"][1]["call_args"] = "()" defs["ImRect_ToVec4"][1]["cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["defaults"] = {} defs["ImRect_ToVec4"][1]["funcname"] = "ToVec4" -defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:559" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:563" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -9570,7 +10304,7 @@ defs["ImRect_Translate"][1]["call_args"] = "(d)" defs["ImRect_Translate"][1]["cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["defaults"] = {} defs["ImRect_Translate"][1]["funcname"] = "Translate" -defs["ImRect_Translate"][1]["location"] = "imgui_internal:552" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:556" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -9591,7 +10325,7 @@ defs["ImRect_TranslateX"][1]["call_args"] = "(dx)" defs["ImRect_TranslateX"][1]["cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["defaults"] = {} defs["ImRect_TranslateX"][1]["funcname"] = "TranslateX" -defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:553" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:557" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -9612,7 +10346,7 @@ defs["ImRect_TranslateY"][1]["call_args"] = "(dy)" defs["ImRect_TranslateY"][1]["cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["defaults"] = {} defs["ImRect_TranslateY"][1]["funcname"] = "TranslateY" -defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:554" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:558" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -9646,7 +10380,7 @@ defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["call_args"] = "()" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["defaults"] = {} defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["funcname"] = "GetArenaSizeInBytes" -defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:651" +defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["location"] = "imgui_internal:661" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ov_cimguiname"] = "ImSpanAllocator_GetArenaSizeInBytes" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["ret"] = "int" defs["ImSpanAllocator_GetArenaSizeInBytes"][1]["signature"] = "()" @@ -9668,7 +10402,7 @@ defs["ImSpanAllocator_GetSpanPtrBegin"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrBegin"][1]["funcname"] = "GetSpanPtrBegin" -defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:653" +defs["ImSpanAllocator_GetSpanPtrBegin"][1]["location"] = "imgui_internal:663" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrBegin" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrBegin"][1]["signature"] = "(int)" @@ -9690,7 +10424,7 @@ defs["ImSpanAllocator_GetSpanPtrEnd"][1]["call_args"] = "(n)" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["defaults"] = {} defs["ImSpanAllocator_GetSpanPtrEnd"][1]["funcname"] = "GetSpanPtrEnd" -defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:654" +defs["ImSpanAllocator_GetSpanPtrEnd"][1]["location"] = "imgui_internal:664" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ov_cimguiname"] = "ImSpanAllocator_GetSpanPtrEnd" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["ret"] = "void*" defs["ImSpanAllocator_GetSpanPtrEnd"][1]["signature"] = "(int)" @@ -9707,7 +10441,7 @@ defs["ImSpanAllocator_ImSpanAllocator"][1]["cimguiname"] = "ImSpanAllocator_ImSp defs["ImSpanAllocator_ImSpanAllocator"][1]["constructor"] = true defs["ImSpanAllocator_ImSpanAllocator"][1]["defaults"] = {} defs["ImSpanAllocator_ImSpanAllocator"][1]["funcname"] = "ImSpanAllocator" -defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:649" +defs["ImSpanAllocator_ImSpanAllocator"][1]["location"] = "imgui_internal:659" defs["ImSpanAllocator_ImSpanAllocator"][1]["ov_cimguiname"] = "ImSpanAllocator_ImSpanAllocator" defs["ImSpanAllocator_ImSpanAllocator"][1]["signature"] = "()" defs["ImSpanAllocator_ImSpanAllocator"][1]["stname"] = "ImSpanAllocator" @@ -9735,7 +10469,7 @@ defs["ImSpanAllocator_Reserve"][1]["cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["defaults"] = {} defs["ImSpanAllocator_Reserve"][1]["defaults"]["a"] = "4" defs["ImSpanAllocator_Reserve"][1]["funcname"] = "Reserve" -defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:650" +defs["ImSpanAllocator_Reserve"][1]["location"] = "imgui_internal:660" defs["ImSpanAllocator_Reserve"][1]["ov_cimguiname"] = "ImSpanAllocator_Reserve" defs["ImSpanAllocator_Reserve"][1]["ret"] = "void" defs["ImSpanAllocator_Reserve"][1]["signature"] = "(int,size_t,int)" @@ -9757,7 +10491,7 @@ defs["ImSpanAllocator_SetArenaBasePtr"][1]["call_args"] = "(base_ptr)" defs["ImSpanAllocator_SetArenaBasePtr"][1]["cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["defaults"] = {} defs["ImSpanAllocator_SetArenaBasePtr"][1]["funcname"] = "SetArenaBasePtr" -defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:652" +defs["ImSpanAllocator_SetArenaBasePtr"][1]["location"] = "imgui_internal:662" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ov_cimguiname"] = "ImSpanAllocator_SetArenaBasePtr" defs["ImSpanAllocator_SetArenaBasePtr"][1]["ret"] = "void" defs["ImSpanAllocator_SetArenaBasePtr"][1]["signature"] = "(void*)" @@ -9791,7 +10525,7 @@ defs["ImSpan_ImSpan"][1]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][1]["constructor"] = true defs["ImSpan_ImSpan"][1]["defaults"] = {} defs["ImSpan_ImSpan"][1]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:617" +defs["ImSpan_ImSpan"][1]["location"] = "imgui_internal:627" defs["ImSpan_ImSpan"][1]["ov_cimguiname"] = "ImSpan_ImSpan_Nil" defs["ImSpan_ImSpan"][1]["signature"] = "()" defs["ImSpan_ImSpan"][1]["stname"] = "ImSpan" @@ -9811,7 +10545,7 @@ defs["ImSpan_ImSpan"][2]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][2]["constructor"] = true defs["ImSpan_ImSpan"][2]["defaults"] = {} defs["ImSpan_ImSpan"][2]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:618" +defs["ImSpan_ImSpan"][2]["location"] = "imgui_internal:628" defs["ImSpan_ImSpan"][2]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrInt" defs["ImSpan_ImSpan"][2]["signature"] = "(T*,int)" defs["ImSpan_ImSpan"][2]["stname"] = "ImSpan" @@ -9831,7 +10565,7 @@ defs["ImSpan_ImSpan"][3]["cimguiname"] = "ImSpan_ImSpan" defs["ImSpan_ImSpan"][3]["constructor"] = true defs["ImSpan_ImSpan"][3]["defaults"] = {} defs["ImSpan_ImSpan"][3]["funcname"] = "ImSpan" -defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:619" +defs["ImSpan_ImSpan"][3]["location"] = "imgui_internal:629" defs["ImSpan_ImSpan"][3]["ov_cimguiname"] = "ImSpan_ImSpan_TPtrTPtr" defs["ImSpan_ImSpan"][3]["signature"] = "(T*,T*)" defs["ImSpan_ImSpan"][3]["stname"] = "ImSpan" @@ -9851,7 +10585,7 @@ defs["ImSpan_begin"][1]["call_args"] = "()" defs["ImSpan_begin"][1]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][1]["defaults"] = {} defs["ImSpan_begin"][1]["funcname"] = "begin" -defs["ImSpan_begin"][1]["location"] = "imgui_internal:628" +defs["ImSpan_begin"][1]["location"] = "imgui_internal:638" defs["ImSpan_begin"][1]["ov_cimguiname"] = "ImSpan_begin_Nil" defs["ImSpan_begin"][1]["ret"] = "T*" defs["ImSpan_begin"][1]["signature"] = "()" @@ -9868,7 +10602,7 @@ defs["ImSpan_begin"][2]["call_args"] = "()" defs["ImSpan_begin"][2]["cimguiname"] = "ImSpan_begin" defs["ImSpan_begin"][2]["defaults"] = {} defs["ImSpan_begin"][2]["funcname"] = "begin" -defs["ImSpan_begin"][2]["location"] = "imgui_internal:629" +defs["ImSpan_begin"][2]["location"] = "imgui_internal:639" defs["ImSpan_begin"][2]["ov_cimguiname"] = "ImSpan_begin__const" defs["ImSpan_begin"][2]["ret"] = "const T*" defs["ImSpan_begin"][2]["signature"] = "()const" @@ -9905,7 +10639,7 @@ defs["ImSpan_end"][1]["call_args"] = "()" defs["ImSpan_end"][1]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][1]["defaults"] = {} defs["ImSpan_end"][1]["funcname"] = "end" -defs["ImSpan_end"][1]["location"] = "imgui_internal:630" +defs["ImSpan_end"][1]["location"] = "imgui_internal:640" defs["ImSpan_end"][1]["ov_cimguiname"] = "ImSpan_end_Nil" defs["ImSpan_end"][1]["ret"] = "T*" defs["ImSpan_end"][1]["signature"] = "()" @@ -9922,7 +10656,7 @@ defs["ImSpan_end"][2]["call_args"] = "()" defs["ImSpan_end"][2]["cimguiname"] = "ImSpan_end" defs["ImSpan_end"][2]["defaults"] = {} defs["ImSpan_end"][2]["funcname"] = "end" -defs["ImSpan_end"][2]["location"] = "imgui_internal:631" +defs["ImSpan_end"][2]["location"] = "imgui_internal:641" defs["ImSpan_end"][2]["ov_cimguiname"] = "ImSpan_end__const" defs["ImSpan_end"][2]["ret"] = "const T*" defs["ImSpan_end"][2]["signature"] = "()const" @@ -9945,7 +10679,7 @@ defs["ImSpan_index_from_ptr"][1]["call_args"] = "(it)" defs["ImSpan_index_from_ptr"][1]["cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["defaults"] = {} defs["ImSpan_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:634" +defs["ImSpan_index_from_ptr"][1]["location"] = "imgui_internal:644" defs["ImSpan_index_from_ptr"][1]["ov_cimguiname"] = "ImSpan_index_from_ptr" defs["ImSpan_index_from_ptr"][1]["ret"] = "int" defs["ImSpan_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -9970,7 +10704,7 @@ defs["ImSpan_set"][1]["call_args"] = "(data,size)" defs["ImSpan_set"][1]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][1]["defaults"] = {} defs["ImSpan_set"][1]["funcname"] = "set" -defs["ImSpan_set"][1]["location"] = "imgui_internal:621" +defs["ImSpan_set"][1]["location"] = "imgui_internal:631" defs["ImSpan_set"][1]["ov_cimguiname"] = "ImSpan_set_Int" defs["ImSpan_set"][1]["ret"] = "void" defs["ImSpan_set"][1]["signature"] = "(T*,int)" @@ -9993,7 +10727,7 @@ defs["ImSpan_set"][2]["call_args"] = "(data,data_end)" defs["ImSpan_set"][2]["cimguiname"] = "ImSpan_set" defs["ImSpan_set"][2]["defaults"] = {} defs["ImSpan_set"][2]["funcname"] = "set" -defs["ImSpan_set"][2]["location"] = "imgui_internal:622" +defs["ImSpan_set"][2]["location"] = "imgui_internal:632" defs["ImSpan_set"][2]["ov_cimguiname"] = "ImSpan_set_TPtr" defs["ImSpan_set"][2]["ret"] = "void" defs["ImSpan_set"][2]["signature"] = "(T*,T*)" @@ -10013,7 +10747,7 @@ defs["ImSpan_size"][1]["call_args"] = "()" defs["ImSpan_size"][1]["cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["defaults"] = {} defs["ImSpan_size"][1]["funcname"] = "size" -defs["ImSpan_size"][1]["location"] = "imgui_internal:623" +defs["ImSpan_size"][1]["location"] = "imgui_internal:633" defs["ImSpan_size"][1]["ov_cimguiname"] = "ImSpan_size" defs["ImSpan_size"][1]["ret"] = "int" defs["ImSpan_size"][1]["signature"] = "()const" @@ -10032,7 +10766,7 @@ defs["ImSpan_size_in_bytes"][1]["call_args"] = "()" defs["ImSpan_size_in_bytes"][1]["cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["defaults"] = {} defs["ImSpan_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:624" +defs["ImSpan_size_in_bytes"][1]["location"] = "imgui_internal:634" defs["ImSpan_size_in_bytes"][1]["ov_cimguiname"] = "ImSpan_size_in_bytes" defs["ImSpan_size_in_bytes"][1]["ret"] = "int" defs["ImSpan_size_in_bytes"][1]["signature"] = "()const" @@ -10049,7 +10783,7 @@ defs["ImVec1_ImVec1"][1]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][1]["constructor"] = true defs["ImVec1_ImVec1"][1]["defaults"] = {} defs["ImVec1_ImVec1"][1]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:511" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:514" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1_Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -10065,7 +10799,7 @@ defs["ImVec1_ImVec1"][2]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][2]["constructor"] = true defs["ImVec1_ImVec1"][2]["defaults"] = {} defs["ImVec1_ImVec1"][2]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:512" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:515" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1_Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -10097,7 +10831,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:262" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:296" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -10116,7 +10850,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:263" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:297" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -10148,7 +10882,7 @@ defs["ImVec2ih_ImVec2ih"][1]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][1]["constructor"] = true defs["ImVec2ih_ImVec2ih"][1]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][1]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:519" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:522" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Nil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -10167,7 +10901,7 @@ defs["ImVec2ih_ImVec2ih"][2]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][2]["constructor"] = true defs["ImVec2ih_ImVec2ih"][2]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][2]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:520" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:523" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_short" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -10183,7 +10917,7 @@ defs["ImVec2ih_ImVec2ih"][3]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][3]["constructor"] = true defs["ImVec2ih_ImVec2ih"][3]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][3]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:521" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:524" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ih_Vec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -10216,7 +10950,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:275" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:309" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -10241,7 +10975,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:276" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:310" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -10273,7 +11007,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui:1847" +defs["ImVector_ImVector"][1]["location"] = "imgui:2152" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -10290,7 +11024,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui:1848" +defs["ImVector_ImVector"][2]["location"] = "imgui:2153" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -10312,7 +11046,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui:1874" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2179" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -10331,7 +11065,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui:1870" +defs["ImVector_back"][1]["location"] = "imgui:2175" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -10349,7 +11083,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui:1871" +defs["ImVector_back"][2]["location"] = "imgui:2176" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -10370,7 +11104,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui:1864" +defs["ImVector_begin"][1]["location"] = "imgui:2169" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -10387,7 +11121,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui:1865" +defs["ImVector_begin"][2]["location"] = "imgui:2170" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -10407,7 +11141,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui:1860" +defs["ImVector_capacity"][1]["location"] = "imgui:2165" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -10426,7 +11160,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui:1852" +defs["ImVector_clear"][1]["location"] = "imgui:2157" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -10445,7 +11179,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:1853" +defs["ImVector_clear_delete"][1]["location"] = "imgui:2158" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -10464,7 +11198,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:1854" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2159" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -10486,7 +11220,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui:1889" +defs["ImVector_contains"][1]["location"] = "imgui:2194" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -10504,7 +11238,7 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true -defs["ImVector_destroy"][1]["location"] = "imgui:1850" +defs["ImVector_destroy"][1]["location"] = "imgui:2155" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -10524,7 +11258,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui:1856" +defs["ImVector_empty"][1]["location"] = "imgui:2161" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -10543,7 +11277,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui:1866" +defs["ImVector_end"][1]["location"] = "imgui:2171" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -10560,7 +11294,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui:1867" +defs["ImVector_end"][2]["location"] = "imgui:2172" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -10583,7 +11317,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui:1885" +defs["ImVector_erase"][1]["location"] = "imgui:2190" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -10606,7 +11340,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui:1886" +defs["ImVector_erase"][2]["location"] = "imgui:2191" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -10629,7 +11363,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1887" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2192" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -10651,7 +11385,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui:1890" +defs["ImVector_find"][1]["location"] = "imgui:2195" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -10671,7 +11405,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui:1891" +defs["ImVector_find"][2]["location"] = "imgui:2196" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -10694,7 +11428,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui:1892" +defs["ImVector_find_erase"][1]["location"] = "imgui:2198" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -10716,13 +11450,35 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1893" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2199" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" defs["ImVector_find_erase_unsorted"][1]["stname"] = "ImVector" defs["ImVector_find_erase_unsorted"][1]["templated"] = true defs["ImVector_find_erase_unsorted"]["(const T)"] = defs["ImVector_find_erase_unsorted"][1] +defs["ImVector_find_index"] = {} +defs["ImVector_find_index"][1] = {} +defs["ImVector_find_index"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_find_index"][1]["argsT"] = {} +defs["ImVector_find_index"][1]["argsT"][1] = {} +defs["ImVector_find_index"][1]["argsT"][1]["name"] = "self" +defs["ImVector_find_index"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_find_index"][1]["argsT"][2] = {} +defs["ImVector_find_index"][1]["argsT"][2]["name"] = "v" +defs["ImVector_find_index"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_find_index"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_find_index"][1]["call_args"] = "(v)" +defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["defaults"] = {} +defs["ImVector_find_index"][1]["funcname"] = "find_index" +defs["ImVector_find_index"][1]["location"] = "imgui:2197" +defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["ret"] = "int" +defs["ImVector_find_index"][1]["signature"] = "(const T)const" +defs["ImVector_find_index"][1]["stname"] = "ImVector" +defs["ImVector_find_index"][1]["templated"] = true +defs["ImVector_find_index"]["(const T)const"] = defs["ImVector_find_index"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} defs["ImVector_front"][1]["args"] = "(ImVector* self)" @@ -10735,7 +11491,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui:1868" +defs["ImVector_front"][1]["location"] = "imgui:2173" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -10753,7 +11509,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui:1869" +defs["ImVector_front"][2]["location"] = "imgui:2174" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -10777,7 +11533,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1894" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2200" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -10802,7 +11558,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:1888" +defs["ImVector_insert"][1]["location"] = "imgui:2193" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -10821,7 +11577,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:1859" +defs["ImVector_max_size"][1]["location"] = "imgui:2164" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -10840,7 +11596,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui:1883" +defs["ImVector_pop_back"][1]["location"] = "imgui:2188" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -10862,7 +11618,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui:1882" +defs["ImVector_push_back"][1]["location"] = "imgui:2187" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -10884,7 +11640,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui:1884" +defs["ImVector_push_front"][1]["location"] = "imgui:2189" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -10906,7 +11662,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui:1878" +defs["ImVector_reserve"][1]["location"] = "imgui:2183" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -10928,7 +11684,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:1879" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2184" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -10950,7 +11706,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui:1875" +defs["ImVector_resize"][1]["location"] = "imgui:2180" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -10973,7 +11729,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui:1876" +defs["ImVector_resize"][2]["location"] = "imgui:2181" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -10996,7 +11752,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui:1877" +defs["ImVector_shrink"][1]["location"] = "imgui:2182" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -11015,7 +11771,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui:1857" +defs["ImVector_size"][1]["location"] = "imgui:2162" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -11034,7 +11790,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1858" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2163" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -11057,7 +11813,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui:1872" +defs["ImVector_swap"][1]["location"] = "imgui:2177" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -11080,32 +11836,32 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui:841" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:911" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" defs["igAcceptDragDropPayload"][1]["signature"] = "(const char*,ImGuiDragDropFlags)" defs["igAcceptDragDropPayload"][1]["stname"] = "" defs["igAcceptDragDropPayload"]["(const char*,ImGuiDragDropFlags)"] = defs["igAcceptDragDropPayload"][1] -defs["igActivateItem"] = {} -defs["igActivateItem"][1] = {} -defs["igActivateItem"][1]["args"] = "(ImGuiID id)" -defs["igActivateItem"][1]["argsT"] = {} -defs["igActivateItem"][1]["argsT"][1] = {} -defs["igActivateItem"][1]["argsT"][1]["name"] = "id" -defs["igActivateItem"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igActivateItem"][1]["argsoriginal"] = "(ImGuiID id)" -defs["igActivateItem"][1]["call_args"] = "(id)" -defs["igActivateItem"][1]["cimguiname"] = "igActivateItem" -defs["igActivateItem"][1]["defaults"] = {} -defs["igActivateItem"][1]["funcname"] = "ActivateItem" -defs["igActivateItem"][1]["location"] = "imgui_internal:3109" -defs["igActivateItem"][1]["namespace"] = "ImGui" -defs["igActivateItem"][1]["ov_cimguiname"] = "igActivateItem" -defs["igActivateItem"][1]["ret"] = "void" -defs["igActivateItem"][1]["signature"] = "(ImGuiID)" -defs["igActivateItem"][1]["stname"] = "" -defs["igActivateItem"]["(ImGuiID)"] = defs["igActivateItem"][1] +defs["igActivateItemByID"] = {} +defs["igActivateItemByID"][1] = {} +defs["igActivateItemByID"][1]["args"] = "(ImGuiID id)" +defs["igActivateItemByID"][1]["argsT"] = {} +defs["igActivateItemByID"][1]["argsT"][1] = {} +defs["igActivateItemByID"][1]["argsT"][1]["name"] = "id" +defs["igActivateItemByID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igActivateItemByID"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igActivateItemByID"][1]["call_args"] = "(id)" +defs["igActivateItemByID"][1]["cimguiname"] = "igActivateItemByID" +defs["igActivateItemByID"][1]["defaults"] = {} +defs["igActivateItemByID"][1]["funcname"] = "ActivateItemByID" +defs["igActivateItemByID"][1]["location"] = "imgui_internal:3549" +defs["igActivateItemByID"][1]["namespace"] = "ImGui" +defs["igActivateItemByID"][1]["ov_cimguiname"] = "igActivateItemByID" +defs["igActivateItemByID"][1]["ret"] = "void" +defs["igActivateItemByID"][1]["signature"] = "(ImGuiID)" +defs["igActivateItemByID"][1]["stname"] = "" +defs["igActivateItemByID"]["(ImGuiID)"] = defs["igActivateItemByID"][1] defs["igAddContextHook"] = {} defs["igAddContextHook"][1] = {} defs["igAddContextHook"][1]["args"] = "(ImGuiContext* context,const ImGuiContextHook* hook)" @@ -11121,13 +11877,38 @@ defs["igAddContextHook"][1]["call_args"] = "(context,hook)" defs["igAddContextHook"][1]["cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["defaults"] = {} defs["igAddContextHook"][1]["funcname"] = "AddContextHook" -defs["igAddContextHook"][1]["location"] = "imgui_internal:2993" +defs["igAddContextHook"][1]["location"] = "imgui_internal:3410" defs["igAddContextHook"][1]["namespace"] = "ImGui" defs["igAddContextHook"][1]["ov_cimguiname"] = "igAddContextHook" defs["igAddContextHook"][1]["ret"] = "ImGuiID" defs["igAddContextHook"][1]["signature"] = "(ImGuiContext*,const ImGuiContextHook*)" defs["igAddContextHook"][1]["stname"] = "" defs["igAddContextHook"]["(ImGuiContext*,const ImGuiContextHook*)"] = defs["igAddContextHook"][1] +defs["igAddDrawListToDrawDataEx"] = {} +defs["igAddDrawListToDrawDataEx"][1] = {} +defs["igAddDrawListToDrawDataEx"][1]["args"] = "(ImDrawData* draw_data,ImVector_ImDrawListPtr* out_list,ImDrawList* draw_list)" +defs["igAddDrawListToDrawDataEx"][1]["argsT"] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][1] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][1]["name"] = "draw_data" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][1]["type"] = "ImDrawData*" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][2] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][2]["name"] = "out_list" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][2]["type"] = "ImVector_ImDrawListPtr*" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][3] = {} +defs["igAddDrawListToDrawDataEx"][1]["argsT"][3]["name"] = "draw_list" +defs["igAddDrawListToDrawDataEx"][1]["argsT"][3]["type"] = "ImDrawList*" +defs["igAddDrawListToDrawDataEx"][1]["argsoriginal"] = "(ImDrawData* draw_data,ImVector* out_list,ImDrawList* draw_list)" +defs["igAddDrawListToDrawDataEx"][1]["call_args"] = "(draw_data,out_list,draw_list)" +defs["igAddDrawListToDrawDataEx"][1]["cimguiname"] = "igAddDrawListToDrawDataEx" +defs["igAddDrawListToDrawDataEx"][1]["defaults"] = {} +defs["igAddDrawListToDrawDataEx"][1]["funcname"] = "AddDrawListToDrawDataEx" +defs["igAddDrawListToDrawDataEx"][1]["location"] = "imgui_internal:3394" +defs["igAddDrawListToDrawDataEx"][1]["namespace"] = "ImGui" +defs["igAddDrawListToDrawDataEx"][1]["ov_cimguiname"] = "igAddDrawListToDrawDataEx" +defs["igAddDrawListToDrawDataEx"][1]["ret"] = "void" +defs["igAddDrawListToDrawDataEx"][1]["signature"] = "(ImDrawData*,ImVector_ImDrawListPtr*,ImDrawList*)" +defs["igAddDrawListToDrawDataEx"][1]["stname"] = "" +defs["igAddDrawListToDrawDataEx"]["(ImDrawData*,ImVector_ImDrawListPtr*,ImDrawList*)"] = defs["igAddDrawListToDrawDataEx"][1] defs["igAddSettingsHandler"] = {} defs["igAddSettingsHandler"][1] = {} defs["igAddSettingsHandler"][1]["args"] = "(const ImGuiSettingsHandler* handler)" @@ -11140,7 +11921,7 @@ defs["igAddSettingsHandler"][1]["call_args"] = "(handler)" defs["igAddSettingsHandler"][1]["cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["defaults"] = {} defs["igAddSettingsHandler"][1]["funcname"] = "AddSettingsHandler" -defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3013" +defs["igAddSettingsHandler"][1]["location"] = "imgui_internal:3427" defs["igAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igAddSettingsHandler"][1]["ov_cimguiname"] = "igAddSettingsHandler" defs["igAddSettingsHandler"][1]["ret"] = "void" @@ -11156,7 +11937,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:465" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:508" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -11178,7 +11959,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:512" +defs["igArrowButton"][1]["location"] = "imgui:557" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -11207,7 +11988,7 @@ defs["igArrowButtonEx"][1]["cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["defaults"] = {} defs["igArrowButtonEx"][1]["defaults"]["flags"] = "0" defs["igArrowButtonEx"][1]["funcname"] = "ArrowButtonEx" -defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3370" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:3846" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -11234,16 +12015,44 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:336" +defs["igBegin"][1]["location"] = "imgui:371" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" defs["igBegin"][1]["signature"] = "(const char*,bool*,ImGuiWindowFlags)" defs["igBegin"][1]["stname"] = "" defs["igBegin"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBegin"][1] +defs["igBeginBoxSelect"] = {} +defs["igBeginBoxSelect"][1] = {} +defs["igBeginBoxSelect"][1]["args"] = "(const ImRect scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)" +defs["igBeginBoxSelect"][1]["argsT"] = {} +defs["igBeginBoxSelect"][1]["argsT"][1] = {} +defs["igBeginBoxSelect"][1]["argsT"][1]["name"] = "scope_rect" +defs["igBeginBoxSelect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igBeginBoxSelect"][1]["argsT"][2] = {} +defs["igBeginBoxSelect"][1]["argsT"][2]["name"] = "window" +defs["igBeginBoxSelect"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igBeginBoxSelect"][1]["argsT"][3] = {} +defs["igBeginBoxSelect"][1]["argsT"][3]["name"] = "box_select_id" +defs["igBeginBoxSelect"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igBeginBoxSelect"][1]["argsT"][4] = {} +defs["igBeginBoxSelect"][1]["argsT"][4]["name"] = "ms_flags" +defs["igBeginBoxSelect"][1]["argsT"][4]["type"] = "ImGuiMultiSelectFlags" +defs["igBeginBoxSelect"][1]["argsoriginal"] = "(const ImRect& scope_rect,ImGuiWindow* window,ImGuiID box_select_id,ImGuiMultiSelectFlags ms_flags)" +defs["igBeginBoxSelect"][1]["call_args"] = "(scope_rect,window,box_select_id,ms_flags)" +defs["igBeginBoxSelect"][1]["cimguiname"] = "igBeginBoxSelect" +defs["igBeginBoxSelect"][1]["defaults"] = {} +defs["igBeginBoxSelect"][1]["funcname"] = "BeginBoxSelect" +defs["igBeginBoxSelect"][1]["location"] = "imgui_internal:3717" +defs["igBeginBoxSelect"][1]["namespace"] = "ImGui" +defs["igBeginBoxSelect"][1]["ov_cimguiname"] = "igBeginBoxSelect" +defs["igBeginBoxSelect"][1]["ret"] = "bool" +defs["igBeginBoxSelect"][1]["signature"] = "(const ImRect,ImGuiWindow*,ImGuiID,ImGuiMultiSelectFlags)" +defs["igBeginBoxSelect"][1]["stname"] = "" +defs["igBeginBoxSelect"]["(const ImRect,ImGuiWindow*,ImGuiID,ImGuiMultiSelectFlags)"] = defs["igBeginBoxSelect"][1] defs["igBeginChild"] = {} defs["igBeginChild"][1] = {} -defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][1]["argsT"] = {} defs["igBeginChild"][1]["argsT"][1] = {} defs["igBeginChild"][1]["argsT"][1]["name"] = "str_id" @@ -11252,27 +12061,27 @@ defs["igBeginChild"][1]["argsT"][2] = {} defs["igBeginChild"][1]["argsT"][2]["name"] = "size" defs["igBeginChild"][1]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][1]["argsT"][3] = {} -defs["igBeginChild"][1]["argsT"][3]["name"] = "border" -defs["igBeginChild"][1]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][1]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][1]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][1]["argsT"][4] = {} -defs["igBeginChild"][1]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][1]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][1]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][1]["call_args"] = "(str_id,size,border,flags)" +defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][1]["call_args"] = "(str_id,size,child_flags,window_flags)" defs["igBeginChild"][1]["cimguiname"] = "igBeginChild" defs["igBeginChild"][1]["defaults"] = {} -defs["igBeginChild"][1]["defaults"]["border"] = "false" -defs["igBeginChild"][1]["defaults"]["flags"] = "0" +defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:347" +defs["igBeginChild"][1]["location"] = "imgui:392" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" -defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][1]["stname"] = "" defs["igBeginChild"][2] = {} -defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][2]["argsT"] = {} defs["igBeginChild"][2]["argsT"][1] = {} defs["igBeginChild"][2]["argsT"][1]["name"] = "id" @@ -11281,30 +12090,30 @@ defs["igBeginChild"][2]["argsT"][2] = {} defs["igBeginChild"][2]["argsT"][2]["name"] = "size" defs["igBeginChild"][2]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][2]["argsT"][3] = {} -defs["igBeginChild"][2]["argsT"][3]["name"] = "border" -defs["igBeginChild"][2]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][2]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][2]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][2]["argsT"][4] = {} -defs["igBeginChild"][2]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][2]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][2]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][2]["call_args"] = "(id,size,border,flags)" +defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][2]["call_args"] = "(id,size,child_flags,window_flags)" defs["igBeginChild"][2]["cimguiname"] = "igBeginChild" defs["igBeginChild"][2]["defaults"] = {} -defs["igBeginChild"][2]["defaults"]["border"] = "false" -defs["igBeginChild"][2]["defaults"]["flags"] = "0" +defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:348" +defs["igBeginChild"][2]["location"] = "imgui:393" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" -defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][2]["stname"] = "" -defs["igBeginChild"]["(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][2] -defs["igBeginChild"]["(const char*,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][1] +defs["igBeginChild"]["(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][2] +defs["igBeginChild"]["(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][1] defs["igBeginChildEx"] = {} defs["igBeginChildEx"][1] = {} -defs["igBeginChildEx"][1]["args"] = "(const char* name,ImGuiID id,const ImVec2 size_arg,bool border,ImGuiWindowFlags flags)" +defs["igBeginChildEx"][1]["args"] = "(const char* name,ImGuiID id,const ImVec2 size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChildEx"][1]["argsT"] = {} defs["igBeginChildEx"][1]["argsT"][1] = {} defs["igBeginChildEx"][1]["argsT"][1]["name"] = "name" @@ -11316,49 +12125,23 @@ defs["igBeginChildEx"][1]["argsT"][3] = {} defs["igBeginChildEx"][1]["argsT"][3]["name"] = "size_arg" defs["igBeginChildEx"][1]["argsT"][3]["type"] = "const ImVec2" defs["igBeginChildEx"][1]["argsT"][4] = {} -defs["igBeginChildEx"][1]["argsT"][4]["name"] = "border" -defs["igBeginChildEx"][1]["argsT"][4]["type"] = "bool" +defs["igBeginChildEx"][1]["argsT"][4]["name"] = "child_flags" +defs["igBeginChildEx"][1]["argsT"][4]["type"] = "ImGuiChildFlags" defs["igBeginChildEx"][1]["argsT"][5] = {} -defs["igBeginChildEx"][1]["argsT"][5]["name"] = "flags" +defs["igBeginChildEx"][1]["argsT"][5]["name"] = "window_flags" defs["igBeginChildEx"][1]["argsT"][5]["type"] = "ImGuiWindowFlags" -defs["igBeginChildEx"][1]["argsoriginal"] = "(const char* name,ImGuiID id,const ImVec2& size_arg,bool border,ImGuiWindowFlags flags)" -defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,border,flags)" +defs["igBeginChildEx"][1]["argsoriginal"] = "(const char* name,ImGuiID id,const ImVec2& size_arg,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" +defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,child_flags,window_flags)" defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "imgui_internal:3075" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:3496" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" -defs["igBeginChildEx"][1]["signature"] = "(const char*,ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChildEx"][1]["signature"] = "(const char*,ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChildEx"][1]["stname"] = "" -defs["igBeginChildEx"]["(const char*,ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChildEx"][1] -defs["igBeginChildFrame"] = {} -defs["igBeginChildFrame"][1] = {} -defs["igBeginChildFrame"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)" -defs["igBeginChildFrame"][1]["argsT"] = {} -defs["igBeginChildFrame"][1]["argsT"][1] = {} -defs["igBeginChildFrame"][1]["argsT"][1]["name"] = "id" -defs["igBeginChildFrame"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igBeginChildFrame"][1]["argsT"][2] = {} -defs["igBeginChildFrame"][1]["argsT"][2]["name"] = "size" -defs["igBeginChildFrame"][1]["argsT"][2]["type"] = "const ImVec2" -defs["igBeginChildFrame"][1]["argsT"][3] = {} -defs["igBeginChildFrame"][1]["argsT"][3]["name"] = "flags" -defs["igBeginChildFrame"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginChildFrame"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)" -defs["igBeginChildFrame"][1]["call_args"] = "(id,size,flags)" -defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["defaults"] = {} -defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" -defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui:905" -defs["igBeginChildFrame"][1]["namespace"] = "ImGui" -defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["ret"] = "bool" -defs["igBeginChildFrame"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiWindowFlags)" -defs["igBeginChildFrame"][1]["stname"] = "" -defs["igBeginChildFrame"]["(ImGuiID,const ImVec2,ImGuiWindowFlags)"] = defs["igBeginChildFrame"][1] +defs["igBeginChildEx"]["(const char*,ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChildEx"][1] defs["igBeginColumns"] = {} defs["igBeginColumns"][1] = {} defs["igBeginColumns"][1]["args"] = "(const char* str_id,int count,ImGuiOldColumnFlags flags)" @@ -11378,7 +12161,7 @@ defs["igBeginColumns"][1]["cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["defaults"] = {} defs["igBeginColumns"][1]["defaults"]["flags"] = "0" defs["igBeginColumns"][1]["funcname"] = "BeginColumns" -defs["igBeginColumns"][1]["location"] = "imgui_internal:3263" +defs["igBeginColumns"][1]["location"] = "imgui_internal:3730" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -11404,7 +12187,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:529" +defs["igBeginCombo"][1]["location"] = "imgui:578" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -11429,7 +12212,7 @@ defs["igBeginComboPopup"][1]["call_args"] = "(popup_id,bb,flags)" defs["igBeginComboPopup"][1]["cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["defaults"] = {} defs["igBeginComboPopup"][1]["funcname"] = "BeginComboPopup" -defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3095" +defs["igBeginComboPopup"][1]["location"] = "imgui_internal:3522" defs["igBeginComboPopup"][1]["namespace"] = "ImGui" defs["igBeginComboPopup"][1]["ov_cimguiname"] = "igBeginComboPopup" defs["igBeginComboPopup"][1]["ret"] = "bool" @@ -11445,7 +12228,7 @@ defs["igBeginComboPreview"][1]["call_args"] = "()" defs["igBeginComboPreview"][1]["cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["defaults"] = {} defs["igBeginComboPreview"][1]["funcname"] = "BeginComboPreview" -defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3096" +defs["igBeginComboPreview"][1]["location"] = "imgui_internal:3523" defs["igBeginComboPreview"][1]["namespace"] = "ImGui" defs["igBeginComboPreview"][1]["ov_cimguiname"] = "igBeginComboPreview" defs["igBeginComboPreview"][1]["ret"] = "bool" @@ -11465,13 +12248,29 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:849" +defs["igBeginDisabled"][1]["location"] = "imgui:920" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" defs["igBeginDisabled"][1]["signature"] = "(bool)" defs["igBeginDisabled"][1]["stname"] = "" defs["igBeginDisabled"]["(bool)"] = defs["igBeginDisabled"][1] +defs["igBeginDisabledOverrideReenable"] = {} +defs["igBeginDisabledOverrideReenable"][1] = {} +defs["igBeginDisabledOverrideReenable"][1]["args"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["argsT"] = {} +defs["igBeginDisabledOverrideReenable"][1]["argsoriginal"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["call_args"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["cimguiname"] = "igBeginDisabledOverrideReenable" +defs["igBeginDisabledOverrideReenable"][1]["defaults"] = {} +defs["igBeginDisabledOverrideReenable"][1]["funcname"] = "BeginDisabledOverrideReenable" +defs["igBeginDisabledOverrideReenable"][1]["location"] = "imgui_internal:3486" +defs["igBeginDisabledOverrideReenable"][1]["namespace"] = "ImGui" +defs["igBeginDisabledOverrideReenable"][1]["ov_cimguiname"] = "igBeginDisabledOverrideReenable" +defs["igBeginDisabledOverrideReenable"][1]["ret"] = "void" +defs["igBeginDisabledOverrideReenable"][1]["signature"] = "()" +defs["igBeginDisabledOverrideReenable"][1]["stname"] = "" +defs["igBeginDisabledOverrideReenable"]["()"] = defs["igBeginDisabledOverrideReenable"][1] defs["igBeginDockableDragDropSource"] = {} defs["igBeginDockableDragDropSource"][1] = {} defs["igBeginDockableDragDropSource"][1]["args"] = "(ImGuiWindow* window)" @@ -11484,7 +12283,7 @@ defs["igBeginDockableDragDropSource"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropSource"][1]["cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["defaults"] = {} defs["igBeginDockableDragDropSource"][1]["funcname"] = "BeginDockableDragDropSource" -defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3214" +defs["igBeginDockableDragDropSource"][1]["location"] = "imgui_internal:3663" defs["igBeginDockableDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropSource"][1]["ov_cimguiname"] = "igBeginDockableDragDropSource" defs["igBeginDockableDragDropSource"][1]["ret"] = "void" @@ -11503,7 +12302,7 @@ defs["igBeginDockableDragDropTarget"][1]["call_args"] = "(window)" defs["igBeginDockableDragDropTarget"][1]["cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["defaults"] = {} defs["igBeginDockableDragDropTarget"][1]["funcname"] = "BeginDockableDragDropTarget" -defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3215" +defs["igBeginDockableDragDropTarget"][1]["location"] = "imgui_internal:3664" defs["igBeginDockableDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDockableDragDropTarget"][1]["ov_cimguiname"] = "igBeginDockableDragDropTarget" defs["igBeginDockableDragDropTarget"][1]["ret"] = "void" @@ -11525,7 +12324,7 @@ defs["igBeginDocked"][1]["call_args"] = "(window,p_open)" defs["igBeginDocked"][1]["cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["defaults"] = {} defs["igBeginDocked"][1]["funcname"] = "BeginDocked" -defs["igBeginDocked"][1]["location"] = "imgui_internal:3213" +defs["igBeginDocked"][1]["location"] = "imgui_internal:3662" defs["igBeginDocked"][1]["namespace"] = "ImGui" defs["igBeginDocked"][1]["ov_cimguiname"] = "igBeginDocked" defs["igBeginDocked"][1]["ret"] = "void" @@ -11545,7 +12344,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui:837" +defs["igBeginDragDropSource"][1]["location"] = "imgui:907" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -11561,7 +12360,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui:840" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:910" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -11583,7 +12382,7 @@ defs["igBeginDragDropTargetCustom"][1]["call_args"] = "(bb,id)" defs["igBeginDragDropTargetCustom"][1]["cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["defaults"] = {} defs["igBeginDragDropTargetCustom"][1]["funcname"] = "BeginDragDropTargetCustom" -defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3256" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:3705" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -11599,13 +12398,29 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:454" +defs["igBeginGroup"][1]["location"] = "imgui:506" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" defs["igBeginGroup"][1]["signature"] = "()" defs["igBeginGroup"][1]["stname"] = "" defs["igBeginGroup"]["()"] = defs["igBeginGroup"][1] +defs["igBeginItemTooltip"] = {} +defs["igBeginItemTooltip"][1] = {} +defs["igBeginItemTooltip"][1]["args"] = "()" +defs["igBeginItemTooltip"][1]["argsT"] = {} +defs["igBeginItemTooltip"][1]["argsoriginal"] = "()" +defs["igBeginItemTooltip"][1]["call_args"] = "()" +defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["defaults"] = {} +defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" +defs["igBeginItemTooltip"][1]["location"] = "imgui:749" +defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" +defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["ret"] = "bool" +defs["igBeginItemTooltip"][1]["signature"] = "()" +defs["igBeginItemTooltip"][1]["stname"] = "" +defs["igBeginItemTooltip"]["()"] = defs["igBeginItemTooltip"][1] defs["igBeginListBox"] = {} defs["igBeginListBox"][1] = {} defs["igBeginListBox"][1]["args"] = "(const char* label,const ImVec2 size)" @@ -11622,7 +12437,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:641" +defs["igBeginListBox"][1]["location"] = "imgui:703" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -11638,7 +12453,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:667" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:729" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -11661,7 +12476,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:669" +defs["igBeginMenu"][1]["location"] = "imgui:731" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -11677,7 +12492,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:665" +defs["igBeginMenuBar"][1]["location"] = "imgui:727" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -11703,13 +12518,40 @@ defs["igBeginMenuEx"][1]["cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["defaults"] = {} defs["igBeginMenuEx"][1]["defaults"]["enabled"] = "true" defs["igBeginMenuEx"][1]["funcname"] = "BeginMenuEx" -defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3091" +defs["igBeginMenuEx"][1]["location"] = "imgui_internal:3518" defs["igBeginMenuEx"][1]["namespace"] = "ImGui" defs["igBeginMenuEx"][1]["ov_cimguiname"] = "igBeginMenuEx" defs["igBeginMenuEx"][1]["ret"] = "bool" defs["igBeginMenuEx"][1]["signature"] = "(const char*,const char*,bool)" defs["igBeginMenuEx"][1]["stname"] = "" defs["igBeginMenuEx"]["(const char*,const char*,bool)"] = defs["igBeginMenuEx"][1] +defs["igBeginMultiSelect"] = {} +defs["igBeginMultiSelect"][1] = {} +defs["igBeginMultiSelect"][1]["args"] = "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)" +defs["igBeginMultiSelect"][1]["argsT"] = {} +defs["igBeginMultiSelect"][1]["argsT"][1] = {} +defs["igBeginMultiSelect"][1]["argsT"][1]["name"] = "flags" +defs["igBeginMultiSelect"][1]["argsT"][1]["type"] = "ImGuiMultiSelectFlags" +defs["igBeginMultiSelect"][1]["argsT"][2] = {} +defs["igBeginMultiSelect"][1]["argsT"][2]["name"] = "selection_size" +defs["igBeginMultiSelect"][1]["argsT"][2]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsT"][3] = {} +defs["igBeginMultiSelect"][1]["argsT"][3]["name"] = "items_count" +defs["igBeginMultiSelect"][1]["argsT"][3]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsoriginal"] = "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)" +defs["igBeginMultiSelect"][1]["call_args"] = "(flags,selection_size,items_count)" +defs["igBeginMultiSelect"][1]["cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["defaults"] = {} +defs["igBeginMultiSelect"][1]["defaults"]["items_count"] = "-1" +defs["igBeginMultiSelect"][1]["defaults"]["selection_size"] = "-1" +defs["igBeginMultiSelect"][1]["funcname"] = "BeginMultiSelect" +defs["igBeginMultiSelect"][1]["location"] = "imgui:692" +defs["igBeginMultiSelect"][1]["namespace"] = "ImGui" +defs["igBeginMultiSelect"][1]["ov_cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igBeginMultiSelect"][1]["signature"] = "(ImGuiMultiSelectFlags,int,int)" +defs["igBeginMultiSelect"][1]["stname"] = "" +defs["igBeginMultiSelect"]["(ImGuiMultiSelectFlags,int,int)"] = defs["igBeginMultiSelect"][1] defs["igBeginPopup"] = {} defs["igBeginPopup"][1] = {} defs["igBeginPopup"][1]["args"] = "(const char* str_id,ImGuiWindowFlags flags)" @@ -11726,7 +12568,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:693" +defs["igBeginPopup"][1]["location"] = "imgui:763" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -11750,7 +12592,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:715" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:785" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -11774,7 +12616,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:717" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:787" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -11798,7 +12640,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:716" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:786" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -11807,20 +12649,20 @@ defs["igBeginPopupContextWindow"][1]["stname"] = "" defs["igBeginPopupContextWindow"]["(const char*,ImGuiPopupFlags)"] = defs["igBeginPopupContextWindow"][1] defs["igBeginPopupEx"] = {} defs["igBeginPopupEx"][1] = {} -defs["igBeginPopupEx"][1]["args"] = "(ImGuiID id,ImGuiWindowFlags extra_flags)" +defs["igBeginPopupEx"][1]["args"] = "(ImGuiID id,ImGuiWindowFlags extra_window_flags)" defs["igBeginPopupEx"][1]["argsT"] = {} defs["igBeginPopupEx"][1]["argsT"][1] = {} defs["igBeginPopupEx"][1]["argsT"][1]["name"] = "id" defs["igBeginPopupEx"][1]["argsT"][1]["type"] = "ImGuiID" defs["igBeginPopupEx"][1]["argsT"][2] = {} -defs["igBeginPopupEx"][1]["argsT"][2]["name"] = "extra_flags" +defs["igBeginPopupEx"][1]["argsT"][2]["name"] = "extra_window_flags" defs["igBeginPopupEx"][1]["argsT"][2]["type"] = "ImGuiWindowFlags" -defs["igBeginPopupEx"][1]["argsoriginal"] = "(ImGuiID id,ImGuiWindowFlags extra_flags)" -defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_flags)" +defs["igBeginPopupEx"][1]["argsoriginal"] = "(ImGuiID id,ImGuiWindowFlags extra_window_flags)" +defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_window_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" -defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3081" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:3499" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -11847,7 +12689,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:694" +defs["igBeginPopupModal"][1]["location"] = "imgui:764" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -11870,7 +12712,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:795" +defs["igBeginTabBar"][1]["location"] = "imgui:865" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -11879,7 +12721,7 @@ defs["igBeginTabBar"][1]["stname"] = "" defs["igBeginTabBar"]["(const char*,ImGuiTabBarFlags)"] = defs["igBeginTabBar"][1] defs["igBeginTabBarEx"] = {} defs["igBeginTabBarEx"][1] = {} -defs["igBeginTabBarEx"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)" +defs["igBeginTabBarEx"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImRect bb,ImGuiTabBarFlags flags)" defs["igBeginTabBarEx"][1]["argsT"] = {} defs["igBeginTabBarEx"][1]["argsT"][1] = {} defs["igBeginTabBarEx"][1]["argsT"][1]["name"] = "tab_bar" @@ -11890,21 +12732,18 @@ defs["igBeginTabBarEx"][1]["argsT"][2]["type"] = "const ImRect" defs["igBeginTabBarEx"][1]["argsT"][3] = {} defs["igBeginTabBarEx"][1]["argsT"][3]["name"] = "flags" defs["igBeginTabBarEx"][1]["argsT"][3]["type"] = "ImGuiTabBarFlags" -defs["igBeginTabBarEx"][1]["argsT"][4] = {} -defs["igBeginTabBarEx"][1]["argsT"][4]["name"] = "dock_node" -defs["igBeginTabBarEx"][1]["argsT"][4]["type"] = "ImGuiDockNode*" -defs["igBeginTabBarEx"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags,ImGuiDockNode* dock_node)" -defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags,dock_node)" +defs["igBeginTabBarEx"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImRect& bb,ImGuiTabBarFlags flags)" +defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3327" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:3798" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" -defs["igBeginTabBarEx"][1]["signature"] = "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags,ImGuiDockNode*)" +defs["igBeginTabBarEx"][1]["signature"] = "(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags)" defs["igBeginTabBarEx"][1]["stname"] = "" -defs["igBeginTabBarEx"]["(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags,ImGuiDockNode*)"] = defs["igBeginTabBarEx"][1] +defs["igBeginTabBarEx"]["(ImGuiTabBar*,const ImRect,ImGuiTabBarFlags)"] = defs["igBeginTabBarEx"][1] defs["igBeginTabItem"] = {} defs["igBeginTabItem"][1] = {} defs["igBeginTabItem"][1]["args"] = "(const char* label,bool* p_open,ImGuiTabItemFlags flags)" @@ -11925,7 +12764,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:797" +defs["igBeginTabItem"][1]["location"] = "imgui:867" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -11934,13 +12773,13 @@ defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTable"] = {} defs["igBeginTable"][1] = {} -defs["igBeginTable"][1]["args"] = "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" +defs["igBeginTable"][1]["args"] = "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" defs["igBeginTable"][1]["argsT"] = {} defs["igBeginTable"][1]["argsT"][1] = {} defs["igBeginTable"][1]["argsT"][1]["name"] = "str_id" defs["igBeginTable"][1]["argsT"][1]["type"] = "const char*" defs["igBeginTable"][1]["argsT"][2] = {} -defs["igBeginTable"][1]["argsT"][2]["name"] = "column" +defs["igBeginTable"][1]["argsT"][2]["name"] = "columns" defs["igBeginTable"][1]["argsT"][2]["type"] = "int" defs["igBeginTable"][1]["argsT"][3] = {} defs["igBeginTable"][1]["argsT"][3]["name"] = "flags" @@ -11951,15 +12790,15 @@ defs["igBeginTable"][1]["argsT"][4]["type"] = "const ImVec2" defs["igBeginTable"][1]["argsT"][5] = {} defs["igBeginTable"][1]["argsT"][5]["name"] = "inner_width" defs["igBeginTable"][1]["argsT"][5]["type"] = "float" -defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" -defs["igBeginTable"][1]["call_args"] = "(str_id,column,flags,outer_size,inner_width)" +defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" +defs["igBeginTable"][1]["call_args"] = "(str_id,columns,flags,outer_size,inner_width)" defs["igBeginTable"][1]["cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["defaults"] = {} defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:748" +defs["igBeginTable"][1]["location"] = "imgui:816" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -11996,7 +12835,7 @@ defs["igBeginTableEx"][1]["defaults"]["flags"] = "0" defs["igBeginTableEx"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTableEx"][1]["defaults"]["outer_size"] = "ImVec2(0,0)" defs["igBeginTableEx"][1]["funcname"] = "BeginTableEx" -defs["igBeginTableEx"][1]["location"] = "imgui_internal:3285" +defs["igBeginTableEx"][1]["location"] = "imgui_internal:3754" defs["igBeginTableEx"][1]["namespace"] = "ImGui" defs["igBeginTableEx"][1]["ov_cimguiname"] = "igBeginTableEx" defs["igBeginTableEx"][1]["ret"] = "bool" @@ -12012,10 +12851,10 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:676" +defs["igBeginTooltip"][1]["location"] = "imgui:740" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" -defs["igBeginTooltip"][1]["ret"] = "void" +defs["igBeginTooltip"][1]["ret"] = "bool" defs["igBeginTooltip"][1]["signature"] = "()" defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] @@ -12034,13 +12873,29 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(tooltip_flags,extra_window_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3082" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:3513" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" -defs["igBeginTooltipEx"][1]["ret"] = "void" +defs["igBeginTooltipEx"][1]["ret"] = "bool" defs["igBeginTooltipEx"][1]["signature"] = "(ImGuiTooltipFlags,ImGuiWindowFlags)" defs["igBeginTooltipEx"][1]["stname"] = "" defs["igBeginTooltipEx"]["(ImGuiTooltipFlags,ImGuiWindowFlags)"] = defs["igBeginTooltipEx"][1] +defs["igBeginTooltipHidden"] = {} +defs["igBeginTooltipHidden"][1] = {} +defs["igBeginTooltipHidden"][1]["args"] = "()" +defs["igBeginTooltipHidden"][1]["argsT"] = {} +defs["igBeginTooltipHidden"][1]["argsoriginal"] = "()" +defs["igBeginTooltipHidden"][1]["call_args"] = "()" +defs["igBeginTooltipHidden"][1]["cimguiname"] = "igBeginTooltipHidden" +defs["igBeginTooltipHidden"][1]["defaults"] = {} +defs["igBeginTooltipHidden"][1]["funcname"] = "BeginTooltipHidden" +defs["igBeginTooltipHidden"][1]["location"] = "imgui_internal:3514" +defs["igBeginTooltipHidden"][1]["namespace"] = "ImGui" +defs["igBeginTooltipHidden"][1]["ov_cimguiname"] = "igBeginTooltipHidden" +defs["igBeginTooltipHidden"][1]["ret"] = "bool" +defs["igBeginTooltipHidden"][1]["signature"] = "()" +defs["igBeginTooltipHidden"][1]["stname"] = "" +defs["igBeginTooltipHidden"]["()"] = defs["igBeginTooltipHidden"][1] defs["igBeginViewportSideBar"] = {} defs["igBeginViewportSideBar"][1] = {} defs["igBeginViewportSideBar"][1]["args"] = "(const char* name,ImGuiViewport* viewport,ImGuiDir dir,float size,ImGuiWindowFlags window_flags)" @@ -12065,7 +12920,7 @@ defs["igBeginViewportSideBar"][1]["call_args"] = "(name,viewport,dir,size,window defs["igBeginViewportSideBar"][1]["cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["defaults"] = {} defs["igBeginViewportSideBar"][1]["funcname"] = "BeginViewportSideBar" -defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3090" +defs["igBeginViewportSideBar"][1]["location"] = "imgui_internal:3517" defs["igBeginViewportSideBar"][1]["namespace"] = "ImGui" defs["igBeginViewportSideBar"][1]["ov_cimguiname"] = "igBeginViewportSideBar" defs["igBeginViewportSideBar"][1]["ret"] = "bool" @@ -12084,7 +12939,7 @@ defs["igBringWindowToDisplayBack"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayBack"][1]["cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["defaults"] = {} defs["igBringWindowToDisplayBack"][1]["funcname"] = "BringWindowToDisplayBack" -defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:2970" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:3382" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -12106,7 +12961,7 @@ defs["igBringWindowToDisplayBehind"][1]["call_args"] = "(window,above_window)" defs["igBringWindowToDisplayBehind"][1]["cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["defaults"] = {} defs["igBringWindowToDisplayBehind"][1]["funcname"] = "BringWindowToDisplayBehind" -defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:2971" +defs["igBringWindowToDisplayBehind"][1]["location"] = "imgui_internal:3383" defs["igBringWindowToDisplayBehind"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBehind"][1]["ov_cimguiname"] = "igBringWindowToDisplayBehind" defs["igBringWindowToDisplayBehind"][1]["ret"] = "void" @@ -12125,7 +12980,7 @@ defs["igBringWindowToDisplayFront"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayFront"][1]["cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["defaults"] = {} defs["igBringWindowToDisplayFront"][1]["funcname"] = "BringWindowToDisplayFront" -defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:2969" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:3381" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -12144,7 +12999,7 @@ defs["igBringWindowToFocusFront"][1]["call_args"] = "(window)" defs["igBringWindowToFocusFront"][1]["cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["defaults"] = {} defs["igBringWindowToFocusFront"][1]["funcname"] = "BringWindowToFocusFront" -defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:2968" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:3380" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -12160,7 +13015,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:519" +defs["igBullet"][1]["location"] = "imgui:564" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -12183,7 +13038,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:503" +defs["igBulletText"][1]["location"] = "imgui:547" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -12205,7 +13060,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:504" +defs["igBulletTextV"][1]["location"] = "imgui:548" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -12228,7 +13083,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:509" +defs["igButton"][1]["location"] = "imgui:554" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -12260,7 +13115,7 @@ defs["igButtonBehavior"][1]["cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["defaults"] = {} defs["igButtonBehavior"][1]["defaults"]["flags"] = "0" defs["igButtonBehavior"][1]["funcname"] = "ButtonBehavior" -defs["igButtonBehavior"][1]["location"] = "imgui_internal:3387" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:3864" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -12287,7 +13142,7 @@ defs["igButtonEx"][1]["defaults"] = {} defs["igButtonEx"][1]["defaults"]["flags"] = "0" defs["igButtonEx"][1]["defaults"]["size_arg"] = "ImVec2(0,0)" defs["igButtonEx"][1]["funcname"] = "ButtonEx" -defs["igButtonEx"][1]["location"] = "imgui_internal:3369" +defs["igButtonEx"][1]["location"] = "imgui_internal:3845" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -12315,7 +13170,7 @@ defs["igCalcItemSize"][1]["call_args"] = "(size,default_w,default_h)" defs["igCalcItemSize"][1]["cimguiname"] = "igCalcItemSize" defs["igCalcItemSize"][1]["defaults"] = {} defs["igCalcItemSize"][1]["funcname"] = "CalcItemSize" -defs["igCalcItemSize"][1]["location"] = "imgui_internal:3057" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:3479" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -12332,7 +13187,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:426" +defs["igCalcItemWidth"][1]["location"] = "imgui:463" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -12357,7 +13212,7 @@ defs["igCalcRoundingFlagsForRectInRect"][1]["call_args"] = "(r_in,r_outer,thresh defs["igCalcRoundingFlagsForRectInRect"][1]["cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["defaults"] = {} defs["igCalcRoundingFlagsForRectInRect"][1]["funcname"] = "CalcRoundingFlagsForRectInRect" -defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3365" +defs["igCalcRoundingFlagsForRectInRect"][1]["location"] = "imgui_internal:3841" defs["igCalcRoundingFlagsForRectInRect"][1]["namespace"] = "ImGui" defs["igCalcRoundingFlagsForRectInRect"][1]["ov_cimguiname"] = "igCalcRoundingFlagsForRectInRect" defs["igCalcRoundingFlagsForRectInRect"][1]["ret"] = "ImDrawFlags" @@ -12391,7 +13246,7 @@ defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui:909" +defs["igCalcTextSize"][1]["location"] = "imgui:978" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -12420,7 +13275,7 @@ defs["igCalcTypematicRepeatAmount"][1]["call_args"] = "(t0,t1,repeat_delay,repea defs["igCalcTypematicRepeatAmount"][1]["cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["defaults"] = {} defs["igCalcTypematicRepeatAmount"][1]["funcname"] = "CalcTypematicRepeatAmount" -defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3140" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:3578" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -12442,7 +13297,7 @@ defs["igCalcWindowNextAutoFitSize"][1]["call_args"] = "(window)" defs["igCalcWindowNextAutoFitSize"][1]["cimguiname"] = "igCalcWindowNextAutoFitSize" defs["igCalcWindowNextAutoFitSize"][1]["defaults"] = {} defs["igCalcWindowNextAutoFitSize"][1]["funcname"] = "CalcWindowNextAutoFitSize" -defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:2953" +defs["igCalcWindowNextAutoFitSize"][1]["location"] = "imgui_internal:3361" defs["igCalcWindowNextAutoFitSize"][1]["namespace"] = "ImGui" defs["igCalcWindowNextAutoFitSize"][1]["nonUDT"] = 1 defs["igCalcWindowNextAutoFitSize"][1]["ov_cimguiname"] = "igCalcWindowNextAutoFitSize" @@ -12465,7 +13320,7 @@ defs["igCalcWrapWidthForPos"][1]["call_args"] = "(pos,wrap_pos_x)" defs["igCalcWrapWidthForPos"][1]["cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["defaults"] = {} defs["igCalcWrapWidthForPos"][1]["funcname"] = "CalcWrapWidthForPos" -defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3058" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:3480" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -12487,7 +13342,7 @@ defs["igCallContextHooks"][1]["call_args"] = "(context,type)" defs["igCallContextHooks"][1]["cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["defaults"] = {} defs["igCallContextHooks"][1]["funcname"] = "CallContextHooks" -defs["igCallContextHooks"][1]["location"] = "imgui_internal:2995" +defs["igCallContextHooks"][1]["location"] = "imgui_internal:3412" defs["igCallContextHooks"][1]["namespace"] = "ImGui" defs["igCallContextHooks"][1]["ov_cimguiname"] = "igCallContextHooks" defs["igCallContextHooks"][1]["ret"] = "void" @@ -12509,7 +13364,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:513" +defs["igCheckbox"][1]["location"] = "imgui:558" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -12534,7 +13389,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:514" +defs["igCheckboxFlags"][1]["location"] = "imgui:559" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -12557,7 +13412,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:515" +defs["igCheckboxFlags"][2]["location"] = "imgui:560" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -12580,7 +13435,7 @@ defs["igCheckboxFlags"][3]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][3]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][3]["defaults"] = {} defs["igCheckboxFlags"][3]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3373" +defs["igCheckboxFlags"][3]["location"] = "imgui_internal:3850" defs["igCheckboxFlags"][3]["namespace"] = "ImGui" defs["igCheckboxFlags"][3]["ov_cimguiname"] = "igCheckboxFlags_S64Ptr" defs["igCheckboxFlags"][3]["ret"] = "bool" @@ -12603,7 +13458,7 @@ defs["igCheckboxFlags"][4]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][4]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][4]["defaults"] = {} defs["igCheckboxFlags"][4]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3374" +defs["igCheckboxFlags"][4]["location"] = "imgui_internal:3851" defs["igCheckboxFlags"][4]["namespace"] = "ImGui" defs["igCheckboxFlags"][4]["ov_cimguiname"] = "igCheckboxFlags_U64Ptr" defs["igCheckboxFlags"][4]["ret"] = "bool" @@ -12622,7 +13477,7 @@ defs["igClearActiveID"][1]["call_args"] = "()" defs["igClearActiveID"][1]["cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["defaults"] = {} defs["igClearActiveID"][1]["funcname"] = "ClearActiveID" -defs["igClearActiveID"][1]["location"] = "imgui_internal:3042" +defs["igClearActiveID"][1]["location"] = "imgui_internal:3462" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -12638,7 +13493,7 @@ defs["igClearDragDrop"][1]["call_args"] = "()" defs["igClearDragDrop"][1]["cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["defaults"] = {} defs["igClearDragDrop"][1]["funcname"] = "ClearDragDrop" -defs["igClearDragDrop"][1]["location"] = "imgui_internal:3257" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:3706" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -12654,13 +13509,32 @@ defs["igClearIniSettings"][1]["call_args"] = "()" defs["igClearIniSettings"][1]["cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["defaults"] = {} defs["igClearIniSettings"][1]["funcname"] = "ClearIniSettings" -defs["igClearIniSettings"][1]["location"] = "imgui_internal:3009" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:3426" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" defs["igClearIniSettings"][1]["signature"] = "()" defs["igClearIniSettings"][1]["stname"] = "" defs["igClearIniSettings"]["()"] = defs["igClearIniSettings"][1] +defs["igClearWindowSettings"] = {} +defs["igClearWindowSettings"][1] = {} +defs["igClearWindowSettings"][1]["args"] = "(const char* name)" +defs["igClearWindowSettings"][1]["argsT"] = {} +defs["igClearWindowSettings"][1]["argsT"][1] = {} +defs["igClearWindowSettings"][1]["argsT"][1]["name"] = "name" +defs["igClearWindowSettings"][1]["argsT"][1]["type"] = "const char*" +defs["igClearWindowSettings"][1]["argsoriginal"] = "(const char* name)" +defs["igClearWindowSettings"][1]["call_args"] = "(name)" +defs["igClearWindowSettings"][1]["cimguiname"] = "igClearWindowSettings" +defs["igClearWindowSettings"][1]["defaults"] = {} +defs["igClearWindowSettings"][1]["funcname"] = "ClearWindowSettings" +defs["igClearWindowSettings"][1]["location"] = "imgui_internal:3435" +defs["igClearWindowSettings"][1]["namespace"] = "ImGui" +defs["igClearWindowSettings"][1]["ov_cimguiname"] = "igClearWindowSettings" +defs["igClearWindowSettings"][1]["ret"] = "void" +defs["igClearWindowSettings"][1]["signature"] = "(const char*)" +defs["igClearWindowSettings"][1]["stname"] = "" +defs["igClearWindowSettings"]["(const char*)"] = defs["igClearWindowSettings"][1] defs["igCloseButton"] = {} defs["igCloseButton"][1] = {} defs["igCloseButton"][1]["args"] = "(ImGuiID id,const ImVec2 pos)" @@ -12676,7 +13550,7 @@ defs["igCloseButton"][1]["call_args"] = "(id,pos)" defs["igCloseButton"][1]["cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["defaults"] = {} defs["igCloseButton"][1]["funcname"] = "CloseButton" -defs["igCloseButton"][1]["location"] = "imgui_internal:3377" +defs["igCloseButton"][1]["location"] = "imgui_internal:3854" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -12692,7 +13566,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:708" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:778" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -12714,7 +13588,7 @@ defs["igClosePopupToLevel"][1]["call_args"] = "(remaining,restore_focus_to_windo defs["igClosePopupToLevel"][1]["cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["defaults"] = {} defs["igClosePopupToLevel"][1]["funcname"] = "ClosePopupToLevel" -defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3077" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:3501" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -12730,7 +13604,7 @@ defs["igClosePopupsExceptModals"][1]["call_args"] = "()" defs["igClosePopupsExceptModals"][1]["cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["defaults"] = {} defs["igClosePopupsExceptModals"][1]["funcname"] = "ClosePopupsExceptModals" -defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3079" +defs["igClosePopupsExceptModals"][1]["location"] = "imgui_internal:3503" defs["igClosePopupsExceptModals"][1]["namespace"] = "ImGui" defs["igClosePopupsExceptModals"][1]["ov_cimguiname"] = "igClosePopupsExceptModals" defs["igClosePopupsExceptModals"][1]["ret"] = "void" @@ -12752,7 +13626,7 @@ defs["igClosePopupsOverWindow"][1]["call_args"] = "(ref_window,restore_focus_to_ defs["igClosePopupsOverWindow"][1]["cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["defaults"] = {} defs["igClosePopupsOverWindow"][1]["funcname"] = "ClosePopupsOverWindow" -defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3078" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:3502" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -12777,7 +13651,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos,dock_node)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "imgui_internal:3378" +defs["igCollapseButton"][1]["location"] = "imgui_internal:3855" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -12800,7 +13674,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:625" +defs["igCollapsingHeader"][1]["location"] = "imgui:674" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -12824,7 +13698,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:626" +defs["igCollapsingHeader"][2]["location"] = "imgui:675" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -12855,7 +13729,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:606" +defs["igColorButton"][1]["location"] = "imgui:655" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -12874,7 +13748,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:913" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:982" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -12911,7 +13785,7 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:915" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:984" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -12948,7 +13822,7 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:914" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:983" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -12970,7 +13844,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:912" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:981" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -12997,7 +13871,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:602" +defs["igColorEdit3"][1]["location"] = "imgui:651" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -13023,7 +13897,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:603" +defs["igColorEdit4"][1]["location"] = "imgui:652" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -13045,7 +13919,7 @@ defs["igColorEditOptionsPopup"][1]["call_args"] = "(col,flags)" defs["igColorEditOptionsPopup"][1]["cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["defaults"] = {} defs["igColorEditOptionsPopup"][1]["funcname"] = "ColorEditOptionsPopup" -defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3423" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:3905" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -13071,7 +13945,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:604" +defs["igColorPicker3"][1]["location"] = "imgui:653" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -13101,7 +13975,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:605" +defs["igColorPicker4"][1]["location"] = "imgui:654" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -13123,7 +13997,7 @@ defs["igColorPickerOptionsPopup"][1]["call_args"] = "(ref_col,flags)" defs["igColorPickerOptionsPopup"][1]["cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["defaults"] = {} defs["igColorPickerOptionsPopup"][1]["funcname"] = "ColorPickerOptionsPopup" -defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3424" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:3906" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -13148,7 +14022,7 @@ defs["igColorTooltip"][1]["call_args"] = "(text,col,flags)" defs["igColorTooltip"][1]["cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["defaults"] = {} defs["igColorTooltip"][1]["funcname"] = "ColorTooltip" -defs["igColorTooltip"][1]["location"] = "imgui_internal:3422" +defs["igColorTooltip"][1]["location"] = "imgui_internal:3904" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -13157,7 +14031,7 @@ defs["igColorTooltip"][1]["stname"] = "" defs["igColorTooltip"]["(const char*,const float*,ImGuiColorEditFlags)"] = defs["igColorTooltip"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} -defs["igColumns"][1]["args"] = "(int count,const char* id,bool border)" +defs["igColumns"][1]["args"] = "(int count,const char* id,bool borders)" defs["igColumns"][1]["argsT"] = {} defs["igColumns"][1]["argsT"][1] = {} defs["igColumns"][1]["argsT"][1]["name"] = "count" @@ -13166,17 +14040,17 @@ defs["igColumns"][1]["argsT"][2] = {} defs["igColumns"][1]["argsT"][2]["name"] = "id" defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} -defs["igColumns"][1]["argsT"][3]["name"] = "border" +defs["igColumns"][1]["argsT"][3]["name"] = "borders" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" -defs["igColumns"][1]["call_args"] = "(count,id,border)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool borders=true)" +defs["igColumns"][1]["call_args"] = "(count,id,borders)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} -defs["igColumns"][1]["defaults"]["border"] = "true" +defs["igColumns"][1]["defaults"]["borders"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:784" +defs["igColumns"][1]["location"] = "imgui:854" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -13208,7 +14082,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:531" +defs["igCombo"][1]["location"] = "imgui:580" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -13235,14 +14109,14 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:532" +defs["igCombo"][2]["location"] = "imgui:581" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" defs["igCombo"][2]["signature"] = "(const char*,int*,const char*,int)" defs["igCombo"][2]["stname"] = "" defs["igCombo"][3] = {} -defs["igCombo"][3]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)" +defs["igCombo"][3]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)" defs["igCombo"][3]["argsT"] = {} defs["igCombo"][3]["argsT"][1] = {} defs["igCombo"][3]["argsT"][1]["name"] = "label" @@ -13251,12 +14125,12 @@ defs["igCombo"][3]["argsT"][2] = {} defs["igCombo"][3]["argsT"][2]["name"] = "current_item" defs["igCombo"][3]["argsT"][2]["type"] = "int*" defs["igCombo"][3]["argsT"][3] = {} -defs["igCombo"][3]["argsT"][3]["name"] = "items_getter" -defs["igCombo"][3]["argsT"][3]["ret"] = "bool" -defs["igCombo"][3]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igCombo"][3]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igCombo"][3]["argsT"][3]["name"] = "getter" +defs["igCombo"][3]["argsT"][3]["ret"] = "const char*" +defs["igCombo"][3]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igCombo"][3]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igCombo"][3]["argsT"][4] = {} -defs["igCombo"][3]["argsT"][4]["name"] = "data" +defs["igCombo"][3]["argsT"][4]["name"] = "user_data" defs["igCombo"][3]["argsT"][4]["type"] = "void*" defs["igCombo"][3]["argsT"][5] = {} defs["igCombo"][3]["argsT"][5]["name"] = "items_count" @@ -13264,40 +14138,21 @@ defs["igCombo"][3]["argsT"][5]["type"] = "int" defs["igCombo"][3]["argsT"][6] = {} defs["igCombo"][3]["argsT"][6]["name"] = "popup_max_height_in_items" defs["igCombo"][3]["argsT"][6]["type"] = "int" -defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)" -defs["igCombo"][3]["call_args"] = "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)" +defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)" +defs["igCombo"][3]["call_args"] = "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)" defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:533" +defs["igCombo"][3]["location"] = "imgui:582" defs["igCombo"][3]["namespace"] = "ImGui" -defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnBoolPtr" +defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" -defs["igCombo"][3]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igCombo"][3]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igCombo"][3]["stname"] = "" -defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] +defs["igCombo"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] -defs["igConvertShortcutMod"] = {} -defs["igConvertShortcutMod"][1] = {} -defs["igConvertShortcutMod"][1]["args"] = "(ImGuiKeyChord key_chord)" -defs["igConvertShortcutMod"][1]["argsT"] = {} -defs["igConvertShortcutMod"][1]["argsT"][1] = {} -defs["igConvertShortcutMod"][1]["argsT"][1]["name"] = "key_chord" -defs["igConvertShortcutMod"][1]["argsT"][1]["type"] = "ImGuiKeyChord" -defs["igConvertShortcutMod"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" -defs["igConvertShortcutMod"][1]["call_args"] = "(key_chord)" -defs["igConvertShortcutMod"][1]["cimguiname"] = "igConvertShortcutMod" -defs["igConvertShortcutMod"][1]["defaults"] = {} -defs["igConvertShortcutMod"][1]["funcname"] = "ConvertShortcutMod" -defs["igConvertShortcutMod"][1]["location"] = "imgui_internal:3122" -defs["igConvertShortcutMod"][1]["namespace"] = "ImGui" -defs["igConvertShortcutMod"][1]["ov_cimguiname"] = "igConvertShortcutMod" -defs["igConvertShortcutMod"][1]["ret"] = "ImGuiKeyChord" -defs["igConvertShortcutMod"][1]["signature"] = "(ImGuiKeyChord)" -defs["igConvertShortcutMod"][1]["stname"] = "" -defs["igConvertShortcutMod"]["(ImGuiKeyChord)"] = defs["igConvertShortcutMod"][1] defs["igConvertSingleModFlagToKey"] = {} defs["igConvertSingleModFlagToKey"][1] = {} defs["igConvertSingleModFlagToKey"][1]["args"] = "(ImGuiKey key)" @@ -13310,7 +14165,7 @@ defs["igConvertSingleModFlagToKey"][1]["call_args"] = "(key)" defs["igConvertSingleModFlagToKey"][1]["cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["defaults"] = {} defs["igConvertSingleModFlagToKey"][1]["funcname"] = "ConvertSingleModFlagToKey" -defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3123" +defs["igConvertSingleModFlagToKey"][1]["location"] = "imgui_internal:3562" defs["igConvertSingleModFlagToKey"][1]["namespace"] = "ImGui" defs["igConvertSingleModFlagToKey"][1]["ov_cimguiname"] = "igConvertSingleModFlagToKey" defs["igConvertSingleModFlagToKey"][1]["ret"] = "ImGuiKey" @@ -13330,7 +14185,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:294" +defs["igCreateContext"][1]["location"] = "imgui:328" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -13349,7 +14204,7 @@ defs["igCreateNewWindowSettings"][1]["call_args"] = "(name)" defs["igCreateNewWindowSettings"][1]["cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["defaults"] = {} defs["igCreateNewWindowSettings"][1]["funcname"] = "CreateNewWindowSettings" -defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3010" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:3432" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -13358,7 +14213,7 @@ defs["igCreateNewWindowSettings"][1]["stname"] = "" defs["igCreateNewWindowSettings"]["(const char*)"] = defs["igCreateNewWindowSettings"][1] defs["igDataTypeApplyFromText"] = {} defs["igDataTypeApplyFromText"][1] = {} -defs["igDataTypeApplyFromText"][1]["args"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)" +defs["igDataTypeApplyFromText"][1]["args"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty)" defs["igDataTypeApplyFromText"][1]["argsT"] = {} defs["igDataTypeApplyFromText"][1]["argsT"][1] = {} defs["igDataTypeApplyFromText"][1]["argsT"][1]["name"] = "buf" @@ -13372,18 +14227,22 @@ defs["igDataTypeApplyFromText"][1]["argsT"][3]["type"] = "void*" defs["igDataTypeApplyFromText"][1]["argsT"][4] = {} defs["igDataTypeApplyFromText"][1]["argsT"][4]["name"] = "format" defs["igDataTypeApplyFromText"][1]["argsT"][4]["type"] = "const char*" -defs["igDataTypeApplyFromText"][1]["argsoriginal"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format)" -defs["igDataTypeApplyFromText"][1]["call_args"] = "(buf,data_type,p_data,format)" +defs["igDataTypeApplyFromText"][1]["argsT"][5] = {} +defs["igDataTypeApplyFromText"][1]["argsT"][5]["name"] = "p_data_when_empty" +defs["igDataTypeApplyFromText"][1]["argsT"][5]["type"] = "void*" +defs["igDataTypeApplyFromText"][1]["argsoriginal"] = "(const char* buf,ImGuiDataType data_type,void* p_data,const char* format,void* p_data_when_empty=((void*)0))" +defs["igDataTypeApplyFromText"][1]["call_args"] = "(buf,data_type,p_data,format,p_data_when_empty)" defs["igDataTypeApplyFromText"][1]["cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["defaults"] = {} +defs["igDataTypeApplyFromText"][1]["defaults"]["p_data_when_empty"] = "NULL" defs["igDataTypeApplyFromText"][1]["funcname"] = "DataTypeApplyFromText" -defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3410" +defs["igDataTypeApplyFromText"][1]["location"] = "imgui_internal:3890" defs["igDataTypeApplyFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyFromText"][1]["ov_cimguiname"] = "igDataTypeApplyFromText" defs["igDataTypeApplyFromText"][1]["ret"] = "bool" -defs["igDataTypeApplyFromText"][1]["signature"] = "(const char*,ImGuiDataType,void*,const char*)" +defs["igDataTypeApplyFromText"][1]["signature"] = "(const char*,ImGuiDataType,void*,const char*,void*)" defs["igDataTypeApplyFromText"][1]["stname"] = "" -defs["igDataTypeApplyFromText"]["(const char*,ImGuiDataType,void*,const char*)"] = defs["igDataTypeApplyFromText"][1] +defs["igDataTypeApplyFromText"]["(const char*,ImGuiDataType,void*,const char*,void*)"] = defs["igDataTypeApplyFromText"][1] defs["igDataTypeApplyOp"] = {} defs["igDataTypeApplyOp"][1] = {} defs["igDataTypeApplyOp"][1]["args"] = "(ImGuiDataType data_type,int op,void* output,const void* arg_1,const void* arg_2)" @@ -13408,7 +14267,7 @@ defs["igDataTypeApplyOp"][1]["call_args"] = "(data_type,op,output,arg_1,arg_2)" defs["igDataTypeApplyOp"][1]["cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["defaults"] = {} defs["igDataTypeApplyOp"][1]["funcname"] = "DataTypeApplyOp" -defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3409" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:3889" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -13436,7 +14295,7 @@ defs["igDataTypeClamp"][1]["call_args"] = "(data_type,p_data,p_min,p_max)" defs["igDataTypeClamp"][1]["cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["defaults"] = {} defs["igDataTypeClamp"][1]["funcname"] = "DataTypeClamp" -defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3412" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:3892" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -13461,7 +14320,7 @@ defs["igDataTypeCompare"][1]["call_args"] = "(data_type,arg_1,arg_2)" defs["igDataTypeCompare"][1]["cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["defaults"] = {} defs["igDataTypeCompare"][1]["funcname"] = "DataTypeCompare" -defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3411" +defs["igDataTypeCompare"][1]["location"] = "imgui_internal:3891" defs["igDataTypeCompare"][1]["namespace"] = "ImGui" defs["igDataTypeCompare"][1]["ov_cimguiname"] = "igDataTypeCompare" defs["igDataTypeCompare"][1]["ret"] = "int" @@ -13492,7 +14351,7 @@ defs["igDataTypeFormatString"][1]["call_args"] = "(buf,buf_size,data_type,p_data defs["igDataTypeFormatString"][1]["cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["defaults"] = {} defs["igDataTypeFormatString"][1]["funcname"] = "DataTypeFormatString" -defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3408" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:3888" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -13511,13 +14370,101 @@ defs["igDataTypeGetInfo"][1]["call_args"] = "(data_type)" defs["igDataTypeGetInfo"][1]["cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["defaults"] = {} defs["igDataTypeGetInfo"][1]["funcname"] = "DataTypeGetInfo" -defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3407" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:3887" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" defs["igDataTypeGetInfo"][1]["signature"] = "(ImGuiDataType)" defs["igDataTypeGetInfo"][1]["stname"] = "" defs["igDataTypeGetInfo"]["(ImGuiDataType)"] = defs["igDataTypeGetInfo"][1] +defs["igDebugAllocHook"] = {} +defs["igDebugAllocHook"][1] = {} +defs["igDebugAllocHook"][1]["args"] = "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)" +defs["igDebugAllocHook"][1]["argsT"] = {} +defs["igDebugAllocHook"][1]["argsT"][1] = {} +defs["igDebugAllocHook"][1]["argsT"][1]["name"] = "info" +defs["igDebugAllocHook"][1]["argsT"][1]["type"] = "ImGuiDebugAllocInfo*" +defs["igDebugAllocHook"][1]["argsT"][2] = {} +defs["igDebugAllocHook"][1]["argsT"][2]["name"] = "frame_count" +defs["igDebugAllocHook"][1]["argsT"][2]["type"] = "int" +defs["igDebugAllocHook"][1]["argsT"][3] = {} +defs["igDebugAllocHook"][1]["argsT"][3]["name"] = "ptr" +defs["igDebugAllocHook"][1]["argsT"][3]["type"] = "void*" +defs["igDebugAllocHook"][1]["argsT"][4] = {} +defs["igDebugAllocHook"][1]["argsT"][4]["name"] = "size" +defs["igDebugAllocHook"][1]["argsT"][4]["type"] = "size_t" +defs["igDebugAllocHook"][1]["argsoriginal"] = "(ImGuiDebugAllocInfo* info,int frame_count,void* ptr,size_t size)" +defs["igDebugAllocHook"][1]["call_args"] = "(info,frame_count,ptr,size)" +defs["igDebugAllocHook"][1]["cimguiname"] = "igDebugAllocHook" +defs["igDebugAllocHook"][1]["defaults"] = {} +defs["igDebugAllocHook"][1]["funcname"] = "DebugAllocHook" +defs["igDebugAllocHook"][1]["location"] = "imgui_internal:3922" +defs["igDebugAllocHook"][1]["namespace"] = "ImGui" +defs["igDebugAllocHook"][1]["ov_cimguiname"] = "igDebugAllocHook" +defs["igDebugAllocHook"][1]["ret"] = "void" +defs["igDebugAllocHook"][1]["signature"] = "(ImGuiDebugAllocInfo*,int,void*,size_t)" +defs["igDebugAllocHook"][1]["stname"] = "" +defs["igDebugAllocHook"]["(ImGuiDebugAllocInfo*,int,void*,size_t)"] = defs["igDebugAllocHook"][1] +defs["igDebugBreakButton"] = {} +defs["igDebugBreakButton"][1] = {} +defs["igDebugBreakButton"][1]["args"] = "(const char* label,const char* description_of_location)" +defs["igDebugBreakButton"][1]["argsT"] = {} +defs["igDebugBreakButton"][1]["argsT"][1] = {} +defs["igDebugBreakButton"][1]["argsT"][1]["name"] = "label" +defs["igDebugBreakButton"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugBreakButton"][1]["argsT"][2] = {} +defs["igDebugBreakButton"][1]["argsT"][2]["name"] = "description_of_location" +defs["igDebugBreakButton"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugBreakButton"][1]["argsoriginal"] = "(const char* label,const char* description_of_location)" +defs["igDebugBreakButton"][1]["call_args"] = "(label,description_of_location)" +defs["igDebugBreakButton"][1]["cimguiname"] = "igDebugBreakButton" +defs["igDebugBreakButton"][1]["defaults"] = {} +defs["igDebugBreakButton"][1]["funcname"] = "DebugBreakButton" +defs["igDebugBreakButton"][1]["location"] = "imgui_internal:3934" +defs["igDebugBreakButton"][1]["namespace"] = "ImGui" +defs["igDebugBreakButton"][1]["ov_cimguiname"] = "igDebugBreakButton" +defs["igDebugBreakButton"][1]["ret"] = "bool" +defs["igDebugBreakButton"][1]["signature"] = "(const char*,const char*)" +defs["igDebugBreakButton"][1]["stname"] = "" +defs["igDebugBreakButton"]["(const char*,const char*)"] = defs["igDebugBreakButton"][1] +defs["igDebugBreakButtonTooltip"] = {} +defs["igDebugBreakButtonTooltip"][1] = {} +defs["igDebugBreakButtonTooltip"][1]["args"] = "(bool keyboard_only,const char* description_of_location)" +defs["igDebugBreakButtonTooltip"][1]["argsT"] = {} +defs["igDebugBreakButtonTooltip"][1]["argsT"][1] = {} +defs["igDebugBreakButtonTooltip"][1]["argsT"][1]["name"] = "keyboard_only" +defs["igDebugBreakButtonTooltip"][1]["argsT"][1]["type"] = "bool" +defs["igDebugBreakButtonTooltip"][1]["argsT"][2] = {} +defs["igDebugBreakButtonTooltip"][1]["argsT"][2]["name"] = "description_of_location" +defs["igDebugBreakButtonTooltip"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugBreakButtonTooltip"][1]["argsoriginal"] = "(bool keyboard_only,const char* description_of_location)" +defs["igDebugBreakButtonTooltip"][1]["call_args"] = "(keyboard_only,description_of_location)" +defs["igDebugBreakButtonTooltip"][1]["cimguiname"] = "igDebugBreakButtonTooltip" +defs["igDebugBreakButtonTooltip"][1]["defaults"] = {} +defs["igDebugBreakButtonTooltip"][1]["funcname"] = "DebugBreakButtonTooltip" +defs["igDebugBreakButtonTooltip"][1]["location"] = "imgui_internal:3935" +defs["igDebugBreakButtonTooltip"][1]["namespace"] = "ImGui" +defs["igDebugBreakButtonTooltip"][1]["ov_cimguiname"] = "igDebugBreakButtonTooltip" +defs["igDebugBreakButtonTooltip"][1]["ret"] = "void" +defs["igDebugBreakButtonTooltip"][1]["signature"] = "(bool,const char*)" +defs["igDebugBreakButtonTooltip"][1]["stname"] = "" +defs["igDebugBreakButtonTooltip"]["(bool,const char*)"] = defs["igDebugBreakButtonTooltip"][1] +defs["igDebugBreakClearData"] = {} +defs["igDebugBreakClearData"][1] = {} +defs["igDebugBreakClearData"][1]["args"] = "()" +defs["igDebugBreakClearData"][1]["argsT"] = {} +defs["igDebugBreakClearData"][1]["argsoriginal"] = "()" +defs["igDebugBreakClearData"][1]["call_args"] = "()" +defs["igDebugBreakClearData"][1]["cimguiname"] = "igDebugBreakClearData" +defs["igDebugBreakClearData"][1]["defaults"] = {} +defs["igDebugBreakClearData"][1]["funcname"] = "DebugBreakClearData" +defs["igDebugBreakClearData"][1]["location"] = "imgui_internal:3933" +defs["igDebugBreakClearData"][1]["namespace"] = "ImGui" +defs["igDebugBreakClearData"][1]["ov_cimguiname"] = "igDebugBreakClearData" +defs["igDebugBreakClearData"][1]["ret"] = "void" +defs["igDebugBreakClearData"][1]["signature"] = "()" +defs["igDebugBreakClearData"][1]["stname"] = "" +defs["igDebugBreakClearData"]["()"] = defs["igDebugBreakClearData"][1] defs["igDebugCheckVersionAndDataLayout"] = {} defs["igDebugCheckVersionAndDataLayout"][1] = {} defs["igDebugCheckVersionAndDataLayout"][1]["args"] = "(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx)" @@ -13548,13 +14495,33 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:966" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1065" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" defs["igDebugCheckVersionAndDataLayout"][1]["signature"] = "(const char*,size_t,size_t,size_t,size_t,size_t,size_t)" defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "" defs["igDebugCheckVersionAndDataLayout"]["(const char*,size_t,size_t,size_t,size_t,size_t,size_t)"] = defs["igDebugCheckVersionAndDataLayout"][1] +defs["igDebugDrawCursorPos"] = {} +defs["igDebugDrawCursorPos"][1] = {} +defs["igDebugDrawCursorPos"][1]["args"] = "(ImU32 col)" +defs["igDebugDrawCursorPos"][1]["argsT"] = {} +defs["igDebugDrawCursorPos"][1]["argsT"][1] = {} +defs["igDebugDrawCursorPos"][1]["argsT"][1]["name"] = "col" +defs["igDebugDrawCursorPos"][1]["argsT"][1]["type"] = "ImU32" +defs["igDebugDrawCursorPos"][1]["argsoriginal"] = "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))" +defs["igDebugDrawCursorPos"][1]["call_args"] = "(col)" +defs["igDebugDrawCursorPos"][1]["cimguiname"] = "igDebugDrawCursorPos" +defs["igDebugDrawCursorPos"][1]["defaults"] = {} +defs["igDebugDrawCursorPos"][1]["defaults"]["col"] = "4278190335" +defs["igDebugDrawCursorPos"][1]["funcname"] = "DebugDrawCursorPos" +defs["igDebugDrawCursorPos"][1]["location"] = "imgui_internal:3926" +defs["igDebugDrawCursorPos"][1]["namespace"] = "ImGui" +defs["igDebugDrawCursorPos"][1]["ov_cimguiname"] = "igDebugDrawCursorPos" +defs["igDebugDrawCursorPos"][1]["ret"] = "void" +defs["igDebugDrawCursorPos"][1]["signature"] = "(ImU32)" +defs["igDebugDrawCursorPos"][1]["stname"] = "" +defs["igDebugDrawCursorPos"]["(ImU32)"] = defs["igDebugDrawCursorPos"][1] defs["igDebugDrawItemRect"] = {} defs["igDebugDrawItemRect"][1] = {} defs["igDebugDrawItemRect"][1]["args"] = "(ImU32 col)" @@ -13568,13 +14535,52 @@ defs["igDebugDrawItemRect"][1]["cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["defaults"] = {} defs["igDebugDrawItemRect"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawItemRect"][1]["funcname"] = "DebugDrawItemRect" -defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3449" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:3928" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" defs["igDebugDrawItemRect"][1]["signature"] = "(ImU32)" defs["igDebugDrawItemRect"][1]["stname"] = "" defs["igDebugDrawItemRect"]["(ImU32)"] = defs["igDebugDrawItemRect"][1] +defs["igDebugDrawLineExtents"] = {} +defs["igDebugDrawLineExtents"][1] = {} +defs["igDebugDrawLineExtents"][1]["args"] = "(ImU32 col)" +defs["igDebugDrawLineExtents"][1]["argsT"] = {} +defs["igDebugDrawLineExtents"][1]["argsT"][1] = {} +defs["igDebugDrawLineExtents"][1]["argsT"][1]["name"] = "col" +defs["igDebugDrawLineExtents"][1]["argsT"][1]["type"] = "ImU32" +defs["igDebugDrawLineExtents"][1]["argsoriginal"] = "(ImU32 col=(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0)))" +defs["igDebugDrawLineExtents"][1]["call_args"] = "(col)" +defs["igDebugDrawLineExtents"][1]["cimguiname"] = "igDebugDrawLineExtents" +defs["igDebugDrawLineExtents"][1]["defaults"] = {} +defs["igDebugDrawLineExtents"][1]["defaults"]["col"] = "4278190335" +defs["igDebugDrawLineExtents"][1]["funcname"] = "DebugDrawLineExtents" +defs["igDebugDrawLineExtents"][1]["location"] = "imgui_internal:3927" +defs["igDebugDrawLineExtents"][1]["namespace"] = "ImGui" +defs["igDebugDrawLineExtents"][1]["ov_cimguiname"] = "igDebugDrawLineExtents" +defs["igDebugDrawLineExtents"][1]["ret"] = "void" +defs["igDebugDrawLineExtents"][1]["signature"] = "(ImU32)" +defs["igDebugDrawLineExtents"][1]["stname"] = "" +defs["igDebugDrawLineExtents"]["(ImU32)"] = defs["igDebugDrawLineExtents"][1] +defs["igDebugFlashStyleColor"] = {} +defs["igDebugFlashStyleColor"][1] = {} +defs["igDebugFlashStyleColor"][1]["args"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["argsT"] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1]["name"] = "idx" +defs["igDebugFlashStyleColor"][1]["argsT"][1]["type"] = "ImGuiCol" +defs["igDebugFlashStyleColor"][1]["argsoriginal"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" +defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["defaults"] = {} +defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1063" +defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" +defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["ret"] = "void" +defs["igDebugFlashStyleColor"][1]["signature"] = "(ImGuiCol)" +defs["igDebugFlashStyleColor"][1]["stname"] = "" +defs["igDebugFlashStyleColor"]["(ImGuiCol)"] = defs["igDebugFlashStyleColor"][1] defs["igDebugHookIdInfo"] = {} defs["igDebugHookIdInfo"][1] = {} defs["igDebugHookIdInfo"][1]["args"] = "(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end)" @@ -13596,7 +14602,7 @@ defs["igDebugHookIdInfo"][1]["call_args"] = "(id,data_type,data_id,data_id_end)" defs["igDebugHookIdInfo"][1]["cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["defaults"] = {} defs["igDebugHookIdInfo"][1]["funcname"] = "DebugHookIdInfo" -defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3452" +defs["igDebugHookIdInfo"][1]["location"] = "imgui_internal:3937" defs["igDebugHookIdInfo"][1]["namespace"] = "ImGui" defs["igDebugHookIdInfo"][1]["ov_cimguiname"] = "igDebugHookIdInfo" defs["igDebugHookIdInfo"][1]["ret"] = "void" @@ -13615,7 +14621,7 @@ defs["igDebugLocateItem"][1]["call_args"] = "(target_id)" defs["igDebugLocateItem"][1]["cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["defaults"] = {} defs["igDebugLocateItem"][1]["funcname"] = "DebugLocateItem" -defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3446" +defs["igDebugLocateItem"][1]["location"] = "imgui_internal:3930" defs["igDebugLocateItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItem"][1]["ov_cimguiname"] = "igDebugLocateItem" defs["igDebugLocateItem"][1]["ret"] = "void" @@ -13634,7 +14640,7 @@ defs["igDebugLocateItemOnHover"][1]["call_args"] = "(target_id)" defs["igDebugLocateItemOnHover"][1]["cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["defaults"] = {} defs["igDebugLocateItemOnHover"][1]["funcname"] = "DebugLocateItemOnHover" -defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3447" +defs["igDebugLocateItemOnHover"][1]["location"] = "imgui_internal:3931" defs["igDebugLocateItemOnHover"][1]["namespace"] = "ImGui" defs["igDebugLocateItemOnHover"][1]["ov_cimguiname"] = "igDebugLocateItemOnHover" defs["igDebugLocateItemOnHover"][1]["ret"] = "void" @@ -13650,7 +14656,7 @@ defs["igDebugLocateItemResolveWithLastItem"][1]["call_args"] = "()" defs["igDebugLocateItemResolveWithLastItem"][1]["cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["defaults"] = {} defs["igDebugLocateItemResolveWithLastItem"][1]["funcname"] = "DebugLocateItemResolveWithLastItem" -defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3448" +defs["igDebugLocateItemResolveWithLastItem"][1]["location"] = "imgui_internal:3932" defs["igDebugLocateItemResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igDebugLocateItemResolveWithLastItem"][1]["ov_cimguiname"] = "igDebugLocateItemResolveWithLastItem" defs["igDebugLocateItemResolveWithLastItem"][1]["ret"] = "void" @@ -13673,7 +14679,7 @@ defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["defaults"] = {} defs["igDebugLog"][1]["funcname"] = "DebugLog" defs["igDebugLog"][1]["isvararg"] = "...)" -defs["igDebugLog"][1]["location"] = "imgui_internal:3439" +defs["igDebugLog"][1]["location"] = "imgui:1067" defs["igDebugLog"][1]["namespace"] = "ImGui" defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" defs["igDebugLog"][1]["ret"] = "void" @@ -13695,7 +14701,7 @@ defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["defaults"] = {} defs["igDebugLogV"][1]["funcname"] = "DebugLogV" -defs["igDebugLogV"][1]["location"] = "imgui_internal:3440" +defs["igDebugLogV"][1]["location"] = "imgui:1068" defs["igDebugLogV"][1]["namespace"] = "ImGui" defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" defs["igDebugLogV"][1]["ret"] = "void" @@ -13714,7 +14720,7 @@ defs["igDebugNodeColumns"][1]["call_args"] = "(columns)" defs["igDebugNodeColumns"][1]["cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["defaults"] = {} defs["igDebugNodeColumns"][1]["funcname"] = "DebugNodeColumns" -defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3453" +defs["igDebugNodeColumns"][1]["location"] = "imgui_internal:3938" defs["igDebugNodeColumns"][1]["namespace"] = "ImGui" defs["igDebugNodeColumns"][1]["ov_cimguiname"] = "igDebugNodeColumns" defs["igDebugNodeColumns"][1]["ret"] = "void" @@ -13736,7 +14742,7 @@ defs["igDebugNodeDockNode"][1]["call_args"] = "(node,label)" defs["igDebugNodeDockNode"][1]["cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["defaults"] = {} defs["igDebugNodeDockNode"][1]["funcname"] = "DebugNodeDockNode" -defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3454" +defs["igDebugNodeDockNode"][1]["location"] = "imgui_internal:3939" defs["igDebugNodeDockNode"][1]["namespace"] = "ImGui" defs["igDebugNodeDockNode"][1]["ov_cimguiname"] = "igDebugNodeDockNode" defs["igDebugNodeDockNode"][1]["ret"] = "void" @@ -13767,7 +14773,7 @@ defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["call_args"] = "(out_draw_li defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["defaults"] = {} defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["funcname"] = "DebugNodeDrawCmdShowMeshAndBoundingBox" -defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3456" +defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["location"] = "imgui_internal:3941" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ov_cimguiname"] = "igDebugNodeDrawCmdShowMeshAndBoundingBox" defs["igDebugNodeDrawCmdShowMeshAndBoundingBox"][1]["ret"] = "void" @@ -13795,7 +14801,7 @@ defs["igDebugNodeDrawList"][1]["call_args"] = "(window,viewport,draw_list,label) defs["igDebugNodeDrawList"][1]["cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["defaults"] = {} defs["igDebugNodeDrawList"][1]["funcname"] = "DebugNodeDrawList" -defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3455" +defs["igDebugNodeDrawList"][1]["location"] = "imgui_internal:3940" defs["igDebugNodeDrawList"][1]["namespace"] = "ImGui" defs["igDebugNodeDrawList"][1]["ov_cimguiname"] = "igDebugNodeDrawList" defs["igDebugNodeDrawList"][1]["ret"] = "void" @@ -13814,7 +14820,7 @@ defs["igDebugNodeFont"][1]["call_args"] = "(font)" defs["igDebugNodeFont"][1]["cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["defaults"] = {} defs["igDebugNodeFont"][1]["funcname"] = "DebugNodeFont" -defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3457" +defs["igDebugNodeFont"][1]["location"] = "imgui_internal:3942" defs["igDebugNodeFont"][1]["namespace"] = "ImGui" defs["igDebugNodeFont"][1]["ov_cimguiname"] = "igDebugNodeFont" defs["igDebugNodeFont"][1]["ret"] = "void" @@ -13836,7 +14842,7 @@ defs["igDebugNodeFontGlyph"][1]["call_args"] = "(font,glyph)" defs["igDebugNodeFontGlyph"][1]["cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["defaults"] = {} defs["igDebugNodeFontGlyph"][1]["funcname"] = "DebugNodeFontGlyph" -defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3458" +defs["igDebugNodeFontGlyph"][1]["location"] = "imgui_internal:3943" defs["igDebugNodeFontGlyph"][1]["namespace"] = "ImGui" defs["igDebugNodeFontGlyph"][1]["ov_cimguiname"] = "igDebugNodeFontGlyph" defs["igDebugNodeFontGlyph"][1]["ret"] = "void" @@ -13855,13 +14861,57 @@ defs["igDebugNodeInputTextState"][1]["call_args"] = "(state)" defs["igDebugNodeInputTextState"][1]["cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["defaults"] = {} defs["igDebugNodeInputTextState"][1]["funcname"] = "DebugNodeInputTextState" -defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3463" +defs["igDebugNodeInputTextState"][1]["location"] = "imgui_internal:3948" defs["igDebugNodeInputTextState"][1]["namespace"] = "ImGui" defs["igDebugNodeInputTextState"][1]["ov_cimguiname"] = "igDebugNodeInputTextState" defs["igDebugNodeInputTextState"][1]["ret"] = "void" defs["igDebugNodeInputTextState"][1]["signature"] = "(ImGuiInputTextState*)" defs["igDebugNodeInputTextState"][1]["stname"] = "" defs["igDebugNodeInputTextState"]["(ImGuiInputTextState*)"] = defs["igDebugNodeInputTextState"][1] +defs["igDebugNodeMultiSelectState"] = {} +defs["igDebugNodeMultiSelectState"][1] = {} +defs["igDebugNodeMultiSelectState"][1]["args"] = "(ImGuiMultiSelectState* state)" +defs["igDebugNodeMultiSelectState"][1]["argsT"] = {} +defs["igDebugNodeMultiSelectState"][1]["argsT"][1] = {} +defs["igDebugNodeMultiSelectState"][1]["argsT"][1]["name"] = "state" +defs["igDebugNodeMultiSelectState"][1]["argsT"][1]["type"] = "ImGuiMultiSelectState*" +defs["igDebugNodeMultiSelectState"][1]["argsoriginal"] = "(ImGuiMultiSelectState* state)" +defs["igDebugNodeMultiSelectState"][1]["call_args"] = "(state)" +defs["igDebugNodeMultiSelectState"][1]["cimguiname"] = "igDebugNodeMultiSelectState" +defs["igDebugNodeMultiSelectState"][1]["defaults"] = {} +defs["igDebugNodeMultiSelectState"][1]["funcname"] = "DebugNodeMultiSelectState" +defs["igDebugNodeMultiSelectState"][1]["location"] = "imgui_internal:3950" +defs["igDebugNodeMultiSelectState"][1]["namespace"] = "ImGui" +defs["igDebugNodeMultiSelectState"][1]["ov_cimguiname"] = "igDebugNodeMultiSelectState" +defs["igDebugNodeMultiSelectState"][1]["ret"] = "void" +defs["igDebugNodeMultiSelectState"][1]["signature"] = "(ImGuiMultiSelectState*)" +defs["igDebugNodeMultiSelectState"][1]["stname"] = "" +defs["igDebugNodeMultiSelectState"]["(ImGuiMultiSelectState*)"] = defs["igDebugNodeMultiSelectState"][1] +defs["igDebugNodePlatformMonitor"] = {} +defs["igDebugNodePlatformMonitor"][1] = {} +defs["igDebugNodePlatformMonitor"][1]["args"] = "(ImGuiPlatformMonitor* monitor,const char* label,int idx)" +defs["igDebugNodePlatformMonitor"][1]["argsT"] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][1] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][1]["name"] = "monitor" +defs["igDebugNodePlatformMonitor"][1]["argsT"][1]["type"] = "ImGuiPlatformMonitor*" +defs["igDebugNodePlatformMonitor"][1]["argsT"][2] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][2]["name"] = "label" +defs["igDebugNodePlatformMonitor"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugNodePlatformMonitor"][1]["argsT"][3] = {} +defs["igDebugNodePlatformMonitor"][1]["argsT"][3]["name"] = "idx" +defs["igDebugNodePlatformMonitor"][1]["argsT"][3]["type"] = "int" +defs["igDebugNodePlatformMonitor"][1]["argsoriginal"] = "(ImGuiPlatformMonitor* monitor,const char* label,int idx)" +defs["igDebugNodePlatformMonitor"][1]["call_args"] = "(monitor,label,idx)" +defs["igDebugNodePlatformMonitor"][1]["cimguiname"] = "igDebugNodePlatformMonitor" +defs["igDebugNodePlatformMonitor"][1]["defaults"] = {} +defs["igDebugNodePlatformMonitor"][1]["funcname"] = "DebugNodePlatformMonitor" +defs["igDebugNodePlatformMonitor"][1]["location"] = "imgui_internal:3956" +defs["igDebugNodePlatformMonitor"][1]["namespace"] = "ImGui" +defs["igDebugNodePlatformMonitor"][1]["ov_cimguiname"] = "igDebugNodePlatformMonitor" +defs["igDebugNodePlatformMonitor"][1]["ret"] = "void" +defs["igDebugNodePlatformMonitor"][1]["signature"] = "(ImGuiPlatformMonitor*,const char*,int)" +defs["igDebugNodePlatformMonitor"][1]["stname"] = "" +defs["igDebugNodePlatformMonitor"]["(ImGuiPlatformMonitor*,const char*,int)"] = defs["igDebugNodePlatformMonitor"][1] defs["igDebugNodeStorage"] = {} defs["igDebugNodeStorage"][1] = {} defs["igDebugNodeStorage"][1]["args"] = "(ImGuiStorage* storage,const char* label)" @@ -13877,7 +14927,7 @@ defs["igDebugNodeStorage"][1]["call_args"] = "(storage,label)" defs["igDebugNodeStorage"][1]["cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["defaults"] = {} defs["igDebugNodeStorage"][1]["funcname"] = "DebugNodeStorage" -defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3459" +defs["igDebugNodeStorage"][1]["location"] = "imgui_internal:3944" defs["igDebugNodeStorage"][1]["namespace"] = "ImGui" defs["igDebugNodeStorage"][1]["ov_cimguiname"] = "igDebugNodeStorage" defs["igDebugNodeStorage"][1]["ret"] = "void" @@ -13899,7 +14949,7 @@ defs["igDebugNodeTabBar"][1]["call_args"] = "(tab_bar,label)" defs["igDebugNodeTabBar"][1]["cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["defaults"] = {} defs["igDebugNodeTabBar"][1]["funcname"] = "DebugNodeTabBar" -defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3460" +defs["igDebugNodeTabBar"][1]["location"] = "imgui_internal:3945" defs["igDebugNodeTabBar"][1]["namespace"] = "ImGui" defs["igDebugNodeTabBar"][1]["ov_cimguiname"] = "igDebugNodeTabBar" defs["igDebugNodeTabBar"][1]["ret"] = "void" @@ -13918,7 +14968,7 @@ defs["igDebugNodeTable"][1]["call_args"] = "(table)" defs["igDebugNodeTable"][1]["cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["defaults"] = {} defs["igDebugNodeTable"][1]["funcname"] = "DebugNodeTable" -defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3461" +defs["igDebugNodeTable"][1]["location"] = "imgui_internal:3946" defs["igDebugNodeTable"][1]["namespace"] = "ImGui" defs["igDebugNodeTable"][1]["ov_cimguiname"] = "igDebugNodeTable" defs["igDebugNodeTable"][1]["ret"] = "void" @@ -13937,13 +14987,32 @@ defs["igDebugNodeTableSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeTableSettings"][1]["cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["defaults"] = {} defs["igDebugNodeTableSettings"][1]["funcname"] = "DebugNodeTableSettings" -defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3462" +defs["igDebugNodeTableSettings"][1]["location"] = "imgui_internal:3947" defs["igDebugNodeTableSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeTableSettings"][1]["ov_cimguiname"] = "igDebugNodeTableSettings" defs["igDebugNodeTableSettings"][1]["ret"] = "void" defs["igDebugNodeTableSettings"][1]["signature"] = "(ImGuiTableSettings*)" defs["igDebugNodeTableSettings"][1]["stname"] = "" defs["igDebugNodeTableSettings"]["(ImGuiTableSettings*)"] = defs["igDebugNodeTableSettings"][1] +defs["igDebugNodeTypingSelectState"] = {} +defs["igDebugNodeTypingSelectState"][1] = {} +defs["igDebugNodeTypingSelectState"][1]["args"] = "(ImGuiTypingSelectState* state)" +defs["igDebugNodeTypingSelectState"][1]["argsT"] = {} +defs["igDebugNodeTypingSelectState"][1]["argsT"][1] = {} +defs["igDebugNodeTypingSelectState"][1]["argsT"][1]["name"] = "state" +defs["igDebugNodeTypingSelectState"][1]["argsT"][1]["type"] = "ImGuiTypingSelectState*" +defs["igDebugNodeTypingSelectState"][1]["argsoriginal"] = "(ImGuiTypingSelectState* state)" +defs["igDebugNodeTypingSelectState"][1]["call_args"] = "(state)" +defs["igDebugNodeTypingSelectState"][1]["cimguiname"] = "igDebugNodeTypingSelectState" +defs["igDebugNodeTypingSelectState"][1]["defaults"] = {} +defs["igDebugNodeTypingSelectState"][1]["funcname"] = "DebugNodeTypingSelectState" +defs["igDebugNodeTypingSelectState"][1]["location"] = "imgui_internal:3949" +defs["igDebugNodeTypingSelectState"][1]["namespace"] = "ImGui" +defs["igDebugNodeTypingSelectState"][1]["ov_cimguiname"] = "igDebugNodeTypingSelectState" +defs["igDebugNodeTypingSelectState"][1]["ret"] = "void" +defs["igDebugNodeTypingSelectState"][1]["signature"] = "(ImGuiTypingSelectState*)" +defs["igDebugNodeTypingSelectState"][1]["stname"] = "" +defs["igDebugNodeTypingSelectState"]["(ImGuiTypingSelectState*)"] = defs["igDebugNodeTypingSelectState"][1] defs["igDebugNodeViewport"] = {} defs["igDebugNodeViewport"][1] = {} defs["igDebugNodeViewport"][1]["args"] = "(ImGuiViewportP* viewport)" @@ -13956,7 +15025,7 @@ defs["igDebugNodeViewport"][1]["call_args"] = "(viewport)" defs["igDebugNodeViewport"][1]["cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["defaults"] = {} defs["igDebugNodeViewport"][1]["funcname"] = "DebugNodeViewport" -defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3468" +defs["igDebugNodeViewport"][1]["location"] = "imgui_internal:3955" defs["igDebugNodeViewport"][1]["namespace"] = "ImGui" defs["igDebugNodeViewport"][1]["ov_cimguiname"] = "igDebugNodeViewport" defs["igDebugNodeViewport"][1]["ret"] = "void" @@ -13978,7 +15047,7 @@ defs["igDebugNodeWindow"][1]["call_args"] = "(window,label)" defs["igDebugNodeWindow"][1]["cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["defaults"] = {} defs["igDebugNodeWindow"][1]["funcname"] = "DebugNodeWindow" -defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3464" +defs["igDebugNodeWindow"][1]["location"] = "imgui_internal:3951" defs["igDebugNodeWindow"][1]["namespace"] = "ImGui" defs["igDebugNodeWindow"][1]["ov_cimguiname"] = "igDebugNodeWindow" defs["igDebugNodeWindow"][1]["ret"] = "void" @@ -13997,7 +15066,7 @@ defs["igDebugNodeWindowSettings"][1]["call_args"] = "(settings)" defs["igDebugNodeWindowSettings"][1]["cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["defaults"] = {} defs["igDebugNodeWindowSettings"][1]["funcname"] = "DebugNodeWindowSettings" -defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3465" +defs["igDebugNodeWindowSettings"][1]["location"] = "imgui_internal:3952" defs["igDebugNodeWindowSettings"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowSettings"][1]["ov_cimguiname"] = "igDebugNodeWindowSettings" defs["igDebugNodeWindowSettings"][1]["ret"] = "void" @@ -14019,7 +15088,7 @@ defs["igDebugNodeWindowsList"][1]["call_args"] = "(windows,label)" defs["igDebugNodeWindowsList"][1]["cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["defaults"] = {} defs["igDebugNodeWindowsList"][1]["funcname"] = "DebugNodeWindowsList" -defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3466" +defs["igDebugNodeWindowsList"][1]["location"] = "imgui_internal:3953" defs["igDebugNodeWindowsList"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsList"][1]["ov_cimguiname"] = "igDebugNodeWindowsList" defs["igDebugNodeWindowsList"][1]["ret"] = "void" @@ -14044,7 +15113,7 @@ defs["igDebugNodeWindowsListByBeginStackParent"][1]["call_args"] = "(windows,win defs["igDebugNodeWindowsListByBeginStackParent"][1]["cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["defaults"] = {} defs["igDebugNodeWindowsListByBeginStackParent"][1]["funcname"] = "DebugNodeWindowsListByBeginStackParent" -defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3467" +defs["igDebugNodeWindowsListByBeginStackParent"][1]["location"] = "imgui_internal:3954" defs["igDebugNodeWindowsListByBeginStackParent"][1]["namespace"] = "ImGui" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ov_cimguiname"] = "igDebugNodeWindowsListByBeginStackParent" defs["igDebugNodeWindowsListByBeginStackParent"][1]["ret"] = "void" @@ -14063,7 +15132,7 @@ defs["igDebugRenderKeyboardPreview"][1]["call_args"] = "(draw_list)" defs["igDebugRenderKeyboardPreview"][1]["cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["defaults"] = {} defs["igDebugRenderKeyboardPreview"][1]["funcname"] = "DebugRenderKeyboardPreview" -defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3469" +defs["igDebugRenderKeyboardPreview"][1]["location"] = "imgui_internal:3957" defs["igDebugRenderKeyboardPreview"][1]["namespace"] = "ImGui" defs["igDebugRenderKeyboardPreview"][1]["ov_cimguiname"] = "igDebugRenderKeyboardPreview" defs["igDebugRenderKeyboardPreview"][1]["ret"] = "void" @@ -14088,7 +15157,7 @@ defs["igDebugRenderViewportThumbnail"][1]["call_args"] = "(draw_list,viewport,bb defs["igDebugRenderViewportThumbnail"][1]["cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["defaults"] = {} defs["igDebugRenderViewportThumbnail"][1]["funcname"] = "DebugRenderViewportThumbnail" -defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3470" +defs["igDebugRenderViewportThumbnail"][1]["location"] = "imgui_internal:3958" defs["igDebugRenderViewportThumbnail"][1]["namespace"] = "ImGui" defs["igDebugRenderViewportThumbnail"][1]["ov_cimguiname"] = "igDebugRenderViewportThumbnail" defs["igDebugRenderViewportThumbnail"][1]["ret"] = "void" @@ -14104,7 +15173,7 @@ defs["igDebugStartItemPicker"][1]["call_args"] = "()" defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["defaults"] = {} defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" -defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:3450" +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1064" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -14123,13 +15192,35 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:965" +defs["igDebugTextEncoding"][1]["location"] = "imgui:1062" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" defs["igDebugTextEncoding"][1]["signature"] = "(const char*)" defs["igDebugTextEncoding"][1]["stname"] = "" defs["igDebugTextEncoding"]["(const char*)"] = defs["igDebugTextEncoding"][1] +defs["igDebugTextUnformattedWithLocateItem"] = {} +defs["igDebugTextUnformattedWithLocateItem"][1] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["args"] = "(const char* line_begin,const char* line_end)" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][1] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][1]["name"] = "line_begin" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][2] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][2]["name"] = "line_end" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsT"][2]["type"] = "const char*" +defs["igDebugTextUnformattedWithLocateItem"][1]["argsoriginal"] = "(const char* line_begin,const char* line_end)" +defs["igDebugTextUnformattedWithLocateItem"][1]["call_args"] = "(line_begin,line_end)" +defs["igDebugTextUnformattedWithLocateItem"][1]["cimguiname"] = "igDebugTextUnformattedWithLocateItem" +defs["igDebugTextUnformattedWithLocateItem"][1]["defaults"] = {} +defs["igDebugTextUnformattedWithLocateItem"][1]["funcname"] = "DebugTextUnformattedWithLocateItem" +defs["igDebugTextUnformattedWithLocateItem"][1]["location"] = "imgui_internal:3929" +defs["igDebugTextUnformattedWithLocateItem"][1]["namespace"] = "ImGui" +defs["igDebugTextUnformattedWithLocateItem"][1]["ov_cimguiname"] = "igDebugTextUnformattedWithLocateItem" +defs["igDebugTextUnformattedWithLocateItem"][1]["ret"] = "void" +defs["igDebugTextUnformattedWithLocateItem"][1]["signature"] = "(const char*,const char*)" +defs["igDebugTextUnformattedWithLocateItem"][1]["stname"] = "" +defs["igDebugTextUnformattedWithLocateItem"]["(const char*,const char*)"] = defs["igDebugTextUnformattedWithLocateItem"][1] defs["igDestroyContext"] = {} defs["igDestroyContext"][1] = {} defs["igDestroyContext"][1]["args"] = "(ImGuiContext* ctx)" @@ -14143,7 +15234,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:295" +defs["igDestroyContext"][1]["location"] = "imgui:329" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -14162,7 +15253,7 @@ defs["igDestroyPlatformWindow"][1]["call_args"] = "(viewport)" defs["igDestroyPlatformWindow"][1]["cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["defaults"] = {} defs["igDestroyPlatformWindow"][1]["funcname"] = "DestroyPlatformWindow" -defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3000" +defs["igDestroyPlatformWindow"][1]["location"] = "imgui_internal:3417" defs["igDestroyPlatformWindow"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindow"][1]["ov_cimguiname"] = "igDestroyPlatformWindow" defs["igDestroyPlatformWindow"][1]["ret"] = "void" @@ -14178,7 +15269,7 @@ defs["igDestroyPlatformWindows"][1]["call_args"] = "()" defs["igDestroyPlatformWindows"][1]["cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["defaults"] = {} defs["igDestroyPlatformWindows"][1]["funcname"] = "DestroyPlatformWindows" -defs["igDestroyPlatformWindows"][1]["location"] = "imgui:983" +defs["igDestroyPlatformWindows"][1]["location"] = "imgui:1085" defs["igDestroyPlatformWindows"][1]["namespace"] = "ImGui" defs["igDestroyPlatformWindows"][1]["ov_cimguiname"] = "igDestroyPlatformWindows" defs["igDestroyPlatformWindows"][1]["ret"] = "void" @@ -14202,7 +15293,7 @@ defs["igDockBuilderAddNode"][1]["defaults"] = {} defs["igDockBuilderAddNode"][1]["defaults"]["flags"] = "0" defs["igDockBuilderAddNode"][1]["defaults"]["node_id"] = "0" defs["igDockBuilderAddNode"][1]["funcname"] = "DockBuilderAddNode" -defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3230" +defs["igDockBuilderAddNode"][1]["location"] = "imgui_internal:3679" defs["igDockBuilderAddNode"][1]["namespace"] = "ImGui" defs["igDockBuilderAddNode"][1]["ov_cimguiname"] = "igDockBuilderAddNode" defs["igDockBuilderAddNode"][1]["ret"] = "ImGuiID" @@ -14227,7 +15318,7 @@ defs["igDockBuilderCopyDockSpace"][1]["call_args"] = "(src_dockspace_id,dst_dock defs["igDockBuilderCopyDockSpace"][1]["cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["defaults"] = {} defs["igDockBuilderCopyDockSpace"][1]["funcname"] = "DockBuilderCopyDockSpace" -defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3237" +defs["igDockBuilderCopyDockSpace"][1]["location"] = "imgui_internal:3686" defs["igDockBuilderCopyDockSpace"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyDockSpace"][1]["ov_cimguiname"] = "igDockBuilderCopyDockSpace" defs["igDockBuilderCopyDockSpace"][1]["ret"] = "void" @@ -14252,7 +15343,7 @@ defs["igDockBuilderCopyNode"][1]["call_args"] = "(src_node_id,dst_node_id,out_no defs["igDockBuilderCopyNode"][1]["cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["defaults"] = {} defs["igDockBuilderCopyNode"][1]["funcname"] = "DockBuilderCopyNode" -defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3238" +defs["igDockBuilderCopyNode"][1]["location"] = "imgui_internal:3687" defs["igDockBuilderCopyNode"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyNode"][1]["ov_cimguiname"] = "igDockBuilderCopyNode" defs["igDockBuilderCopyNode"][1]["ret"] = "void" @@ -14274,7 +15365,7 @@ defs["igDockBuilderCopyWindowSettings"][1]["call_args"] = "(src_name,dst_name)" defs["igDockBuilderCopyWindowSettings"][1]["cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["defaults"] = {} defs["igDockBuilderCopyWindowSettings"][1]["funcname"] = "DockBuilderCopyWindowSettings" -defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3239" +defs["igDockBuilderCopyWindowSettings"][1]["location"] = "imgui_internal:3688" defs["igDockBuilderCopyWindowSettings"][1]["namespace"] = "ImGui" defs["igDockBuilderCopyWindowSettings"][1]["ov_cimguiname"] = "igDockBuilderCopyWindowSettings" defs["igDockBuilderCopyWindowSettings"][1]["ret"] = "void" @@ -14296,7 +15387,7 @@ defs["igDockBuilderDockWindow"][1]["call_args"] = "(window_name,node_id)" defs["igDockBuilderDockWindow"][1]["cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["defaults"] = {} defs["igDockBuilderDockWindow"][1]["funcname"] = "DockBuilderDockWindow" -defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3227" +defs["igDockBuilderDockWindow"][1]["location"] = "imgui_internal:3676" defs["igDockBuilderDockWindow"][1]["namespace"] = "ImGui" defs["igDockBuilderDockWindow"][1]["ov_cimguiname"] = "igDockBuilderDockWindow" defs["igDockBuilderDockWindow"][1]["ret"] = "void" @@ -14315,7 +15406,7 @@ defs["igDockBuilderFinish"][1]["call_args"] = "(node_id)" defs["igDockBuilderFinish"][1]["cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["defaults"] = {} defs["igDockBuilderFinish"][1]["funcname"] = "DockBuilderFinish" -defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3240" +defs["igDockBuilderFinish"][1]["location"] = "imgui_internal:3689" defs["igDockBuilderFinish"][1]["namespace"] = "ImGui" defs["igDockBuilderFinish"][1]["ov_cimguiname"] = "igDockBuilderFinish" defs["igDockBuilderFinish"][1]["ret"] = "void" @@ -14334,7 +15425,7 @@ defs["igDockBuilderGetCentralNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetCentralNode"][1]["cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["defaults"] = {} defs["igDockBuilderGetCentralNode"][1]["funcname"] = "DockBuilderGetCentralNode" -defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3229" +defs["igDockBuilderGetCentralNode"][1]["location"] = "imgui_internal:3678" defs["igDockBuilderGetCentralNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetCentralNode"][1]["ov_cimguiname"] = "igDockBuilderGetCentralNode" defs["igDockBuilderGetCentralNode"][1]["ret"] = "ImGuiDockNode*" @@ -14353,7 +15444,7 @@ defs["igDockBuilderGetNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderGetNode"][1]["cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["defaults"] = {} defs["igDockBuilderGetNode"][1]["funcname"] = "DockBuilderGetNode" -defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3228" +defs["igDockBuilderGetNode"][1]["location"] = "imgui_internal:3677" defs["igDockBuilderGetNode"][1]["namespace"] = "ImGui" defs["igDockBuilderGetNode"][1]["ov_cimguiname"] = "igDockBuilderGetNode" defs["igDockBuilderGetNode"][1]["ret"] = "ImGuiDockNode*" @@ -14372,7 +15463,7 @@ defs["igDockBuilderRemoveNode"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNode"][1]["cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["defaults"] = {} defs["igDockBuilderRemoveNode"][1]["funcname"] = "DockBuilderRemoveNode" -defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3231" +defs["igDockBuilderRemoveNode"][1]["location"] = "imgui_internal:3680" defs["igDockBuilderRemoveNode"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNode"][1]["ov_cimguiname"] = "igDockBuilderRemoveNode" defs["igDockBuilderRemoveNode"][1]["ret"] = "void" @@ -14391,7 +15482,7 @@ defs["igDockBuilderRemoveNodeChildNodes"][1]["call_args"] = "(node_id)" defs["igDockBuilderRemoveNodeChildNodes"][1]["cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeChildNodes"][1]["funcname"] = "DockBuilderRemoveNodeChildNodes" -defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3233" +defs["igDockBuilderRemoveNodeChildNodes"][1]["location"] = "imgui_internal:3682" defs["igDockBuilderRemoveNodeChildNodes"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeChildNodes"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeChildNodes" defs["igDockBuilderRemoveNodeChildNodes"][1]["ret"] = "void" @@ -14414,7 +15505,7 @@ defs["igDockBuilderRemoveNodeDockedWindows"][1]["cimguiname"] = "igDockBuilderRe defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"] = {} defs["igDockBuilderRemoveNodeDockedWindows"][1]["defaults"]["clear_settings_refs"] = "true" defs["igDockBuilderRemoveNodeDockedWindows"][1]["funcname"] = "DockBuilderRemoveNodeDockedWindows" -defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3232" +defs["igDockBuilderRemoveNodeDockedWindows"][1]["location"] = "imgui_internal:3681" defs["igDockBuilderRemoveNodeDockedWindows"][1]["namespace"] = "ImGui" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ov_cimguiname"] = "igDockBuilderRemoveNodeDockedWindows" defs["igDockBuilderRemoveNodeDockedWindows"][1]["ret"] = "void" @@ -14436,7 +15527,7 @@ defs["igDockBuilderSetNodePos"][1]["call_args"] = "(node_id,pos)" defs["igDockBuilderSetNodePos"][1]["cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["defaults"] = {} defs["igDockBuilderSetNodePos"][1]["funcname"] = "DockBuilderSetNodePos" -defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3234" +defs["igDockBuilderSetNodePos"][1]["location"] = "imgui_internal:3683" defs["igDockBuilderSetNodePos"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodePos"][1]["ov_cimguiname"] = "igDockBuilderSetNodePos" defs["igDockBuilderSetNodePos"][1]["ret"] = "void" @@ -14458,7 +15549,7 @@ defs["igDockBuilderSetNodeSize"][1]["call_args"] = "(node_id,size)" defs["igDockBuilderSetNodeSize"][1]["cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["defaults"] = {} defs["igDockBuilderSetNodeSize"][1]["funcname"] = "DockBuilderSetNodeSize" -defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3235" +defs["igDockBuilderSetNodeSize"][1]["location"] = "imgui_internal:3684" defs["igDockBuilderSetNodeSize"][1]["namespace"] = "ImGui" defs["igDockBuilderSetNodeSize"][1]["ov_cimguiname"] = "igDockBuilderSetNodeSize" defs["igDockBuilderSetNodeSize"][1]["ret"] = "void" @@ -14489,7 +15580,7 @@ defs["igDockBuilderSplitNode"][1]["call_args"] = "(node_id,split_dir,size_ratio_ defs["igDockBuilderSplitNode"][1]["cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["defaults"] = {} defs["igDockBuilderSplitNode"][1]["funcname"] = "DockBuilderSplitNode" -defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3236" +defs["igDockBuilderSplitNode"][1]["location"] = "imgui_internal:3685" defs["igDockBuilderSplitNode"][1]["namespace"] = "ImGui" defs["igDockBuilderSplitNode"][1]["ov_cimguiname"] = "igDockBuilderSplitNode" defs["igDockBuilderSplitNode"][1]["ret"] = "ImGuiID" @@ -14526,7 +15617,7 @@ defs["igDockContextCalcDropPosForDocking"][1]["call_args"] = "(target,target_nod defs["igDockContextCalcDropPosForDocking"][1]["cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["defaults"] = {} defs["igDockContextCalcDropPosForDocking"][1]["funcname"] = "DockContextCalcDropPosForDocking" -defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3203" +defs["igDockContextCalcDropPosForDocking"][1]["location"] = "imgui_internal:3651" defs["igDockContextCalcDropPosForDocking"][1]["namespace"] = "ImGui" defs["igDockContextCalcDropPosForDocking"][1]["ov_cimguiname"] = "igDockContextCalcDropPosForDocking" defs["igDockContextCalcDropPosForDocking"][1]["ret"] = "bool" @@ -14551,7 +15642,7 @@ defs["igDockContextClearNodes"][1]["call_args"] = "(ctx,root_id,clear_settings_r defs["igDockContextClearNodes"][1]["cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["defaults"] = {} defs["igDockContextClearNodes"][1]["funcname"] = "DockContextClearNodes" -defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3194" +defs["igDockContextClearNodes"][1]["location"] = "imgui_internal:3640" defs["igDockContextClearNodes"][1]["namespace"] = "ImGui" defs["igDockContextClearNodes"][1]["ov_cimguiname"] = "igDockContextClearNodes" defs["igDockContextClearNodes"][1]["ret"] = "void" @@ -14570,7 +15661,7 @@ defs["igDockContextEndFrame"][1]["call_args"] = "(ctx)" defs["igDockContextEndFrame"][1]["cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["defaults"] = {} defs["igDockContextEndFrame"][1]["funcname"] = "DockContextEndFrame" -defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3198" +defs["igDockContextEndFrame"][1]["location"] = "imgui_internal:3644" defs["igDockContextEndFrame"][1]["namespace"] = "ImGui" defs["igDockContextEndFrame"][1]["ov_cimguiname"] = "igDockContextEndFrame" defs["igDockContextEndFrame"][1]["ret"] = "void" @@ -14592,7 +15683,7 @@ defs["igDockContextFindNodeByID"][1]["call_args"] = "(ctx,id)" defs["igDockContextFindNodeByID"][1]["cimguiname"] = "igDockContextFindNodeByID" defs["igDockContextFindNodeByID"][1]["defaults"] = {} defs["igDockContextFindNodeByID"][1]["funcname"] = "DockContextFindNodeByID" -defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3204" +defs["igDockContextFindNodeByID"][1]["location"] = "imgui_internal:3652" defs["igDockContextFindNodeByID"][1]["namespace"] = "ImGui" defs["igDockContextFindNodeByID"][1]["ov_cimguiname"] = "igDockContextFindNodeByID" defs["igDockContextFindNodeByID"][1]["ret"] = "ImGuiDockNode*" @@ -14611,7 +15702,7 @@ defs["igDockContextGenNodeID"][1]["call_args"] = "(ctx)" defs["igDockContextGenNodeID"][1]["cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["defaults"] = {} defs["igDockContextGenNodeID"][1]["funcname"] = "DockContextGenNodeID" -defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3199" +defs["igDockContextGenNodeID"][1]["location"] = "imgui_internal:3645" defs["igDockContextGenNodeID"][1]["namespace"] = "ImGui" defs["igDockContextGenNodeID"][1]["ov_cimguiname"] = "igDockContextGenNodeID" defs["igDockContextGenNodeID"][1]["ret"] = "ImGuiID" @@ -14630,7 +15721,7 @@ defs["igDockContextInitialize"][1]["call_args"] = "(ctx)" defs["igDockContextInitialize"][1]["cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["defaults"] = {} defs["igDockContextInitialize"][1]["funcname"] = "DockContextInitialize" -defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3192" +defs["igDockContextInitialize"][1]["location"] = "imgui_internal:3638" defs["igDockContextInitialize"][1]["namespace"] = "ImGui" defs["igDockContextInitialize"][1]["ov_cimguiname"] = "igDockContextInitialize" defs["igDockContextInitialize"][1]["ret"] = "void" @@ -14649,7 +15740,7 @@ defs["igDockContextNewFrameUpdateDocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateDocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateDocking"][1]["funcname"] = "DockContextNewFrameUpdateDocking" -defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3197" +defs["igDockContextNewFrameUpdateDocking"][1]["location"] = "imgui_internal:3643" defs["igDockContextNewFrameUpdateDocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateDocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateDocking" defs["igDockContextNewFrameUpdateDocking"][1]["ret"] = "void" @@ -14668,13 +15759,61 @@ defs["igDockContextNewFrameUpdateUndocking"][1]["call_args"] = "(ctx)" defs["igDockContextNewFrameUpdateUndocking"][1]["cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["defaults"] = {} defs["igDockContextNewFrameUpdateUndocking"][1]["funcname"] = "DockContextNewFrameUpdateUndocking" -defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3196" +defs["igDockContextNewFrameUpdateUndocking"][1]["location"] = "imgui_internal:3642" defs["igDockContextNewFrameUpdateUndocking"][1]["namespace"] = "ImGui" defs["igDockContextNewFrameUpdateUndocking"][1]["ov_cimguiname"] = "igDockContextNewFrameUpdateUndocking" defs["igDockContextNewFrameUpdateUndocking"][1]["ret"] = "void" defs["igDockContextNewFrameUpdateUndocking"][1]["signature"] = "(ImGuiContext*)" defs["igDockContextNewFrameUpdateUndocking"][1]["stname"] = "" defs["igDockContextNewFrameUpdateUndocking"]["(ImGuiContext*)"] = defs["igDockContextNewFrameUpdateUndocking"][1] +defs["igDockContextProcessUndockNode"] = {} +defs["igDockContextProcessUndockNode"][1] = {} +defs["igDockContextProcessUndockNode"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextProcessUndockNode"][1]["argsT"] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][1] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextProcessUndockNode"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextProcessUndockNode"][1]["argsT"][2] = {} +defs["igDockContextProcessUndockNode"][1]["argsT"][2]["name"] = "node" +defs["igDockContextProcessUndockNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockContextProcessUndockNode"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node)" +defs["igDockContextProcessUndockNode"][1]["call_args"] = "(ctx,node)" +defs["igDockContextProcessUndockNode"][1]["cimguiname"] = "igDockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["defaults"] = {} +defs["igDockContextProcessUndockNode"][1]["funcname"] = "DockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["location"] = "imgui_internal:3650" +defs["igDockContextProcessUndockNode"][1]["namespace"] = "ImGui" +defs["igDockContextProcessUndockNode"][1]["ov_cimguiname"] = "igDockContextProcessUndockNode" +defs["igDockContextProcessUndockNode"][1]["ret"] = "void" +defs["igDockContextProcessUndockNode"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*)" +defs["igDockContextProcessUndockNode"][1]["stname"] = "" +defs["igDockContextProcessUndockNode"]["(ImGuiContext*,ImGuiDockNode*)"] = defs["igDockContextProcessUndockNode"][1] +defs["igDockContextProcessUndockWindow"] = {} +defs["igDockContextProcessUndockWindow"][1] = {} +defs["igDockContextProcessUndockWindow"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref)" +defs["igDockContextProcessUndockWindow"][1]["argsT"] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][1] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][1]["name"] = "ctx" +defs["igDockContextProcessUndockWindow"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockContextProcessUndockWindow"][1]["argsT"][2] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][2]["name"] = "window" +defs["igDockContextProcessUndockWindow"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igDockContextProcessUndockWindow"][1]["argsT"][3] = {} +defs["igDockContextProcessUndockWindow"][1]["argsT"][3]["name"] = "clear_persistent_docking_ref" +defs["igDockContextProcessUndockWindow"][1]["argsT"][3]["type"] = "bool" +defs["igDockContextProcessUndockWindow"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiWindow* window,bool clear_persistent_docking_ref=true)" +defs["igDockContextProcessUndockWindow"][1]["call_args"] = "(ctx,window,clear_persistent_docking_ref)" +defs["igDockContextProcessUndockWindow"][1]["cimguiname"] = "igDockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["defaults"] = {} +defs["igDockContextProcessUndockWindow"][1]["defaults"]["clear_persistent_docking_ref"] = "true" +defs["igDockContextProcessUndockWindow"][1]["funcname"] = "DockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["location"] = "imgui_internal:3649" +defs["igDockContextProcessUndockWindow"][1]["namespace"] = "ImGui" +defs["igDockContextProcessUndockWindow"][1]["ov_cimguiname"] = "igDockContextProcessUndockWindow" +defs["igDockContextProcessUndockWindow"][1]["ret"] = "void" +defs["igDockContextProcessUndockWindow"][1]["signature"] = "(ImGuiContext*,ImGuiWindow*,bool)" +defs["igDockContextProcessUndockWindow"][1]["stname"] = "" +defs["igDockContextProcessUndockWindow"]["(ImGuiContext*,ImGuiWindow*,bool)"] = defs["igDockContextProcessUndockWindow"][1] defs["igDockContextQueueDock"] = {} defs["igDockContextQueueDock"][1] = {} defs["igDockContextQueueDock"][1]["args"] = "(ImGuiContext* ctx,ImGuiWindow* target,ImGuiDockNode* target_node,ImGuiWindow* payload,ImGuiDir split_dir,float split_ratio,bool split_outer)" @@ -14705,7 +15844,7 @@ defs["igDockContextQueueDock"][1]["call_args"] = "(ctx,target,target_node,payloa defs["igDockContextQueueDock"][1]["cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["defaults"] = {} defs["igDockContextQueueDock"][1]["funcname"] = "DockContextQueueDock" -defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3200" +defs["igDockContextQueueDock"][1]["location"] = "imgui_internal:3646" defs["igDockContextQueueDock"][1]["namespace"] = "ImGui" defs["igDockContextQueueDock"][1]["ov_cimguiname"] = "igDockContextQueueDock" defs["igDockContextQueueDock"][1]["ret"] = "void" @@ -14727,7 +15866,7 @@ defs["igDockContextQueueUndockNode"][1]["call_args"] = "(ctx,node)" defs["igDockContextQueueUndockNode"][1]["cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["defaults"] = {} defs["igDockContextQueueUndockNode"][1]["funcname"] = "DockContextQueueUndockNode" -defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3202" +defs["igDockContextQueueUndockNode"][1]["location"] = "imgui_internal:3648" defs["igDockContextQueueUndockNode"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockNode"][1]["ov_cimguiname"] = "igDockContextQueueUndockNode" defs["igDockContextQueueUndockNode"][1]["ret"] = "void" @@ -14749,7 +15888,7 @@ defs["igDockContextQueueUndockWindow"][1]["call_args"] = "(ctx,window)" defs["igDockContextQueueUndockWindow"][1]["cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["defaults"] = {} defs["igDockContextQueueUndockWindow"][1]["funcname"] = "DockContextQueueUndockWindow" -defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3201" +defs["igDockContextQueueUndockWindow"][1]["location"] = "imgui_internal:3647" defs["igDockContextQueueUndockWindow"][1]["namespace"] = "ImGui" defs["igDockContextQueueUndockWindow"][1]["ov_cimguiname"] = "igDockContextQueueUndockWindow" defs["igDockContextQueueUndockWindow"][1]["ret"] = "void" @@ -14768,7 +15907,7 @@ defs["igDockContextRebuildNodes"][1]["call_args"] = "(ctx)" defs["igDockContextRebuildNodes"][1]["cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["defaults"] = {} defs["igDockContextRebuildNodes"][1]["funcname"] = "DockContextRebuildNodes" -defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3195" +defs["igDockContextRebuildNodes"][1]["location"] = "imgui_internal:3641" defs["igDockContextRebuildNodes"][1]["namespace"] = "ImGui" defs["igDockContextRebuildNodes"][1]["ov_cimguiname"] = "igDockContextRebuildNodes" defs["igDockContextRebuildNodes"][1]["ret"] = "void" @@ -14787,7 +15926,7 @@ defs["igDockContextShutdown"][1]["call_args"] = "(ctx)" defs["igDockContextShutdown"][1]["cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["defaults"] = {} defs["igDockContextShutdown"][1]["funcname"] = "DockContextShutdown" -defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3193" +defs["igDockContextShutdown"][1]["location"] = "imgui_internal:3639" defs["igDockContextShutdown"][1]["namespace"] = "ImGui" defs["igDockContextShutdown"][1]["ov_cimguiname"] = "igDockContextShutdown" defs["igDockContextShutdown"][1]["ret"] = "void" @@ -14806,7 +15945,7 @@ defs["igDockNodeBeginAmendTabBar"][1]["call_args"] = "(node)" defs["igDockNodeBeginAmendTabBar"][1]["cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["defaults"] = {} defs["igDockNodeBeginAmendTabBar"][1]["funcname"] = "DockNodeBeginAmendTabBar" -defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3205" +defs["igDockNodeBeginAmendTabBar"][1]["location"] = "imgui_internal:3654" defs["igDockNodeBeginAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeBeginAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeBeginAmendTabBar" defs["igDockNodeBeginAmendTabBar"][1]["ret"] = "bool" @@ -14822,7 +15961,7 @@ defs["igDockNodeEndAmendTabBar"][1]["call_args"] = "()" defs["igDockNodeEndAmendTabBar"][1]["cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["defaults"] = {} defs["igDockNodeEndAmendTabBar"][1]["funcname"] = "DockNodeEndAmendTabBar" -defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3206" +defs["igDockNodeEndAmendTabBar"][1]["location"] = "imgui_internal:3655" defs["igDockNodeEndAmendTabBar"][1]["namespace"] = "ImGui" defs["igDockNodeEndAmendTabBar"][1]["ov_cimguiname"] = "igDockNodeEndAmendTabBar" defs["igDockNodeEndAmendTabBar"][1]["ret"] = "void" @@ -14841,7 +15980,7 @@ defs["igDockNodeGetDepth"][1]["call_args"] = "(node)" defs["igDockNodeGetDepth"][1]["cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["defaults"] = {} defs["igDockNodeGetDepth"][1]["funcname"] = "DockNodeGetDepth" -defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3209" +defs["igDockNodeGetDepth"][1]["location"] = "imgui_internal:3658" defs["igDockNodeGetDepth"][1]["namespace"] = "ImGui" defs["igDockNodeGetDepth"][1]["ov_cimguiname"] = "igDockNodeGetDepth" defs["igDockNodeGetDepth"][1]["ret"] = "int" @@ -14860,7 +15999,7 @@ defs["igDockNodeGetRootNode"][1]["call_args"] = "(node)" defs["igDockNodeGetRootNode"][1]["cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["defaults"] = {} defs["igDockNodeGetRootNode"][1]["funcname"] = "DockNodeGetRootNode" -defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3207" +defs["igDockNodeGetRootNode"][1]["location"] = "imgui_internal:3656" defs["igDockNodeGetRootNode"][1]["namespace"] = "ImGui" defs["igDockNodeGetRootNode"][1]["ov_cimguiname"] = "igDockNodeGetRootNode" defs["igDockNodeGetRootNode"][1]["ret"] = "ImGuiDockNode*" @@ -14879,7 +16018,7 @@ defs["igDockNodeGetWindowMenuButtonId"][1]["call_args"] = "(node)" defs["igDockNodeGetWindowMenuButtonId"][1]["cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["defaults"] = {} defs["igDockNodeGetWindowMenuButtonId"][1]["funcname"] = "DockNodeGetWindowMenuButtonId" -defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3210" +defs["igDockNodeGetWindowMenuButtonId"][1]["location"] = "imgui_internal:3659" defs["igDockNodeGetWindowMenuButtonId"][1]["namespace"] = "ImGui" defs["igDockNodeGetWindowMenuButtonId"][1]["ov_cimguiname"] = "igDockNodeGetWindowMenuButtonId" defs["igDockNodeGetWindowMenuButtonId"][1]["ret"] = "ImGuiID" @@ -14901,19 +16040,44 @@ defs["igDockNodeIsInHierarchyOf"][1]["call_args"] = "(node,parent)" defs["igDockNodeIsInHierarchyOf"][1]["cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["defaults"] = {} defs["igDockNodeIsInHierarchyOf"][1]["funcname"] = "DockNodeIsInHierarchyOf" -defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3208" +defs["igDockNodeIsInHierarchyOf"][1]["location"] = "imgui_internal:3657" defs["igDockNodeIsInHierarchyOf"][1]["namespace"] = "ImGui" defs["igDockNodeIsInHierarchyOf"][1]["ov_cimguiname"] = "igDockNodeIsInHierarchyOf" defs["igDockNodeIsInHierarchyOf"][1]["ret"] = "bool" defs["igDockNodeIsInHierarchyOf"][1]["signature"] = "(ImGuiDockNode*,ImGuiDockNode*)" defs["igDockNodeIsInHierarchyOf"][1]["stname"] = "" defs["igDockNodeIsInHierarchyOf"]["(ImGuiDockNode*,ImGuiDockNode*)"] = defs["igDockNodeIsInHierarchyOf"][1] +defs["igDockNodeWindowMenuHandler_Default"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["args"] = "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1]["name"] = "ctx" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2]["name"] = "node" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][2]["type"] = "ImGuiDockNode*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3]["name"] = "tab_bar" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsT"][3]["type"] = "ImGuiTabBar*" +defs["igDockNodeWindowMenuHandler_Default"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["call_args"] = "(ctx,node,tab_bar)" +defs["igDockNodeWindowMenuHandler_Default"][1]["cimguiname"] = "igDockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["defaults"] = {} +defs["igDockNodeWindowMenuHandler_Default"][1]["funcname"] = "DockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["location"] = "imgui_internal:3653" +defs["igDockNodeWindowMenuHandler_Default"][1]["namespace"] = "ImGui" +defs["igDockNodeWindowMenuHandler_Default"][1]["ov_cimguiname"] = "igDockNodeWindowMenuHandler_Default" +defs["igDockNodeWindowMenuHandler_Default"][1]["ret"] = "void" +defs["igDockNodeWindowMenuHandler_Default"][1]["signature"] = "(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)" +defs["igDockNodeWindowMenuHandler_Default"][1]["stname"] = "" +defs["igDockNodeWindowMenuHandler_Default"]["(ImGuiContext*,ImGuiDockNode*,ImGuiTabBar*)"] = defs["igDockNodeWindowMenuHandler_Default"][1] defs["igDockSpace"] = {} defs["igDockSpace"][1] = {} -defs["igDockSpace"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" +defs["igDockSpace"][1]["args"] = "(ImGuiID dockspace_id,const ImVec2 size,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" defs["igDockSpace"][1]["argsT"] = {} defs["igDockSpace"][1]["argsT"][1] = {} -defs["igDockSpace"][1]["argsT"][1]["name"] = "id" +defs["igDockSpace"][1]["argsT"][1]["name"] = "dockspace_id" defs["igDockSpace"][1]["argsT"][1]["type"] = "ImGuiID" defs["igDockSpace"][1]["argsT"][2] = {} defs["igDockSpace"][1]["argsT"][2]["name"] = "size" @@ -14924,15 +16088,15 @@ defs["igDockSpace"][1]["argsT"][3]["type"] = "ImGuiDockNodeFlags" defs["igDockSpace"][1]["argsT"][4] = {} defs["igDockSpace"][1]["argsT"][4]["name"] = "window_class" defs["igDockSpace"][1]["argsT"][4]["type"] = "const ImGuiWindowClass*" -defs["igDockSpace"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" -defs["igDockSpace"][1]["call_args"] = "(id,size,flags,window_class)" +defs["igDockSpace"][1]["argsoriginal"] = "(ImGuiID dockspace_id,const ImVec2& size=ImVec2(0,0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" +defs["igDockSpace"][1]["call_args"] = "(dockspace_id,size,flags,window_class)" defs["igDockSpace"][1]["cimguiname"] = "igDockSpace" defs["igDockSpace"][1]["defaults"] = {} defs["igDockSpace"][1]["defaults"]["flags"] = "0" defs["igDockSpace"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igDockSpace"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpace"][1]["funcname"] = "DockSpace" -defs["igDockSpace"][1]["location"] = "imgui:815" +defs["igDockSpace"][1]["location"] = "imgui:885" defs["igDockSpace"][1]["namespace"] = "ImGui" defs["igDockSpace"][1]["ov_cimguiname"] = "igDockSpace" defs["igDockSpace"][1]["ret"] = "ImGuiID" @@ -14941,32 +16105,36 @@ defs["igDockSpace"][1]["stname"] = "" defs["igDockSpace"]["(ImGuiID,const ImVec2,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpace"][1] defs["igDockSpaceOverViewport"] = {} defs["igDockSpaceOverViewport"][1] = {} -defs["igDockSpaceOverViewport"][1]["args"] = "(const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" +defs["igDockSpaceOverViewport"][1]["args"] = "(ImGuiID dockspace_id,const ImGuiViewport* viewport,ImGuiDockNodeFlags flags,const ImGuiWindowClass* window_class)" defs["igDockSpaceOverViewport"][1]["argsT"] = {} defs["igDockSpaceOverViewport"][1]["argsT"][1] = {} -defs["igDockSpaceOverViewport"][1]["argsT"][1]["name"] = "viewport" -defs["igDockSpaceOverViewport"][1]["argsT"][1]["type"] = "const ImGuiViewport*" +defs["igDockSpaceOverViewport"][1]["argsT"][1]["name"] = "dockspace_id" +defs["igDockSpaceOverViewport"][1]["argsT"][1]["type"] = "ImGuiID" defs["igDockSpaceOverViewport"][1]["argsT"][2] = {} -defs["igDockSpaceOverViewport"][1]["argsT"][2]["name"] = "flags" -defs["igDockSpaceOverViewport"][1]["argsT"][2]["type"] = "ImGuiDockNodeFlags" +defs["igDockSpaceOverViewport"][1]["argsT"][2]["name"] = "viewport" +defs["igDockSpaceOverViewport"][1]["argsT"][2]["type"] = "const ImGuiViewport*" defs["igDockSpaceOverViewport"][1]["argsT"][3] = {} -defs["igDockSpaceOverViewport"][1]["argsT"][3]["name"] = "window_class" -defs["igDockSpaceOverViewport"][1]["argsT"][3]["type"] = "const ImGuiWindowClass*" -defs["igDockSpaceOverViewport"][1]["argsoriginal"] = "(const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" -defs["igDockSpaceOverViewport"][1]["call_args"] = "(viewport,flags,window_class)" +defs["igDockSpaceOverViewport"][1]["argsT"][3]["name"] = "flags" +defs["igDockSpaceOverViewport"][1]["argsT"][3]["type"] = "ImGuiDockNodeFlags" +defs["igDockSpaceOverViewport"][1]["argsT"][4] = {} +defs["igDockSpaceOverViewport"][1]["argsT"][4]["name"] = "window_class" +defs["igDockSpaceOverViewport"][1]["argsT"][4]["type"] = "const ImGuiWindowClass*" +defs["igDockSpaceOverViewport"][1]["argsoriginal"] = "(ImGuiID dockspace_id=0,const ImGuiViewport* viewport=((void*)0),ImGuiDockNodeFlags flags=0,const ImGuiWindowClass* window_class=((void*)0))" +defs["igDockSpaceOverViewport"][1]["call_args"] = "(dockspace_id,viewport,flags,window_class)" defs["igDockSpaceOverViewport"][1]["cimguiname"] = "igDockSpaceOverViewport" defs["igDockSpaceOverViewport"][1]["defaults"] = {} +defs["igDockSpaceOverViewport"][1]["defaults"]["dockspace_id"] = "0" defs["igDockSpaceOverViewport"][1]["defaults"]["flags"] = "0" defs["igDockSpaceOverViewport"][1]["defaults"]["viewport"] = "NULL" defs["igDockSpaceOverViewport"][1]["defaults"]["window_class"] = "NULL" defs["igDockSpaceOverViewport"][1]["funcname"] = "DockSpaceOverViewport" -defs["igDockSpaceOverViewport"][1]["location"] = "imgui:816" +defs["igDockSpaceOverViewport"][1]["location"] = "imgui:886" defs["igDockSpaceOverViewport"][1]["namespace"] = "ImGui" defs["igDockSpaceOverViewport"][1]["ov_cimguiname"] = "igDockSpaceOverViewport" defs["igDockSpaceOverViewport"][1]["ret"] = "ImGuiID" -defs["igDockSpaceOverViewport"][1]["signature"] = "(const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)" +defs["igDockSpaceOverViewport"][1]["signature"] = "(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)" defs["igDockSpaceOverViewport"][1]["stname"] = "" -defs["igDockSpaceOverViewport"]["(const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpaceOverViewport"][1] +defs["igDockSpaceOverViewport"]["(ImGuiID,const ImGuiViewport*,ImGuiDockNodeFlags,const ImGuiWindowClass*)"] = defs["igDockSpaceOverViewport"][1] defs["igDragBehavior"] = {} defs["igDragBehavior"][1] = {} defs["igDragBehavior"][1]["args"] = "(ImGuiID id,ImGuiDataType data_type,void* p_v,float v_speed,const void* p_min,const void* p_max,const char* format,ImGuiSliderFlags flags)" @@ -15000,7 +16168,7 @@ defs["igDragBehavior"][1]["call_args"] = "(id,data_type,p_v,v_speed,p_min,p_max, defs["igDragBehavior"][1]["cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["defaults"] = {} defs["igDragBehavior"][1]["funcname"] = "DragBehavior" -defs["igDragBehavior"][1]["location"] = "imgui_internal:3388" +defs["igDragBehavior"][1]["location"] = "imgui_internal:3865" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -15042,7 +16210,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:547" +defs["igDragFloat"][1]["location"] = "imgui:596" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -15084,7 +16252,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:548" +defs["igDragFloat2"][1]["location"] = "imgui:597" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -15126,7 +16294,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:549" +defs["igDragFloat3"][1]["location"] = "imgui:598" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -15168,7 +16336,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:550" +defs["igDragFloat4"][1]["location"] = "imgui:599" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -15217,7 +16385,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:551" +defs["igDragFloatRange2"][1]["location"] = "imgui:600" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -15259,7 +16427,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:552" +defs["igDragInt"][1]["location"] = "imgui:601" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -15301,7 +16469,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:553" +defs["igDragInt2"][1]["location"] = "imgui:602" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -15343,7 +16511,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:554" +defs["igDragInt3"][1]["location"] = "imgui:603" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -15385,7 +16553,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:555" +defs["igDragInt4"][1]["location"] = "imgui:604" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -15434,7 +16602,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:556" +defs["igDragIntRange2"][1]["location"] = "imgui:605" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -15479,7 +16647,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:557" +defs["igDragScalar"][1]["location"] = "imgui:606" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -15527,7 +16695,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:558" +defs["igDragScalarN"][1]["location"] = "imgui:607" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -15546,7 +16714,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:451" +defs["igDummy"][1]["location"] = "imgui:503" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -15562,13 +16730,35 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:337" +defs["igEnd"][1]["location"] = "imgui:372" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" defs["igEnd"][1]["signature"] = "()" defs["igEnd"][1]["stname"] = "" defs["igEnd"]["()"] = defs["igEnd"][1] +defs["igEndBoxSelect"] = {} +defs["igEndBoxSelect"][1] = {} +defs["igEndBoxSelect"][1]["args"] = "(const ImRect scope_rect,ImGuiMultiSelectFlags ms_flags)" +defs["igEndBoxSelect"][1]["argsT"] = {} +defs["igEndBoxSelect"][1]["argsT"][1] = {} +defs["igEndBoxSelect"][1]["argsT"][1]["name"] = "scope_rect" +defs["igEndBoxSelect"][1]["argsT"][1]["type"] = "const ImRect" +defs["igEndBoxSelect"][1]["argsT"][2] = {} +defs["igEndBoxSelect"][1]["argsT"][2]["name"] = "ms_flags" +defs["igEndBoxSelect"][1]["argsT"][2]["type"] = "ImGuiMultiSelectFlags" +defs["igEndBoxSelect"][1]["argsoriginal"] = "(const ImRect& scope_rect,ImGuiMultiSelectFlags ms_flags)" +defs["igEndBoxSelect"][1]["call_args"] = "(scope_rect,ms_flags)" +defs["igEndBoxSelect"][1]["cimguiname"] = "igEndBoxSelect" +defs["igEndBoxSelect"][1]["defaults"] = {} +defs["igEndBoxSelect"][1]["funcname"] = "EndBoxSelect" +defs["igEndBoxSelect"][1]["location"] = "imgui_internal:3718" +defs["igEndBoxSelect"][1]["namespace"] = "ImGui" +defs["igEndBoxSelect"][1]["ov_cimguiname"] = "igEndBoxSelect" +defs["igEndBoxSelect"][1]["ret"] = "void" +defs["igEndBoxSelect"][1]["signature"] = "(const ImRect,ImGuiMultiSelectFlags)" +defs["igEndBoxSelect"][1]["stname"] = "" +defs["igEndBoxSelect"]["(const ImRect,ImGuiMultiSelectFlags)"] = defs["igEndBoxSelect"][1] defs["igEndChild"] = {} defs["igEndChild"][1] = {} defs["igEndChild"][1]["args"] = "()" @@ -15578,29 +16768,13 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:349" +defs["igEndChild"][1]["location"] = "imgui:394" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" defs["igEndChild"][1]["signature"] = "()" defs["igEndChild"][1]["stname"] = "" defs["igEndChild"]["()"] = defs["igEndChild"][1] -defs["igEndChildFrame"] = {} -defs["igEndChildFrame"][1] = {} -defs["igEndChildFrame"][1]["args"] = "()" -defs["igEndChildFrame"][1]["argsT"] = {} -defs["igEndChildFrame"][1]["argsoriginal"] = "()" -defs["igEndChildFrame"][1]["call_args"] = "()" -defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["defaults"] = {} -defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui:906" -defs["igEndChildFrame"][1]["namespace"] = "ImGui" -defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["ret"] = "void" -defs["igEndChildFrame"][1]["signature"] = "()" -defs["igEndChildFrame"][1]["stname"] = "" -defs["igEndChildFrame"]["()"] = defs["igEndChildFrame"][1] defs["igEndColumns"] = {} defs["igEndColumns"][1] = {} defs["igEndColumns"][1]["args"] = "()" @@ -15610,7 +16784,7 @@ defs["igEndColumns"][1]["call_args"] = "()" defs["igEndColumns"][1]["cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["defaults"] = {} defs["igEndColumns"][1]["funcname"] = "EndColumns" -defs["igEndColumns"][1]["location"] = "imgui_internal:3264" +defs["igEndColumns"][1]["location"] = "imgui_internal:3731" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -15626,7 +16800,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:530" +defs["igEndCombo"][1]["location"] = "imgui:579" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -15642,7 +16816,7 @@ defs["igEndComboPreview"][1]["call_args"] = "()" defs["igEndComboPreview"][1]["cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["defaults"] = {} defs["igEndComboPreview"][1]["funcname"] = "EndComboPreview" -defs["igEndComboPreview"][1]["location"] = "imgui_internal:3097" +defs["igEndComboPreview"][1]["location"] = "imgui_internal:3524" defs["igEndComboPreview"][1]["namespace"] = "ImGui" defs["igEndComboPreview"][1]["ov_cimguiname"] = "igEndComboPreview" defs["igEndComboPreview"][1]["ret"] = "void" @@ -15658,13 +16832,29 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:850" +defs["igEndDisabled"][1]["location"] = "imgui:921" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" defs["igEndDisabled"][1]["signature"] = "()" defs["igEndDisabled"][1]["stname"] = "" defs["igEndDisabled"]["()"] = defs["igEndDisabled"][1] +defs["igEndDisabledOverrideReenable"] = {} +defs["igEndDisabledOverrideReenable"][1] = {} +defs["igEndDisabledOverrideReenable"][1]["args"] = "()" +defs["igEndDisabledOverrideReenable"][1]["argsT"] = {} +defs["igEndDisabledOverrideReenable"][1]["argsoriginal"] = "()" +defs["igEndDisabledOverrideReenable"][1]["call_args"] = "()" +defs["igEndDisabledOverrideReenable"][1]["cimguiname"] = "igEndDisabledOverrideReenable" +defs["igEndDisabledOverrideReenable"][1]["defaults"] = {} +defs["igEndDisabledOverrideReenable"][1]["funcname"] = "EndDisabledOverrideReenable" +defs["igEndDisabledOverrideReenable"][1]["location"] = "imgui_internal:3487" +defs["igEndDisabledOverrideReenable"][1]["namespace"] = "ImGui" +defs["igEndDisabledOverrideReenable"][1]["ov_cimguiname"] = "igEndDisabledOverrideReenable" +defs["igEndDisabledOverrideReenable"][1]["ret"] = "void" +defs["igEndDisabledOverrideReenable"][1]["signature"] = "()" +defs["igEndDisabledOverrideReenable"][1]["stname"] = "" +defs["igEndDisabledOverrideReenable"]["()"] = defs["igEndDisabledOverrideReenable"][1] defs["igEndDragDropSource"] = {} defs["igEndDragDropSource"][1] = {} defs["igEndDragDropSource"][1]["args"] = "()" @@ -15674,7 +16864,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui:839" +defs["igEndDragDropSource"][1]["location"] = "imgui:909" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -15690,7 +16880,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui:842" +defs["igEndDragDropTarget"][1]["location"] = "imgui:912" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -15706,7 +16896,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:303" +defs["igEndFrame"][1]["location"] = "imgui:338" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -15722,7 +16912,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:455" +defs["igEndGroup"][1]["location"] = "imgui:507" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -15738,7 +16928,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:642" +defs["igEndListBox"][1]["location"] = "imgui:704" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -15754,7 +16944,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:668" +defs["igEndMainMenuBar"][1]["location"] = "imgui:730" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -15770,7 +16960,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:670" +defs["igEndMenu"][1]["location"] = "imgui:732" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -15786,13 +16976,29 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:666" +defs["igEndMenuBar"][1]["location"] = "imgui:728" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" defs["igEndMenuBar"][1]["signature"] = "()" defs["igEndMenuBar"][1]["stname"] = "" defs["igEndMenuBar"]["()"] = defs["igEndMenuBar"][1] +defs["igEndMultiSelect"] = {} +defs["igEndMultiSelect"][1] = {} +defs["igEndMultiSelect"][1]["args"] = "()" +defs["igEndMultiSelect"][1]["argsT"] = {} +defs["igEndMultiSelect"][1]["argsoriginal"] = "()" +defs["igEndMultiSelect"][1]["call_args"] = "()" +defs["igEndMultiSelect"][1]["cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["defaults"] = {} +defs["igEndMultiSelect"][1]["funcname"] = "EndMultiSelect" +defs["igEndMultiSelect"][1]["location"] = "imgui:693" +defs["igEndMultiSelect"][1]["namespace"] = "ImGui" +defs["igEndMultiSelect"][1]["ov_cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igEndMultiSelect"][1]["signature"] = "()" +defs["igEndMultiSelect"][1]["stname"] = "" +defs["igEndMultiSelect"]["()"] = defs["igEndMultiSelect"][1] defs["igEndPopup"] = {} defs["igEndPopup"][1] = {} defs["igEndPopup"][1]["args"] = "()" @@ -15802,7 +17008,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:695" +defs["igEndPopup"][1]["location"] = "imgui:765" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -15818,7 +17024,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:796" +defs["igEndTabBar"][1]["location"] = "imgui:866" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -15834,7 +17040,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:798" +defs["igEndTabItem"][1]["location"] = "imgui:868" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -15850,7 +17056,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:749" +defs["igEndTable"][1]["location"] = "imgui:817" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -15866,7 +17072,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:677" +defs["igEndTooltip"][1]["location"] = "imgui:741" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -15889,7 +17095,7 @@ defs["igErrorCheckEndFrameRecover"][1]["cimguiname"] = "igErrorCheckEndFrameReco defs["igErrorCheckEndFrameRecover"][1]["defaults"] = {} defs["igErrorCheckEndFrameRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndFrameRecover"][1]["funcname"] = "ErrorCheckEndFrameRecover" -defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3443" +defs["igErrorCheckEndFrameRecover"][1]["location"] = "imgui_internal:3923" defs["igErrorCheckEndFrameRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndFrameRecover"][1]["ov_cimguiname"] = "igErrorCheckEndFrameRecover" defs["igErrorCheckEndFrameRecover"][1]["ret"] = "void" @@ -15912,7 +17118,7 @@ defs["igErrorCheckEndWindowRecover"][1]["cimguiname"] = "igErrorCheckEndWindowRe defs["igErrorCheckEndWindowRecover"][1]["defaults"] = {} defs["igErrorCheckEndWindowRecover"][1]["defaults"]["user_data"] = "NULL" defs["igErrorCheckEndWindowRecover"][1]["funcname"] = "ErrorCheckEndWindowRecover" -defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3444" +defs["igErrorCheckEndWindowRecover"][1]["location"] = "imgui_internal:3924" defs["igErrorCheckEndWindowRecover"][1]["namespace"] = "ImGui" defs["igErrorCheckEndWindowRecover"][1]["ov_cimguiname"] = "igErrorCheckEndWindowRecover" defs["igErrorCheckEndWindowRecover"][1]["ret"] = "void" @@ -15928,7 +17134,7 @@ defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["call_args"] = defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["defaults"] = {} defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["funcname"] = "ErrorCheckUsingSetCursorPosToExtendParentBoundaries" -defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3445" +defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["location"] = "imgui_internal:3925" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["namespace"] = "ImGui" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ov_cimguiname"] = "igErrorCheckUsingSetCursorPosToExtendParentBoundaries" defs["igErrorCheckUsingSetCursorPosToExtendParentBoundaries"][1]["ret"] = "void" @@ -15950,7 +17156,7 @@ defs["igFindBestWindowPosForPopup"][1]["call_args"] = "(window)" defs["igFindBestWindowPosForPopup"][1]["cimguiname"] = "igFindBestWindowPosForPopup" defs["igFindBestWindowPosForPopup"][1]["defaults"] = {} defs["igFindBestWindowPosForPopup"][1]["funcname"] = "FindBestWindowPosForPopup" -defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3086" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:3509" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -15988,7 +17194,7 @@ defs["igFindBestWindowPosForPopupEx"][1]["call_args"] = "(ref_pos,size,last_dir, defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosForPopupEx" defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" -defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3087" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:3510" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -15996,6 +17202,25 @@ defs["igFindBestWindowPosForPopupEx"][1]["ret"] = "void" defs["igFindBestWindowPosForPopupEx"][1]["signature"] = "(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)" defs["igFindBestWindowPosForPopupEx"][1]["stname"] = "" defs["igFindBestWindowPosForPopupEx"]["(const ImVec2,const ImVec2,ImGuiDir*,const ImRect,const ImRect,ImGuiPopupPositionPolicy)"] = defs["igFindBestWindowPosForPopupEx"][1] +defs["igFindBlockingModal"] = {} +defs["igFindBlockingModal"][1] = {} +defs["igFindBlockingModal"][1]["args"] = "(ImGuiWindow* window)" +defs["igFindBlockingModal"][1]["argsT"] = {} +defs["igFindBlockingModal"][1]["argsT"][1] = {} +defs["igFindBlockingModal"][1]["argsT"][1]["name"] = "window" +defs["igFindBlockingModal"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igFindBlockingModal"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igFindBlockingModal"][1]["call_args"] = "(window)" +defs["igFindBlockingModal"][1]["cimguiname"] = "igFindBlockingModal" +defs["igFindBlockingModal"][1]["defaults"] = {} +defs["igFindBlockingModal"][1]["funcname"] = "FindBlockingModal" +defs["igFindBlockingModal"][1]["location"] = "imgui_internal:3508" +defs["igFindBlockingModal"][1]["namespace"] = "ImGui" +defs["igFindBlockingModal"][1]["ov_cimguiname"] = "igFindBlockingModal" +defs["igFindBlockingModal"][1]["ret"] = "ImGuiWindow*" +defs["igFindBlockingModal"][1]["signature"] = "(ImGuiWindow*)" +defs["igFindBlockingModal"][1]["stname"] = "" +defs["igFindBlockingModal"]["(ImGuiWindow*)"] = defs["igFindBlockingModal"][1] defs["igFindBottomMostVisibleWindowWithinBeginStack"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["args"] = "(ImGuiWindow* window)" @@ -16008,7 +17233,7 @@ defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["call_args"] = "(window defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["defaults"] = {} defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["funcname"] = "FindBottomMostVisibleWindowWithinBeginStack" -defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:2973" +defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["location"] = "imgui_internal:3385" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["namespace"] = "ImGui" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ov_cimguiname"] = "igFindBottomMostVisibleWindowWithinBeginStack" defs["igFindBottomMostVisibleWindowWithinBeginStack"][1]["ret"] = "ImGuiWindow*" @@ -16027,13 +17252,41 @@ defs["igFindHoveredViewportFromPlatformWindowStack"][1]["call_args"] = "(mouse_p defs["igFindHoveredViewportFromPlatformWindowStack"][1]["cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["defaults"] = {} defs["igFindHoveredViewportFromPlatformWindowStack"][1]["funcname"] = "FindHoveredViewportFromPlatformWindowStack" -defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3004" +defs["igFindHoveredViewportFromPlatformWindowStack"][1]["location"] = "imgui_internal:3421" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["namespace"] = "ImGui" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ov_cimguiname"] = "igFindHoveredViewportFromPlatformWindowStack" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["ret"] = "ImGuiViewportP*" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["signature"] = "(const ImVec2)" defs["igFindHoveredViewportFromPlatformWindowStack"][1]["stname"] = "" defs["igFindHoveredViewportFromPlatformWindowStack"]["(const ImVec2)"] = defs["igFindHoveredViewportFromPlatformWindowStack"][1] +defs["igFindHoveredWindowEx"] = {} +defs["igFindHoveredWindowEx"][1] = {} +defs["igFindHoveredWindowEx"][1]["args"] = "(const ImVec2 pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)" +defs["igFindHoveredWindowEx"][1]["argsT"] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][1] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][1]["name"] = "pos" +defs["igFindHoveredWindowEx"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igFindHoveredWindowEx"][1]["argsT"][2] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][2]["name"] = "find_first_and_in_any_viewport" +defs["igFindHoveredWindowEx"][1]["argsT"][2]["type"] = "bool" +defs["igFindHoveredWindowEx"][1]["argsT"][3] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][3]["name"] = "out_hovered_window" +defs["igFindHoveredWindowEx"][1]["argsT"][3]["type"] = "ImGuiWindow**" +defs["igFindHoveredWindowEx"][1]["argsT"][4] = {} +defs["igFindHoveredWindowEx"][1]["argsT"][4]["name"] = "out_hovered_window_under_moving_window" +defs["igFindHoveredWindowEx"][1]["argsT"][4]["type"] = "ImGuiWindow**" +defs["igFindHoveredWindowEx"][1]["argsoriginal"] = "(const ImVec2& pos,bool find_first_and_in_any_viewport,ImGuiWindow** out_hovered_window,ImGuiWindow** out_hovered_window_under_moving_window)" +defs["igFindHoveredWindowEx"][1]["call_args"] = "(pos,find_first_and_in_any_viewport,out_hovered_window,out_hovered_window_under_moving_window)" +defs["igFindHoveredWindowEx"][1]["cimguiname"] = "igFindHoveredWindowEx" +defs["igFindHoveredWindowEx"][1]["defaults"] = {} +defs["igFindHoveredWindowEx"][1]["funcname"] = "FindHoveredWindowEx" +defs["igFindHoveredWindowEx"][1]["location"] = "imgui_internal:3403" +defs["igFindHoveredWindowEx"][1]["namespace"] = "ImGui" +defs["igFindHoveredWindowEx"][1]["ov_cimguiname"] = "igFindHoveredWindowEx" +defs["igFindHoveredWindowEx"][1]["ret"] = "void" +defs["igFindHoveredWindowEx"][1]["signature"] = "(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)" +defs["igFindHoveredWindowEx"][1]["stname"] = "" +defs["igFindHoveredWindowEx"]["(const ImVec2,bool,ImGuiWindow**,ImGuiWindow**)"] = defs["igFindHoveredWindowEx"][1] defs["igFindOrCreateColumns"] = {} defs["igFindOrCreateColumns"][1] = {} defs["igFindOrCreateColumns"][1]["args"] = "(ImGuiWindow* window,ImGuiID id)" @@ -16049,32 +17302,13 @@ defs["igFindOrCreateColumns"][1]["call_args"] = "(window,id)" defs["igFindOrCreateColumns"][1]["cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["defaults"] = {} defs["igFindOrCreateColumns"][1]["funcname"] = "FindOrCreateColumns" -defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3269" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:3736" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiOldColumns*" defs["igFindOrCreateColumns"][1]["signature"] = "(ImGuiWindow*,ImGuiID)" defs["igFindOrCreateColumns"][1]["stname"] = "" defs["igFindOrCreateColumns"]["(ImGuiWindow*,ImGuiID)"] = defs["igFindOrCreateColumns"][1] -defs["igFindOrCreateWindowSettings"] = {} -defs["igFindOrCreateWindowSettings"][1] = {} -defs["igFindOrCreateWindowSettings"][1]["args"] = "(const char* name)" -defs["igFindOrCreateWindowSettings"][1]["argsT"] = {} -defs["igFindOrCreateWindowSettings"][1]["argsT"][1] = {} -defs["igFindOrCreateWindowSettings"][1]["argsT"][1]["name"] = "name" -defs["igFindOrCreateWindowSettings"][1]["argsT"][1]["type"] = "const char*" -defs["igFindOrCreateWindowSettings"][1]["argsoriginal"] = "(const char* name)" -defs["igFindOrCreateWindowSettings"][1]["call_args"] = "(name)" -defs["igFindOrCreateWindowSettings"][1]["cimguiname"] = "igFindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["defaults"] = {} -defs["igFindOrCreateWindowSettings"][1]["funcname"] = "FindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:3012" -defs["igFindOrCreateWindowSettings"][1]["namespace"] = "ImGui" -defs["igFindOrCreateWindowSettings"][1]["ov_cimguiname"] = "igFindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" -defs["igFindOrCreateWindowSettings"][1]["signature"] = "(const char*)" -defs["igFindOrCreateWindowSettings"][1]["stname"] = "" -defs["igFindOrCreateWindowSettings"]["(const char*)"] = defs["igFindOrCreateWindowSettings"][1] defs["igFindRenderedTextEnd"] = {} defs["igFindRenderedTextEnd"][1] = {} defs["igFindRenderedTextEnd"][1]["args"] = "(const char* text,const char* text_end)" @@ -16091,7 +17325,7 @@ defs["igFindRenderedTextEnd"][1]["cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["defaults"] = {} defs["igFindRenderedTextEnd"][1]["defaults"]["text_end"] = "NULL" defs["igFindRenderedTextEnd"][1]["funcname"] = "FindRenderedTextEnd" -defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3354" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:3830" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -16110,7 +17344,7 @@ defs["igFindSettingsHandler"][1]["call_args"] = "(type_name)" defs["igFindSettingsHandler"][1]["cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["defaults"] = {} defs["igFindSettingsHandler"][1]["funcname"] = "FindSettingsHandler" -defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3015" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:3429" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -16129,7 +17363,7 @@ defs["igFindViewportByID"][1]["call_args"] = "(id)" defs["igFindViewportByID"][1]["cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["defaults"] = {} defs["igFindViewportByID"][1]["funcname"] = "FindViewportByID" -defs["igFindViewportByID"][1]["location"] = "imgui:984" +defs["igFindViewportByID"][1]["location"] = "imgui:1086" defs["igFindViewportByID"][1]["namespace"] = "ImGui" defs["igFindViewportByID"][1]["ov_cimguiname"] = "igFindViewportByID" defs["igFindViewportByID"][1]["ret"] = "ImGuiViewport*" @@ -16148,7 +17382,7 @@ defs["igFindViewportByPlatformHandle"][1]["call_args"] = "(platform_handle)" defs["igFindViewportByPlatformHandle"][1]["cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["defaults"] = {} defs["igFindViewportByPlatformHandle"][1]["funcname"] = "FindViewportByPlatformHandle" -defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:985" +defs["igFindViewportByPlatformHandle"][1]["location"] = "imgui:1087" defs["igFindViewportByPlatformHandle"][1]["namespace"] = "ImGui" defs["igFindViewportByPlatformHandle"][1]["ov_cimguiname"] = "igFindViewportByPlatformHandle" defs["igFindViewportByPlatformHandle"][1]["ret"] = "ImGuiViewport*" @@ -16167,7 +17401,7 @@ defs["igFindWindowByID"][1]["call_args"] = "(id)" defs["igFindWindowByID"][1]["cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["defaults"] = {} defs["igFindWindowByID"][1]["funcname"] = "FindWindowByID" -defs["igFindWindowByID"][1]["location"] = "imgui_internal:2950" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:3357" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -16186,7 +17420,7 @@ defs["igFindWindowByName"][1]["call_args"] = "(name)" defs["igFindWindowByName"][1]["cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["defaults"] = {} defs["igFindWindowByName"][1]["funcname"] = "FindWindowByName" -defs["igFindWindowByName"][1]["location"] = "imgui_internal:2951" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:3358" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -16205,35 +17439,89 @@ defs["igFindWindowDisplayIndex"][1]["call_args"] = "(window)" defs["igFindWindowDisplayIndex"][1]["cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["defaults"] = {} defs["igFindWindowDisplayIndex"][1]["funcname"] = "FindWindowDisplayIndex" -defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:2972" +defs["igFindWindowDisplayIndex"][1]["location"] = "imgui_internal:3384" defs["igFindWindowDisplayIndex"][1]["namespace"] = "ImGui" defs["igFindWindowDisplayIndex"][1]["ov_cimguiname"] = "igFindWindowDisplayIndex" defs["igFindWindowDisplayIndex"][1]["ret"] = "int" defs["igFindWindowDisplayIndex"][1]["signature"] = "(ImGuiWindow*)" defs["igFindWindowDisplayIndex"][1]["stname"] = "" defs["igFindWindowDisplayIndex"]["(ImGuiWindow*)"] = defs["igFindWindowDisplayIndex"][1] -defs["igFindWindowSettings"] = {} -defs["igFindWindowSettings"][1] = {} -defs["igFindWindowSettings"][1]["args"] = "(ImGuiID id)" -defs["igFindWindowSettings"][1]["argsT"] = {} -defs["igFindWindowSettings"][1]["argsT"][1] = {} -defs["igFindWindowSettings"][1]["argsT"][1]["name"] = "id" -defs["igFindWindowSettings"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igFindWindowSettings"][1]["argsoriginal"] = "(ImGuiID id)" -defs["igFindWindowSettings"][1]["call_args"] = "(id)" -defs["igFindWindowSettings"][1]["cimguiname"] = "igFindWindowSettings" -defs["igFindWindowSettings"][1]["defaults"] = {} -defs["igFindWindowSettings"][1]["funcname"] = "FindWindowSettings" -defs["igFindWindowSettings"][1]["location"] = "imgui_internal:3011" -defs["igFindWindowSettings"][1]["namespace"] = "ImGui" -defs["igFindWindowSettings"][1]["ov_cimguiname"] = "igFindWindowSettings" -defs["igFindWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" -defs["igFindWindowSettings"][1]["signature"] = "(ImGuiID)" -defs["igFindWindowSettings"][1]["stname"] = "" -defs["igFindWindowSettings"]["(ImGuiID)"] = defs["igFindWindowSettings"][1] +defs["igFindWindowSettingsByID"] = {} +defs["igFindWindowSettingsByID"][1] = {} +defs["igFindWindowSettingsByID"][1]["args"] = "(ImGuiID id)" +defs["igFindWindowSettingsByID"][1]["argsT"] = {} +defs["igFindWindowSettingsByID"][1]["argsT"][1] = {} +defs["igFindWindowSettingsByID"][1]["argsT"][1]["name"] = "id" +defs["igFindWindowSettingsByID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igFindWindowSettingsByID"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igFindWindowSettingsByID"][1]["call_args"] = "(id)" +defs["igFindWindowSettingsByID"][1]["cimguiname"] = "igFindWindowSettingsByID" +defs["igFindWindowSettingsByID"][1]["defaults"] = {} +defs["igFindWindowSettingsByID"][1]["funcname"] = "FindWindowSettingsByID" +defs["igFindWindowSettingsByID"][1]["location"] = "imgui_internal:3433" +defs["igFindWindowSettingsByID"][1]["namespace"] = "ImGui" +defs["igFindWindowSettingsByID"][1]["ov_cimguiname"] = "igFindWindowSettingsByID" +defs["igFindWindowSettingsByID"][1]["ret"] = "ImGuiWindowSettings*" +defs["igFindWindowSettingsByID"][1]["signature"] = "(ImGuiID)" +defs["igFindWindowSettingsByID"][1]["stname"] = "" +defs["igFindWindowSettingsByID"]["(ImGuiID)"] = defs["igFindWindowSettingsByID"][1] +defs["igFindWindowSettingsByWindow"] = {} +defs["igFindWindowSettingsByWindow"][1] = {} +defs["igFindWindowSettingsByWindow"][1]["args"] = "(ImGuiWindow* window)" +defs["igFindWindowSettingsByWindow"][1]["argsT"] = {} +defs["igFindWindowSettingsByWindow"][1]["argsT"][1] = {} +defs["igFindWindowSettingsByWindow"][1]["argsT"][1]["name"] = "window" +defs["igFindWindowSettingsByWindow"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igFindWindowSettingsByWindow"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igFindWindowSettingsByWindow"][1]["call_args"] = "(window)" +defs["igFindWindowSettingsByWindow"][1]["cimguiname"] = "igFindWindowSettingsByWindow" +defs["igFindWindowSettingsByWindow"][1]["defaults"] = {} +defs["igFindWindowSettingsByWindow"][1]["funcname"] = "FindWindowSettingsByWindow" +defs["igFindWindowSettingsByWindow"][1]["location"] = "imgui_internal:3434" +defs["igFindWindowSettingsByWindow"][1]["namespace"] = "ImGui" +defs["igFindWindowSettingsByWindow"][1]["ov_cimguiname"] = "igFindWindowSettingsByWindow" +defs["igFindWindowSettingsByWindow"][1]["ret"] = "ImGuiWindowSettings*" +defs["igFindWindowSettingsByWindow"][1]["signature"] = "(ImGuiWindow*)" +defs["igFindWindowSettingsByWindow"][1]["stname"] = "" +defs["igFindWindowSettingsByWindow"]["(ImGuiWindow*)"] = defs["igFindWindowSettingsByWindow"][1] +defs["igFixupKeyChord"] = {} +defs["igFixupKeyChord"][1] = {} +defs["igFixupKeyChord"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igFixupKeyChord"][1]["argsT"] = {} +defs["igFixupKeyChord"][1]["argsT"][1] = {} +defs["igFixupKeyChord"][1]["argsT"][1]["name"] = "key_chord" +defs["igFixupKeyChord"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igFixupKeyChord"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igFixupKeyChord"][1]["call_args"] = "(key_chord)" +defs["igFixupKeyChord"][1]["cimguiname"] = "igFixupKeyChord" +defs["igFixupKeyChord"][1]["defaults"] = {} +defs["igFixupKeyChord"][1]["funcname"] = "FixupKeyChord" +defs["igFixupKeyChord"][1]["location"] = "imgui_internal:3561" +defs["igFixupKeyChord"][1]["namespace"] = "ImGui" +defs["igFixupKeyChord"][1]["ov_cimguiname"] = "igFixupKeyChord" +defs["igFixupKeyChord"][1]["ret"] = "ImGuiKeyChord" +defs["igFixupKeyChord"][1]["signature"] = "(ImGuiKeyChord)" +defs["igFixupKeyChord"][1]["stname"] = "" +defs["igFixupKeyChord"]["(ImGuiKeyChord)"] = defs["igFixupKeyChord"][1] +defs["igFocusItem"] = {} +defs["igFocusItem"][1] = {} +defs["igFocusItem"][1]["args"] = "()" +defs["igFocusItem"][1]["argsT"] = {} +defs["igFocusItem"][1]["argsoriginal"] = "()" +defs["igFocusItem"][1]["call_args"] = "()" +defs["igFocusItem"][1]["cimguiname"] = "igFocusItem" +defs["igFocusItem"][1]["defaults"] = {} +defs["igFocusItem"][1]["funcname"] = "FocusItem" +defs["igFocusItem"][1]["location"] = "imgui_internal:3548" +defs["igFocusItem"][1]["namespace"] = "ImGui" +defs["igFocusItem"][1]["ov_cimguiname"] = "igFocusItem" +defs["igFocusItem"][1]["ret"] = "void" +defs["igFocusItem"][1]["signature"] = "()" +defs["igFocusItem"][1]["stname"] = "" +defs["igFocusItem"]["()"] = defs["igFocusItem"][1] defs["igFocusTopMostWindowUnderOne"] = {} defs["igFocusTopMostWindowUnderOne"][1] = {} -defs["igFocusTopMostWindowUnderOne"][1]["args"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)" +defs["igFocusTopMostWindowUnderOne"][1]["args"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)" defs["igFocusTopMostWindowUnderOne"][1]["argsT"] = {} defs["igFocusTopMostWindowUnderOne"][1]["argsT"][1] = {} defs["igFocusTopMostWindowUnderOne"][1]["argsT"][1]["name"] = "under_this_window" @@ -16241,37 +17529,47 @@ defs["igFocusTopMostWindowUnderOne"][1]["argsT"][1]["type"] = "ImGuiWindow*" defs["igFocusTopMostWindowUnderOne"][1]["argsT"][2] = {} defs["igFocusTopMostWindowUnderOne"][1]["argsT"][2]["name"] = "ignore_window" defs["igFocusTopMostWindowUnderOne"][1]["argsT"][2]["type"] = "ImGuiWindow*" -defs["igFocusTopMostWindowUnderOne"][1]["argsoriginal"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window)" -defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignore_window)" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][3] = {} +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][3]["name"] = "filter_viewport" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][3]["type"] = "ImGuiViewport*" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][4] = {} +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][4]["name"] = "flags" +defs["igFocusTopMostWindowUnderOne"][1]["argsT"][4]["type"] = "ImGuiFocusRequestFlags" +defs["igFocusTopMostWindowUnderOne"][1]["argsoriginal"] = "(ImGuiWindow* under_this_window,ImGuiWindow* ignore_window,ImGuiViewport* filter_viewport,ImGuiFocusRequestFlags flags)" +defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignore_window,filter_viewport,flags)" defs["igFocusTopMostWindowUnderOne"][1]["cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["defaults"] = {} defs["igFocusTopMostWindowUnderOne"][1]["funcname"] = "FocusTopMostWindowUnderOne" -defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:2967" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:3379" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" -defs["igFocusTopMostWindowUnderOne"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igFocusTopMostWindowUnderOne"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*,ImGuiViewport*,ImGuiFocusRequestFlags)" defs["igFocusTopMostWindowUnderOne"][1]["stname"] = "" -defs["igFocusTopMostWindowUnderOne"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igFocusTopMostWindowUnderOne"][1] +defs["igFocusTopMostWindowUnderOne"]["(ImGuiWindow*,ImGuiWindow*,ImGuiViewport*,ImGuiFocusRequestFlags)"] = defs["igFocusTopMostWindowUnderOne"][1] defs["igFocusWindow"] = {} defs["igFocusWindow"][1] = {} -defs["igFocusWindow"][1]["args"] = "(ImGuiWindow* window)" +defs["igFocusWindow"][1]["args"] = "(ImGuiWindow* window,ImGuiFocusRequestFlags flags)" defs["igFocusWindow"][1]["argsT"] = {} defs["igFocusWindow"][1]["argsT"][1] = {} defs["igFocusWindow"][1]["argsT"][1]["name"] = "window" defs["igFocusWindow"][1]["argsT"][1]["type"] = "ImGuiWindow*" -defs["igFocusWindow"][1]["argsoriginal"] = "(ImGuiWindow* window)" -defs["igFocusWindow"][1]["call_args"] = "(window)" +defs["igFocusWindow"][1]["argsT"][2] = {} +defs["igFocusWindow"][1]["argsT"][2]["name"] = "flags" +defs["igFocusWindow"][1]["argsT"][2]["type"] = "ImGuiFocusRequestFlags" +defs["igFocusWindow"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiFocusRequestFlags flags=0)" +defs["igFocusWindow"][1]["call_args"] = "(window,flags)" defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} +defs["igFocusWindow"][1]["defaults"]["flags"] = "0" defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "imgui_internal:2966" +defs["igFocusWindow"][1]["location"] = "imgui_internal:3378" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" -defs["igFocusWindow"][1]["signature"] = "(ImGuiWindow*)" +defs["igFocusWindow"][1]["signature"] = "(ImGuiWindow*,ImGuiFocusRequestFlags)" defs["igFocusWindow"][1]["stname"] = "" -defs["igFocusWindow"]["(ImGuiWindow*)"] = defs["igFocusWindow"][1] +defs["igFocusWindow"]["(ImGuiWindow*,ImGuiFocusRequestFlags)"] = defs["igFocusWindow"][1] defs["igGcAwakeTransientWindowBuffers"] = {} defs["igGcAwakeTransientWindowBuffers"][1] = {} defs["igGcAwakeTransientWindowBuffers"][1]["args"] = "(ImGuiWindow* window)" @@ -16284,7 +17582,7 @@ defs["igGcAwakeTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcAwakeTransientWindowBuffers"][1]["cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["defaults"] = {} defs["igGcAwakeTransientWindowBuffers"][1]["funcname"] = "GcAwakeTransientWindowBuffers" -defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3436" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:3919" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -16300,7 +17598,7 @@ defs["igGcCompactTransientMiscBuffers"][1]["call_args"] = "()" defs["igGcCompactTransientMiscBuffers"][1]["cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["defaults"] = {} defs["igGcCompactTransientMiscBuffers"][1]["funcname"] = "GcCompactTransientMiscBuffers" -defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3434" +defs["igGcCompactTransientMiscBuffers"][1]["location"] = "imgui_internal:3917" defs["igGcCompactTransientMiscBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientMiscBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientMiscBuffers" defs["igGcCompactTransientMiscBuffers"][1]["ret"] = "void" @@ -16319,7 +17617,7 @@ defs["igGcCompactTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcCompactTransientWindowBuffers"][1]["cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["defaults"] = {} defs["igGcCompactTransientWindowBuffers"][1]["funcname"] = "GcCompactTransientWindowBuffers" -defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3435" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:3918" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -16335,7 +17633,7 @@ defs["igGetActiveID"][1]["call_args"] = "()" defs["igGetActiveID"][1]["cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["defaults"] = {} defs["igGetActiveID"][1]["funcname"] = "GetActiveID" -defs["igGetActiveID"][1]["location"] = "imgui_internal:3038" +defs["igGetActiveID"][1]["location"] = "imgui_internal:3458" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -16360,7 +17658,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:973" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1076" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -16369,38 +17667,43 @@ defs["igGetAllocatorFunctions"][1]["stname"] = "" defs["igGetAllocatorFunctions"]["(ImGuiMemAllocFunc*,ImGuiMemFreeFunc*,void**)"] = defs["igGetAllocatorFunctions"][1] defs["igGetBackgroundDrawList"] = {} defs["igGetBackgroundDrawList"][1] = {} -defs["igGetBackgroundDrawList"][1]["args"] = "()" +defs["igGetBackgroundDrawList"][1]["args"] = "(ImGuiViewport* viewport)" defs["igGetBackgroundDrawList"][1]["argsT"] = {} -defs["igGetBackgroundDrawList"][1]["argsoriginal"] = "()" -defs["igGetBackgroundDrawList"][1]["call_args"] = "()" +defs["igGetBackgroundDrawList"][1]["argsT"][1] = {} +defs["igGetBackgroundDrawList"][1]["argsT"][1]["name"] = "viewport" +defs["igGetBackgroundDrawList"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetBackgroundDrawList"][1]["argsoriginal"] = "(ImGuiViewport* viewport=((void*)0))" +defs["igGetBackgroundDrawList"][1]["call_args"] = "(viewport)" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} +defs["igGetBackgroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui:891" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:964" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" -defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList_Nil" +defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" -defs["igGetBackgroundDrawList"][1]["signature"] = "()" +defs["igGetBackgroundDrawList"][1]["signature"] = "(ImGuiViewport*)" defs["igGetBackgroundDrawList"][1]["stname"] = "" -defs["igGetBackgroundDrawList"][2] = {} -defs["igGetBackgroundDrawList"][2]["args"] = "(ImGuiViewport* viewport)" -defs["igGetBackgroundDrawList"][2]["argsT"] = {} -defs["igGetBackgroundDrawList"][2]["argsT"][1] = {} -defs["igGetBackgroundDrawList"][2]["argsT"][1]["name"] = "viewport" -defs["igGetBackgroundDrawList"][2]["argsT"][1]["type"] = "ImGuiViewport*" -defs["igGetBackgroundDrawList"][2]["argsoriginal"] = "(ImGuiViewport* viewport)" -defs["igGetBackgroundDrawList"][2]["call_args"] = "(viewport)" -defs["igGetBackgroundDrawList"][2]["cimguiname"] = "igGetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["defaults"] = {} -defs["igGetBackgroundDrawList"][2]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][2]["location"] = "imgui:893" -defs["igGetBackgroundDrawList"][2]["namespace"] = "ImGui" -defs["igGetBackgroundDrawList"][2]["ov_cimguiname"] = "igGetBackgroundDrawList_ViewportPtr" -defs["igGetBackgroundDrawList"][2]["ret"] = "ImDrawList*" -defs["igGetBackgroundDrawList"][2]["signature"] = "(ImGuiViewport*)" -defs["igGetBackgroundDrawList"][2]["stname"] = "" -defs["igGetBackgroundDrawList"]["()"] = defs["igGetBackgroundDrawList"][1] -defs["igGetBackgroundDrawList"]["(ImGuiViewport*)"] = defs["igGetBackgroundDrawList"][2] +defs["igGetBackgroundDrawList"]["(ImGuiViewport*)"] = defs["igGetBackgroundDrawList"][1] +defs["igGetBoxSelectState"] = {} +defs["igGetBoxSelectState"][1] = {} +defs["igGetBoxSelectState"][1]["args"] = "(ImGuiID id)" +defs["igGetBoxSelectState"][1]["argsT"] = {} +defs["igGetBoxSelectState"][1]["argsT"][1] = {} +defs["igGetBoxSelectState"][1]["argsT"][1]["name"] = "id" +defs["igGetBoxSelectState"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igGetBoxSelectState"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igGetBoxSelectState"][1]["call_args"] = "(id)" +defs["igGetBoxSelectState"][1]["cimguiname"] = "igGetBoxSelectState" +defs["igGetBoxSelectState"][1]["defaults"] = {} +defs["igGetBoxSelectState"][1]["funcname"] = "GetBoxSelectState" +defs["igGetBoxSelectState"][1]["location"] = "imgui_internal:3725" +defs["igGetBoxSelectState"][1]["namespace"] = "ImGui" +defs["igGetBoxSelectState"][1]["ov_cimguiname"] = "igGetBoxSelectState" +defs["igGetBoxSelectState"][1]["ret"] = "ImGuiBoxSelectState*" +defs["igGetBoxSelectState"][1]["signature"] = "(ImGuiID)" +defs["igGetBoxSelectState"][1]["stname"] = "" +defs["igGetBoxSelectState"]["(ImGuiID)"] = defs["igGetBoxSelectState"][1] defs["igGetClipboardText"] = {} defs["igGetClipboardText"][1] = {} defs["igGetClipboardText"][1]["args"] = "()" @@ -16410,7 +17713,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui:952" +defs["igGetClipboardText"][1]["location"] = "imgui:1048" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -16433,7 +17736,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:435" +defs["igGetColorU32"][1]["location"] = "imgui:472" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -16450,31 +17753,35 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:436" +defs["igGetColorU32"][2]["location"] = "imgui:473" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" defs["igGetColorU32"][2]["signature"] = "(const ImVec4)" defs["igGetColorU32"][2]["stname"] = "" defs["igGetColorU32"][3] = {} -defs["igGetColorU32"][3]["args"] = "(ImU32 col)" +defs["igGetColorU32"][3]["args"] = "(ImU32 col,float alpha_mul)" defs["igGetColorU32"][3]["argsT"] = {} defs["igGetColorU32"][3]["argsT"][1] = {} defs["igGetColorU32"][3]["argsT"][1]["name"] = "col" defs["igGetColorU32"][3]["argsT"][1]["type"] = "ImU32" -defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col)" -defs["igGetColorU32"][3]["call_args"] = "(col)" +defs["igGetColorU32"][3]["argsT"][2] = {} +defs["igGetColorU32"][3]["argsT"][2]["name"] = "alpha_mul" +defs["igGetColorU32"][3]["argsT"][2]["type"] = "float" +defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col,float alpha_mul=1.0f)" +defs["igGetColorU32"][3]["call_args"] = "(col,alpha_mul)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} +defs["igGetColorU32"][3]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:437" +defs["igGetColorU32"][3]["location"] = "imgui:474" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" -defs["igGetColorU32"][3]["signature"] = "(ImU32)" +defs["igGetColorU32"][3]["signature"] = "(ImU32,float)" defs["igGetColorU32"][3]["stname"] = "" defs["igGetColorU32"]["(ImGuiCol,float)"] = defs["igGetColorU32"][1] -defs["igGetColorU32"]["(ImU32)"] = defs["igGetColorU32"][3] +defs["igGetColorU32"]["(ImU32,float)"] = defs["igGetColorU32"][3] defs["igGetColorU32"]["(const ImVec4)"] = defs["igGetColorU32"][2] defs["igGetColumnIndex"] = {} defs["igGetColumnIndex"][1] = {} @@ -16485,7 +17792,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:786" +defs["igGetColumnIndex"][1]["location"] = "imgui:856" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -16507,7 +17814,7 @@ defs["igGetColumnNormFromOffset"][1]["call_args"] = "(columns,offset)" defs["igGetColumnNormFromOffset"][1]["cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["defaults"] = {} defs["igGetColumnNormFromOffset"][1]["funcname"] = "GetColumnNormFromOffset" -defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3271" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:3738" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -16527,7 +17834,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:789" +defs["igGetColumnOffset"][1]["location"] = "imgui:859" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -16549,7 +17856,7 @@ defs["igGetColumnOffsetFromNorm"][1]["call_args"] = "(columns,offset_norm)" defs["igGetColumnOffsetFromNorm"][1]["cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["defaults"] = {} defs["igGetColumnOffsetFromNorm"][1]["funcname"] = "GetColumnOffsetFromNorm" -defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3270" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:3737" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -16569,7 +17876,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:787" +defs["igGetColumnWidth"][1]["location"] = "imgui:857" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -16585,7 +17892,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:791" +defs["igGetColumnsCount"][1]["location"] = "imgui:861" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -16607,7 +17914,7 @@ defs["igGetColumnsID"][1]["call_args"] = "(str_id,count)" defs["igGetColumnsID"][1]["cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["defaults"] = {} defs["igGetColumnsID"][1]["funcname"] = "GetColumnsID" -defs["igGetColumnsID"][1]["location"] = "imgui_internal:3268" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:3735" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -16626,7 +17933,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:389" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:489" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -16634,46 +17941,6 @@ defs["igGetContentRegionAvail"][1]["ret"] = "void" defs["igGetContentRegionAvail"][1]["signature"] = "()" defs["igGetContentRegionAvail"][1]["stname"] = "" defs["igGetContentRegionAvail"]["()"] = defs["igGetContentRegionAvail"][1] -defs["igGetContentRegionMax"] = {} -defs["igGetContentRegionMax"][1] = {} -defs["igGetContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetContentRegionMax"][1]["argsT"] = {} -defs["igGetContentRegionMax"][1]["argsT"][1] = {} -defs["igGetContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetContentRegionMax"][1]["call_args"] = "()" -defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["defaults"] = {} -defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui:390" -defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["ret"] = "void" -defs["igGetContentRegionMax"][1]["signature"] = "()" -defs["igGetContentRegionMax"][1]["stname"] = "" -defs["igGetContentRegionMax"]["()"] = defs["igGetContentRegionMax"][1] -defs["igGetContentRegionMaxAbs"] = {} -defs["igGetContentRegionMaxAbs"][1] = {} -defs["igGetContentRegionMaxAbs"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetContentRegionMaxAbs"][1]["argsT"] = {} -defs["igGetContentRegionMaxAbs"][1]["argsT"][1] = {} -defs["igGetContentRegionMaxAbs"][1]["argsT"][1]["name"] = "pOut" -defs["igGetContentRegionMaxAbs"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetContentRegionMaxAbs"][1]["argsoriginal"] = "()" -defs["igGetContentRegionMaxAbs"][1]["call_args"] = "()" -defs["igGetContentRegionMaxAbs"][1]["cimguiname"] = "igGetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["defaults"] = {} -defs["igGetContentRegionMaxAbs"][1]["funcname"] = "GetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:3061" -defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" -defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 -defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["ret"] = "void" -defs["igGetContentRegionMaxAbs"][1]["signature"] = "()" -defs["igGetContentRegionMaxAbs"][1]["stname"] = "" -defs["igGetContentRegionMaxAbs"]["()"] = defs["igGetContentRegionMaxAbs"][1] defs["igGetCurrentContext"] = {} defs["igGetCurrentContext"][1] = {} defs["igGetCurrentContext"][1]["args"] = "()" @@ -16683,7 +17950,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:296" +defs["igGetCurrentContext"][1]["location"] = "imgui:330" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -16699,13 +17966,29 @@ defs["igGetCurrentFocusScope"][1]["call_args"] = "()" defs["igGetCurrentFocusScope"][1]["cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["defaults"] = {} defs["igGetCurrentFocusScope"][1]["funcname"] = "GetCurrentFocusScope" -defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3252" +defs["igGetCurrentFocusScope"][1]["location"] = "imgui_internal:3701" defs["igGetCurrentFocusScope"][1]["namespace"] = "ImGui" defs["igGetCurrentFocusScope"][1]["ov_cimguiname"] = "igGetCurrentFocusScope" defs["igGetCurrentFocusScope"][1]["ret"] = "ImGuiID" defs["igGetCurrentFocusScope"][1]["signature"] = "()" defs["igGetCurrentFocusScope"][1]["stname"] = "" defs["igGetCurrentFocusScope"]["()"] = defs["igGetCurrentFocusScope"][1] +defs["igGetCurrentTabBar"] = {} +defs["igGetCurrentTabBar"][1] = {} +defs["igGetCurrentTabBar"][1]["args"] = "()" +defs["igGetCurrentTabBar"][1]["argsT"] = {} +defs["igGetCurrentTabBar"][1]["argsoriginal"] = "()" +defs["igGetCurrentTabBar"][1]["call_args"] = "()" +defs["igGetCurrentTabBar"][1]["cimguiname"] = "igGetCurrentTabBar" +defs["igGetCurrentTabBar"][1]["defaults"] = {} +defs["igGetCurrentTabBar"][1]["funcname"] = "GetCurrentTabBar" +defs["igGetCurrentTabBar"][1]["location"] = "imgui_internal:3797" +defs["igGetCurrentTabBar"][1]["namespace"] = "ImGui" +defs["igGetCurrentTabBar"][1]["ov_cimguiname"] = "igGetCurrentTabBar" +defs["igGetCurrentTabBar"][1]["ret"] = "ImGuiTabBar*" +defs["igGetCurrentTabBar"][1]["signature"] = "()" +defs["igGetCurrentTabBar"][1]["stname"] = "" +defs["igGetCurrentTabBar"]["()"] = defs["igGetCurrentTabBar"][1] defs["igGetCurrentTable"] = {} defs["igGetCurrentTable"][1] = {} defs["igGetCurrentTable"][1]["args"] = "()" @@ -16715,7 +17998,7 @@ defs["igGetCurrentTable"][1]["call_args"] = "()" defs["igGetCurrentTable"][1]["cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["defaults"] = {} defs["igGetCurrentTable"][1]["funcname"] = "GetCurrentTable" -defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3283" +defs["igGetCurrentTable"][1]["location"] = "imgui_internal:3752" defs["igGetCurrentTable"][1]["namespace"] = "ImGui" defs["igGetCurrentTable"][1]["ov_cimguiname"] = "igGetCurrentTable" defs["igGetCurrentTable"][1]["ret"] = "ImGuiTable*" @@ -16731,7 +18014,7 @@ defs["igGetCurrentWindow"][1]["call_args"] = "()" defs["igGetCurrentWindow"][1]["cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["defaults"] = {} defs["igGetCurrentWindow"][1]["funcname"] = "GetCurrentWindow" -defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:2949" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:3356" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -16747,7 +18030,7 @@ defs["igGetCurrentWindowRead"][1]["call_args"] = "()" defs["igGetCurrentWindowRead"][1]["cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["defaults"] = {} defs["igGetCurrentWindowRead"][1]["funcname"] = "GetCurrentWindowRead" -defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:2948" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:3355" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -16766,7 +18049,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:456" +defs["igGetCursorPos"][1]["location"] = "imgui:490" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -16783,7 +18066,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:457" +defs["igGetCursorPosX"][1]["location"] = "imgui:491" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -16799,7 +18082,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:458" +defs["igGetCursorPosY"][1]["location"] = "imgui:492" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -16818,7 +18101,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:463" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:487" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -16838,7 +18121,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:462" +defs["igGetCursorStartPos"][1]["location"] = "imgui:496" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -16855,7 +18138,7 @@ defs["igGetDefaultFont"][1]["call_args"] = "()" defs["igGetDefaultFont"][1]["cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["defaults"] = {} defs["igGetDefaultFont"][1]["funcname"] = "GetDefaultFont" -defs["igGetDefaultFont"][1]["location"] = "imgui_internal:2977" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:3392" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -16871,7 +18154,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui:843" +defs["igGetDragDropPayload"][1]["location"] = "imgui:913" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -16887,7 +18170,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:305" +defs["igGetDrawData"][1]["location"] = "imgui:340" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -16903,7 +18186,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui:901" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:972" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -16919,7 +18202,7 @@ defs["igGetFocusID"][1]["call_args"] = "()" defs["igGetFocusID"][1]["cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["defaults"] = {} defs["igGetFocusID"][1]["funcname"] = "GetFocusID" -defs["igGetFocusID"][1]["location"] = "imgui_internal:3039" +defs["igGetFocusID"][1]["location"] = "imgui_internal:3459" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -16935,7 +18218,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:432" +defs["igGetFont"][1]["location"] = "imgui:469" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -16951,7 +18234,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:433" +defs["igGetFontSize"][1]["location"] = "imgui:470" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -16970,7 +18253,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:434" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:471" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -16980,56 +18263,42 @@ defs["igGetFontTexUvWhitePixel"][1]["stname"] = "" defs["igGetFontTexUvWhitePixel"]["()"] = defs["igGetFontTexUvWhitePixel"][1] defs["igGetForegroundDrawList"] = {} defs["igGetForegroundDrawList"][1] = {} -defs["igGetForegroundDrawList"][1]["args"] = "()" +defs["igGetForegroundDrawList"][1]["args"] = "(ImGuiViewport* viewport)" defs["igGetForegroundDrawList"][1]["argsT"] = {} -defs["igGetForegroundDrawList"][1]["argsoriginal"] = "()" -defs["igGetForegroundDrawList"][1]["call_args"] = "()" +defs["igGetForegroundDrawList"][1]["argsT"][1] = {} +defs["igGetForegroundDrawList"][1]["argsT"][1]["name"] = "viewport" +defs["igGetForegroundDrawList"][1]["argsT"][1]["type"] = "ImGuiViewport*" +defs["igGetForegroundDrawList"][1]["argsoriginal"] = "(ImGuiViewport* viewport=((void*)0))" +defs["igGetForegroundDrawList"][1]["call_args"] = "(viewport)" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} +defs["igGetForegroundDrawList"][1]["defaults"]["viewport"] = "NULL" defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui:892" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:965" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_Nil" +defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][1]["signature"] = "()" +defs["igGetForegroundDrawList"][1]["signature"] = "(ImGuiViewport*)" defs["igGetForegroundDrawList"][1]["stname"] = "" defs["igGetForegroundDrawList"][2] = {} -defs["igGetForegroundDrawList"][2]["args"] = "(ImGuiViewport* viewport)" +defs["igGetForegroundDrawList"][2]["args"] = "(ImGuiWindow* window)" defs["igGetForegroundDrawList"][2]["argsT"] = {} defs["igGetForegroundDrawList"][2]["argsT"][1] = {} -defs["igGetForegroundDrawList"][2]["argsT"][1]["name"] = "viewport" -defs["igGetForegroundDrawList"][2]["argsT"][1]["type"] = "ImGuiViewport*" -defs["igGetForegroundDrawList"][2]["argsoriginal"] = "(ImGuiViewport* viewport)" -defs["igGetForegroundDrawList"][2]["call_args"] = "(viewport)" +defs["igGetForegroundDrawList"][2]["argsT"][1]["name"] = "window" +defs["igGetForegroundDrawList"][2]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igGetForegroundDrawList"][2]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "imgui:894" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:3393" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_ViewportPtr" +defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][2]["signature"] = "(ImGuiViewport*)" +defs["igGetForegroundDrawList"][2]["signature"] = "(ImGuiWindow*)" defs["igGetForegroundDrawList"][2]["stname"] = "" -defs["igGetForegroundDrawList"][3] = {} -defs["igGetForegroundDrawList"][3]["args"] = "(ImGuiWindow* window)" -defs["igGetForegroundDrawList"][3]["argsT"] = {} -defs["igGetForegroundDrawList"][3]["argsT"][1] = {} -defs["igGetForegroundDrawList"][3]["argsT"][1]["name"] = "window" -defs["igGetForegroundDrawList"][3]["argsT"][1]["type"] = "ImGuiWindow*" -defs["igGetForegroundDrawList"][3]["argsoriginal"] = "(ImGuiWindow* window)" -defs["igGetForegroundDrawList"][3]["call_args"] = "(window)" -defs["igGetForegroundDrawList"][3]["cimguiname"] = "igGetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["defaults"] = {} -defs["igGetForegroundDrawList"][3]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][3]["location"] = "imgui_internal:2978" -defs["igGetForegroundDrawList"][3]["namespace"] = "ImGui" -defs["igGetForegroundDrawList"][3]["ov_cimguiname"] = "igGetForegroundDrawList_WindowPtr" -defs["igGetForegroundDrawList"][3]["ret"] = "ImDrawList*" -defs["igGetForegroundDrawList"][3]["signature"] = "(ImGuiWindow*)" -defs["igGetForegroundDrawList"][3]["stname"] = "" -defs["igGetForegroundDrawList"]["()"] = defs["igGetForegroundDrawList"][1] -defs["igGetForegroundDrawList"]["(ImGuiViewport*)"] = defs["igGetForegroundDrawList"][2] -defs["igGetForegroundDrawList"]["(ImGuiWindow*)"] = defs["igGetForegroundDrawList"][3] +defs["igGetForegroundDrawList"]["(ImGuiViewport*)"] = defs["igGetForegroundDrawList"][1] +defs["igGetForegroundDrawList"]["(ImGuiWindow*)"] = defs["igGetForegroundDrawList"][2] defs["igGetFrameCount"] = {} defs["igGetFrameCount"][1] = {} defs["igGetFrameCount"][1]["args"] = "()" @@ -17039,7 +18308,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui:900" +defs["igGetFrameCount"][1]["location"] = "imgui:971" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -17055,7 +18324,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:468" +defs["igGetFrameHeight"][1]["location"] = "imgui:511" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -17071,7 +18340,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:469" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:512" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -17087,7 +18356,7 @@ defs["igGetHoveredID"][1]["call_args"] = "()" defs["igGetHoveredID"][1]["cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["defaults"] = {} defs["igGetHoveredID"][1]["funcname"] = "GetHoveredID" -defs["igGetHoveredID"][1]["location"] = "imgui_internal:3043" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:3463" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -17106,7 +18375,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:487" +defs["igGetID"][1]["location"] = "imgui:530" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -17126,7 +18395,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:488" +defs["igGetID"][2]["location"] = "imgui:531" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -17143,15 +18412,33 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:489" +defs["igGetID"][3]["location"] = "imgui:532" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" defs["igGetID"][3]["signature"] = "(const void*)" defs["igGetID"][3]["stname"] = "" +defs["igGetID"][4] = {} +defs["igGetID"][4]["args"] = "(int int_id)" +defs["igGetID"][4]["argsT"] = {} +defs["igGetID"][4]["argsT"][1] = {} +defs["igGetID"][4]["argsT"][1]["name"] = "int_id" +defs["igGetID"][4]["argsT"][1]["type"] = "int" +defs["igGetID"][4]["argsoriginal"] = "(int int_id)" +defs["igGetID"][4]["call_args"] = "(int_id)" +defs["igGetID"][4]["cimguiname"] = "igGetID" +defs["igGetID"][4]["defaults"] = {} +defs["igGetID"][4]["funcname"] = "GetID" +defs["igGetID"][4]["location"] = "imgui:533" +defs["igGetID"][4]["namespace"] = "ImGui" +defs["igGetID"][4]["ov_cimguiname"] = "igGetID_Int" +defs["igGetID"][4]["ret"] = "ImGuiID" +defs["igGetID"][4]["signature"] = "(int)" +defs["igGetID"][4]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] +defs["igGetID"]["(int)"] = defs["igGetID"][4] defs["igGetIDWithSeed"] = {} defs["igGetIDWithSeed"][1] = {} defs["igGetIDWithSeed"][1]["args"] = "(const char* str_id_begin,const char* str_id_end,ImGuiID seed)" @@ -17170,13 +18457,34 @@ defs["igGetIDWithSeed"][1]["call_args"] = "(str_id_begin,str_id_end,seed)" defs["igGetIDWithSeed"][1]["cimguiname"] = "igGetIDWithSeed" defs["igGetIDWithSeed"][1]["defaults"] = {} defs["igGetIDWithSeed"][1]["funcname"] = "GetIDWithSeed" -defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3048" +defs["igGetIDWithSeed"][1]["location"] = "imgui_internal:3468" defs["igGetIDWithSeed"][1]["namespace"] = "ImGui" -defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed" +defs["igGetIDWithSeed"][1]["ov_cimguiname"] = "igGetIDWithSeed_Str" defs["igGetIDWithSeed"][1]["ret"] = "ImGuiID" defs["igGetIDWithSeed"][1]["signature"] = "(const char*,const char*,ImGuiID)" defs["igGetIDWithSeed"][1]["stname"] = "" +defs["igGetIDWithSeed"][2] = {} +defs["igGetIDWithSeed"][2]["args"] = "(int n,ImGuiID seed)" +defs["igGetIDWithSeed"][2]["argsT"] = {} +defs["igGetIDWithSeed"][2]["argsT"][1] = {} +defs["igGetIDWithSeed"][2]["argsT"][1]["name"] = "n" +defs["igGetIDWithSeed"][2]["argsT"][1]["type"] = "int" +defs["igGetIDWithSeed"][2]["argsT"][2] = {} +defs["igGetIDWithSeed"][2]["argsT"][2]["name"] = "seed" +defs["igGetIDWithSeed"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igGetIDWithSeed"][2]["argsoriginal"] = "(int n,ImGuiID seed)" +defs["igGetIDWithSeed"][2]["call_args"] = "(n,seed)" +defs["igGetIDWithSeed"][2]["cimguiname"] = "igGetIDWithSeed" +defs["igGetIDWithSeed"][2]["defaults"] = {} +defs["igGetIDWithSeed"][2]["funcname"] = "GetIDWithSeed" +defs["igGetIDWithSeed"][2]["location"] = "imgui_internal:3469" +defs["igGetIDWithSeed"][2]["namespace"] = "ImGui" +defs["igGetIDWithSeed"][2]["ov_cimguiname"] = "igGetIDWithSeed_Int" +defs["igGetIDWithSeed"][2]["ret"] = "ImGuiID" +defs["igGetIDWithSeed"][2]["signature"] = "(int,ImGuiID)" +defs["igGetIDWithSeed"][2]["stname"] = "" defs["igGetIDWithSeed"]["(const char*,const char*,ImGuiID)"] = defs["igGetIDWithSeed"][1] +defs["igGetIDWithSeed"]["(int,ImGuiID)"] = defs["igGetIDWithSeed"][2] defs["igGetIO"] = {} defs["igGetIO"][1] = {} defs["igGetIO"][1]["args"] = "()" @@ -17186,7 +18494,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:300" +defs["igGetIO"][1]["location"] = "imgui:334" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -17206,7 +18514,7 @@ defs["igGetInputTextState"][1]["call_args"] = "(id)" defs["igGetInputTextState"][1]["cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["defaults"] = {} defs["igGetInputTextState"][1]["funcname"] = "GetInputTextState" -defs["igGetInputTextState"][1]["location"] = "imgui_internal:3419" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:3900" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -17222,7 +18530,7 @@ defs["igGetItemFlags"][1]["call_args"] = "()" defs["igGetItemFlags"][1]["cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["defaults"] = {} defs["igGetItemFlags"][1]["funcname"] = "GetItemFlags" -defs["igGetItemFlags"][1]["location"] = "imgui_internal:3037" +defs["igGetItemFlags"][1]["location"] = "imgui_internal:3457" defs["igGetItemFlags"][1]["namespace"] = "ImGui" defs["igGetItemFlags"][1]["ov_cimguiname"] = "igGetItemFlags" defs["igGetItemFlags"][1]["ret"] = "ImGuiItemFlags" @@ -17238,7 +18546,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "imgui:878" +defs["igGetItemID"][1]["location"] = "imgui:952" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -17257,7 +18565,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui:880" +defs["igGetItemRectMax"][1]["location"] = "imgui:954" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -17277,7 +18585,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui:879" +defs["igGetItemRectMin"][1]["location"] = "imgui:953" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -17297,7 +18605,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui:881" +defs["igGetItemRectSize"][1]["location"] = "imgui:955" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -17314,7 +18622,7 @@ defs["igGetItemStatusFlags"][1]["call_args"] = "()" defs["igGetItemStatusFlags"][1]["cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["defaults"] = {} defs["igGetItemStatusFlags"][1]["funcname"] = "GetItemStatusFlags" -defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3036" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:3456" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -17323,67 +18631,63 @@ defs["igGetItemStatusFlags"][1]["stname"] = "" defs["igGetItemStatusFlags"]["()"] = defs["igGetItemStatusFlags"][1] defs["igGetKeyChordName"] = {} defs["igGetKeyChordName"][1] = {} -defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" +defs["igGetKeyChordName"][1]["args"] = "(ImGuiKeyChord key_chord)" defs["igGetKeyChordName"][1]["argsT"] = {} defs["igGetKeyChordName"][1]["argsT"][1] = {} defs["igGetKeyChordName"][1]["argsT"][1]["name"] = "key_chord" defs["igGetKeyChordName"][1]["argsT"][1]["type"] = "ImGuiKeyChord" -defs["igGetKeyChordName"][1]["argsT"][2] = {} -defs["igGetKeyChordName"][1]["argsT"][2]["name"] = "out_buf" -defs["igGetKeyChordName"][1]["argsT"][2]["type"] = "char*" -defs["igGetKeyChordName"][1]["argsT"][3] = {} -defs["igGetKeyChordName"][1]["argsT"][3]["name"] = "out_buf_size" -defs["igGetKeyChordName"][1]["argsT"][3]["type"] = "int" -defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size)" -defs["igGetKeyChordName"][1]["call_args"] = "(key_chord,out_buf,out_buf_size)" +defs["igGetKeyChordName"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igGetKeyChordName"][1]["call_args"] = "(key_chord)" defs["igGetKeyChordName"][1]["cimguiname"] = "igGetKeyChordName" defs["igGetKeyChordName"][1]["defaults"] = {} defs["igGetKeyChordName"][1]["funcname"] = "GetKeyChordName" -defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3135" +defs["igGetKeyChordName"][1]["location"] = "imgui_internal:3573" defs["igGetKeyChordName"][1]["namespace"] = "ImGui" defs["igGetKeyChordName"][1]["ov_cimguiname"] = "igGetKeyChordName" -defs["igGetKeyChordName"][1]["ret"] = "void" -defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord,char*,int)" +defs["igGetKeyChordName"][1]["ret"] = "const char*" +defs["igGetKeyChordName"][1]["signature"] = "(ImGuiKeyChord)" defs["igGetKeyChordName"][1]["stname"] = "" -defs["igGetKeyChordName"]["(ImGuiKeyChord,char*,int)"] = defs["igGetKeyChordName"][1] +defs["igGetKeyChordName"]["(ImGuiKeyChord)"] = defs["igGetKeyChordName"][1] defs["igGetKeyData"] = {} defs["igGetKeyData"][1] = {} -defs["igGetKeyData"][1]["args"] = "(ImGuiKey key)" +defs["igGetKeyData"][1]["args"] = "(ImGuiContext* ctx,ImGuiKey key)" defs["igGetKeyData"][1]["argsT"] = {} defs["igGetKeyData"][1]["argsT"][1] = {} -defs["igGetKeyData"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyData"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyData"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyData"][1]["call_args"] = "(key)" +defs["igGetKeyData"][1]["argsT"][1]["name"] = "ctx" +defs["igGetKeyData"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igGetKeyData"][1]["argsT"][2] = {} +defs["igGetKeyData"][1]["argsT"][2]["name"] = "key" +defs["igGetKeyData"][1]["argsT"][2]["type"] = "ImGuiKey" +defs["igGetKeyData"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiKey key)" +defs["igGetKeyData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyData"][1]["cimguiname"] = "igGetKeyData" defs["igGetKeyData"][1]["defaults"] = {} defs["igGetKeyData"][1]["funcname"] = "GetKeyData" -defs["igGetKeyData"][1]["location"] = "imgui_internal:3134" +defs["igGetKeyData"][1]["location"] = "imgui_internal:3571" defs["igGetKeyData"][1]["namespace"] = "ImGui" -defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData" +defs["igGetKeyData"][1]["ov_cimguiname"] = "igGetKeyData_ContextPtr" defs["igGetKeyData"][1]["ret"] = "ImGuiKeyData*" -defs["igGetKeyData"][1]["signature"] = "(ImGuiKey)" +defs["igGetKeyData"][1]["signature"] = "(ImGuiContext*,ImGuiKey)" defs["igGetKeyData"][1]["stname"] = "" -defs["igGetKeyData"]["(ImGuiKey)"] = defs["igGetKeyData"][1] -defs["igGetKeyIndex"] = {} -defs["igGetKeyIndex"][1] = {} -defs["igGetKeyIndex"][1]["args"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["argsT"] = {} -defs["igGetKeyIndex"][1]["argsT"][1] = {} -defs["igGetKeyIndex"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyIndex"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["call_args"] = "(key)" -defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["defaults"] = {} -defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:3212" -defs["igGetKeyIndex"][1]["namespace"] = "ImGui" -defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["ret"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" -defs["igGetKeyIndex"][1]["stname"] = "" -defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] +defs["igGetKeyData"][2] = {} +defs["igGetKeyData"][2]["args"] = "(ImGuiKey key)" +defs["igGetKeyData"][2]["argsT"] = {} +defs["igGetKeyData"][2]["argsT"][1] = {} +defs["igGetKeyData"][2]["argsT"][1]["name"] = "key" +defs["igGetKeyData"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igGetKeyData"][2]["argsoriginal"] = "(ImGuiKey key)" +defs["igGetKeyData"][2]["call_args"] = "(key)" +defs["igGetKeyData"][2]["cimguiname"] = "igGetKeyData" +defs["igGetKeyData"][2]["defaults"] = {} +defs["igGetKeyData"][2]["funcname"] = "GetKeyData" +defs["igGetKeyData"][2]["location"] = "imgui_internal:3572" +defs["igGetKeyData"][2]["namespace"] = "ImGui" +defs["igGetKeyData"][2]["ov_cimguiname"] = "igGetKeyData_Key" +defs["igGetKeyData"][2]["ret"] = "ImGuiKeyData*" +defs["igGetKeyData"][2]["signature"] = "(ImGuiKey)" +defs["igGetKeyData"][2]["stname"] = "" +defs["igGetKeyData"]["(ImGuiContext*,ImGuiKey)"] = defs["igGetKeyData"][1] +defs["igGetKeyData"]["(ImGuiKey)"] = defs["igGetKeyData"][2] defs["igGetKeyMagnitude2d"] = {} defs["igGetKeyMagnitude2d"][1] = {} defs["igGetKeyMagnitude2d"][1]["args"] = "(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down)" @@ -17408,7 +18712,7 @@ defs["igGetKeyMagnitude2d"][1]["call_args"] = "(key_left,key_right,key_up,key_do defs["igGetKeyMagnitude2d"][1]["cimguiname"] = "igGetKeyMagnitude2d" defs["igGetKeyMagnitude2d"][1]["defaults"] = {} defs["igGetKeyMagnitude2d"][1]["funcname"] = "GetKeyMagnitude2d" -defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3138" +defs["igGetKeyMagnitude2d"][1]["location"] = "imgui_internal:3576" defs["igGetKeyMagnitude2d"][1]["namespace"] = "ImGui" defs["igGetKeyMagnitude2d"][1]["nonUDT"] = 1 defs["igGetKeyMagnitude2d"][1]["ov_cimguiname"] = "igGetKeyMagnitude2d" @@ -17428,7 +18732,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:926" +defs["igGetKeyName"][1]["location"] = "imgui:996" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -17447,7 +18751,7 @@ defs["igGetKeyOwner"][1]["call_args"] = "(key)" defs["igGetKeyOwner"][1]["cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["defaults"] = {} defs["igGetKeyOwner"][1]["funcname"] = "GetKeyOwner" -defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3156" +defs["igGetKeyOwner"][1]["location"] = "imgui_internal:3595" defs["igGetKeyOwner"][1]["namespace"] = "ImGui" defs["igGetKeyOwner"][1]["ov_cimguiname"] = "igGetKeyOwner" defs["igGetKeyOwner"][1]["ret"] = "ImGuiID" @@ -17456,23 +18760,26 @@ defs["igGetKeyOwner"][1]["stname"] = "" defs["igGetKeyOwner"]["(ImGuiKey)"] = defs["igGetKeyOwner"][1] defs["igGetKeyOwnerData"] = {} defs["igGetKeyOwnerData"][1] = {} -defs["igGetKeyOwnerData"][1]["args"] = "(ImGuiKey key)" +defs["igGetKeyOwnerData"][1]["args"] = "(ImGuiContext* ctx,ImGuiKey key)" defs["igGetKeyOwnerData"][1]["argsT"] = {} defs["igGetKeyOwnerData"][1]["argsT"][1] = {} -defs["igGetKeyOwnerData"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyOwnerData"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyOwnerData"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyOwnerData"][1]["call_args"] = "(key)" +defs["igGetKeyOwnerData"][1]["argsT"][1]["name"] = "ctx" +defs["igGetKeyOwnerData"][1]["argsT"][1]["type"] = "ImGuiContext*" +defs["igGetKeyOwnerData"][1]["argsT"][2] = {} +defs["igGetKeyOwnerData"][1]["argsT"][2]["name"] = "key" +defs["igGetKeyOwnerData"][1]["argsT"][2]["type"] = "ImGuiKey" +defs["igGetKeyOwnerData"][1]["argsoriginal"] = "(ImGuiContext* ctx,ImGuiKey key)" +defs["igGetKeyOwnerData"][1]["call_args"] = "(ctx,key)" defs["igGetKeyOwnerData"][1]["cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["defaults"] = {} defs["igGetKeyOwnerData"][1]["funcname"] = "GetKeyOwnerData" -defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3160" +defs["igGetKeyOwnerData"][1]["location"] = "imgui_internal:3600" defs["igGetKeyOwnerData"][1]["namespace"] = "ImGui" defs["igGetKeyOwnerData"][1]["ov_cimguiname"] = "igGetKeyOwnerData" defs["igGetKeyOwnerData"][1]["ret"] = "ImGuiKeyOwnerData*" -defs["igGetKeyOwnerData"][1]["signature"] = "(ImGuiKey)" +defs["igGetKeyOwnerData"][1]["signature"] = "(ImGuiContext*,ImGuiKey)" defs["igGetKeyOwnerData"][1]["stname"] = "" -defs["igGetKeyOwnerData"]["(ImGuiKey)"] = defs["igGetKeyOwnerData"][1] +defs["igGetKeyOwnerData"]["(ImGuiContext*,ImGuiKey)"] = defs["igGetKeyOwnerData"][1] defs["igGetKeyPressedAmount"] = {} defs["igGetKeyPressedAmount"][1] = {} defs["igGetKeyPressedAmount"][1]["args"] = "(ImGuiKey key,float repeat_delay,float rate)" @@ -17491,7 +18798,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:925" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:995" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -17507,7 +18814,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:888" +defs["igGetMainViewport"][1]["location"] = "imgui:961" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -17526,7 +18833,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:937" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1033" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -17542,7 +18849,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui:946" +defs["igGetMouseCursor"][1]["location"] = "imgui:1042" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -17569,7 +18876,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui:944" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1040" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -17589,7 +18896,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui:941" +defs["igGetMousePos"][1]["location"] = "imgui:1037" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -17609,7 +18916,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:942" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1038" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -17617,6 +18924,25 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] +defs["igGetMultiSelectState"] = {} +defs["igGetMultiSelectState"][1] = {} +defs["igGetMultiSelectState"][1]["args"] = "(ImGuiID id)" +defs["igGetMultiSelectState"][1]["argsT"] = {} +defs["igGetMultiSelectState"][1]["argsT"][1] = {} +defs["igGetMultiSelectState"][1]["argsT"][1]["name"] = "id" +defs["igGetMultiSelectState"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igGetMultiSelectState"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igGetMultiSelectState"][1]["call_args"] = "(id)" +defs["igGetMultiSelectState"][1]["cimguiname"] = "igGetMultiSelectState" +defs["igGetMultiSelectState"][1]["defaults"] = {} +defs["igGetMultiSelectState"][1]["funcname"] = "GetMultiSelectState" +defs["igGetMultiSelectState"][1]["location"] = "imgui_internal:3726" +defs["igGetMultiSelectState"][1]["namespace"] = "ImGui" +defs["igGetMultiSelectState"][1]["ov_cimguiname"] = "igGetMultiSelectState" +defs["igGetMultiSelectState"][1]["ret"] = "ImGuiMultiSelectState*" +defs["igGetMultiSelectState"][1]["signature"] = "(ImGuiID)" +defs["igGetMultiSelectState"][1]["stname"] = "" +defs["igGetMultiSelectState"]["(ImGuiID)"] = defs["igGetMultiSelectState"][1] defs["igGetNavTweakPressedAmount"] = {} defs["igGetNavTweakPressedAmount"][1] = {} defs["igGetNavTweakPressedAmount"][1]["args"] = "(ImGuiAxis axis)" @@ -17629,7 +18955,7 @@ defs["igGetNavTweakPressedAmount"][1]["call_args"] = "(axis)" defs["igGetNavTweakPressedAmount"][1]["cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["defaults"] = {} defs["igGetNavTweakPressedAmount"][1]["funcname"] = "GetNavTweakPressedAmount" -defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3139" +defs["igGetNavTweakPressedAmount"][1]["location"] = "imgui_internal:3577" defs["igGetNavTweakPressedAmount"][1]["namespace"] = "ImGui" defs["igGetNavTweakPressedAmount"][1]["ov_cimguiname"] = "igGetNavTweakPressedAmount" defs["igGetNavTweakPressedAmount"][1]["ret"] = "float" @@ -17645,7 +18971,7 @@ defs["igGetPlatformIO"][1]["call_args"] = "()" defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["defaults"] = {} defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" -defs["igGetPlatformIO"][1]["location"] = "imgui:980" +defs["igGetPlatformIO"][1]["location"] = "imgui:335" defs["igGetPlatformIO"][1]["namespace"] = "ImGui" defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" @@ -17668,7 +18994,7 @@ defs["igGetPopupAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetPopupAllowedExtentRect"][1]["cimguiname"] = "igGetPopupAllowedExtentRect" defs["igGetPopupAllowedExtentRect"][1]["defaults"] = {} defs["igGetPopupAllowedExtentRect"][1]["funcname"] = "GetPopupAllowedExtentRect" -defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3083" +defs["igGetPopupAllowedExtentRect"][1]["location"] = "imgui_internal:3505" defs["igGetPopupAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetPopupAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetPopupAllowedExtentRect"][1]["ov_cimguiname"] = "igGetPopupAllowedExtentRect" @@ -17685,7 +19011,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:401" +defs["igGetScrollMaxX"][1]["location"] = "imgui:438" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -17701,7 +19027,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:402" +defs["igGetScrollMaxY"][1]["location"] = "imgui:439" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -17717,7 +19043,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:397" +defs["igGetScrollX"][1]["location"] = "imgui:434" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -17733,7 +19059,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:398" +defs["igGetScrollY"][1]["location"] = "imgui:435" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -17752,7 +19078,7 @@ defs["igGetShortcutRoutingData"][1]["call_args"] = "(key_chord)" defs["igGetShortcutRoutingData"][1]["cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["defaults"] = {} defs["igGetShortcutRoutingData"][1]["funcname"] = "GetShortcutRoutingData" -defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3188" +defs["igGetShortcutRoutingData"][1]["location"] = "imgui_internal:3634" defs["igGetShortcutRoutingData"][1]["namespace"] = "ImGui" defs["igGetShortcutRoutingData"][1]["ov_cimguiname"] = "igGetShortcutRoutingData" defs["igGetShortcutRoutingData"][1]["ret"] = "ImGuiKeyRoutingData*" @@ -17768,7 +19094,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui:904" +defs["igGetStateStorage"][1]["location"] = "imgui:975" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -17784,7 +19110,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:301" +defs["igGetStyle"][1]["location"] = "imgui:336" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -17804,7 +19130,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui:902" +defs["igGetStyleColorName"][1]["location"] = "imgui:973" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -17823,7 +19149,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:438" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:475" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -17831,6 +19157,25 @@ defs["igGetStyleColorVec4"][1]["retref"] = "&" defs["igGetStyleColorVec4"][1]["signature"] = "(ImGuiCol)" defs["igGetStyleColorVec4"][1]["stname"] = "" defs["igGetStyleColorVec4"]["(ImGuiCol)"] = defs["igGetStyleColorVec4"][1] +defs["igGetStyleVarInfo"] = {} +defs["igGetStyleVarInfo"][1] = {} +defs["igGetStyleVarInfo"][1]["args"] = "(ImGuiStyleVar idx)" +defs["igGetStyleVarInfo"][1]["argsT"] = {} +defs["igGetStyleVarInfo"][1]["argsT"][1] = {} +defs["igGetStyleVarInfo"][1]["argsT"][1]["name"] = "idx" +defs["igGetStyleVarInfo"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igGetStyleVarInfo"][1]["argsoriginal"] = "(ImGuiStyleVar idx)" +defs["igGetStyleVarInfo"][1]["call_args"] = "(idx)" +defs["igGetStyleVarInfo"][1]["cimguiname"] = "igGetStyleVarInfo" +defs["igGetStyleVarInfo"][1]["defaults"] = {} +defs["igGetStyleVarInfo"][1]["funcname"] = "GetStyleVarInfo" +defs["igGetStyleVarInfo"][1]["location"] = "imgui_internal:3485" +defs["igGetStyleVarInfo"][1]["namespace"] = "ImGui" +defs["igGetStyleVarInfo"][1]["ov_cimguiname"] = "igGetStyleVarInfo" +defs["igGetStyleVarInfo"][1]["ret"] = "const ImGuiDataVarInfo*" +defs["igGetStyleVarInfo"][1]["signature"] = "(ImGuiStyleVar)" +defs["igGetStyleVarInfo"][1]["stname"] = "" +defs["igGetStyleVarInfo"]["(ImGuiStyleVar)"] = defs["igGetStyleVarInfo"][1] defs["igGetTextLineHeight"] = {} defs["igGetTextLineHeight"][1] = {} defs["igGetTextLineHeight"][1]["args"] = "()" @@ -17840,7 +19185,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:466" +defs["igGetTextLineHeight"][1]["location"] = "imgui:509" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -17856,7 +19201,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:467" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:510" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -17872,7 +19217,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui:899" +defs["igGetTime"][1]["location"] = "imgui:970" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -17888,7 +19233,7 @@ defs["igGetTopMostAndVisiblePopupModal"][1]["call_args"] = "()" defs["igGetTopMostAndVisiblePopupModal"][1]["cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["defaults"] = {} defs["igGetTopMostAndVisiblePopupModal"][1]["funcname"] = "GetTopMostAndVisiblePopupModal" -defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3085" +defs["igGetTopMostAndVisiblePopupModal"][1]["location"] = "imgui_internal:3507" defs["igGetTopMostAndVisiblePopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostAndVisiblePopupModal"][1]["ov_cimguiname"] = "igGetTopMostAndVisiblePopupModal" defs["igGetTopMostAndVisiblePopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17904,7 +19249,7 @@ defs["igGetTopMostPopupModal"][1]["call_args"] = "()" defs["igGetTopMostPopupModal"][1]["cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["defaults"] = {} defs["igGetTopMostPopupModal"][1]["funcname"] = "GetTopMostPopupModal" -defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3084" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:3506" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -17920,7 +19265,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:624" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:673" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -17945,13 +19290,33 @@ defs["igGetTypematicRepeatRate"][1]["call_args"] = "(flags,repeat_delay,repeat_r defs["igGetTypematicRepeatRate"][1]["cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["defaults"] = {} defs["igGetTypematicRepeatRate"][1]["funcname"] = "GetTypematicRepeatRate" -defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3141" +defs["igGetTypematicRepeatRate"][1]["location"] = "imgui_internal:3579" defs["igGetTypematicRepeatRate"][1]["namespace"] = "ImGui" defs["igGetTypematicRepeatRate"][1]["ov_cimguiname"] = "igGetTypematicRepeatRate" defs["igGetTypematicRepeatRate"][1]["ret"] = "void" defs["igGetTypematicRepeatRate"][1]["signature"] = "(ImGuiInputFlags,float*,float*)" defs["igGetTypematicRepeatRate"][1]["stname"] = "" defs["igGetTypematicRepeatRate"]["(ImGuiInputFlags,float*,float*)"] = defs["igGetTypematicRepeatRate"][1] +defs["igGetTypingSelectRequest"] = {} +defs["igGetTypingSelectRequest"][1] = {} +defs["igGetTypingSelectRequest"][1]["args"] = "(ImGuiTypingSelectFlags flags)" +defs["igGetTypingSelectRequest"][1]["argsT"] = {} +defs["igGetTypingSelectRequest"][1]["argsT"][1] = {} +defs["igGetTypingSelectRequest"][1]["argsT"][1]["name"] = "flags" +defs["igGetTypingSelectRequest"][1]["argsT"][1]["type"] = "ImGuiTypingSelectFlags" +defs["igGetTypingSelectRequest"][1]["argsoriginal"] = "(ImGuiTypingSelectFlags flags=ImGuiTypingSelectFlags_None)" +defs["igGetTypingSelectRequest"][1]["call_args"] = "(flags)" +defs["igGetTypingSelectRequest"][1]["cimguiname"] = "igGetTypingSelectRequest" +defs["igGetTypingSelectRequest"][1]["defaults"] = {} +defs["igGetTypingSelectRequest"][1]["defaults"]["flags"] = "ImGuiTypingSelectFlags_None" +defs["igGetTypingSelectRequest"][1]["funcname"] = "GetTypingSelectRequest" +defs["igGetTypingSelectRequest"][1]["location"] = "imgui_internal:3711" +defs["igGetTypingSelectRequest"][1]["namespace"] = "ImGui" +defs["igGetTypingSelectRequest"][1]["ov_cimguiname"] = "igGetTypingSelectRequest" +defs["igGetTypingSelectRequest"][1]["ret"] = "ImGuiTypingSelectRequest*" +defs["igGetTypingSelectRequest"][1]["signature"] = "(ImGuiTypingSelectFlags)" +defs["igGetTypingSelectRequest"][1]["stname"] = "" +defs["igGetTypingSelectRequest"]["(ImGuiTypingSelectFlags)"] = defs["igGetTypingSelectRequest"][1] defs["igGetVersion"] = {} defs["igGetVersion"][1] = {} defs["igGetVersion"][1]["args"] = "()" @@ -17961,7 +19326,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:317" +defs["igGetVersion"][1]["location"] = "imgui:352" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -17980,7 +19345,7 @@ defs["igGetViewportPlatformMonitor"][1]["call_args"] = "(viewport)" defs["igGetViewportPlatformMonitor"][1]["cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["defaults"] = {} defs["igGetViewportPlatformMonitor"][1]["funcname"] = "GetViewportPlatformMonitor" -defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3003" +defs["igGetViewportPlatformMonitor"][1]["location"] = "imgui_internal:3420" defs["igGetViewportPlatformMonitor"][1]["namespace"] = "ImGui" defs["igGetViewportPlatformMonitor"][1]["ov_cimguiname"] = "igGetViewportPlatformMonitor" defs["igGetViewportPlatformMonitor"][1]["ret"] = "const ImGuiPlatformMonitor*" @@ -17999,53 +19364,13 @@ defs["igGetWindowAlwaysWantOwnTabBar"][1]["call_args"] = "(window)" defs["igGetWindowAlwaysWantOwnTabBar"][1]["cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["defaults"] = {} defs["igGetWindowAlwaysWantOwnTabBar"][1]["funcname"] = "GetWindowAlwaysWantOwnTabBar" -defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3212" +defs["igGetWindowAlwaysWantOwnTabBar"][1]["location"] = "imgui_internal:3661" defs["igGetWindowAlwaysWantOwnTabBar"][1]["namespace"] = "ImGui" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ov_cimguiname"] = "igGetWindowAlwaysWantOwnTabBar" defs["igGetWindowAlwaysWantOwnTabBar"][1]["ret"] = "bool" defs["igGetWindowAlwaysWantOwnTabBar"][1]["signature"] = "(ImGuiWindow*)" defs["igGetWindowAlwaysWantOwnTabBar"][1]["stname"] = "" defs["igGetWindowAlwaysWantOwnTabBar"]["(ImGuiWindow*)"] = defs["igGetWindowAlwaysWantOwnTabBar"][1] -defs["igGetWindowContentRegionMax"] = {} -defs["igGetWindowContentRegionMax"][1] = {} -defs["igGetWindowContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMax"][1]["argsT"] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["defaults"] = {} -defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:392" -defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["ret"] = "void" -defs["igGetWindowContentRegionMax"][1]["signature"] = "()" -defs["igGetWindowContentRegionMax"][1]["stname"] = "" -defs["igGetWindowContentRegionMax"]["()"] = defs["igGetWindowContentRegionMax"][1] -defs["igGetWindowContentRegionMin"] = {} -defs["igGetWindowContentRegionMin"][1] = {} -defs["igGetWindowContentRegionMin"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMin"][1]["argsT"] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMin"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["defaults"] = {} -defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:391" -defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["ret"] = "void" -defs["igGetWindowContentRegionMin"][1]["signature"] = "()" -defs["igGetWindowContentRegionMin"][1]["stname"] = "" -defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] defs["igGetWindowDockID"] = {} defs["igGetWindowDockID"][1] = {} defs["igGetWindowDockID"][1]["args"] = "()" @@ -18055,7 +19380,7 @@ defs["igGetWindowDockID"][1]["call_args"] = "()" defs["igGetWindowDockID"][1]["cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["defaults"] = {} defs["igGetWindowDockID"][1]["funcname"] = "GetWindowDockID" -defs["igGetWindowDockID"][1]["location"] = "imgui:819" +defs["igGetWindowDockID"][1]["location"] = "imgui:889" defs["igGetWindowDockID"][1]["namespace"] = "ImGui" defs["igGetWindowDockID"][1]["ov_cimguiname"] = "igGetWindowDockID" defs["igGetWindowDockID"][1]["ret"] = "ImGuiID" @@ -18071,7 +19396,7 @@ defs["igGetWindowDockNode"][1]["call_args"] = "()" defs["igGetWindowDockNode"][1]["cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["defaults"] = {} defs["igGetWindowDockNode"][1]["funcname"] = "GetWindowDockNode" -defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3211" +defs["igGetWindowDockNode"][1]["location"] = "imgui_internal:3660" defs["igGetWindowDockNode"][1]["namespace"] = "ImGui" defs["igGetWindowDockNode"][1]["ov_cimguiname"] = "igGetWindowDockNode" defs["igGetWindowDockNode"][1]["ret"] = "ImGuiDockNode*" @@ -18087,7 +19412,7 @@ defs["igGetWindowDpiScale"][1]["call_args"] = "()" defs["igGetWindowDpiScale"][1]["cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["defaults"] = {} defs["igGetWindowDpiScale"][1]["funcname"] = "GetWindowDpiScale" -defs["igGetWindowDpiScale"][1]["location"] = "imgui:358" +defs["igGetWindowDpiScale"][1]["location"] = "imgui:403" defs["igGetWindowDpiScale"][1]["namespace"] = "ImGui" defs["igGetWindowDpiScale"][1]["ov_cimguiname"] = "igGetWindowDpiScale" defs["igGetWindowDpiScale"][1]["ret"] = "float" @@ -18103,7 +19428,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:357" +defs["igGetWindowDrawList"][1]["location"] = "imgui:402" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -18119,7 +19444,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:362" +defs["igGetWindowHeight"][1]["location"] = "imgui:407" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -18138,7 +19463,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:359" +defs["igGetWindowPos"][1]["location"] = "imgui:404" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -18161,7 +19486,7 @@ defs["igGetWindowResizeBorderID"][1]["call_args"] = "(window,dir)" defs["igGetWindowResizeBorderID"][1]["cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["defaults"] = {} defs["igGetWindowResizeBorderID"][1]["funcname"] = "GetWindowResizeBorderID" -defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3384" +defs["igGetWindowResizeBorderID"][1]["location"] = "imgui_internal:3861" defs["igGetWindowResizeBorderID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeBorderID"][1]["ov_cimguiname"] = "igGetWindowResizeBorderID" defs["igGetWindowResizeBorderID"][1]["ret"] = "ImGuiID" @@ -18183,7 +19508,7 @@ defs["igGetWindowResizeCornerID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeCornerID"][1]["cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["defaults"] = {} defs["igGetWindowResizeCornerID"][1]["funcname"] = "GetWindowResizeCornerID" -defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3383" +defs["igGetWindowResizeCornerID"][1]["location"] = "imgui_internal:3860" defs["igGetWindowResizeCornerID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeCornerID"][1]["ov_cimguiname"] = "igGetWindowResizeCornerID" defs["igGetWindowResizeCornerID"][1]["ret"] = "ImGuiID" @@ -18205,7 +19530,7 @@ defs["igGetWindowScrollbarID"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarID"][1]["cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["defaults"] = {} defs["igGetWindowScrollbarID"][1]["funcname"] = "GetWindowScrollbarID" -defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3382" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:3859" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -18230,7 +19555,7 @@ defs["igGetWindowScrollbarRect"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarRect"][1]["cimguiname"] = "igGetWindowScrollbarRect" defs["igGetWindowScrollbarRect"][1]["defaults"] = {} defs["igGetWindowScrollbarRect"][1]["funcname"] = "GetWindowScrollbarRect" -defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3381" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:3858" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -18250,7 +19575,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:360" +defs["igGetWindowSize"][1]["location"] = "imgui:405" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -18267,7 +19592,7 @@ defs["igGetWindowViewport"][1]["call_args"] = "()" defs["igGetWindowViewport"][1]["cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["defaults"] = {} defs["igGetWindowViewport"][1]["funcname"] = "GetWindowViewport" -defs["igGetWindowViewport"][1]["location"] = "imgui:363" +defs["igGetWindowViewport"][1]["location"] = "imgui:408" defs["igGetWindowViewport"][1]["namespace"] = "ImGui" defs["igGetWindowViewport"][1]["ov_cimguiname"] = "igGetWindowViewport" defs["igGetWindowViewport"][1]["ret"] = "ImGuiViewport*" @@ -18283,7 +19608,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:361" +defs["igGetWindowWidth"][1]["location"] = "imgui:406" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -18302,7 +19627,7 @@ defs["igImAbs"][1]["call_args"] = "(x)" defs["igImAbs"][1]["cimguiname"] = "igImAbs" defs["igImAbs"][1]["defaults"] = {} defs["igImAbs"][1]["funcname"] = "ImAbs" -defs["igImAbs"][1]["location"] = "imgui_internal:448" +defs["igImAbs"][1]["location"] = "imgui_internal:450" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbs_Int" defs["igImAbs"][1]["ret"] = "int" defs["igImAbs"][1]["signature"] = "(int)" @@ -18318,7 +19643,7 @@ defs["igImAbs"][2]["call_args"] = "(x)" defs["igImAbs"][2]["cimguiname"] = "igImAbs" defs["igImAbs"][2]["defaults"] = {} defs["igImAbs"][2]["funcname"] = "ImAbs" -defs["igImAbs"][2]["location"] = "imgui_internal:449" +defs["igImAbs"][2]["location"] = "imgui_internal:451" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbs_Float" defs["igImAbs"][2]["ret"] = "float" defs["igImAbs"][2]["signature"] = "(float)" @@ -18334,7 +19659,7 @@ defs["igImAbs"][3]["call_args"] = "(x)" defs["igImAbs"][3]["cimguiname"] = "igImAbs" defs["igImAbs"][3]["defaults"] = {} defs["igImAbs"][3]["funcname"] = "ImAbs" -defs["igImAbs"][3]["location"] = "imgui_internal:450" +defs["igImAbs"][3]["location"] = "imgui_internal:452" defs["igImAbs"][3]["ov_cimguiname"] = "igImAbs_double" defs["igImAbs"][3]["ret"] = "double" defs["igImAbs"][3]["signature"] = "(double)" @@ -18357,7 +19682,7 @@ defs["igImAlphaBlendColors"][1]["call_args"] = "(col_a,col_b)" defs["igImAlphaBlendColors"][1]["cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["defaults"] = {} defs["igImAlphaBlendColors"][1]["funcname"] = "ImAlphaBlendColors" -defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:338" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:361" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -18390,7 +19715,7 @@ defs["igImBezierCubicCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCubicCalc"][1]["cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["defaults"] = {} defs["igImBezierCubicCalc"][1]["funcname"] = "ImBezierCubicCalc" -defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:494" +defs["igImBezierCubicCalc"][1]["location"] = "imgui_internal:497" defs["igImBezierCubicCalc"][1]["nonUDT"] = 1 defs["igImBezierCubicCalc"][1]["ov_cimguiname"] = "igImBezierCubicCalc" defs["igImBezierCubicCalc"][1]["ret"] = "void" @@ -18427,7 +19752,7 @@ defs["igImBezierCubicClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segmen defs["igImBezierCubicClosestPoint"][1]["cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["defaults"] = {} defs["igImBezierCubicClosestPoint"][1]["funcname"] = "ImBezierCubicClosestPoint" -defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:495" +defs["igImBezierCubicClosestPoint"][1]["location"] = "imgui_internal:498" defs["igImBezierCubicClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPoint"][1]["ov_cimguiname"] = "igImBezierCubicClosestPoint" defs["igImBezierCubicClosestPoint"][1]["ret"] = "void" @@ -18464,7 +19789,7 @@ defs["igImBezierCubicClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,t defs["igImBezierCubicClosestPointCasteljau"][1]["cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierCubicClosestPointCasteljau"][1]["funcname"] = "ImBezierCubicClosestPointCasteljau" -defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:496" +defs["igImBezierCubicClosestPointCasteljau"][1]["location"] = "imgui_internal:499" defs["igImBezierCubicClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierCubicClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierCubicClosestPointCasteljau" defs["igImBezierCubicClosestPointCasteljau"][1]["ret"] = "void" @@ -18495,13 +19820,34 @@ defs["igImBezierQuadraticCalc"][1]["call_args"] = "(p1,p2,p3,t)" defs["igImBezierQuadraticCalc"][1]["cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["defaults"] = {} defs["igImBezierQuadraticCalc"][1]["funcname"] = "ImBezierQuadraticCalc" -defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:497" +defs["igImBezierQuadraticCalc"][1]["location"] = "imgui_internal:500" defs["igImBezierQuadraticCalc"][1]["nonUDT"] = 1 defs["igImBezierQuadraticCalc"][1]["ov_cimguiname"] = "igImBezierQuadraticCalc" defs["igImBezierQuadraticCalc"][1]["ret"] = "void" defs["igImBezierQuadraticCalc"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,float)" defs["igImBezierQuadraticCalc"][1]["stname"] = "" defs["igImBezierQuadraticCalc"]["(const ImVec2,const ImVec2,const ImVec2,float)"] = defs["igImBezierQuadraticCalc"][1] +defs["igImBitArrayClearAllBits"] = {} +defs["igImBitArrayClearAllBits"][1] = {} +defs["igImBitArrayClearAllBits"][1]["args"] = "(ImU32* arr,int bitcount)" +defs["igImBitArrayClearAllBits"][1]["argsT"] = {} +defs["igImBitArrayClearAllBits"][1]["argsT"][1] = {} +defs["igImBitArrayClearAllBits"][1]["argsT"][1]["name"] = "arr" +defs["igImBitArrayClearAllBits"][1]["argsT"][1]["type"] = "ImU32*" +defs["igImBitArrayClearAllBits"][1]["argsT"][2] = {} +defs["igImBitArrayClearAllBits"][1]["argsT"][2]["name"] = "bitcount" +defs["igImBitArrayClearAllBits"][1]["argsT"][2]["type"] = "int" +defs["igImBitArrayClearAllBits"][1]["argsoriginal"] = "(ImU32* arr,int bitcount)" +defs["igImBitArrayClearAllBits"][1]["call_args"] = "(arr,bitcount)" +defs["igImBitArrayClearAllBits"][1]["cimguiname"] = "igImBitArrayClearAllBits" +defs["igImBitArrayClearAllBits"][1]["defaults"] = {} +defs["igImBitArrayClearAllBits"][1]["funcname"] = "ImBitArrayClearAllBits" +defs["igImBitArrayClearAllBits"][1]["location"] = "imgui_internal:570" +defs["igImBitArrayClearAllBits"][1]["ov_cimguiname"] = "igImBitArrayClearAllBits" +defs["igImBitArrayClearAllBits"][1]["ret"] = "void" +defs["igImBitArrayClearAllBits"][1]["signature"] = "(ImU32*,int)" +defs["igImBitArrayClearAllBits"][1]["stname"] = "" +defs["igImBitArrayClearAllBits"]["(ImU32*,int)"] = defs["igImBitArrayClearAllBits"][1] defs["igImBitArrayClearBit"] = {} defs["igImBitArrayClearBit"][1] = {} defs["igImBitArrayClearBit"][1]["args"] = "(ImU32* arr,int n)" @@ -18517,12 +19863,30 @@ defs["igImBitArrayClearBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayClearBit"][1]["cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["defaults"] = {} defs["igImBitArrayClearBit"][1]["funcname"] = "ImBitArrayClearBit" -defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:565" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:572" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" defs["igImBitArrayClearBit"][1]["stname"] = "" defs["igImBitArrayClearBit"]["(ImU32*,int)"] = defs["igImBitArrayClearBit"][1] +defs["igImBitArrayGetStorageSizeInBytes"] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["args"] = "(int bitcount)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"][1] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"][1]["name"] = "bitcount" +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsT"][1]["type"] = "int" +defs["igImBitArrayGetStorageSizeInBytes"][1]["argsoriginal"] = "(int bitcount)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["call_args"] = "(bitcount)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["cimguiname"] = "igImBitArrayGetStorageSizeInBytes" +defs["igImBitArrayGetStorageSizeInBytes"][1]["defaults"] = {} +defs["igImBitArrayGetStorageSizeInBytes"][1]["funcname"] = "ImBitArrayGetStorageSizeInBytes" +defs["igImBitArrayGetStorageSizeInBytes"][1]["location"] = "imgui_internal:569" +defs["igImBitArrayGetStorageSizeInBytes"][1]["ov_cimguiname"] = "igImBitArrayGetStorageSizeInBytes" +defs["igImBitArrayGetStorageSizeInBytes"][1]["ret"] = "size_t" +defs["igImBitArrayGetStorageSizeInBytes"][1]["signature"] = "(int)" +defs["igImBitArrayGetStorageSizeInBytes"][1]["stname"] = "" +defs["igImBitArrayGetStorageSizeInBytes"]["(int)"] = defs["igImBitArrayGetStorageSizeInBytes"][1] defs["igImBitArraySetBit"] = {} defs["igImBitArraySetBit"][1] = {} defs["igImBitArraySetBit"][1]["args"] = "(ImU32* arr,int n)" @@ -18538,7 +19902,7 @@ defs["igImBitArraySetBit"][1]["call_args"] = "(arr,n)" defs["igImBitArraySetBit"][1]["cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["defaults"] = {} defs["igImBitArraySetBit"][1]["funcname"] = "ImBitArraySetBit" -defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:566" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:573" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -18562,7 +19926,7 @@ defs["igImBitArraySetBitRange"][1]["call_args"] = "(arr,n,n2)" defs["igImBitArraySetBitRange"][1]["cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["defaults"] = {} defs["igImBitArraySetBitRange"][1]["funcname"] = "ImBitArraySetBitRange" -defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:567" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:574" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -18583,7 +19947,7 @@ defs["igImBitArrayTestBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayTestBit"][1]["cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["defaults"] = {} defs["igImBitArrayTestBit"][1]["funcname"] = "ImBitArrayTestBit" -defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:564" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:571" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -18601,7 +19965,7 @@ defs["igImCharIsBlankA"][1]["call_args"] = "(c)" defs["igImCharIsBlankA"][1]["cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["defaults"] = {} defs["igImCharIsBlankA"][1]["funcname"] = "ImCharIsBlankA" -defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:360" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:383" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -18619,15 +19983,33 @@ defs["igImCharIsBlankW"][1]["call_args"] = "(c)" defs["igImCharIsBlankW"][1]["cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["defaults"] = {} defs["igImCharIsBlankW"][1]["funcname"] = "ImCharIsBlankW" -defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:361" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:384" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" defs["igImCharIsBlankW"][1]["stname"] = "" defs["igImCharIsBlankW"]["(unsigned int)"] = defs["igImCharIsBlankW"][1] +defs["igImCharIsXdigitA"] = {} +defs["igImCharIsXdigitA"][1] = {} +defs["igImCharIsXdigitA"][1]["args"] = "(char c)" +defs["igImCharIsXdigitA"][1]["argsT"] = {} +defs["igImCharIsXdigitA"][1]["argsT"][1] = {} +defs["igImCharIsXdigitA"][1]["argsT"][1]["name"] = "c" +defs["igImCharIsXdigitA"][1]["argsT"][1]["type"] = "char" +defs["igImCharIsXdigitA"][1]["argsoriginal"] = "(char c)" +defs["igImCharIsXdigitA"][1]["call_args"] = "(c)" +defs["igImCharIsXdigitA"][1]["cimguiname"] = "igImCharIsXdigitA" +defs["igImCharIsXdigitA"][1]["defaults"] = {} +defs["igImCharIsXdigitA"][1]["funcname"] = "ImCharIsXdigitA" +defs["igImCharIsXdigitA"][1]["location"] = "imgui_internal:385" +defs["igImCharIsXdigitA"][1]["ov_cimguiname"] = "igImCharIsXdigitA" +defs["igImCharIsXdigitA"][1]["ret"] = "bool" +defs["igImCharIsXdigitA"][1]["signature"] = "(char)" +defs["igImCharIsXdigitA"][1]["stname"] = "" +defs["igImCharIsXdigitA"]["(char)"] = defs["igImCharIsXdigitA"][1] defs["igImClamp"] = {} defs["igImClamp"][1] = {} -defs["igImClamp"][1]["args"] = "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,ImVec2 mx)" +defs["igImClamp"][1]["args"] = "(ImVec2 *pOut,const ImVec2 v,const ImVec2 mn,const ImVec2 mx)" defs["igImClamp"][1]["argsT"] = {} defs["igImClamp"][1]["argsT"][1] = {} defs["igImClamp"][1]["argsT"][1]["name"] = "pOut" @@ -18640,19 +20022,19 @@ defs["igImClamp"][1]["argsT"][3]["name"] = "mn" defs["igImClamp"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImClamp"][1]["argsT"][4] = {} defs["igImClamp"][1]["argsT"][4]["name"] = "mx" -defs["igImClamp"][1]["argsT"][4]["type"] = "ImVec2" -defs["igImClamp"][1]["argsoriginal"] = "(const ImVec2& v,const ImVec2& mn,ImVec2 mx)" +defs["igImClamp"][1]["argsT"][4]["type"] = "const ImVec2" +defs["igImClamp"][1]["argsoriginal"] = "(const ImVec2& v,const ImVec2&mn,const ImVec2&mx)" defs["igImClamp"][1]["call_args"] = "(v,mn,mx)" defs["igImClamp"][1]["cimguiname"] = "igImClamp" defs["igImClamp"][1]["defaults"] = {} defs["igImClamp"][1]["funcname"] = "ImClamp" -defs["igImClamp"][1]["location"] = "imgui_internal:472" +defs["igImClamp"][1]["location"] = "imgui_internal:474" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" -defs["igImClamp"][1]["signature"] = "(const ImVec2,const ImVec2,ImVec2)" +defs["igImClamp"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" defs["igImClamp"][1]["stname"] = "" -defs["igImClamp"]["(const ImVec2,const ImVec2,ImVec2)"] = defs["igImClamp"][1] +defs["igImClamp"]["(const ImVec2,const ImVec2,const ImVec2)"] = defs["igImClamp"][1] defs["igImDot"] = {} defs["igImDot"][1] = {} defs["igImDot"][1]["args"] = "(const ImVec2 a,const ImVec2 b)" @@ -18668,7 +20050,7 @@ defs["igImDot"][1]["call_args"] = "(a,b)" defs["igImDot"][1]["cimguiname"] = "igImDot" defs["igImDot"][1]["defaults"] = {} defs["igImDot"][1]["funcname"] = "ImDot" -defs["igImDot"][1]["location"] = "imgui_internal:485" +defs["igImDot"][1]["location"] = "imgui_internal:487" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -18692,7 +20074,7 @@ defs["igImExponentialMovingAverage"][1]["call_args"] = "(avg,sample,n)" defs["igImExponentialMovingAverage"][1]["cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["defaults"] = {} defs["igImExponentialMovingAverage"][1]["funcname"] = "ImExponentialMovingAverage" -defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:490" +defs["igImExponentialMovingAverage"][1]["location"] = "imgui_internal:493" defs["igImExponentialMovingAverage"][1]["ov_cimguiname"] = "igImExponentialMovingAverage" defs["igImExponentialMovingAverage"][1]["ret"] = "float" defs["igImExponentialMovingAverage"][1]["signature"] = "(float,float,int)" @@ -18710,7 +20092,7 @@ defs["igImFileClose"][1]["call_args"] = "(file)" defs["igImFileClose"][1]["cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["defaults"] = {} defs["igImFileClose"][1]["funcname"] = "ImFileClose" -defs["igImFileClose"][1]["location"] = "imgui_internal:421" +defs["igImFileClose"][1]["location"] = "imgui_internal:424" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -18728,7 +20110,7 @@ defs["igImFileGetSize"][1]["call_args"] = "(file)" defs["igImFileGetSize"][1]["cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["defaults"] = {} defs["igImFileGetSize"][1]["funcname"] = "ImFileGetSize" -defs["igImFileGetSize"][1]["location"] = "imgui_internal:422" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:425" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -18757,7 +20139,7 @@ defs["igImFileLoadToMemory"][1]["defaults"] = {} defs["igImFileLoadToMemory"][1]["defaults"]["out_file_size"] = "NULL" defs["igImFileLoadToMemory"][1]["defaults"]["padding_bytes"] = "0" defs["igImFileLoadToMemory"][1]["funcname"] = "ImFileLoadToMemory" -defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:428" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:431" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -18778,7 +20160,7 @@ defs["igImFileOpen"][1]["call_args"] = "(filename,mode)" defs["igImFileOpen"][1]["cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["defaults"] = {} defs["igImFileOpen"][1]["funcname"] = "ImFileOpen" -defs["igImFileOpen"][1]["location"] = "imgui_internal:420" +defs["igImFileOpen"][1]["location"] = "imgui_internal:423" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -18805,7 +20187,7 @@ defs["igImFileRead"][1]["call_args"] = "(data,size,count,file)" defs["igImFileRead"][1]["cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["defaults"] = {} defs["igImFileRead"][1]["funcname"] = "ImFileRead" -defs["igImFileRead"][1]["location"] = "imgui_internal:423" +defs["igImFileRead"][1]["location"] = "imgui_internal:426" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -18832,7 +20214,7 @@ defs["igImFileWrite"][1]["call_args"] = "(data,size,count,file)" defs["igImFileWrite"][1]["cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["defaults"] = {} defs["igImFileWrite"][1]["funcname"] = "ImFileWrite" -defs["igImFileWrite"][1]["location"] = "imgui_internal:424" +defs["igImFileWrite"][1]["location"] = "imgui_internal:427" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -18850,7 +20232,7 @@ defs["igImFloor"][1]["call_args"] = "(f)" defs["igImFloor"][1]["cimguiname"] = "igImFloor" defs["igImFloor"][1]["defaults"] = {} defs["igImFloor"][1]["funcname"] = "ImFloor" -defs["igImFloor"][1]["location"] = "imgui_internal:480" +defs["igImFloor"][1]["location"] = "imgui_internal:484" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloor_Float" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -18869,7 +20251,7 @@ defs["igImFloor"][2]["call_args"] = "(v)" defs["igImFloor"][2]["cimguiname"] = "igImFloor" defs["igImFloor"][2]["defaults"] = {} defs["igImFloor"][2]["funcname"] = "ImFloor" -defs["igImFloor"][2]["location"] = "imgui_internal:482" +defs["igImFloor"][2]["location"] = "imgui_internal:485" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloor_Vec2" defs["igImFloor"][2]["ret"] = "void" @@ -18877,45 +20259,6 @@ defs["igImFloor"][2]["signature"] = "(const ImVec2)" defs["igImFloor"][2]["stname"] = "" defs["igImFloor"]["(const ImVec2)"] = defs["igImFloor"][2] defs["igImFloor"]["(float)"] = defs["igImFloor"][1] -defs["igImFloorSigned"] = {} -defs["igImFloorSigned"][1] = {} -defs["igImFloorSigned"][1]["args"] = "(float f)" -defs["igImFloorSigned"][1]["argsT"] = {} -defs["igImFloorSigned"][1]["argsT"][1] = {} -defs["igImFloorSigned"][1]["argsT"][1]["name"] = "f" -defs["igImFloorSigned"][1]["argsT"][1]["type"] = "float" -defs["igImFloorSigned"][1]["argsoriginal"] = "(float f)" -defs["igImFloorSigned"][1]["call_args"] = "(f)" -defs["igImFloorSigned"][1]["cimguiname"] = "igImFloorSigned" -defs["igImFloorSigned"][1]["defaults"] = {} -defs["igImFloorSigned"][1]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][1]["location"] = "imgui_internal:481" -defs["igImFloorSigned"][1]["ov_cimguiname"] = "igImFloorSigned_Float" -defs["igImFloorSigned"][1]["ret"] = "float" -defs["igImFloorSigned"][1]["signature"] = "(float)" -defs["igImFloorSigned"][1]["stname"] = "" -defs["igImFloorSigned"][2] = {} -defs["igImFloorSigned"][2]["args"] = "(ImVec2 *pOut,const ImVec2 v)" -defs["igImFloorSigned"][2]["argsT"] = {} -defs["igImFloorSigned"][2]["argsT"][1] = {} -defs["igImFloorSigned"][2]["argsT"][1]["name"] = "pOut" -defs["igImFloorSigned"][2]["argsT"][1]["type"] = "ImVec2*" -defs["igImFloorSigned"][2]["argsT"][2] = {} -defs["igImFloorSigned"][2]["argsT"][2]["name"] = "v" -defs["igImFloorSigned"][2]["argsT"][2]["type"] = "const ImVec2" -defs["igImFloorSigned"][2]["argsoriginal"] = "(const ImVec2& v)" -defs["igImFloorSigned"][2]["call_args"] = "(v)" -defs["igImFloorSigned"][2]["cimguiname"] = "igImFloorSigned" -defs["igImFloorSigned"][2]["defaults"] = {} -defs["igImFloorSigned"][2]["funcname"] = "ImFloorSigned" -defs["igImFloorSigned"][2]["location"] = "imgui_internal:483" -defs["igImFloorSigned"][2]["nonUDT"] = 1 -defs["igImFloorSigned"][2]["ov_cimguiname"] = "igImFloorSigned_Vec2" -defs["igImFloorSigned"][2]["ret"] = "void" -defs["igImFloorSigned"][2]["signature"] = "(const ImVec2)" -defs["igImFloorSigned"][2]["stname"] = "" -defs["igImFloorSigned"]["(const ImVec2)"] = defs["igImFloorSigned"][2] -defs["igImFloorSigned"]["(float)"] = defs["igImFloorSigned"][1] defs["igImFontAtlasBuildFinish"] = {} defs["igImFontAtlasBuildFinish"][1] = {} defs["igImFontAtlasBuildFinish"][1]["args"] = "(ImFontAtlas* atlas)" @@ -18928,7 +20271,7 @@ defs["igImFontAtlasBuildFinish"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildFinish"][1]["cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["defaults"] = {} defs["igImFontAtlasBuildFinish"][1]["funcname"] = "ImFontAtlasBuildFinish" -defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3509" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:3996" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -18946,7 +20289,7 @@ defs["igImFontAtlasBuildInit"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildInit"][1]["cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["defaults"] = {} defs["igImFontAtlasBuildInit"][1]["funcname"] = "ImFontAtlasBuildInit" -defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3506" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:3993" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -18967,7 +20310,7 @@ defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["call_args"] = "(out_table, defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["funcname"] = "ImFontAtlasBuildMultiplyCalcLookupTable" -defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3512" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:3999" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -19003,7 +20346,7 @@ defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["call_args"] = "(table,pixels,x, defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["funcname"] = "ImFontAtlasBuildMultiplyRectAlpha8" -defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:3513" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:4000" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["signature"] = "(const unsigned char[256],unsigned char*,int,int,int,int,int)" @@ -19024,7 +20367,7 @@ defs["igImFontAtlasBuildPackCustomRects"][1]["call_args"] = "(atlas,stbrp_contex defs["igImFontAtlasBuildPackCustomRects"][1]["cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["defaults"] = {} defs["igImFontAtlasBuildPackCustomRects"][1]["funcname"] = "ImFontAtlasBuildPackCustomRects" -defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3508" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:3995" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -19063,7 +20406,7 @@ defs["igImFontAtlasBuildRender32bppRectFromString"][1]["call_args"] = "(atlas,x, defs["igImFontAtlasBuildRender32bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender32bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender32bppRectFromString" -defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3511" +defs["igImFontAtlasBuildRender32bppRectFromString"][1]["location"] = "imgui_internal:3998" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender32bppRectFromString" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender32bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned int)" @@ -19102,7 +20445,7 @@ defs["igImFontAtlasBuildRender8bppRectFromString"][1]["call_args"] = "(atlas,x,y defs["igImFontAtlasBuildRender8bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender8bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender8bppRectFromString" -defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3510" +defs["igImFontAtlasBuildRender8bppRectFromString"][1]["location"] = "imgui_internal:3997" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender8bppRectFromString" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender8bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -19132,7 +20475,7 @@ defs["igImFontAtlasBuildSetupFont"][1]["call_args"] = "(atlas,font,font_config,a defs["igImFontAtlasBuildSetupFont"][1]["cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["defaults"] = {} defs["igImFontAtlasBuildSetupFont"][1]["funcname"] = "ImFontAtlasBuildSetupFont" -defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3507" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:3994" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -19147,12 +20490,30 @@ defs["igImFontAtlasGetBuilderForStbTruetype"][1]["call_args"] = "()" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["defaults"] = {} defs["igImFontAtlasGetBuilderForStbTruetype"][1]["funcname"] = "ImFontAtlasGetBuilderForStbTruetype" -defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3504" +defs["igImFontAtlasGetBuilderForStbTruetype"][1]["location"] = "imgui_internal:3990" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasGetBuilderForStbTruetype" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["ret"] = "const ImFontBuilderIO*" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["signature"] = "()" defs["igImFontAtlasGetBuilderForStbTruetype"][1]["stname"] = "" defs["igImFontAtlasGetBuilderForStbTruetype"]["()"] = defs["igImFontAtlasGetBuilderForStbTruetype"][1] +defs["igImFontAtlasUpdateConfigDataPointers"] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["args"] = "(ImFontAtlas* atlas)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"][1] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"][1]["name"] = "atlas" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsT"][1]["type"] = "ImFontAtlas*" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["argsoriginal"] = "(ImFontAtlas* atlas)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["call_args"] = "(atlas)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["defaults"] = {} +defs["igImFontAtlasUpdateConfigDataPointers"][1]["funcname"] = "ImFontAtlasUpdateConfigDataPointers" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["location"] = "imgui_internal:3992" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["ov_cimguiname"] = "igImFontAtlasUpdateConfigDataPointers" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["ret"] = "void" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["signature"] = "(ImFontAtlas*)" +defs["igImFontAtlasUpdateConfigDataPointers"][1]["stname"] = "" +defs["igImFontAtlasUpdateConfigDataPointers"]["(ImFontAtlas*)"] = defs["igImFontAtlasUpdateConfigDataPointers"][1] defs["igImFormatString"] = {} defs["igImFormatString"][1] = {} defs["igImFormatString"][1]["args"] = "(char* buf,size_t buf_size,const char* fmt,...)" @@ -19175,7 +20536,7 @@ defs["igImFormatString"][1]["cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["defaults"] = {} defs["igImFormatString"][1]["funcname"] = "ImFormatString" defs["igImFormatString"][1]["isvararg"] = "...)" -defs["igImFormatString"][1]["location"] = "imgui_internal:365" +defs["igImFormatString"][1]["location"] = "imgui_internal:389" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -19203,7 +20564,7 @@ defs["igImFormatStringToTempBuffer"][1]["cimguiname"] = "igImFormatStringToTempB defs["igImFormatStringToTempBuffer"][1]["defaults"] = {} defs["igImFormatStringToTempBuffer"][1]["funcname"] = "ImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["isvararg"] = "...)" -defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:367" +defs["igImFormatStringToTempBuffer"][1]["location"] = "imgui_internal:391" defs["igImFormatStringToTempBuffer"][1]["ov_cimguiname"] = "igImFormatStringToTempBuffer" defs["igImFormatStringToTempBuffer"][1]["ret"] = "void" defs["igImFormatStringToTempBuffer"][1]["signature"] = "(const char**,const char**,const char*,...)" @@ -19230,7 +20591,7 @@ defs["igImFormatStringToTempBufferV"][1]["call_args"] = "(out_buf,out_buf_end,fm defs["igImFormatStringToTempBufferV"][1]["cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["defaults"] = {} defs["igImFormatStringToTempBufferV"][1]["funcname"] = "ImFormatStringToTempBufferV" -defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:368" +defs["igImFormatStringToTempBufferV"][1]["location"] = "imgui_internal:392" defs["igImFormatStringToTempBufferV"][1]["ov_cimguiname"] = "igImFormatStringToTempBufferV" defs["igImFormatStringToTempBufferV"][1]["ret"] = "void" defs["igImFormatStringToTempBufferV"][1]["signature"] = "(const char**,const char**,const char*,va_list)" @@ -19257,36 +20618,15 @@ defs["igImFormatStringV"][1]["call_args"] = "(buf,buf_size,fmt,args)" defs["igImFormatStringV"][1]["cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["defaults"] = {} defs["igImFormatStringV"][1]["funcname"] = "ImFormatStringV" -defs["igImFormatStringV"][1]["location"] = "imgui_internal:366" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:390" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" defs["igImFormatStringV"][1]["stname"] = "" defs["igImFormatStringV"]["(char*,size_t,const char*,va_list)"] = defs["igImFormatStringV"][1] -defs["igImGetDirQuadrantFromDelta"] = {} -defs["igImGetDirQuadrantFromDelta"][1] = {} -defs["igImGetDirQuadrantFromDelta"][1]["args"] = "(float dx,float dy)" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"] = {} -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][1] = {} -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][1]["name"] = "dx" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][1]["type"] = "float" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][2] = {} -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][2]["name"] = "dy" -defs["igImGetDirQuadrantFromDelta"][1]["argsT"][2]["type"] = "float" -defs["igImGetDirQuadrantFromDelta"][1]["argsoriginal"] = "(float dx,float dy)" -defs["igImGetDirQuadrantFromDelta"][1]["call_args"] = "(dx,dy)" -defs["igImGetDirQuadrantFromDelta"][1]["cimguiname"] = "igImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["defaults"] = {} -defs["igImGetDirQuadrantFromDelta"][1]["funcname"] = "ImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:503" -defs["igImGetDirQuadrantFromDelta"][1]["ov_cimguiname"] = "igImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["ret"] = "ImGuiDir" -defs["igImGetDirQuadrantFromDelta"][1]["signature"] = "(float,float)" -defs["igImGetDirQuadrantFromDelta"][1]["stname"] = "" -defs["igImGetDirQuadrantFromDelta"]["(float,float)"] = defs["igImGetDirQuadrantFromDelta"][1] defs["igImHashData"] = {} defs["igImHashData"][1] = {} -defs["igImHashData"][1]["args"] = "(const void* data,size_t data_size,ImU32 seed)" +defs["igImHashData"][1]["args"] = "(const void* data,size_t data_size,ImGuiID seed)" defs["igImHashData"][1]["argsT"] = {} defs["igImHashData"][1]["argsT"][1] = {} defs["igImHashData"][1]["argsT"][1]["name"] = "data" @@ -19296,22 +20636,22 @@ defs["igImHashData"][1]["argsT"][2]["name"] = "data_size" defs["igImHashData"][1]["argsT"][2]["type"] = "size_t" defs["igImHashData"][1]["argsT"][3] = {} defs["igImHashData"][1]["argsT"][3]["name"] = "seed" -defs["igImHashData"][1]["argsT"][3]["type"] = "ImU32" -defs["igImHashData"][1]["argsoriginal"] = "(const void* data,size_t data_size,ImU32 seed=0)" +defs["igImHashData"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImHashData"][1]["argsoriginal"] = "(const void* data,size_t data_size,ImGuiID seed=0)" defs["igImHashData"][1]["call_args"] = "(data,data_size,seed)" defs["igImHashData"][1]["cimguiname"] = "igImHashData" defs["igImHashData"][1]["defaults"] = {} defs["igImHashData"][1]["defaults"]["seed"] = "0" defs["igImHashData"][1]["funcname"] = "ImHashData" -defs["igImHashData"][1]["location"] = "imgui_internal:329" +defs["igImHashData"][1]["location"] = "imgui_internal:352" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImGuiID" -defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImU32)" +defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImGuiID)" defs["igImHashData"][1]["stname"] = "" -defs["igImHashData"]["(const void*,size_t,ImU32)"] = defs["igImHashData"][1] +defs["igImHashData"]["(const void*,size_t,ImGuiID)"] = defs["igImHashData"][1] defs["igImHashStr"] = {} defs["igImHashStr"][1] = {} -defs["igImHashStr"][1]["args"] = "(const char* data,size_t data_size,ImU32 seed)" +defs["igImHashStr"][1]["args"] = "(const char* data,size_t data_size,ImGuiID seed)" defs["igImHashStr"][1]["argsT"] = {} defs["igImHashStr"][1]["argsT"][1] = {} defs["igImHashStr"][1]["argsT"][1]["name"] = "data" @@ -19321,20 +20661,20 @@ defs["igImHashStr"][1]["argsT"][2]["name"] = "data_size" defs["igImHashStr"][1]["argsT"][2]["type"] = "size_t" defs["igImHashStr"][1]["argsT"][3] = {} defs["igImHashStr"][1]["argsT"][3]["name"] = "seed" -defs["igImHashStr"][1]["argsT"][3]["type"] = "ImU32" -defs["igImHashStr"][1]["argsoriginal"] = "(const char* data,size_t data_size=0,ImU32 seed=0)" +defs["igImHashStr"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImHashStr"][1]["argsoriginal"] = "(const char* data,size_t data_size=0,ImGuiID seed=0)" defs["igImHashStr"][1]["call_args"] = "(data,data_size,seed)" defs["igImHashStr"][1]["cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["defaults"] = {} defs["igImHashStr"][1]["defaults"]["data_size"] = "0" defs["igImHashStr"][1]["defaults"]["seed"] = "0" defs["igImHashStr"][1]["funcname"] = "ImHashStr" -defs["igImHashStr"][1]["location"] = "imgui_internal:330" +defs["igImHashStr"][1]["location"] = "imgui_internal:353" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImGuiID" -defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImU32)" +defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImGuiID)" defs["igImHashStr"][1]["stname"] = "" -defs["igImHashStr"]["(const char*,size_t,ImU32)"] = defs["igImHashStr"][1] +defs["igImHashStr"]["(const char*,size_t,ImGuiID)"] = defs["igImHashStr"][1] defs["igImInvLength"] = {} defs["igImInvLength"][1] = {} defs["igImInvLength"][1]["args"] = "(const ImVec2 lhs,float fail_value)" @@ -19350,7 +20690,7 @@ defs["igImInvLength"][1]["call_args"] = "(lhs,fail_value)" defs["igImInvLength"][1]["cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["defaults"] = {} defs["igImInvLength"][1]["funcname"] = "ImInvLength" -defs["igImInvLength"][1]["location"] = "imgui_internal:479" +defs["igImInvLength"][1]["location"] = "imgui_internal:481" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -19368,7 +20708,7 @@ defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["call_args"] = "(f)" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["defaults"] = {} defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["funcname"] = "ImIsFloatAboveGuaranteedIntegerPrecision" -defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:489" +defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["location"] = "imgui_internal:492" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ov_cimguiname"] = "igImIsFloatAboveGuaranteedIntegerPrecision" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["ret"] = "bool" defs["igImIsFloatAboveGuaranteedIntegerPrecision"][1]["signature"] = "(float)" @@ -19386,7 +20726,7 @@ defs["igImIsPowerOfTwo"][1]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][1]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["defaults"] = {} defs["igImIsPowerOfTwo"][1]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:341" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:364" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo_Int" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -19402,7 +20742,7 @@ defs["igImIsPowerOfTwo"][2]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][2]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][2]["defaults"] = {} defs["igImIsPowerOfTwo"][2]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:342" +defs["igImIsPowerOfTwo"][2]["location"] = "imgui_internal:365" defs["igImIsPowerOfTwo"][2]["ov_cimguiname"] = "igImIsPowerOfTwo_U64" defs["igImIsPowerOfTwo"][2]["ret"] = "bool" defs["igImIsPowerOfTwo"][2]["signature"] = "(ImU64)" @@ -19421,7 +20761,7 @@ defs["igImLengthSqr"][1]["call_args"] = "(lhs)" defs["igImLengthSqr"][1]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][1]["defaults"] = {} defs["igImLengthSqr"][1]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][1]["location"] = "imgui_internal:477" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:479" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqr_Vec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -19437,7 +20777,7 @@ defs["igImLengthSqr"][2]["call_args"] = "(lhs)" defs["igImLengthSqr"][2]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][2]["defaults"] = {} defs["igImLengthSqr"][2]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][2]["location"] = "imgui_internal:478" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:480" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqr_Vec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -19465,7 +20805,7 @@ defs["igImLerp"][1]["call_args"] = "(a,b,t)" defs["igImLerp"][1]["cimguiname"] = "igImLerp" defs["igImLerp"][1]["defaults"] = {} defs["igImLerp"][1]["funcname"] = "ImLerp" -defs["igImLerp"][1]["location"] = "imgui_internal:473" +defs["igImLerp"][1]["location"] = "imgui_internal:475" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerp_Vec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -19491,7 +20831,7 @@ defs["igImLerp"][2]["call_args"] = "(a,b,t)" defs["igImLerp"][2]["cimguiname"] = "igImLerp" defs["igImLerp"][2]["defaults"] = {} defs["igImLerp"][2]["funcname"] = "ImLerp" -defs["igImLerp"][2]["location"] = "imgui_internal:474" +defs["igImLerp"][2]["location"] = "imgui_internal:476" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerp_Vec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -19517,7 +20857,7 @@ defs["igImLerp"][3]["call_args"] = "(a,b,t)" defs["igImLerp"][3]["cimguiname"] = "igImLerp" defs["igImLerp"][3]["defaults"] = {} defs["igImLerp"][3]["funcname"] = "ImLerp" -defs["igImLerp"][3]["location"] = "imgui_internal:475" +defs["igImLerp"][3]["location"] = "imgui_internal:477" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerp_Vec4" defs["igImLerp"][3]["ret"] = "void" @@ -19547,13 +20887,43 @@ defs["igImLineClosestPoint"][1]["call_args"] = "(a,b,p)" defs["igImLineClosestPoint"][1]["cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["defaults"] = {} defs["igImLineClosestPoint"][1]["funcname"] = "ImLineClosestPoint" -defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:498" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:501" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" defs["igImLineClosestPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" defs["igImLineClosestPoint"][1]["stname"] = "" defs["igImLineClosestPoint"]["(const ImVec2,const ImVec2,const ImVec2)"] = defs["igImLineClosestPoint"][1] +defs["igImLinearRemapClamp"] = {} +defs["igImLinearRemapClamp"][1] = {} +defs["igImLinearRemapClamp"][1]["args"] = "(float s0,float s1,float d0,float d1,float x)" +defs["igImLinearRemapClamp"][1]["argsT"] = {} +defs["igImLinearRemapClamp"][1]["argsT"][1] = {} +defs["igImLinearRemapClamp"][1]["argsT"][1]["name"] = "s0" +defs["igImLinearRemapClamp"][1]["argsT"][1]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][2] = {} +defs["igImLinearRemapClamp"][1]["argsT"][2]["name"] = "s1" +defs["igImLinearRemapClamp"][1]["argsT"][2]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][3] = {} +defs["igImLinearRemapClamp"][1]["argsT"][3]["name"] = "d0" +defs["igImLinearRemapClamp"][1]["argsT"][3]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][4] = {} +defs["igImLinearRemapClamp"][1]["argsT"][4]["name"] = "d1" +defs["igImLinearRemapClamp"][1]["argsT"][4]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsT"][5] = {} +defs["igImLinearRemapClamp"][1]["argsT"][5]["name"] = "x" +defs["igImLinearRemapClamp"][1]["argsT"][5]["type"] = "float" +defs["igImLinearRemapClamp"][1]["argsoriginal"] = "(float s0,float s1,float d0,float d1,float x)" +defs["igImLinearRemapClamp"][1]["call_args"] = "(s0,s1,d0,d1,x)" +defs["igImLinearRemapClamp"][1]["cimguiname"] = "igImLinearRemapClamp" +defs["igImLinearRemapClamp"][1]["defaults"] = {} +defs["igImLinearRemapClamp"][1]["funcname"] = "ImLinearRemapClamp" +defs["igImLinearRemapClamp"][1]["location"] = "imgui_internal:490" +defs["igImLinearRemapClamp"][1]["ov_cimguiname"] = "igImLinearRemapClamp" +defs["igImLinearRemapClamp"][1]["ret"] = "float" +defs["igImLinearRemapClamp"][1]["signature"] = "(float,float,float,float,float)" +defs["igImLinearRemapClamp"][1]["stname"] = "" +defs["igImLinearRemapClamp"]["(float,float,float,float,float)"] = defs["igImLinearRemapClamp"][1] defs["igImLinearSweep"] = {} defs["igImLinearSweep"][1] = {} defs["igImLinearSweep"][1]["args"] = "(float current,float target,float speed)" @@ -19572,7 +20942,7 @@ defs["igImLinearSweep"][1]["call_args"] = "(current,target,speed)" defs["igImLinearSweep"][1]["cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["defaults"] = {} defs["igImLinearSweep"][1]["funcname"] = "ImLinearSweep" -defs["igImLinearSweep"][1]["location"] = "imgui_internal:487" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:489" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -19590,7 +20960,7 @@ defs["igImLog"][1]["call_args"] = "(x)" defs["igImLog"][1]["cimguiname"] = "igImLog" defs["igImLog"][1]["defaults"] = {} defs["igImLog"][1]["funcname"] = "ImLog" -defs["igImLog"][1]["location"] = "imgui_internal:446" +defs["igImLog"][1]["location"] = "imgui_internal:448" defs["igImLog"][1]["ov_cimguiname"] = "igImLog_Float" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -19606,13 +20976,37 @@ defs["igImLog"][2]["call_args"] = "(x)" defs["igImLog"][2]["cimguiname"] = "igImLog" defs["igImLog"][2]["defaults"] = {} defs["igImLog"][2]["funcname"] = "ImLog" -defs["igImLog"][2]["location"] = "imgui_internal:447" +defs["igImLog"][2]["location"] = "imgui_internal:449" defs["igImLog"][2]["ov_cimguiname"] = "igImLog_double" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" defs["igImLog"][2]["stname"] = "" defs["igImLog"]["(double)"] = defs["igImLog"][2] defs["igImLog"]["(float)"] = defs["igImLog"][1] +defs["igImLowerBound"] = {} +defs["igImLowerBound"][1] = {} +defs["igImLowerBound"][1]["args"] = "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)" +defs["igImLowerBound"][1]["argsT"] = {} +defs["igImLowerBound"][1]["argsT"][1] = {} +defs["igImLowerBound"][1]["argsT"][1]["name"] = "in_begin" +defs["igImLowerBound"][1]["argsT"][1]["type"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["argsT"][2] = {} +defs["igImLowerBound"][1]["argsT"][2]["name"] = "in_end" +defs["igImLowerBound"][1]["argsT"][2]["type"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["argsT"][3] = {} +defs["igImLowerBound"][1]["argsT"][3]["name"] = "key" +defs["igImLowerBound"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igImLowerBound"][1]["argsoriginal"] = "(ImGuiStoragePair* in_begin,ImGuiStoragePair* in_end,ImGuiID key)" +defs["igImLowerBound"][1]["call_args"] = "(in_begin,in_end,key)" +defs["igImLowerBound"][1]["cimguiname"] = "igImLowerBound" +defs["igImLowerBound"][1]["defaults"] = {} +defs["igImLowerBound"][1]["funcname"] = "ImLowerBound" +defs["igImLowerBound"][1]["location"] = "imgui_internal:740" +defs["igImLowerBound"][1]["ov_cimguiname"] = "igImLowerBound" +defs["igImLowerBound"][1]["ret"] = "ImGuiStoragePair*" +defs["igImLowerBound"][1]["signature"] = "(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)" +defs["igImLowerBound"][1]["stname"] = "" +defs["igImLowerBound"]["(ImGuiStoragePair*,ImGuiStoragePair*,ImGuiID)"] = defs["igImLowerBound"][1] defs["igImMax"] = {} defs["igImMax"][1] = {} defs["igImMax"][1]["args"] = "(ImVec2 *pOut,const ImVec2 lhs,const ImVec2 rhs)" @@ -19631,7 +21025,7 @@ defs["igImMax"][1]["call_args"] = "(lhs,rhs)" defs["igImMax"][1]["cimguiname"] = "igImMax" defs["igImMax"][1]["defaults"] = {} defs["igImMax"][1]["funcname"] = "ImMax" -defs["igImMax"][1]["location"] = "imgui_internal:471" +defs["igImMax"][1]["location"] = "imgui_internal:473" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -19656,7 +21050,7 @@ defs["igImMin"][1]["call_args"] = "(lhs,rhs)" defs["igImMin"][1]["cimguiname"] = "igImMin" defs["igImMin"][1]["defaults"] = {} defs["igImMin"][1]["funcname"] = "ImMin" -defs["igImMin"][1]["location"] = "imgui_internal:470" +defs["igImMin"][1]["location"] = "imgui_internal:472" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -19678,7 +21072,7 @@ defs["igImModPositive"][1]["call_args"] = "(a,b)" defs["igImModPositive"][1]["cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["defaults"] = {} defs["igImModPositive"][1]["funcname"] = "ImModPositive" -defs["igImModPositive"][1]["location"] = "imgui_internal:484" +defs["igImModPositive"][1]["location"] = "imgui_internal:486" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -19702,7 +21096,7 @@ defs["igImMul"][1]["call_args"] = "(lhs,rhs)" defs["igImMul"][1]["cimguiname"] = "igImMul" defs["igImMul"][1]["defaults"] = {} defs["igImMul"][1]["funcname"] = "ImMul" -defs["igImMul"][1]["location"] = "imgui_internal:488" +defs["igImMul"][1]["location"] = "imgui_internal:491" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -19721,7 +21115,7 @@ defs["igImParseFormatFindEnd"][1]["call_args"] = "(format)" defs["igImParseFormatFindEnd"][1]["cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["defaults"] = {} defs["igImParseFormatFindEnd"][1]["funcname"] = "ImParseFormatFindEnd" -defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:370" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:394" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -19739,7 +21133,7 @@ defs["igImParseFormatFindStart"][1]["call_args"] = "(format)" defs["igImParseFormatFindStart"][1]["cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["defaults"] = {} defs["igImParseFormatFindStart"][1]["funcname"] = "ImParseFormatFindStart" -defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:369" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:393" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -19760,7 +21154,7 @@ defs["igImParseFormatPrecision"][1]["call_args"] = "(format,default_value)" defs["igImParseFormatPrecision"][1]["cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["defaults"] = {} defs["igImParseFormatPrecision"][1]["funcname"] = "ImParseFormatPrecision" -defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:374" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:398" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -19784,7 +21178,7 @@ defs["igImParseFormatSanitizeForPrinting"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForPrinting"][1]["cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["defaults"] = {} defs["igImParseFormatSanitizeForPrinting"][1]["funcname"] = "ImParseFormatSanitizeForPrinting" -defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:372" +defs["igImParseFormatSanitizeForPrinting"][1]["location"] = "imgui_internal:396" defs["igImParseFormatSanitizeForPrinting"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForPrinting" defs["igImParseFormatSanitizeForPrinting"][1]["ret"] = "void" defs["igImParseFormatSanitizeForPrinting"][1]["signature"] = "(const char*,char*,size_t)" @@ -19808,7 +21202,7 @@ defs["igImParseFormatSanitizeForScanning"][1]["call_args"] = "(fmt_in,fmt_out,fm defs["igImParseFormatSanitizeForScanning"][1]["cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["defaults"] = {} defs["igImParseFormatSanitizeForScanning"][1]["funcname"] = "ImParseFormatSanitizeForScanning" -defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:373" +defs["igImParseFormatSanitizeForScanning"][1]["location"] = "imgui_internal:397" defs["igImParseFormatSanitizeForScanning"][1]["ov_cimguiname"] = "igImParseFormatSanitizeForScanning" defs["igImParseFormatSanitizeForScanning"][1]["ret"] = "const char*" defs["igImParseFormatSanitizeForScanning"][1]["signature"] = "(const char*,char*,size_t)" @@ -19832,7 +21226,7 @@ defs["igImParseFormatTrimDecorations"][1]["call_args"] = "(format,buf,buf_size)" defs["igImParseFormatTrimDecorations"][1]["cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["defaults"] = {} defs["igImParseFormatTrimDecorations"][1]["funcname"] = "ImParseFormatTrimDecorations" -defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:371" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:395" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -19853,7 +21247,7 @@ defs["igImPow"][1]["call_args"] = "(x,y)" defs["igImPow"][1]["cimguiname"] = "igImPow" defs["igImPow"][1]["defaults"] = {} defs["igImPow"][1]["funcname"] = "ImPow" -defs["igImPow"][1]["location"] = "imgui_internal:444" +defs["igImPow"][1]["location"] = "imgui_internal:446" defs["igImPow"][1]["ov_cimguiname"] = "igImPow_Float" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -19872,7 +21266,7 @@ defs["igImPow"][2]["call_args"] = "(x,y)" defs["igImPow"][2]["cimguiname"] = "igImPow" defs["igImPow"][2]["defaults"] = {} defs["igImPow"][2]["funcname"] = "ImPow" -defs["igImPow"][2]["location"] = "imgui_internal:445" +defs["igImPow"][2]["location"] = "imgui_internal:447" defs["igImPow"][2]["ov_cimguiname"] = "igImPow_double" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -19902,7 +21296,7 @@ defs["igImQsort"][1]["call_args"] = "(base,count,size_of_element,compare_func)" defs["igImQsort"][1]["cimguiname"] = "igImQsort" defs["igImQsort"][1]["defaults"] = {} defs["igImQsort"][1]["funcname"] = "ImQsort" -defs["igImQsort"][1]["location"] = "imgui_internal:334" +defs["igImQsort"][1]["location"] = "imgui_internal:357" defs["igImQsort"][1]["ov_cimguiname"] = "igImQsort" defs["igImQsort"][1]["ret"] = "void" defs["igImQsort"][1]["signature"] = "(void*,size_t,size_t,int(*)(void const*,void const*))" @@ -19929,7 +21323,7 @@ defs["igImRotate"][1]["call_args"] = "(v,cos_a,sin_a)" defs["igImRotate"][1]["cimguiname"] = "igImRotate" defs["igImRotate"][1]["defaults"] = {} defs["igImRotate"][1]["funcname"] = "ImRotate" -defs["igImRotate"][1]["location"] = "imgui_internal:486" +defs["igImRotate"][1]["location"] = "imgui_internal:488" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -19948,7 +21342,7 @@ defs["igImRsqrt"][1]["call_args"] = "(x)" defs["igImRsqrt"][1]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][1]["defaults"] = {} defs["igImRsqrt"][1]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][1]["location"] = "imgui_internal:454" +defs["igImRsqrt"][1]["location"] = "imgui_internal:458" defs["igImRsqrt"][1]["ov_cimguiname"] = "igImRsqrt_Float" defs["igImRsqrt"][1]["ret"] = "float" defs["igImRsqrt"][1]["signature"] = "(float)" @@ -19964,7 +21358,7 @@ defs["igImRsqrt"][2]["call_args"] = "(x)" defs["igImRsqrt"][2]["cimguiname"] = "igImRsqrt" defs["igImRsqrt"][2]["defaults"] = {} defs["igImRsqrt"][2]["funcname"] = "ImRsqrt" -defs["igImRsqrt"][2]["location"] = "imgui_internal:458" +defs["igImRsqrt"][2]["location"] = "imgui_internal:460" defs["igImRsqrt"][2]["ov_cimguiname"] = "igImRsqrt_double" defs["igImRsqrt"][2]["ret"] = "double" defs["igImRsqrt"][2]["signature"] = "(double)" @@ -19983,7 +21377,7 @@ defs["igImSaturate"][1]["call_args"] = "(f)" defs["igImSaturate"][1]["cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["defaults"] = {} defs["igImSaturate"][1]["funcname"] = "ImSaturate" -defs["igImSaturate"][1]["location"] = "imgui_internal:476" +defs["igImSaturate"][1]["location"] = "imgui_internal:478" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -20001,7 +21395,7 @@ defs["igImSign"][1]["call_args"] = "(x)" defs["igImSign"][1]["cimguiname"] = "igImSign" defs["igImSign"][1]["defaults"] = {} defs["igImSign"][1]["funcname"] = "ImSign" -defs["igImSign"][1]["location"] = "imgui_internal:451" +defs["igImSign"][1]["location"] = "imgui_internal:453" defs["igImSign"][1]["ov_cimguiname"] = "igImSign_Float" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -20017,7 +21411,7 @@ defs["igImSign"][2]["call_args"] = "(x)" defs["igImSign"][2]["cimguiname"] = "igImSign" defs["igImSign"][2]["defaults"] = {} defs["igImSign"][2]["funcname"] = "ImSign" -defs["igImSign"][2]["location"] = "imgui_internal:452" +defs["igImSign"][2]["location"] = "imgui_internal:454" defs["igImSign"][2]["ov_cimguiname"] = "igImSign_double" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -20036,7 +21430,7 @@ defs["igImStrSkipBlank"][1]["call_args"] = "(str)" defs["igImStrSkipBlank"][1]["cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["defaults"] = {} defs["igImStrSkipBlank"][1]["funcname"] = "ImStrSkipBlank" -defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:357" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:378" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -20054,33 +21448,33 @@ defs["igImStrTrimBlanks"][1]["call_args"] = "(str)" defs["igImStrTrimBlanks"][1]["cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["defaults"] = {} defs["igImStrTrimBlanks"][1]["funcname"] = "ImStrTrimBlanks" -defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:356" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:377" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" defs["igImStrTrimBlanks"][1]["stname"] = "" defs["igImStrTrimBlanks"]["(char*)"] = defs["igImStrTrimBlanks"][1] -defs["igImStrbolW"] = {} -defs["igImStrbolW"][1] = {} -defs["igImStrbolW"][1]["args"] = "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)" -defs["igImStrbolW"][1]["argsT"] = {} -defs["igImStrbolW"][1]["argsT"][1] = {} -defs["igImStrbolW"][1]["argsT"][1]["name"] = "buf_mid_line" -defs["igImStrbolW"][1]["argsT"][1]["type"] = "const ImWchar*" -defs["igImStrbolW"][1]["argsT"][2] = {} -defs["igImStrbolW"][1]["argsT"][2]["name"] = "buf_begin" -defs["igImStrbolW"][1]["argsT"][2]["type"] = "const ImWchar*" -defs["igImStrbolW"][1]["argsoriginal"] = "(const ImWchar* buf_mid_line,const ImWchar* buf_begin)" -defs["igImStrbolW"][1]["call_args"] = "(buf_mid_line,buf_begin)" -defs["igImStrbolW"][1]["cimguiname"] = "igImStrbolW" -defs["igImStrbolW"][1]["defaults"] = {} -defs["igImStrbolW"][1]["funcname"] = "ImStrbolW" -defs["igImStrbolW"][1]["location"] = "imgui_internal:354" -defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" -defs["igImStrbolW"][1]["ret"] = "const ImWchar*" -defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" -defs["igImStrbolW"][1]["stname"] = "" -defs["igImStrbolW"]["(const ImWchar*,const ImWchar*)"] = defs["igImStrbolW"][1] +defs["igImStrbol"] = {} +defs["igImStrbol"][1] = {} +defs["igImStrbol"][1]["args"] = "(const char* buf_mid_line,const char* buf_begin)" +defs["igImStrbol"][1]["argsT"] = {} +defs["igImStrbol"][1]["argsT"][1] = {} +defs["igImStrbol"][1]["argsT"][1]["name"] = "buf_mid_line" +defs["igImStrbol"][1]["argsT"][1]["type"] = "const char*" +defs["igImStrbol"][1]["argsT"][2] = {} +defs["igImStrbol"][1]["argsT"][2]["name"] = "buf_begin" +defs["igImStrbol"][1]["argsT"][2]["type"] = "const char*" +defs["igImStrbol"][1]["argsoriginal"] = "(const char* buf_mid_line,const char* buf_begin)" +defs["igImStrbol"][1]["call_args"] = "(buf_mid_line,buf_begin)" +defs["igImStrbol"][1]["cimguiname"] = "igImStrbol" +defs["igImStrbol"][1]["defaults"] = {} +defs["igImStrbol"][1]["funcname"] = "ImStrbol" +defs["igImStrbol"][1]["location"] = "imgui_internal:380" +defs["igImStrbol"][1]["ov_cimguiname"] = "igImStrbol" +defs["igImStrbol"][1]["ret"] = "const char*" +defs["igImStrbol"][1]["signature"] = "(const char*,const char*)" +defs["igImStrbol"][1]["stname"] = "" +defs["igImStrbol"]["(const char*,const char*)"] = defs["igImStrbol"][1] defs["igImStrchrRange"] = {} defs["igImStrchrRange"][1] = {} defs["igImStrchrRange"][1]["args"] = "(const char* str_begin,const char* str_end,char c)" @@ -20099,7 +21493,7 @@ defs["igImStrchrRange"][1]["call_args"] = "(str_begin,str_end,c)" defs["igImStrchrRange"][1]["cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["defaults"] = {} defs["igImStrchrRange"][1]["funcname"] = "ImStrchrRange" -defs["igImStrchrRange"][1]["location"] = "imgui_internal:351" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:374" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -20117,7 +21511,7 @@ defs["igImStrdup"][1]["call_args"] = "(str)" defs["igImStrdup"][1]["cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["defaults"] = {} defs["igImStrdup"][1]["funcname"] = "ImStrdup" -defs["igImStrdup"][1]["location"] = "imgui_internal:349" +defs["igImStrdup"][1]["location"] = "imgui_internal:372" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -20141,7 +21535,7 @@ defs["igImStrdupcpy"][1]["call_args"] = "(dst,p_dst_size,str)" defs["igImStrdupcpy"][1]["cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["defaults"] = {} defs["igImStrdupcpy"][1]["funcname"] = "ImStrdupcpy" -defs["igImStrdupcpy"][1]["location"] = "imgui_internal:350" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:373" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -20162,7 +21556,7 @@ defs["igImStreolRange"][1]["call_args"] = "(str,str_end)" defs["igImStreolRange"][1]["cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["defaults"] = {} defs["igImStreolRange"][1]["funcname"] = "ImStreolRange" -defs["igImStreolRange"][1]["location"] = "imgui_internal:353" +defs["igImStreolRange"][1]["location"] = "imgui_internal:375" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -20183,7 +21577,7 @@ defs["igImStricmp"][1]["call_args"] = "(str1,str2)" defs["igImStricmp"][1]["cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["defaults"] = {} defs["igImStricmp"][1]["funcname"] = "ImStricmp" -defs["igImStricmp"][1]["location"] = "imgui_internal:346" +defs["igImStricmp"][1]["location"] = "imgui_internal:369" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -20210,7 +21604,7 @@ defs["igImStristr"][1]["call_args"] = "(haystack,haystack_end,needle,needle_end) defs["igImStristr"][1]["cimguiname"] = "igImStristr" defs["igImStristr"][1]["defaults"] = {} defs["igImStristr"][1]["funcname"] = "ImStristr" -defs["igImStristr"][1]["location"] = "imgui_internal:355" +defs["igImStristr"][1]["location"] = "imgui_internal:376" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -20228,7 +21622,7 @@ defs["igImStrlenW"][1]["call_args"] = "(str)" defs["igImStrlenW"][1]["cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["defaults"] = {} defs["igImStrlenW"][1]["funcname"] = "ImStrlenW" -defs["igImStrlenW"][1]["location"] = "imgui_internal:352" +defs["igImStrlenW"][1]["location"] = "imgui_internal:379" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -20252,7 +21646,7 @@ defs["igImStrncpy"][1]["call_args"] = "(dst,src,count)" defs["igImStrncpy"][1]["cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["defaults"] = {} defs["igImStrncpy"][1]["funcname"] = "ImStrncpy" -defs["igImStrncpy"][1]["location"] = "imgui_internal:348" +defs["igImStrncpy"][1]["location"] = "imgui_internal:371" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -20276,7 +21670,7 @@ defs["igImStrnicmp"][1]["call_args"] = "(str1,str2,count)" defs["igImStrnicmp"][1]["cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["defaults"] = {} defs["igImStrnicmp"][1]["funcname"] = "ImStrnicmp" -defs["igImStrnicmp"][1]["location"] = "imgui_internal:347" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:370" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -20300,7 +21694,7 @@ defs["igImTextCharFromUtf8"][1]["call_args"] = "(out_char,in_text,in_text_end)" defs["igImTextCharFromUtf8"][1]["cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["defaults"] = {} defs["igImTextCharFromUtf8"][1]["funcname"] = "ImTextCharFromUtf8" -defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:379" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:403" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -20321,7 +21715,7 @@ defs["igImTextCharToUtf8"][1]["call_args"] = "(out_buf,c)" defs["igImTextCharToUtf8"][1]["cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["defaults"] = {} defs["igImTextCharToUtf8"][1]["funcname"] = "ImTextCharToUtf8" -defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:377" +defs["igImTextCharToUtf8"][1]["location"] = "imgui_internal:401" defs["igImTextCharToUtf8"][1]["ov_cimguiname"] = "igImTextCharToUtf8" defs["igImTextCharToUtf8"][1]["ret"] = "const char*" defs["igImTextCharToUtf8"][1]["signature"] = "(char[5],unsigned int)" @@ -20342,12 +21736,33 @@ defs["igImTextCountCharsFromUtf8"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountCharsFromUtf8"][1]["cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["defaults"] = {} defs["igImTextCountCharsFromUtf8"][1]["funcname"] = "ImTextCountCharsFromUtf8" -defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:381" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:405" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" defs["igImTextCountCharsFromUtf8"][1]["stname"] = "" defs["igImTextCountCharsFromUtf8"]["(const char*,const char*)"] = defs["igImTextCountCharsFromUtf8"][1] +defs["igImTextCountLines"] = {} +defs["igImTextCountLines"][1] = {} +defs["igImTextCountLines"][1]["args"] = "(const char* in_text,const char* in_text_end)" +defs["igImTextCountLines"][1]["argsT"] = {} +defs["igImTextCountLines"][1]["argsT"][1] = {} +defs["igImTextCountLines"][1]["argsT"][1]["name"] = "in_text" +defs["igImTextCountLines"][1]["argsT"][1]["type"] = "const char*" +defs["igImTextCountLines"][1]["argsT"][2] = {} +defs["igImTextCountLines"][1]["argsT"][2]["name"] = "in_text_end" +defs["igImTextCountLines"][1]["argsT"][2]["type"] = "const char*" +defs["igImTextCountLines"][1]["argsoriginal"] = "(const char* in_text,const char* in_text_end)" +defs["igImTextCountLines"][1]["call_args"] = "(in_text,in_text_end)" +defs["igImTextCountLines"][1]["cimguiname"] = "igImTextCountLines" +defs["igImTextCountLines"][1]["defaults"] = {} +defs["igImTextCountLines"][1]["funcname"] = "ImTextCountLines" +defs["igImTextCountLines"][1]["location"] = "imgui_internal:409" +defs["igImTextCountLines"][1]["ov_cimguiname"] = "igImTextCountLines" +defs["igImTextCountLines"][1]["ret"] = "int" +defs["igImTextCountLines"][1]["signature"] = "(const char*,const char*)" +defs["igImTextCountLines"][1]["stname"] = "" +defs["igImTextCountLines"]["(const char*,const char*)"] = defs["igImTextCountLines"][1] defs["igImTextCountUtf8BytesFromChar"] = {} defs["igImTextCountUtf8BytesFromChar"][1] = {} defs["igImTextCountUtf8BytesFromChar"][1]["args"] = "(const char* in_text,const char* in_text_end)" @@ -20363,7 +21778,7 @@ defs["igImTextCountUtf8BytesFromChar"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromChar"][1]["cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromChar"][1]["funcname"] = "ImTextCountUtf8BytesFromChar" -defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:382" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:406" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -20384,12 +21799,33 @@ defs["igImTextCountUtf8BytesFromStr"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromStr"][1]["cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromStr"][1]["funcname"] = "ImTextCountUtf8BytesFromStr" -defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:383" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:407" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" defs["igImTextCountUtf8BytesFromStr"][1]["stname"] = "" defs["igImTextCountUtf8BytesFromStr"]["(const ImWchar*,const ImWchar*)"] = defs["igImTextCountUtf8BytesFromStr"][1] +defs["igImTextFindPreviousUtf8Codepoint"] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["args"] = "(const char* in_text_start,const char* in_text_curr)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][1] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][1]["name"] = "in_text_start" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][1]["type"] = "const char*" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][2] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][2]["name"] = "in_text_curr" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsT"][2]["type"] = "const char*" +defs["igImTextFindPreviousUtf8Codepoint"][1]["argsoriginal"] = "(const char* in_text_start,const char* in_text_curr)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["call_args"] = "(in_text_start,in_text_curr)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["cimguiname"] = "igImTextFindPreviousUtf8Codepoint" +defs["igImTextFindPreviousUtf8Codepoint"][1]["defaults"] = {} +defs["igImTextFindPreviousUtf8Codepoint"][1]["funcname"] = "ImTextFindPreviousUtf8Codepoint" +defs["igImTextFindPreviousUtf8Codepoint"][1]["location"] = "imgui_internal:408" +defs["igImTextFindPreviousUtf8Codepoint"][1]["ov_cimguiname"] = "igImTextFindPreviousUtf8Codepoint" +defs["igImTextFindPreviousUtf8Codepoint"][1]["ret"] = "const char*" +defs["igImTextFindPreviousUtf8Codepoint"][1]["signature"] = "(const char*,const char*)" +defs["igImTextFindPreviousUtf8Codepoint"][1]["stname"] = "" +defs["igImTextFindPreviousUtf8Codepoint"]["(const char*,const char*)"] = defs["igImTextFindPreviousUtf8Codepoint"][1] defs["igImTextStrFromUtf8"] = {} defs["igImTextStrFromUtf8"][1] = {} defs["igImTextStrFromUtf8"][1]["args"] = "(ImWchar* out_buf,int out_buf_size,const char* in_text,const char* in_text_end,const char** in_remaining)" @@ -20415,7 +21851,7 @@ defs["igImTextStrFromUtf8"][1]["cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["defaults"] = {} defs["igImTextStrFromUtf8"][1]["defaults"]["in_remaining"] = "NULL" defs["igImTextStrFromUtf8"][1]["funcname"] = "ImTextStrFromUtf8" -defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:380" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:404" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -20442,7 +21878,7 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(out_buf,out_buf_size,in_text,in_te defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:378" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:402" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -20460,7 +21896,7 @@ defs["igImToUpper"][1]["call_args"] = "(c)" defs["igImToUpper"][1]["cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["defaults"] = {} defs["igImToUpper"][1]["funcname"] = "ImToUpper" -defs["igImToUpper"][1]["location"] = "imgui_internal:359" +defs["igImToUpper"][1]["location"] = "imgui_internal:382" defs["igImToUpper"][1]["ov_cimguiname"] = "igImToUpper" defs["igImToUpper"][1]["ret"] = "char" defs["igImToUpper"][1]["signature"] = "(char)" @@ -20484,7 +21920,7 @@ defs["igImTriangleArea"][1]["call_args"] = "(a,b,c)" defs["igImTriangleArea"][1]["cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["defaults"] = {} defs["igImTriangleArea"][1]["funcname"] = "ImTriangleArea" -defs["igImTriangleArea"][1]["location"] = "imgui_internal:502" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:505" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -20523,7 +21959,7 @@ defs["igImTriangleBarycentricCoords"][1]["call_args"] = "(a,b,c,p,*out_u,*out_v, defs["igImTriangleBarycentricCoords"][1]["cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["defaults"] = {} defs["igImTriangleBarycentricCoords"][1]["funcname"] = "ImTriangleBarycentricCoords" -defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:501" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:504" defs["igImTriangleBarycentricCoords"][1]["ov_cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["ret"] = "void" defs["igImTriangleBarycentricCoords"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)" @@ -20553,7 +21989,7 @@ defs["igImTriangleClosestPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleClosestPoint"][1]["cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["defaults"] = {} defs["igImTriangleClosestPoint"][1]["funcname"] = "ImTriangleClosestPoint" -defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:500" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:503" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -20581,12 +22017,75 @@ defs["igImTriangleContainsPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleContainsPoint"][1]["cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["defaults"] = {} defs["igImTriangleContainsPoint"][1]["funcname"] = "ImTriangleContainsPoint" -defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:499" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:502" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" defs["igImTriangleContainsPoint"][1]["stname"] = "" defs["igImTriangleContainsPoint"]["(const ImVec2,const ImVec2,const ImVec2,const ImVec2)"] = defs["igImTriangleContainsPoint"][1] +defs["igImTriangleIsClockwise"] = {} +defs["igImTriangleIsClockwise"][1] = {} +defs["igImTriangleIsClockwise"][1]["args"] = "(const ImVec2 a,const ImVec2 b,const ImVec2 c)" +defs["igImTriangleIsClockwise"][1]["argsT"] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][1] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][1]["name"] = "a" +defs["igImTriangleIsClockwise"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igImTriangleIsClockwise"][1]["argsT"][2] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][2]["name"] = "b" +defs["igImTriangleIsClockwise"][1]["argsT"][2]["type"] = "const ImVec2" +defs["igImTriangleIsClockwise"][1]["argsT"][3] = {} +defs["igImTriangleIsClockwise"][1]["argsT"][3]["name"] = "c" +defs["igImTriangleIsClockwise"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igImTriangleIsClockwise"][1]["argsoriginal"] = "(const ImVec2& a,const ImVec2& b,const ImVec2& c)" +defs["igImTriangleIsClockwise"][1]["call_args"] = "(a,b,c)" +defs["igImTriangleIsClockwise"][1]["cimguiname"] = "igImTriangleIsClockwise" +defs["igImTriangleIsClockwise"][1]["defaults"] = {} +defs["igImTriangleIsClockwise"][1]["funcname"] = "ImTriangleIsClockwise" +defs["igImTriangleIsClockwise"][1]["location"] = "imgui_internal:506" +defs["igImTriangleIsClockwise"][1]["ov_cimguiname"] = "igImTriangleIsClockwise" +defs["igImTriangleIsClockwise"][1]["ret"] = "bool" +defs["igImTriangleIsClockwise"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" +defs["igImTriangleIsClockwise"][1]["stname"] = "" +defs["igImTriangleIsClockwise"]["(const ImVec2,const ImVec2,const ImVec2)"] = defs["igImTriangleIsClockwise"][1] +defs["igImTrunc"] = {} +defs["igImTrunc"][1] = {} +defs["igImTrunc"][1]["args"] = "(float f)" +defs["igImTrunc"][1]["argsT"] = {} +defs["igImTrunc"][1]["argsT"][1] = {} +defs["igImTrunc"][1]["argsT"][1]["name"] = "f" +defs["igImTrunc"][1]["argsT"][1]["type"] = "float" +defs["igImTrunc"][1]["argsoriginal"] = "(float f)" +defs["igImTrunc"][1]["call_args"] = "(f)" +defs["igImTrunc"][1]["cimguiname"] = "igImTrunc" +defs["igImTrunc"][1]["defaults"] = {} +defs["igImTrunc"][1]["funcname"] = "ImTrunc" +defs["igImTrunc"][1]["location"] = "imgui_internal:482" +defs["igImTrunc"][1]["ov_cimguiname"] = "igImTrunc_Float" +defs["igImTrunc"][1]["ret"] = "float" +defs["igImTrunc"][1]["signature"] = "(float)" +defs["igImTrunc"][1]["stname"] = "" +defs["igImTrunc"][2] = {} +defs["igImTrunc"][2]["args"] = "(ImVec2 *pOut,const ImVec2 v)" +defs["igImTrunc"][2]["argsT"] = {} +defs["igImTrunc"][2]["argsT"][1] = {} +defs["igImTrunc"][2]["argsT"][1]["name"] = "pOut" +defs["igImTrunc"][2]["argsT"][1]["type"] = "ImVec2*" +defs["igImTrunc"][2]["argsT"][2] = {} +defs["igImTrunc"][2]["argsT"][2]["name"] = "v" +defs["igImTrunc"][2]["argsT"][2]["type"] = "const ImVec2" +defs["igImTrunc"][2]["argsoriginal"] = "(const ImVec2& v)" +defs["igImTrunc"][2]["call_args"] = "(v)" +defs["igImTrunc"][2]["cimguiname"] = "igImTrunc" +defs["igImTrunc"][2]["defaults"] = {} +defs["igImTrunc"][2]["funcname"] = "ImTrunc" +defs["igImTrunc"][2]["location"] = "imgui_internal:483" +defs["igImTrunc"][2]["nonUDT"] = 1 +defs["igImTrunc"][2]["ov_cimguiname"] = "igImTrunc_Vec2" +defs["igImTrunc"][2]["ret"] = "void" +defs["igImTrunc"][2]["signature"] = "(const ImVec2)" +defs["igImTrunc"][2]["stname"] = "" +defs["igImTrunc"]["(const ImVec2)"] = defs["igImTrunc"][2] +defs["igImTrunc"]["(float)"] = defs["igImTrunc"][1] defs["igImUpperPowerOfTwo"] = {} defs["igImUpperPowerOfTwo"][1] = {} defs["igImUpperPowerOfTwo"][1]["args"] = "(int v)" @@ -20599,7 +22098,7 @@ defs["igImUpperPowerOfTwo"][1]["call_args"] = "(v)" defs["igImUpperPowerOfTwo"][1]["cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["defaults"] = {} defs["igImUpperPowerOfTwo"][1]["funcname"] = "ImUpperPowerOfTwo" -defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:343" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:366" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -20607,13 +22106,13 @@ defs["igImUpperPowerOfTwo"][1]["stname"] = "" defs["igImUpperPowerOfTwo"]["(int)"] = defs["igImUpperPowerOfTwo"][1] defs["igImage"] = {} defs["igImage"][1] = {} -defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" +defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" defs["igImage"][1]["argsT"] = {} defs["igImage"][1]["argsT"][1] = {} defs["igImage"][1]["argsT"][1]["name"] = "user_texture_id" defs["igImage"][1]["argsT"][1]["type"] = "ImTextureID" defs["igImage"][1]["argsT"][2] = {} -defs["igImage"][1]["argsT"][2]["name"] = "size" +defs["igImage"][1]["argsT"][2]["name"] = "image_size" defs["igImage"][1]["argsT"][2]["type"] = "const ImVec2" defs["igImage"][1]["argsT"][3] = {} defs["igImage"][1]["argsT"][3]["name"] = "uv0" @@ -20627,8 +22126,8 @@ defs["igImage"][1]["argsT"][5]["type"] = "const ImVec4" defs["igImage"][1]["argsT"][6] = {} defs["igImage"][1]["argsT"][6]["name"] = "border_col" defs["igImage"][1]["argsT"][6]["type"] = "const ImVec4" -defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" -defs["igImage"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,tint_col,border_col)" +defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" +defs["igImage"][1]["call_args"] = "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)" defs["igImage"][1]["cimguiname"] = "igImage" defs["igImage"][1]["defaults"] = {} defs["igImage"][1]["defaults"]["border_col"] = "ImVec4(0,0,0,0)" @@ -20636,7 +22135,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:523" +defs["igImage"][1]["location"] = "imgui:572" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -20645,7 +22144,7 @@ defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} -defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" defs["igImageButton"][1]["argsT"] = {} defs["igImageButton"][1]["argsT"][1] = {} defs["igImageButton"][1]["argsT"][1]["name"] = "str_id" @@ -20654,7 +22153,7 @@ defs["igImageButton"][1]["argsT"][2] = {} defs["igImageButton"][1]["argsT"][2]["name"] = "user_texture_id" defs["igImageButton"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButton"][1]["argsT"][3] = {} -defs["igImageButton"][1]["argsT"][3]["name"] = "size" +defs["igImageButton"][1]["argsT"][3]["name"] = "image_size" defs["igImageButton"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][4] = {} defs["igImageButton"][1]["argsT"][4]["name"] = "uv0" @@ -20668,8 +22167,8 @@ defs["igImageButton"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButton"][1]["argsT"][7] = {} defs["igImageButton"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButton"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" -defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)" +defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" +defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)" defs["igImageButton"][1]["cimguiname"] = "igImageButton" defs["igImageButton"][1]["defaults"] = {} defs["igImageButton"][1]["defaults"]["bg_col"] = "ImVec4(0,0,0,0)" @@ -20677,7 +22176,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:524" +defs["igImageButton"][1]["location"] = "imgui:573" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -20686,7 +22185,7 @@ defs["igImageButton"][1]["stname"] = "" defs["igImageButton"]["(const char*,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButton"][1] defs["igImageButtonEx"] = {} defs["igImageButtonEx"][1] = {} -defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButtonEx"][1]["args"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col,ImGuiButtonFlags flags)" defs["igImageButtonEx"][1]["argsT"] = {} defs["igImageButtonEx"][1]["argsT"][1] = {} defs["igImageButtonEx"][1]["argsT"][1]["name"] = "id" @@ -20695,7 +22194,7 @@ defs["igImageButtonEx"][1]["argsT"][2] = {} defs["igImageButtonEx"][1]["argsT"][2]["name"] = "texture_id" defs["igImageButtonEx"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButtonEx"][1]["argsT"][3] = {} -defs["igImageButtonEx"][1]["argsT"][3]["name"] = "size" +defs["igImageButtonEx"][1]["argsT"][3]["name"] = "image_size" defs["igImageButtonEx"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButtonEx"][1]["argsT"][4] = {} defs["igImageButtonEx"][1]["argsT"][4]["name"] = "uv0" @@ -20709,18 +22208,22 @@ defs["igImageButtonEx"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButtonEx"][1]["argsT"][7] = {} defs["igImageButtonEx"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButtonEx"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col)" -defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,bg_col,tint_col)" +defs["igImageButtonEx"][1]["argsT"][8] = {} +defs["igImageButtonEx"][1]["argsT"][8]["name"] = "flags" +defs["igImageButtonEx"][1]["argsT"][8]["type"] = "ImGuiButtonFlags" +defs["igImageButtonEx"][1]["argsoriginal"] = "(ImGuiID id,ImTextureID texture_id,const ImVec2& image_size,const ImVec2& uv0,const ImVec2& uv1,const ImVec4& bg_col,const ImVec4& tint_col,ImGuiButtonFlags flags=0)" +defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,image_size,uv0,uv1,bg_col,tint_col,flags)" defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} +defs["igImageButtonEx"][1]["defaults"]["flags"] = "0" defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "imgui_internal:3371" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:3847" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" -defs["igImageButtonEx"][1]["signature"] = "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)" +defs["igImageButtonEx"][1]["signature"] = "(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4,ImGuiButtonFlags)" defs["igImageButtonEx"][1]["stname"] = "" -defs["igImageButtonEx"]["(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImageButtonEx"][1] +defs["igImageButtonEx"]["(ImGuiID,ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4,ImGuiButtonFlags)"] = defs["igImageButtonEx"][1] defs["igIndent"] = {} defs["igIndent"][1] = {} defs["igIndent"][1]["args"] = "(float indent_w)" @@ -20734,7 +22237,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:452" +defs["igIndent"][1]["location"] = "imgui:504" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -20750,7 +22253,7 @@ defs["igInitialize"][1]["call_args"] = "()" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "imgui_internal:2981" +defs["igInitialize"][1]["location"] = "imgui_internal:3397" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -20788,7 +22291,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:595" +defs["igInputDouble"][1]["location"] = "imgui:644" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -20826,7 +22329,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:587" +defs["igInputFloat"][1]["location"] = "imgui:636" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -20856,7 +22359,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:588" +defs["igInputFloat2"][1]["location"] = "imgui:637" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -20886,7 +22389,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:589" +defs["igInputFloat3"][1]["location"] = "imgui:638" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -20916,7 +22419,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:590" +defs["igInputFloat4"][1]["location"] = "imgui:639" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -20950,7 +22453,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:591" +defs["igInputInt"][1]["location"] = "imgui:640" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -20976,7 +22479,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:592" +defs["igInputInt2"][1]["location"] = "imgui:641" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -21002,7 +22505,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:593" +defs["igInputInt3"][1]["location"] = "imgui:642" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -21028,7 +22531,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:594" +defs["igInputInt4"][1]["location"] = "imgui:643" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -21069,7 +22572,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:596" +defs["igInputScalar"][1]["location"] = "imgui:645" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -21113,7 +22616,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:597" +defs["igInputScalarN"][1]["location"] = "imgui:646" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -21150,13 +22653,32 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:584" +defs["igInputText"][1]["location"] = "imgui:633" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" defs["igInputText"][1]["signature"] = "(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)" defs["igInputText"][1]["stname"] = "" defs["igInputText"]["(const char*,char*,size_t,ImGuiInputTextFlags,ImGuiInputTextCallback,void*)"] = defs["igInputText"][1] +defs["igInputTextDeactivateHook"] = {} +defs["igInputTextDeactivateHook"][1] = {} +defs["igInputTextDeactivateHook"][1]["args"] = "(ImGuiID id)" +defs["igInputTextDeactivateHook"][1]["argsT"] = {} +defs["igInputTextDeactivateHook"][1]["argsT"][1] = {} +defs["igInputTextDeactivateHook"][1]["argsT"][1]["name"] = "id" +defs["igInputTextDeactivateHook"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igInputTextDeactivateHook"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igInputTextDeactivateHook"][1]["call_args"] = "(id)" +defs["igInputTextDeactivateHook"][1]["cimguiname"] = "igInputTextDeactivateHook" +defs["igInputTextDeactivateHook"][1]["defaults"] = {} +defs["igInputTextDeactivateHook"][1]["funcname"] = "InputTextDeactivateHook" +defs["igInputTextDeactivateHook"][1]["location"] = "imgui_internal:3896" +defs["igInputTextDeactivateHook"][1]["namespace"] = "ImGui" +defs["igInputTextDeactivateHook"][1]["ov_cimguiname"] = "igInputTextDeactivateHook" +defs["igInputTextDeactivateHook"][1]["ret"] = "void" +defs["igInputTextDeactivateHook"][1]["signature"] = "(ImGuiID)" +defs["igInputTextDeactivateHook"][1]["stname"] = "" +defs["igInputTextDeactivateHook"]["(ImGuiID)"] = defs["igInputTextDeactivateHook"][1] defs["igInputTextEx"] = {} defs["igInputTextEx"][1] = {} defs["igInputTextEx"][1]["args"] = "(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data)" @@ -21192,7 +22714,7 @@ defs["igInputTextEx"][1]["defaults"] = {} defs["igInputTextEx"][1]["defaults"]["callback"] = "NULL" defs["igInputTextEx"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextEx"][1]["funcname"] = "InputTextEx" -defs["igInputTextEx"][1]["location"] = "imgui_internal:3415" +defs["igInputTextEx"][1]["location"] = "imgui_internal:3895" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -21233,7 +22755,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:585" +defs["igInputTextMultiline"][1]["location"] = "imgui:634" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -21273,7 +22795,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:586" +defs["igInputTextWithHint"][1]["location"] = "imgui:635" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -21299,7 +22821,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:511" +defs["igInvisibleButton"][1]["location"] = "imgui:556" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -21318,7 +22840,7 @@ defs["igIsActiveIdUsingNavDir"][1]["call_args"] = "(dir)" defs["igIsActiveIdUsingNavDir"][1]["cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["defaults"] = {} defs["igIsActiveIdUsingNavDir"][1]["funcname"] = "IsActiveIdUsingNavDir" -defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3143" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:3582" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -21337,7 +22859,7 @@ defs["igIsAliasKey"][1]["call_args"] = "(key)" defs["igIsAliasKey"][1]["cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["defaults"] = {} defs["igIsAliasKey"][1]["funcname"] = "IsAliasKey" -defs["igIsAliasKey"][1]["location"] = "imgui_internal:3121" +defs["igIsAliasKey"][1]["location"] = "imgui_internal:3559" defs["igIsAliasKey"][1]["namespace"] = "ImGui" defs["igIsAliasKey"][1]["ov_cimguiname"] = "igIsAliasKey" defs["igIsAliasKey"][1]["ret"] = "bool" @@ -21353,7 +22875,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui:876" +defs["igIsAnyItemActive"][1]["location"] = "imgui:950" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -21369,7 +22891,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui:877" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:951" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -21385,7 +22907,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui:875" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:949" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -21401,7 +22923,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui:940" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1036" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -21423,7 +22945,7 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" -defs["igIsClippedEx"][1]["location"] = "imgui_internal:3055" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:3477" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -21439,7 +22961,7 @@ defs["igIsDragDropActive"][1]["call_args"] = "()" defs["igIsDragDropActive"][1]["cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["defaults"] = {} defs["igIsDragDropActive"][1]["funcname"] = "IsDragDropActive" -defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3255" +defs["igIsDragDropActive"][1]["location"] = "imgui_internal:3704" defs["igIsDragDropActive"][1]["namespace"] = "ImGui" defs["igIsDragDropActive"][1]["ov_cimguiname"] = "igIsDragDropActive" defs["igIsDragDropActive"][1]["ret"] = "bool" @@ -21455,7 +22977,7 @@ defs["igIsDragDropPayloadBeingAccepted"][1]["call_args"] = "()" defs["igIsDragDropPayloadBeingAccepted"][1]["cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["defaults"] = {} defs["igIsDragDropPayloadBeingAccepted"][1]["funcname"] = "IsDragDropPayloadBeingAccepted" -defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3258" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:3707" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -21474,7 +22996,7 @@ defs["igIsGamepadKey"][1]["call_args"] = "(key)" defs["igIsGamepadKey"][1]["cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["defaults"] = {} defs["igIsGamepadKey"][1]["funcname"] = "IsGamepadKey" -defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3119" +defs["igIsGamepadKey"][1]["location"] = "imgui_internal:3557" defs["igIsGamepadKey"][1]["namespace"] = "ImGui" defs["igIsGamepadKey"][1]["ov_cimguiname"] = "igIsGamepadKey" defs["igIsGamepadKey"][1]["ret"] = "bool" @@ -21490,7 +23012,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui:871" +defs["igIsItemActivated"][1]["location"] = "imgui:945" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -21506,7 +23028,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui:866" +defs["igIsItemActive"][1]["location"] = "imgui:940" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -21526,7 +23048,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui:868" +defs["igIsItemClicked"][1]["location"] = "imgui:942" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -21542,7 +23064,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui:872" +defs["igIsItemDeactivated"][1]["location"] = "imgui:946" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -21558,7 +23080,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:873" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:947" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -21574,7 +23096,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui:870" +defs["igIsItemEdited"][1]["location"] = "imgui:944" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -21590,7 +23112,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui:867" +defs["igIsItemFocused"][1]["location"] = "imgui:941" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -21610,7 +23132,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui:865" +defs["igIsItemHovered"][1]["location"] = "imgui:939" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -21626,7 +23148,7 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui:874" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:948" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -21642,7 +23164,7 @@ defs["igIsItemToggledSelection"][1]["call_args"] = "()" defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["defaults"] = {} defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" -defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:3060" +defs["igIsItemToggledSelection"][1]["location"] = "imgui:695" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -21658,13 +23180,57 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui:869" +defs["igIsItemVisible"][1]["location"] = "imgui:943" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" defs["igIsItemVisible"][1]["signature"] = "()" defs["igIsItemVisible"][1]["stname"] = "" defs["igIsItemVisible"]["()"] = defs["igIsItemVisible"][1] +defs["igIsKeyChordPressed"] = {} +defs["igIsKeyChordPressed"][1] = {} +defs["igIsKeyChordPressed"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["argsT"] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1]["name"] = "key_chord" +defs["igIsKeyChordPressed"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igIsKeyChordPressed"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" +defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["defaults"] = {} +defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:994" +defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" +defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed_Nil" +defs["igIsKeyChordPressed"][1]["ret"] = "bool" +defs["igIsKeyChordPressed"][1]["signature"] = "(ImGuiKeyChord)" +defs["igIsKeyChordPressed"][1]["stname"] = "" +defs["igIsKeyChordPressed"][2] = {} +defs["igIsKeyChordPressed"][2]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igIsKeyChordPressed"][2]["argsT"] = {} +defs["igIsKeyChordPressed"][2]["argsT"][1] = {} +defs["igIsKeyChordPressed"][2]["argsT"][1]["name"] = "key_chord" +defs["igIsKeyChordPressed"][2]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igIsKeyChordPressed"][2]["argsT"][2] = {} +defs["igIsKeyChordPressed"][2]["argsT"][2]["name"] = "flags" +defs["igIsKeyChordPressed"][2]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igIsKeyChordPressed"][2]["argsT"][3] = {} +defs["igIsKeyChordPressed"][2]["argsT"][3]["name"] = "owner_id" +defs["igIsKeyChordPressed"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igIsKeyChordPressed"][2]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id=0)" +defs["igIsKeyChordPressed"][2]["call_args"] = "(key_chord,flags,owner_id)" +defs["igIsKeyChordPressed"][2]["cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][2]["defaults"] = {} +defs["igIsKeyChordPressed"][2]["defaults"]["owner_id"] = "0" +defs["igIsKeyChordPressed"][2]["funcname"] = "IsKeyChordPressed" +defs["igIsKeyChordPressed"][2]["location"] = "imgui_internal:3611" +defs["igIsKeyChordPressed"][2]["namespace"] = "ImGui" +defs["igIsKeyChordPressed"][2]["ov_cimguiname"] = "igIsKeyChordPressed_InputFlags" +defs["igIsKeyChordPressed"][2]["ret"] = "bool" +defs["igIsKeyChordPressed"][2]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)" +defs["igIsKeyChordPressed"][2]["stname"] = "" +defs["igIsKeyChordPressed"]["(ImGuiKeyChord)"] = defs["igIsKeyChordPressed"][1] +defs["igIsKeyChordPressed"]["(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)"] = defs["igIsKeyChordPressed"][2] defs["igIsKeyDown"] = {} defs["igIsKeyDown"][1] = {} defs["igIsKeyDown"][1]["args"] = "(ImGuiKey key)" @@ -21677,7 +23243,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:922" +defs["igIsKeyDown"][1]["location"] = "imgui:991" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown_Nil" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -21697,7 +23263,7 @@ defs["igIsKeyDown"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyDown"][2]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][2]["defaults"] = {} defs["igIsKeyDown"][2]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][2]["location"] = "imgui_internal:3168" +defs["igIsKeyDown"][2]["location"] = "imgui_internal:3608" defs["igIsKeyDown"][2]["namespace"] = "ImGui" defs["igIsKeyDown"][2]["ov_cimguiname"] = "igIsKeyDown_ID" defs["igIsKeyDown"][2]["ret"] = "bool" @@ -21721,61 +23287,38 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui:923" +defs["igIsKeyPressed"][1]["location"] = "imgui:992" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed_Bool" defs["igIsKeyPressed"][1]["ret"] = "bool" defs["igIsKeyPressed"][1]["signature"] = "(ImGuiKey,bool)" defs["igIsKeyPressed"][1]["stname"] = "" defs["igIsKeyPressed"][2] = {} -defs["igIsKeyPressed"][2]["args"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igIsKeyPressed"][2]["args"] = "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id)" defs["igIsKeyPressed"][2]["argsT"] = {} defs["igIsKeyPressed"][2]["argsT"][1] = {} defs["igIsKeyPressed"][2]["argsT"][1]["name"] = "key" defs["igIsKeyPressed"][2]["argsT"][1]["type"] = "ImGuiKey" defs["igIsKeyPressed"][2]["argsT"][2] = {} -defs["igIsKeyPressed"][2]["argsT"][2]["name"] = "owner_id" -defs["igIsKeyPressed"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsKeyPressed"][2]["argsT"][2]["name"] = "flags" +defs["igIsKeyPressed"][2]["argsT"][2]["type"] = "ImGuiInputFlags" defs["igIsKeyPressed"][2]["argsT"][3] = {} -defs["igIsKeyPressed"][2]["argsT"][3]["name"] = "flags" -defs["igIsKeyPressed"][2]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igIsKeyPressed"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags=0)" -defs["igIsKeyPressed"][2]["call_args"] = "(key,owner_id,flags)" +defs["igIsKeyPressed"][2]["argsT"][3]["name"] = "owner_id" +defs["igIsKeyPressed"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igIsKeyPressed"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags,ImGuiID owner_id=0)" +defs["igIsKeyPressed"][2]["call_args"] = "(key,flags,owner_id)" defs["igIsKeyPressed"][2]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][2]["defaults"] = {} -defs["igIsKeyPressed"][2]["defaults"]["flags"] = "0" +defs["igIsKeyPressed"][2]["defaults"]["owner_id"] = "0" defs["igIsKeyPressed"][2]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3169" +defs["igIsKeyPressed"][2]["location"] = "imgui_internal:3609" defs["igIsKeyPressed"][2]["namespace"] = "ImGui" -defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_ID" +defs["igIsKeyPressed"][2]["ov_cimguiname"] = "igIsKeyPressed_InputFlags" defs["igIsKeyPressed"][2]["ret"] = "bool" -defs["igIsKeyPressed"][2]["signature"] = "(ImGuiKey,ImGuiID,ImGuiInputFlags)" +defs["igIsKeyPressed"][2]["signature"] = "(ImGuiKey,ImGuiInputFlags,ImGuiID)" defs["igIsKeyPressed"][2]["stname"] = "" -defs["igIsKeyPressed"]["(ImGuiKey,ImGuiID,ImGuiInputFlags)"] = defs["igIsKeyPressed"][2] +defs["igIsKeyPressed"]["(ImGuiKey,ImGuiInputFlags,ImGuiID)"] = defs["igIsKeyPressed"][2] defs["igIsKeyPressed"]["(ImGuiKey,bool)"] = defs["igIsKeyPressed"][1] -defs["igIsKeyPressedMap"] = {} -defs["igIsKeyPressedMap"][1] = {} -defs["igIsKeyPressedMap"][1]["args"] = "(ImGuiKey key,bool repeat)" -defs["igIsKeyPressedMap"][1]["argsT"] = {} -defs["igIsKeyPressedMap"][1]["argsT"][1] = {} -defs["igIsKeyPressedMap"][1]["argsT"][1]["name"] = "key" -defs["igIsKeyPressedMap"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igIsKeyPressedMap"][1]["argsT"][2] = {} -defs["igIsKeyPressedMap"][1]["argsT"][2]["name"] = "repeat" -defs["igIsKeyPressedMap"][1]["argsT"][2]["type"] = "bool" -defs["igIsKeyPressedMap"][1]["argsoriginal"] = "(ImGuiKey key,bool repeat=true)" -defs["igIsKeyPressedMap"][1]["call_args"] = "(key,repeat)" -defs["igIsKeyPressedMap"][1]["cimguiname"] = "igIsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["defaults"] = {} -defs["igIsKeyPressedMap"][1]["defaults"]["repeat"] = "true" -defs["igIsKeyPressedMap"][1]["funcname"] = "IsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:3486" -defs["igIsKeyPressedMap"][1]["namespace"] = "ImGui" -defs["igIsKeyPressedMap"][1]["ov_cimguiname"] = "igIsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["ret"] = "bool" -defs["igIsKeyPressedMap"][1]["signature"] = "(ImGuiKey,bool)" -defs["igIsKeyPressedMap"][1]["stname"] = "" -defs["igIsKeyPressedMap"]["(ImGuiKey,bool)"] = defs["igIsKeyPressedMap"][1] defs["igIsKeyReleased"] = {} defs["igIsKeyReleased"][1] = {} defs["igIsKeyReleased"][1]["args"] = "(ImGuiKey key)" @@ -21788,7 +23331,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:924" +defs["igIsKeyReleased"][1]["location"] = "imgui:993" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased_Nil" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -21808,7 +23351,7 @@ defs["igIsKeyReleased"][2]["call_args"] = "(key,owner_id)" defs["igIsKeyReleased"][2]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][2]["defaults"] = {} defs["igIsKeyReleased"][2]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3170" +defs["igIsKeyReleased"][2]["location"] = "imgui_internal:3610" defs["igIsKeyReleased"][2]["namespace"] = "ImGui" defs["igIsKeyReleased"][2]["ov_cimguiname"] = "igIsKeyReleased_ID" defs["igIsKeyReleased"][2]["ret"] = "bool" @@ -21828,13 +23371,32 @@ defs["igIsKeyboardKey"][1]["call_args"] = "(key)" defs["igIsKeyboardKey"][1]["cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["defaults"] = {} defs["igIsKeyboardKey"][1]["funcname"] = "IsKeyboardKey" -defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3118" +defs["igIsKeyboardKey"][1]["location"] = "imgui_internal:3556" defs["igIsKeyboardKey"][1]["namespace"] = "ImGui" defs["igIsKeyboardKey"][1]["ov_cimguiname"] = "igIsKeyboardKey" defs["igIsKeyboardKey"][1]["ret"] = "bool" defs["igIsKeyboardKey"][1]["signature"] = "(ImGuiKey)" defs["igIsKeyboardKey"][1]["stname"] = "" defs["igIsKeyboardKey"]["(ImGuiKey)"] = defs["igIsKeyboardKey"][1] +defs["igIsLRModKey"] = {} +defs["igIsLRModKey"][1] = {} +defs["igIsLRModKey"][1]["args"] = "(ImGuiKey key)" +defs["igIsLRModKey"][1]["argsT"] = {} +defs["igIsLRModKey"][1]["argsT"][1] = {} +defs["igIsLRModKey"][1]["argsT"][1]["name"] = "key" +defs["igIsLRModKey"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsLRModKey"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsLRModKey"][1]["call_args"] = "(key)" +defs["igIsLRModKey"][1]["cimguiname"] = "igIsLRModKey" +defs["igIsLRModKey"][1]["defaults"] = {} +defs["igIsLRModKey"][1]["funcname"] = "IsLRModKey" +defs["igIsLRModKey"][1]["location"] = "imgui_internal:3560" +defs["igIsLRModKey"][1]["namespace"] = "ImGui" +defs["igIsLRModKey"][1]["ov_cimguiname"] = "igIsLRModKey" +defs["igIsLRModKey"][1]["ret"] = "bool" +defs["igIsLRModKey"][1]["signature"] = "(ImGuiKey)" +defs["igIsLRModKey"][1]["stname"] = "" +defs["igIsLRModKey"]["(ImGuiKey)"] = defs["igIsLRModKey"][1] defs["igIsLegacyKey"] = {} defs["igIsLegacyKey"][1] = {} defs["igIsLegacyKey"][1]["args"] = "(ImGuiKey key)" @@ -21847,7 +23409,7 @@ defs["igIsLegacyKey"][1]["call_args"] = "(key)" defs["igIsLegacyKey"][1]["cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["defaults"] = {} defs["igIsLegacyKey"][1]["funcname"] = "IsLegacyKey" -defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3117" +defs["igIsLegacyKey"][1]["location"] = "imgui_internal:3555" defs["igIsLegacyKey"][1]["namespace"] = "ImGui" defs["igIsLegacyKey"][1]["ov_cimguiname"] = "igIsLegacyKey" defs["igIsLegacyKey"][1]["ret"] = "bool" @@ -21870,37 +23432,37 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui:934" +defs["igIsMouseClicked"][1]["location"] = "imgui:1030" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked_Bool" defs["igIsMouseClicked"][1]["ret"] = "bool" defs["igIsMouseClicked"][1]["signature"] = "(ImGuiMouseButton,bool)" defs["igIsMouseClicked"][1]["stname"] = "" defs["igIsMouseClicked"][2] = {} -defs["igIsMouseClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igIsMouseClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id)" defs["igIsMouseClicked"][2]["argsT"] = {} defs["igIsMouseClicked"][2]["argsT"][1] = {} defs["igIsMouseClicked"][2]["argsT"][1]["name"] = "button" defs["igIsMouseClicked"][2]["argsT"][1]["type"] = "ImGuiMouseButton" defs["igIsMouseClicked"][2]["argsT"][2] = {} -defs["igIsMouseClicked"][2]["argsT"][2]["name"] = "owner_id" -defs["igIsMouseClicked"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseClicked"][2]["argsT"][2]["name"] = "flags" +defs["igIsMouseClicked"][2]["argsT"][2]["type"] = "ImGuiInputFlags" defs["igIsMouseClicked"][2]["argsT"][3] = {} -defs["igIsMouseClicked"][2]["argsT"][3]["name"] = "flags" -defs["igIsMouseClicked"][2]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igIsMouseClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id,ImGuiInputFlags flags=0)" -defs["igIsMouseClicked"][2]["call_args"] = "(button,owner_id,flags)" +defs["igIsMouseClicked"][2]["argsT"][3]["name"] = "owner_id" +defs["igIsMouseClicked"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igIsMouseClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiInputFlags flags,ImGuiID owner_id=0)" +defs["igIsMouseClicked"][2]["call_args"] = "(button,flags,owner_id)" defs["igIsMouseClicked"][2]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][2]["defaults"] = {} -defs["igIsMouseClicked"][2]["defaults"]["flags"] = "0" +defs["igIsMouseClicked"][2]["defaults"]["owner_id"] = "0" defs["igIsMouseClicked"][2]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3172" +defs["igIsMouseClicked"][2]["location"] = "imgui_internal:3613" defs["igIsMouseClicked"][2]["namespace"] = "ImGui" -defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_ID" +defs["igIsMouseClicked"][2]["ov_cimguiname"] = "igIsMouseClicked_InputFlags" defs["igIsMouseClicked"][2]["ret"] = "bool" -defs["igIsMouseClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)" +defs["igIsMouseClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiInputFlags,ImGuiID)" defs["igIsMouseClicked"][2]["stname"] = "" -defs["igIsMouseClicked"]["(ImGuiMouseButton,ImGuiID,ImGuiInputFlags)"] = defs["igIsMouseClicked"][2] +defs["igIsMouseClicked"]["(ImGuiMouseButton,ImGuiInputFlags,ImGuiID)"] = defs["igIsMouseClicked"][2] defs["igIsMouseClicked"]["(ImGuiMouseButton,bool)"] = defs["igIsMouseClicked"][1] defs["igIsMouseDoubleClicked"] = {} defs["igIsMouseDoubleClicked"][1] = {} @@ -21914,13 +23476,34 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:936" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1032" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" -defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked_Nil" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" defs["igIsMouseDoubleClicked"][1]["signature"] = "(ImGuiMouseButton)" defs["igIsMouseDoubleClicked"][1]["stname"] = "" +defs["igIsMouseDoubleClicked"][2] = {} +defs["igIsMouseDoubleClicked"][2]["args"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseDoubleClicked"][2]["argsT"] = {} +defs["igIsMouseDoubleClicked"][2]["argsT"][1] = {} +defs["igIsMouseDoubleClicked"][2]["argsT"][1]["name"] = "button" +defs["igIsMouseDoubleClicked"][2]["argsT"][1]["type"] = "ImGuiMouseButton" +defs["igIsMouseDoubleClicked"][2]["argsT"][2] = {} +defs["igIsMouseDoubleClicked"][2]["argsT"][2]["name"] = "owner_id" +defs["igIsMouseDoubleClicked"][2]["argsT"][2]["type"] = "ImGuiID" +defs["igIsMouseDoubleClicked"][2]["argsoriginal"] = "(ImGuiMouseButton button,ImGuiID owner_id)" +defs["igIsMouseDoubleClicked"][2]["call_args"] = "(button,owner_id)" +defs["igIsMouseDoubleClicked"][2]["cimguiname"] = "igIsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][2]["defaults"] = {} +defs["igIsMouseDoubleClicked"][2]["funcname"] = "IsMouseDoubleClicked" +defs["igIsMouseDoubleClicked"][2]["location"] = "imgui_internal:3615" +defs["igIsMouseDoubleClicked"][2]["namespace"] = "ImGui" +defs["igIsMouseDoubleClicked"][2]["ov_cimguiname"] = "igIsMouseDoubleClicked_ID" +defs["igIsMouseDoubleClicked"][2]["ret"] = "bool" +defs["igIsMouseDoubleClicked"][2]["signature"] = "(ImGuiMouseButton,ImGuiID)" +defs["igIsMouseDoubleClicked"][2]["stname"] = "" defs["igIsMouseDoubleClicked"]["(ImGuiMouseButton)"] = defs["igIsMouseDoubleClicked"][1] +defs["igIsMouseDoubleClicked"]["(ImGuiMouseButton,ImGuiID)"] = defs["igIsMouseDoubleClicked"][2] defs["igIsMouseDown"] = {} defs["igIsMouseDown"][1] = {} defs["igIsMouseDown"][1]["args"] = "(ImGuiMouseButton button)" @@ -21933,7 +23516,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui:933" +defs["igIsMouseDown"][1]["location"] = "imgui:1029" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown_Nil" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -21953,7 +23536,7 @@ defs["igIsMouseDown"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseDown"][2]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][2]["defaults"] = {} defs["igIsMouseDown"][2]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][2]["location"] = "imgui_internal:3171" +defs["igIsMouseDown"][2]["location"] = "imgui_internal:3612" defs["igIsMouseDown"][2]["namespace"] = "ImGui" defs["igIsMouseDown"][2]["ov_cimguiname"] = "igIsMouseDown_ID" defs["igIsMouseDown"][2]["ret"] = "bool" @@ -21977,7 +23560,7 @@ defs["igIsMouseDragPastThreshold"][1]["cimguiname"] = "igIsMouseDragPastThreshol defs["igIsMouseDragPastThreshold"][1]["defaults"] = {} defs["igIsMouseDragPastThreshold"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragPastThreshold"][1]["funcname"] = "IsMouseDragPastThreshold" -defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3137" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:3575" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -22000,7 +23583,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui:943" +defs["igIsMouseDragging"][1]["location"] = "imgui:1039" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -22026,7 +23609,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui:938" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1034" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -22045,7 +23628,7 @@ defs["igIsMouseKey"][1]["call_args"] = "(key)" defs["igIsMouseKey"][1]["cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["defaults"] = {} defs["igIsMouseKey"][1]["funcname"] = "IsMouseKey" -defs["igIsMouseKey"][1]["location"] = "imgui_internal:3120" +defs["igIsMouseKey"][1]["location"] = "imgui_internal:3558" defs["igIsMouseKey"][1]["namespace"] = "ImGui" defs["igIsMouseKey"][1]["ov_cimguiname"] = "igIsMouseKey" defs["igIsMouseKey"][1]["ret"] = "bool" @@ -22065,7 +23648,7 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui:939" +defs["igIsMousePosValid"][1]["location"] = "imgui:1035" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -22084,7 +23667,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui:935" +defs["igIsMouseReleased"][1]["location"] = "imgui:1031" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased_Nil" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -22104,7 +23687,7 @@ defs["igIsMouseReleased"][2]["call_args"] = "(button,owner_id)" defs["igIsMouseReleased"][2]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][2]["defaults"] = {} defs["igIsMouseReleased"][2]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3173" +defs["igIsMouseReleased"][2]["location"] = "imgui_internal:3614" defs["igIsMouseReleased"][2]["namespace"] = "ImGui" defs["igIsMouseReleased"][2]["ov_cimguiname"] = "igIsMouseReleased_ID" defs["igIsMouseReleased"][2]["ret"] = "bool" @@ -22124,32 +23707,32 @@ defs["igIsNamedKey"][1]["call_args"] = "(key)" defs["igIsNamedKey"][1]["cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["defaults"] = {} defs["igIsNamedKey"][1]["funcname"] = "IsNamedKey" -defs["igIsNamedKey"][1]["location"] = "imgui_internal:3115" +defs["igIsNamedKey"][1]["location"] = "imgui_internal:3553" defs["igIsNamedKey"][1]["namespace"] = "ImGui" defs["igIsNamedKey"][1]["ov_cimguiname"] = "igIsNamedKey" defs["igIsNamedKey"][1]["ret"] = "bool" defs["igIsNamedKey"][1]["signature"] = "(ImGuiKey)" defs["igIsNamedKey"][1]["stname"] = "" defs["igIsNamedKey"]["(ImGuiKey)"] = defs["igIsNamedKey"][1] -defs["igIsNamedKeyOrModKey"] = {} -defs["igIsNamedKeyOrModKey"][1] = {} -defs["igIsNamedKeyOrModKey"][1]["args"] = "(ImGuiKey key)" -defs["igIsNamedKeyOrModKey"][1]["argsT"] = {} -defs["igIsNamedKeyOrModKey"][1]["argsT"][1] = {} -defs["igIsNamedKeyOrModKey"][1]["argsT"][1]["name"] = "key" -defs["igIsNamedKeyOrModKey"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igIsNamedKeyOrModKey"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igIsNamedKeyOrModKey"][1]["call_args"] = "(key)" -defs["igIsNamedKeyOrModKey"][1]["cimguiname"] = "igIsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["defaults"] = {} -defs["igIsNamedKeyOrModKey"][1]["funcname"] = "IsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["location"] = "imgui_internal:3116" -defs["igIsNamedKeyOrModKey"][1]["namespace"] = "ImGui" -defs["igIsNamedKeyOrModKey"][1]["ov_cimguiname"] = "igIsNamedKeyOrModKey" -defs["igIsNamedKeyOrModKey"][1]["ret"] = "bool" -defs["igIsNamedKeyOrModKey"][1]["signature"] = "(ImGuiKey)" -defs["igIsNamedKeyOrModKey"][1]["stname"] = "" -defs["igIsNamedKeyOrModKey"]["(ImGuiKey)"] = defs["igIsNamedKeyOrModKey"][1] +defs["igIsNamedKeyOrMod"] = {} +defs["igIsNamedKeyOrMod"][1] = {} +defs["igIsNamedKeyOrMod"][1]["args"] = "(ImGuiKey key)" +defs["igIsNamedKeyOrMod"][1]["argsT"] = {} +defs["igIsNamedKeyOrMod"][1]["argsT"][1] = {} +defs["igIsNamedKeyOrMod"][1]["argsT"][1]["name"] = "key" +defs["igIsNamedKeyOrMod"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igIsNamedKeyOrMod"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igIsNamedKeyOrMod"][1]["call_args"] = "(key)" +defs["igIsNamedKeyOrMod"][1]["cimguiname"] = "igIsNamedKeyOrMod" +defs["igIsNamedKeyOrMod"][1]["defaults"] = {} +defs["igIsNamedKeyOrMod"][1]["funcname"] = "IsNamedKeyOrMod" +defs["igIsNamedKeyOrMod"][1]["location"] = "imgui_internal:3554" +defs["igIsNamedKeyOrMod"][1]["namespace"] = "ImGui" +defs["igIsNamedKeyOrMod"][1]["ov_cimguiname"] = "igIsNamedKeyOrMod" +defs["igIsNamedKeyOrMod"][1]["ret"] = "bool" +defs["igIsNamedKeyOrMod"][1]["signature"] = "(ImGuiKey)" +defs["igIsNamedKeyOrMod"][1]["stname"] = "" +defs["igIsNamedKeyOrMod"]["(ImGuiKey)"] = defs["igIsNamedKeyOrMod"][1] defs["igIsPopupOpen"] = {} defs["igIsPopupOpen"][1] = {} defs["igIsPopupOpen"][1]["args"] = "(const char* str_id,ImGuiPopupFlags flags)" @@ -22166,7 +23749,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:723" +defs["igIsPopupOpen"][1]["location"] = "imgui:793" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen_Str" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -22186,7 +23769,7 @@ defs["igIsPopupOpen"][2]["call_args"] = "(id,popup_flags)" defs["igIsPopupOpen"][2]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][2]["defaults"] = {} defs["igIsPopupOpen"][2]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3080" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:3504" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpen_ID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -22206,7 +23789,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui:897" +defs["igIsRectVisible"][1]["location"] = "imgui:968" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -22226,7 +23809,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui:898" +defs["igIsRectVisible"][2]["location"] = "imgui:969" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -22249,7 +23832,7 @@ defs["igIsWindowAbove"][1]["call_args"] = "(potential_above,potential_below)" defs["igIsWindowAbove"][1]["cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["defaults"] = {} defs["igIsWindowAbove"][1]["funcname"] = "IsWindowAbove" -defs["igIsWindowAbove"][1]["location"] = "imgui_internal:2956" +defs["igIsWindowAbove"][1]["location"] = "imgui_internal:3364" defs["igIsWindowAbove"][1]["namespace"] = "ImGui" defs["igIsWindowAbove"][1]["ov_cimguiname"] = "igIsWindowAbove" defs["igIsWindowAbove"][1]["ret"] = "bool" @@ -22265,7 +23848,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:353" +defs["igIsWindowAppearing"][1]["location"] = "imgui:398" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -22293,7 +23876,7 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent,popup_hier defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" -defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:2954" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:3362" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -22309,13 +23892,36 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:354" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:399" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" defs["igIsWindowCollapsed"][1]["signature"] = "()" defs["igIsWindowCollapsed"][1]["stname"] = "" defs["igIsWindowCollapsed"]["()"] = defs["igIsWindowCollapsed"][1] +defs["igIsWindowContentHoverable"] = {} +defs["igIsWindowContentHoverable"][1] = {} +defs["igIsWindowContentHoverable"][1]["args"] = "(ImGuiWindow* window,ImGuiHoveredFlags flags)" +defs["igIsWindowContentHoverable"][1]["argsT"] = {} +defs["igIsWindowContentHoverable"][1]["argsT"][1] = {} +defs["igIsWindowContentHoverable"][1]["argsT"][1]["name"] = "window" +defs["igIsWindowContentHoverable"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igIsWindowContentHoverable"][1]["argsT"][2] = {} +defs["igIsWindowContentHoverable"][1]["argsT"][2]["name"] = "flags" +defs["igIsWindowContentHoverable"][1]["argsT"][2]["type"] = "ImGuiHoveredFlags" +defs["igIsWindowContentHoverable"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiHoveredFlags flags=0)" +defs["igIsWindowContentHoverable"][1]["call_args"] = "(window,flags)" +defs["igIsWindowContentHoverable"][1]["cimguiname"] = "igIsWindowContentHoverable" +defs["igIsWindowContentHoverable"][1]["defaults"] = {} +defs["igIsWindowContentHoverable"][1]["defaults"]["flags"] = "0" +defs["igIsWindowContentHoverable"][1]["funcname"] = "IsWindowContentHoverable" +defs["igIsWindowContentHoverable"][1]["location"] = "imgui_internal:3476" +defs["igIsWindowContentHoverable"][1]["namespace"] = "ImGui" +defs["igIsWindowContentHoverable"][1]["ov_cimguiname"] = "igIsWindowContentHoverable" +defs["igIsWindowContentHoverable"][1]["ret"] = "bool" +defs["igIsWindowContentHoverable"][1]["signature"] = "(ImGuiWindow*,ImGuiHoveredFlags)" +defs["igIsWindowContentHoverable"][1]["stname"] = "" +defs["igIsWindowContentHoverable"]["(ImGuiWindow*,ImGuiHoveredFlags)"] = defs["igIsWindowContentHoverable"][1] defs["igIsWindowDocked"] = {} defs["igIsWindowDocked"][1] = {} defs["igIsWindowDocked"][1]["args"] = "()" @@ -22325,7 +23931,7 @@ defs["igIsWindowDocked"][1]["call_args"] = "()" defs["igIsWindowDocked"][1]["cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["defaults"] = {} defs["igIsWindowDocked"][1]["funcname"] = "IsWindowDocked" -defs["igIsWindowDocked"][1]["location"] = "imgui:820" +defs["igIsWindowDocked"][1]["location"] = "imgui:890" defs["igIsWindowDocked"][1]["namespace"] = "ImGui" defs["igIsWindowDocked"][1]["ov_cimguiname"] = "igIsWindowDocked" defs["igIsWindowDocked"][1]["ret"] = "bool" @@ -22345,7 +23951,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:355" +defs["igIsWindowFocused"][1]["location"] = "imgui:400" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -22365,7 +23971,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:356" +defs["igIsWindowHovered"][1]["location"] = "imgui:401" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -22384,7 +23990,7 @@ defs["igIsWindowNavFocusable"][1]["call_args"] = "(window)" defs["igIsWindowNavFocusable"][1]["cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["defaults"] = {} defs["igIsWindowNavFocusable"][1]["funcname"] = "IsWindowNavFocusable" -defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:2957" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:3365" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -22406,7 +24012,7 @@ defs["igIsWindowWithinBeginStackOf"][1]["call_args"] = "(window,potential_parent defs["igIsWindowWithinBeginStackOf"][1]["cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["defaults"] = {} defs["igIsWindowWithinBeginStackOf"][1]["funcname"] = "IsWindowWithinBeginStackOf" -defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:2955" +defs["igIsWindowWithinBeginStackOf"][1]["location"] = "imgui_internal:3363" defs["igIsWindowWithinBeginStackOf"][1]["namespace"] = "ImGui" defs["igIsWindowWithinBeginStackOf"][1]["ov_cimguiname"] = "igIsWindowWithinBeginStackOf" defs["igIsWindowWithinBeginStackOf"][1]["ret"] = "bool" @@ -22436,7 +24042,7 @@ defs["igItemAdd"][1]["defaults"] = {} defs["igItemAdd"][1]["defaults"]["extra_flags"] = "0" defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" -defs["igItemAdd"][1]["location"] = "imgui_internal:3053" +defs["igItemAdd"][1]["location"] = "imgui_internal:3474" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -22445,7 +24051,7 @@ defs["igItemAdd"][1]["stname"] = "" defs["igItemAdd"]["(const ImRect,ImGuiID,const ImRect*,ImGuiItemFlags)"] = defs["igItemAdd"][1] defs["igItemHoverable"] = {} defs["igItemHoverable"][1] = {} -defs["igItemHoverable"][1]["args"] = "(const ImRect bb,ImGuiID id)" +defs["igItemHoverable"][1]["args"] = "(const ImRect bb,ImGuiID id,ImGuiItemFlags item_flags)" defs["igItemHoverable"][1]["argsT"] = {} defs["igItemHoverable"][1]["argsT"][1] = {} defs["igItemHoverable"][1]["argsT"][1]["name"] = "bb" @@ -22453,18 +24059,21 @@ defs["igItemHoverable"][1]["argsT"][1]["type"] = "const ImRect" defs["igItemHoverable"][1]["argsT"][2] = {} defs["igItemHoverable"][1]["argsT"][2]["name"] = "id" defs["igItemHoverable"][1]["argsT"][2]["type"] = "ImGuiID" -defs["igItemHoverable"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id)" -defs["igItemHoverable"][1]["call_args"] = "(bb,id)" +defs["igItemHoverable"][1]["argsT"][3] = {} +defs["igItemHoverable"][1]["argsT"][3]["name"] = "item_flags" +defs["igItemHoverable"][1]["argsT"][3]["type"] = "ImGuiItemFlags" +defs["igItemHoverable"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiItemFlags item_flags)" +defs["igItemHoverable"][1]["call_args"] = "(bb,id,item_flags)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "imgui_internal:3054" +defs["igItemHoverable"][1]["location"] = "imgui_internal:3475" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" -defs["igItemHoverable"][1]["signature"] = "(const ImRect,ImGuiID)" +defs["igItemHoverable"][1]["signature"] = "(const ImRect,ImGuiID,ImGuiItemFlags)" defs["igItemHoverable"][1]["stname"] = "" -defs["igItemHoverable"]["(const ImRect,ImGuiID)"] = defs["igItemHoverable"][1] +defs["igItemHoverable"]["(const ImRect,ImGuiID,ImGuiItemFlags)"] = defs["igItemHoverable"][1] defs["igItemSize"] = {} defs["igItemSize"][1] = {} defs["igItemSize"][1]["args"] = "(const ImVec2 size,float text_baseline_y)" @@ -22481,7 +24090,7 @@ defs["igItemSize"][1]["cimguiname"] = "igItemSize" defs["igItemSize"][1]["defaults"] = {} defs["igItemSize"][1]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][1]["funcname"] = "ItemSize" -defs["igItemSize"][1]["location"] = "imgui_internal:3051" +defs["igItemSize"][1]["location"] = "imgui_internal:3472" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSize_Vec2" defs["igItemSize"][1]["ret"] = "void" @@ -22502,7 +24111,7 @@ defs["igItemSize"][2]["cimguiname"] = "igItemSize" defs["igItemSize"][2]["defaults"] = {} defs["igItemSize"][2]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][2]["funcname"] = "ItemSize" -defs["igItemSize"][2]["location"] = "imgui_internal:3052" +defs["igItemSize"][2]["location"] = "imgui_internal:3473" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSize_Rect" defs["igItemSize"][2]["ret"] = "void" @@ -22522,7 +24131,7 @@ defs["igKeepAliveID"][1]["call_args"] = "(id)" defs["igKeepAliveID"][1]["cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["defaults"] = {} defs["igKeepAliveID"][1]["funcname"] = "KeepAliveID" -defs["igKeepAliveID"][1]["location"] = "imgui_internal:3045" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:3465" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -22548,7 +24157,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:501" +defs["igLabelText"][1]["location"] = "imgui:545" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -22573,7 +24182,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:502" +defs["igLabelTextV"][1]["location"] = "imgui:546" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -22605,14 +24214,14 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:643" +defs["igListBox"][1]["location"] = "imgui:705" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" defs["igListBox"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" defs["igListBox"][1]["stname"] = "" defs["igListBox"][2] = {} -defs["igListBox"][2]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)" +defs["igListBox"][2]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)" defs["igListBox"][2]["argsT"] = {} defs["igListBox"][2]["argsT"][1] = {} defs["igListBox"][2]["argsT"][1]["name"] = "label" @@ -22621,12 +24230,12 @@ defs["igListBox"][2]["argsT"][2] = {} defs["igListBox"][2]["argsT"][2]["name"] = "current_item" defs["igListBox"][2]["argsT"][2]["type"] = "int*" defs["igListBox"][2]["argsT"][3] = {} -defs["igListBox"][2]["argsT"][3]["name"] = "items_getter" -defs["igListBox"][2]["argsT"][3]["ret"] = "bool" -defs["igListBox"][2]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igListBox"][2]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igListBox"][2]["argsT"][3]["name"] = "getter" +defs["igListBox"][2]["argsT"][3]["ret"] = "const char*" +defs["igListBox"][2]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igListBox"][2]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igListBox"][2]["argsT"][4] = {} -defs["igListBox"][2]["argsT"][4]["name"] = "data" +defs["igListBox"][2]["argsT"][4]["name"] = "user_data" defs["igListBox"][2]["argsT"][4]["type"] = "void*" defs["igListBox"][2]["argsT"][5] = {} defs["igListBox"][2]["argsT"][5]["name"] = "items_count" @@ -22634,20 +24243,20 @@ defs["igListBox"][2]["argsT"][5]["type"] = "int" defs["igListBox"][2]["argsT"][6] = {} defs["igListBox"][2]["argsT"][6]["name"] = "height_in_items" defs["igListBox"][2]["argsT"][6]["type"] = "int" -defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)" -defs["igListBox"][2]["call_args"] = "(label,current_item,items_getter,data,items_count,height_in_items)" +defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)" +defs["igListBox"][2]["call_args"] = "(label,current_item,getter,user_data,items_count,height_in_items)" defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:644" +defs["igListBox"][2]["location"] = "imgui:706" defs["igListBox"][2]["namespace"] = "ImGui" -defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnBoolPtr" +defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" -defs["igListBox"][2]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igListBox"][2]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igListBox"][2]["stname"] = "" -defs["igListBox"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igListBox"][2] defs["igListBox"]["(const char*,int*,const char* const[],int,int)"] = defs["igListBox"][1] +defs["igListBox"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igListBox"][2] defs["igLoadIniSettingsFromDisk"] = {} defs["igLoadIniSettingsFromDisk"][1] = {} defs["igLoadIniSettingsFromDisk"][1]["args"] = "(const char* ini_filename)" @@ -22660,7 +24269,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:959" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1055" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -22683,7 +24292,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:960" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1056" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -22702,7 +24311,7 @@ defs["igLocalizeGetMsg"][1]["call_args"] = "(key)" defs["igLocalizeGetMsg"][1]["cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["defaults"] = {} defs["igLocalizeGetMsg"][1]["funcname"] = "LocalizeGetMsg" -defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3019" +defs["igLocalizeGetMsg"][1]["location"] = "imgui_internal:3439" defs["igLocalizeGetMsg"][1]["namespace"] = "ImGui" defs["igLocalizeGetMsg"][1]["ov_cimguiname"] = "igLocalizeGetMsg" defs["igLocalizeGetMsg"][1]["ret"] = "const char*" @@ -22724,7 +24333,7 @@ defs["igLocalizeRegisterEntries"][1]["call_args"] = "(entries,count)" defs["igLocalizeRegisterEntries"][1]["cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["defaults"] = {} defs["igLocalizeRegisterEntries"][1]["funcname"] = "LocalizeRegisterEntries" -defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3018" +defs["igLocalizeRegisterEntries"][1]["location"] = "imgui_internal:3438" defs["igLocalizeRegisterEntries"][1]["namespace"] = "ImGui" defs["igLocalizeRegisterEntries"][1]["ov_cimguiname"] = "igLocalizeRegisterEntries" defs["igLocalizeRegisterEntries"][1]["ret"] = "void" @@ -22746,7 +24355,7 @@ defs["igLogBegin"][1]["call_args"] = "(type,auto_open_depth)" defs["igLogBegin"][1]["cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["defaults"] = {} defs["igLogBegin"][1]["funcname"] = "LogBegin" -defs["igLogBegin"][1]["location"] = "imgui_internal:3069" +defs["igLogBegin"][1]["location"] = "imgui_internal:3490" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -22762,7 +24371,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui:828" +defs["igLogButtons"][1]["location"] = "imgui:898" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -22778,7 +24387,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui:827" +defs["igLogFinish"][1]["location"] = "imgui:897" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -22804,7 +24413,7 @@ defs["igLogRenderedText"][1]["cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["defaults"] = {} defs["igLogRenderedText"][1]["defaults"]["text_end"] = "NULL" defs["igLogRenderedText"][1]["funcname"] = "LogRenderedText" -defs["igLogRenderedText"][1]["location"] = "imgui_internal:3071" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:3492" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -22826,7 +24435,7 @@ defs["igLogSetNextTextDecoration"][1]["call_args"] = "(prefix,suffix)" defs["igLogSetNextTextDecoration"][1]["cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["defaults"] = {} defs["igLogSetNextTextDecoration"][1]["funcname"] = "LogSetNextTextDecoration" -defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3072" +defs["igLogSetNextTextDecoration"][1]["location"] = "imgui_internal:3493" defs["igLogSetNextTextDecoration"][1]["namespace"] = "ImGui" defs["igLogSetNextTextDecoration"][1]["ov_cimguiname"] = "igLogSetNextTextDecoration" defs["igLogSetNextTextDecoration"][1]["ret"] = "void" @@ -22849,7 +24458,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:829" +defs["igLogText"][1]["location"] = "imgui:899" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -22872,7 +24481,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:830" +defs["igLogTextV"][1]["location"] = "imgui:900" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -22892,7 +24501,7 @@ defs["igLogToBuffer"][1]["cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["defaults"] = {} defs["igLogToBuffer"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToBuffer"][1]["funcname"] = "LogToBuffer" -defs["igLogToBuffer"][1]["location"] = "imgui_internal:3070" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:3491" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -22912,7 +24521,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui:826" +defs["igLogToClipboard"][1]["location"] = "imgui:896" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -22936,7 +24545,7 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui:825" +defs["igLogToFile"][1]["location"] = "imgui:895" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -22956,7 +24565,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui:824" +defs["igLogToTTY"][1]["location"] = "imgui:894" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -22972,7 +24581,7 @@ defs["igMarkIniSettingsDirty"][1]["call_args"] = "()" defs["igMarkIniSettingsDirty"][1]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][1]["defaults"] = {} defs["igMarkIniSettingsDirty"][1]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3007" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:3424" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirty_Nil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -22989,7 +24598,7 @@ defs["igMarkIniSettingsDirty"][2]["call_args"] = "(window)" defs["igMarkIniSettingsDirty"][2]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][2]["defaults"] = {} defs["igMarkIniSettingsDirty"][2]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3008" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:3425" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirty_WindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -23009,7 +24618,7 @@ defs["igMarkItemEdited"][1]["call_args"] = "(id)" defs["igMarkItemEdited"][1]["cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["defaults"] = {} defs["igMarkItemEdited"][1]["funcname"] = "MarkItemEdited" -defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3046" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:3466" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -23028,7 +24637,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui:974" +defs["igMemAlloc"][1]["location"] = "imgui:1077" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -23047,7 +24656,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui:975" +defs["igMemFree"][1]["location"] = "imgui:1078" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -23078,7 +24687,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:671" +defs["igMenuItem"][1]["location"] = "imgui:733" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -23105,7 +24714,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:672" +defs["igMenuItem"][2]["location"] = "imgui:734" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -23140,7 +24749,7 @@ defs["igMenuItemEx"][1]["defaults"]["enabled"] = "true" defs["igMenuItemEx"][1]["defaults"]["selected"] = "false" defs["igMenuItemEx"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItemEx"][1]["funcname"] = "MenuItemEx" -defs["igMenuItemEx"][1]["location"] = "imgui_internal:3092" +defs["igMenuItemEx"][1]["location"] = "imgui_internal:3519" defs["igMenuItemEx"][1]["namespace"] = "ImGui" defs["igMenuItemEx"][1]["ov_cimguiname"] = "igMenuItemEx" defs["igMenuItemEx"][1]["ret"] = "bool" @@ -23159,13 +24768,154 @@ defs["igMouseButtonToKey"][1]["call_args"] = "(button)" defs["igMouseButtonToKey"][1]["cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["defaults"] = {} defs["igMouseButtonToKey"][1]["funcname"] = "MouseButtonToKey" -defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3136" +defs["igMouseButtonToKey"][1]["location"] = "imgui_internal:3574" defs["igMouseButtonToKey"][1]["namespace"] = "ImGui" defs["igMouseButtonToKey"][1]["ov_cimguiname"] = "igMouseButtonToKey" defs["igMouseButtonToKey"][1]["ret"] = "ImGuiKey" defs["igMouseButtonToKey"][1]["signature"] = "(ImGuiMouseButton)" defs["igMouseButtonToKey"][1]["stname"] = "" defs["igMouseButtonToKey"]["(ImGuiMouseButton)"] = defs["igMouseButtonToKey"][1] +defs["igMultiSelectAddSetAll"] = {} +defs["igMultiSelectAddSetAll"][1] = {} +defs["igMultiSelectAddSetAll"][1]["args"] = "(ImGuiMultiSelectTempData* ms,bool selected)" +defs["igMultiSelectAddSetAll"][1]["argsT"] = {} +defs["igMultiSelectAddSetAll"][1]["argsT"][1] = {} +defs["igMultiSelectAddSetAll"][1]["argsT"][1]["name"] = "ms" +defs["igMultiSelectAddSetAll"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["igMultiSelectAddSetAll"][1]["argsT"][2] = {} +defs["igMultiSelectAddSetAll"][1]["argsT"][2]["name"] = "selected" +defs["igMultiSelectAddSetAll"][1]["argsT"][2]["type"] = "bool" +defs["igMultiSelectAddSetAll"][1]["argsoriginal"] = "(ImGuiMultiSelectTempData* ms,bool selected)" +defs["igMultiSelectAddSetAll"][1]["call_args"] = "(ms,selected)" +defs["igMultiSelectAddSetAll"][1]["cimguiname"] = "igMultiSelectAddSetAll" +defs["igMultiSelectAddSetAll"][1]["defaults"] = {} +defs["igMultiSelectAddSetAll"][1]["funcname"] = "MultiSelectAddSetAll" +defs["igMultiSelectAddSetAll"][1]["location"] = "imgui_internal:3723" +defs["igMultiSelectAddSetAll"][1]["namespace"] = "ImGui" +defs["igMultiSelectAddSetAll"][1]["ov_cimguiname"] = "igMultiSelectAddSetAll" +defs["igMultiSelectAddSetAll"][1]["ret"] = "void" +defs["igMultiSelectAddSetAll"][1]["signature"] = "(ImGuiMultiSelectTempData*,bool)" +defs["igMultiSelectAddSetAll"][1]["stname"] = "" +defs["igMultiSelectAddSetAll"]["(ImGuiMultiSelectTempData*,bool)"] = defs["igMultiSelectAddSetAll"][1] +defs["igMultiSelectAddSetRange"] = {} +defs["igMultiSelectAddSetRange"][1] = {} +defs["igMultiSelectAddSetRange"][1]["args"] = "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)" +defs["igMultiSelectAddSetRange"][1]["argsT"] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][1] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][1]["name"] = "ms" +defs["igMultiSelectAddSetRange"][1]["argsT"][1]["type"] = "ImGuiMultiSelectTempData*" +defs["igMultiSelectAddSetRange"][1]["argsT"][2] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][2]["name"] = "selected" +defs["igMultiSelectAddSetRange"][1]["argsT"][2]["type"] = "bool" +defs["igMultiSelectAddSetRange"][1]["argsT"][3] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][3]["name"] = "range_dir" +defs["igMultiSelectAddSetRange"][1]["argsT"][3]["type"] = "int" +defs["igMultiSelectAddSetRange"][1]["argsT"][4] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][4]["name"] = "first_item" +defs["igMultiSelectAddSetRange"][1]["argsT"][4]["type"] = "ImGuiSelectionUserData" +defs["igMultiSelectAddSetRange"][1]["argsT"][5] = {} +defs["igMultiSelectAddSetRange"][1]["argsT"][5]["name"] = "last_item" +defs["igMultiSelectAddSetRange"][1]["argsT"][5]["type"] = "ImGuiSelectionUserData" +defs["igMultiSelectAddSetRange"][1]["argsoriginal"] = "(ImGuiMultiSelectTempData* ms,bool selected,int range_dir,ImGuiSelectionUserData first_item,ImGuiSelectionUserData last_item)" +defs["igMultiSelectAddSetRange"][1]["call_args"] = "(ms,selected,range_dir,first_item,last_item)" +defs["igMultiSelectAddSetRange"][1]["cimguiname"] = "igMultiSelectAddSetRange" +defs["igMultiSelectAddSetRange"][1]["defaults"] = {} +defs["igMultiSelectAddSetRange"][1]["funcname"] = "MultiSelectAddSetRange" +defs["igMultiSelectAddSetRange"][1]["location"] = "imgui_internal:3724" +defs["igMultiSelectAddSetRange"][1]["namespace"] = "ImGui" +defs["igMultiSelectAddSetRange"][1]["ov_cimguiname"] = "igMultiSelectAddSetRange" +defs["igMultiSelectAddSetRange"][1]["ret"] = "void" +defs["igMultiSelectAddSetRange"][1]["signature"] = "(ImGuiMultiSelectTempData*,bool,int,ImGuiSelectionUserData,ImGuiSelectionUserData)" +defs["igMultiSelectAddSetRange"][1]["stname"] = "" +defs["igMultiSelectAddSetRange"]["(ImGuiMultiSelectTempData*,bool,int,ImGuiSelectionUserData,ImGuiSelectionUserData)"] = defs["igMultiSelectAddSetRange"][1] +defs["igMultiSelectItemFooter"] = {} +defs["igMultiSelectItemFooter"][1] = {} +defs["igMultiSelectItemFooter"][1]["args"] = "(ImGuiID id,bool* p_selected,bool* p_pressed)" +defs["igMultiSelectItemFooter"][1]["argsT"] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][1] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][1]["name"] = "id" +defs["igMultiSelectItemFooter"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igMultiSelectItemFooter"][1]["argsT"][2] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][2]["name"] = "p_selected" +defs["igMultiSelectItemFooter"][1]["argsT"][2]["type"] = "bool*" +defs["igMultiSelectItemFooter"][1]["argsT"][3] = {} +defs["igMultiSelectItemFooter"][1]["argsT"][3]["name"] = "p_pressed" +defs["igMultiSelectItemFooter"][1]["argsT"][3]["type"] = "bool*" +defs["igMultiSelectItemFooter"][1]["argsoriginal"] = "(ImGuiID id,bool* p_selected,bool* p_pressed)" +defs["igMultiSelectItemFooter"][1]["call_args"] = "(id,p_selected,p_pressed)" +defs["igMultiSelectItemFooter"][1]["cimguiname"] = "igMultiSelectItemFooter" +defs["igMultiSelectItemFooter"][1]["defaults"] = {} +defs["igMultiSelectItemFooter"][1]["funcname"] = "MultiSelectItemFooter" +defs["igMultiSelectItemFooter"][1]["location"] = "imgui_internal:3722" +defs["igMultiSelectItemFooter"][1]["namespace"] = "ImGui" +defs["igMultiSelectItemFooter"][1]["ov_cimguiname"] = "igMultiSelectItemFooter" +defs["igMultiSelectItemFooter"][1]["ret"] = "void" +defs["igMultiSelectItemFooter"][1]["signature"] = "(ImGuiID,bool*,bool*)" +defs["igMultiSelectItemFooter"][1]["stname"] = "" +defs["igMultiSelectItemFooter"]["(ImGuiID,bool*,bool*)"] = defs["igMultiSelectItemFooter"][1] +defs["igMultiSelectItemHeader"] = {} +defs["igMultiSelectItemHeader"][1] = {} +defs["igMultiSelectItemHeader"][1]["args"] = "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)" +defs["igMultiSelectItemHeader"][1]["argsT"] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][1] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][1]["name"] = "id" +defs["igMultiSelectItemHeader"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igMultiSelectItemHeader"][1]["argsT"][2] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][2]["name"] = "p_selected" +defs["igMultiSelectItemHeader"][1]["argsT"][2]["type"] = "bool*" +defs["igMultiSelectItemHeader"][1]["argsT"][3] = {} +defs["igMultiSelectItemHeader"][1]["argsT"][3]["name"] = "p_button_flags" +defs["igMultiSelectItemHeader"][1]["argsT"][3]["type"] = "ImGuiButtonFlags*" +defs["igMultiSelectItemHeader"][1]["argsoriginal"] = "(ImGuiID id,bool* p_selected,ImGuiButtonFlags* p_button_flags)" +defs["igMultiSelectItemHeader"][1]["call_args"] = "(id,p_selected,p_button_flags)" +defs["igMultiSelectItemHeader"][1]["cimguiname"] = "igMultiSelectItemHeader" +defs["igMultiSelectItemHeader"][1]["defaults"] = {} +defs["igMultiSelectItemHeader"][1]["funcname"] = "MultiSelectItemHeader" +defs["igMultiSelectItemHeader"][1]["location"] = "imgui_internal:3721" +defs["igMultiSelectItemHeader"][1]["namespace"] = "ImGui" +defs["igMultiSelectItemHeader"][1]["ov_cimguiname"] = "igMultiSelectItemHeader" +defs["igMultiSelectItemHeader"][1]["ret"] = "void" +defs["igMultiSelectItemHeader"][1]["signature"] = "(ImGuiID,bool*,ImGuiButtonFlags*)" +defs["igMultiSelectItemHeader"][1]["stname"] = "" +defs["igMultiSelectItemHeader"]["(ImGuiID,bool*,ImGuiButtonFlags*)"] = defs["igMultiSelectItemHeader"][1] +defs["igNavClearPreferredPosForAxis"] = {} +defs["igNavClearPreferredPosForAxis"][1] = {} +defs["igNavClearPreferredPosForAxis"][1]["args"] = "(ImGuiAxis axis)" +defs["igNavClearPreferredPosForAxis"][1]["argsT"] = {} +defs["igNavClearPreferredPosForAxis"][1]["argsT"][1] = {} +defs["igNavClearPreferredPosForAxis"][1]["argsT"][1]["name"] = "axis" +defs["igNavClearPreferredPosForAxis"][1]["argsT"][1]["type"] = "ImGuiAxis" +defs["igNavClearPreferredPosForAxis"][1]["argsoriginal"] = "(ImGuiAxis axis)" +defs["igNavClearPreferredPosForAxis"][1]["call_args"] = "(axis)" +defs["igNavClearPreferredPosForAxis"][1]["cimguiname"] = "igNavClearPreferredPosForAxis" +defs["igNavClearPreferredPosForAxis"][1]["defaults"] = {} +defs["igNavClearPreferredPosForAxis"][1]["funcname"] = "NavClearPreferredPosForAxis" +defs["igNavClearPreferredPosForAxis"][1]["location"] = "imgui_internal:3538" +defs["igNavClearPreferredPosForAxis"][1]["namespace"] = "ImGui" +defs["igNavClearPreferredPosForAxis"][1]["ov_cimguiname"] = "igNavClearPreferredPosForAxis" +defs["igNavClearPreferredPosForAxis"][1]["ret"] = "void" +defs["igNavClearPreferredPosForAxis"][1]["signature"] = "(ImGuiAxis)" +defs["igNavClearPreferredPosForAxis"][1]["stname"] = "" +defs["igNavClearPreferredPosForAxis"]["(ImGuiAxis)"] = defs["igNavClearPreferredPosForAxis"][1] +defs["igNavHighlightActivated"] = {} +defs["igNavHighlightActivated"][1] = {} +defs["igNavHighlightActivated"][1]["args"] = "(ImGuiID id)" +defs["igNavHighlightActivated"][1]["argsT"] = {} +defs["igNavHighlightActivated"][1]["argsT"][1] = {} +defs["igNavHighlightActivated"][1]["argsT"][1]["name"] = "id" +defs["igNavHighlightActivated"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igNavHighlightActivated"][1]["argsoriginal"] = "(ImGuiID id)" +defs["igNavHighlightActivated"][1]["call_args"] = "(id)" +defs["igNavHighlightActivated"][1]["cimguiname"] = "igNavHighlightActivated" +defs["igNavHighlightActivated"][1]["defaults"] = {} +defs["igNavHighlightActivated"][1]["funcname"] = "NavHighlightActivated" +defs["igNavHighlightActivated"][1]["location"] = "imgui_internal:3537" +defs["igNavHighlightActivated"][1]["namespace"] = "ImGui" +defs["igNavHighlightActivated"][1]["ov_cimguiname"] = "igNavHighlightActivated" +defs["igNavHighlightActivated"][1]["ret"] = "void" +defs["igNavHighlightActivated"][1]["signature"] = "(ImGuiID)" +defs["igNavHighlightActivated"][1]["stname"] = "" +defs["igNavHighlightActivated"]["(ImGuiID)"] = defs["igNavHighlightActivated"][1] defs["igNavInitRequestApplyResult"] = {} defs["igNavInitRequestApplyResult"][1] = {} defs["igNavInitRequestApplyResult"][1]["args"] = "()" @@ -23175,7 +24925,7 @@ defs["igNavInitRequestApplyResult"][1]["call_args"] = "()" defs["igNavInitRequestApplyResult"][1]["cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["defaults"] = {} defs["igNavInitRequestApplyResult"][1]["funcname"] = "NavInitRequestApplyResult" -defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3101" +defs["igNavInitRequestApplyResult"][1]["location"] = "imgui_internal:3528" defs["igNavInitRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavInitRequestApplyResult"][1]["ov_cimguiname"] = "igNavInitRequestApplyResult" defs["igNavInitRequestApplyResult"][1]["ret"] = "void" @@ -23197,7 +24947,7 @@ defs["igNavInitWindow"][1]["call_args"] = "(window,force_reinit)" defs["igNavInitWindow"][1]["cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["defaults"] = {} defs["igNavInitWindow"][1]["funcname"] = "NavInitWindow" -defs["igNavInitWindow"][1]["location"] = "imgui_internal:3100" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:3527" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -23213,7 +24963,7 @@ defs["igNavMoveRequestApplyResult"][1]["call_args"] = "()" defs["igNavMoveRequestApplyResult"][1]["cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["defaults"] = {} defs["igNavMoveRequestApplyResult"][1]["funcname"] = "NavMoveRequestApplyResult" -defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3107" +defs["igNavMoveRequestApplyResult"][1]["location"] = "imgui_internal:3535" defs["igNavMoveRequestApplyResult"][1]["namespace"] = "ImGui" defs["igNavMoveRequestApplyResult"][1]["ov_cimguiname"] = "igNavMoveRequestApplyResult" defs["igNavMoveRequestApplyResult"][1]["ret"] = "void" @@ -23229,7 +24979,7 @@ defs["igNavMoveRequestButNoResultYet"][1]["call_args"] = "()" defs["igNavMoveRequestButNoResultYet"][1]["cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["defaults"] = {} defs["igNavMoveRequestButNoResultYet"][1]["funcname"] = "NavMoveRequestButNoResultYet" -defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3102" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:3529" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -23245,7 +24995,7 @@ defs["igNavMoveRequestCancel"][1]["call_args"] = "()" defs["igNavMoveRequestCancel"][1]["cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["defaults"] = {} defs["igNavMoveRequestCancel"][1]["funcname"] = "NavMoveRequestCancel" -defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3106" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:3534" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -23273,7 +25023,7 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,move_flags defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" -defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3104" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:3531" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -23292,13 +25042,35 @@ defs["igNavMoveRequestResolveWithLastItem"][1]["call_args"] = "(result)" defs["igNavMoveRequestResolveWithLastItem"][1]["cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["defaults"] = {} defs["igNavMoveRequestResolveWithLastItem"][1]["funcname"] = "NavMoveRequestResolveWithLastItem" -defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3105" +defs["igNavMoveRequestResolveWithLastItem"][1]["location"] = "imgui_internal:3532" defs["igNavMoveRequestResolveWithLastItem"][1]["namespace"] = "ImGui" defs["igNavMoveRequestResolveWithLastItem"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithLastItem" defs["igNavMoveRequestResolveWithLastItem"][1]["ret"] = "void" defs["igNavMoveRequestResolveWithLastItem"][1]["signature"] = "(ImGuiNavItemData*)" defs["igNavMoveRequestResolveWithLastItem"][1]["stname"] = "" defs["igNavMoveRequestResolveWithLastItem"]["(ImGuiNavItemData*)"] = defs["igNavMoveRequestResolveWithLastItem"][1] +defs["igNavMoveRequestResolveWithPastTreeNode"] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["args"] = "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][1] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][1]["name"] = "result" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][1]["type"] = "ImGuiNavItemData*" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][2] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][2]["name"] = "tree_node_data" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsT"][2]["type"] = "ImGuiTreeNodeStackData*" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["argsoriginal"] = "(ImGuiNavItemData* result,ImGuiTreeNodeStackData* tree_node_data)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["call_args"] = "(result,tree_node_data)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["defaults"] = {} +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["funcname"] = "NavMoveRequestResolveWithPastTreeNode" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["location"] = "imgui_internal:3533" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["namespace"] = "ImGui" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ov_cimguiname"] = "igNavMoveRequestResolveWithPastTreeNode" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["ret"] = "void" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["signature"] = "(ImGuiNavItemData*,ImGuiTreeNodeStackData*)" +defs["igNavMoveRequestResolveWithPastTreeNode"][1]["stname"] = "" +defs["igNavMoveRequestResolveWithPastTreeNode"]["(ImGuiNavItemData*,ImGuiTreeNodeStackData*)"] = defs["igNavMoveRequestResolveWithPastTreeNode"][1] defs["igNavMoveRequestSubmit"] = {} defs["igNavMoveRequestSubmit"][1] = {} defs["igNavMoveRequestSubmit"][1]["args"] = "(ImGuiDir move_dir,ImGuiDir clip_dir,ImGuiNavMoveFlags move_flags,ImGuiScrollFlags scroll_flags)" @@ -23320,7 +25092,7 @@ defs["igNavMoveRequestSubmit"][1]["call_args"] = "(move_dir,clip_dir,move_flags, defs["igNavMoveRequestSubmit"][1]["cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["defaults"] = {} defs["igNavMoveRequestSubmit"][1]["funcname"] = "NavMoveRequestSubmit" -defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3103" +defs["igNavMoveRequestSubmit"][1]["location"] = "imgui_internal:3530" defs["igNavMoveRequestSubmit"][1]["namespace"] = "ImGui" defs["igNavMoveRequestSubmit"][1]["ov_cimguiname"] = "igNavMoveRequestSubmit" defs["igNavMoveRequestSubmit"][1]["ret"] = "void" @@ -23342,13 +25114,45 @@ defs["igNavMoveRequestTryWrapping"][1]["call_args"] = "(window,move_flags)" defs["igNavMoveRequestTryWrapping"][1]["cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["defaults"] = {} defs["igNavMoveRequestTryWrapping"][1]["funcname"] = "NavMoveRequestTryWrapping" -defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3108" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:3536" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" defs["igNavMoveRequestTryWrapping"][1]["signature"] = "(ImGuiWindow*,ImGuiNavMoveFlags)" defs["igNavMoveRequestTryWrapping"][1]["stname"] = "" defs["igNavMoveRequestTryWrapping"]["(ImGuiWindow*,ImGuiNavMoveFlags)"] = defs["igNavMoveRequestTryWrapping"][1] +defs["igNavRestoreHighlightAfterMove"] = {} +defs["igNavRestoreHighlightAfterMove"][1] = {} +defs["igNavRestoreHighlightAfterMove"][1]["args"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["argsT"] = {} +defs["igNavRestoreHighlightAfterMove"][1]["argsoriginal"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["call_args"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["cimguiname"] = "igNavRestoreHighlightAfterMove" +defs["igNavRestoreHighlightAfterMove"][1]["defaults"] = {} +defs["igNavRestoreHighlightAfterMove"][1]["funcname"] = "NavRestoreHighlightAfterMove" +defs["igNavRestoreHighlightAfterMove"][1]["location"] = "imgui_internal:3539" +defs["igNavRestoreHighlightAfterMove"][1]["namespace"] = "ImGui" +defs["igNavRestoreHighlightAfterMove"][1]["ov_cimguiname"] = "igNavRestoreHighlightAfterMove" +defs["igNavRestoreHighlightAfterMove"][1]["ret"] = "void" +defs["igNavRestoreHighlightAfterMove"][1]["signature"] = "()" +defs["igNavRestoreHighlightAfterMove"][1]["stname"] = "" +defs["igNavRestoreHighlightAfterMove"]["()"] = defs["igNavRestoreHighlightAfterMove"][1] +defs["igNavUpdateCurrentWindowIsScrollPushableX"] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["args"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["argsT"] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["argsoriginal"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["call_args"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["defaults"] = {} +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["funcname"] = "NavUpdateCurrentWindowIsScrollPushableX" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["location"] = "imgui_internal:3540" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["namespace"] = "ImGui" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ov_cimguiname"] = "igNavUpdateCurrentWindowIsScrollPushableX" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["ret"] = "void" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["signature"] = "()" +defs["igNavUpdateCurrentWindowIsScrollPushableX"][1]["stname"] = "" +defs["igNavUpdateCurrentWindowIsScrollPushableX"]["()"] = defs["igNavUpdateCurrentWindowIsScrollPushableX"][1] defs["igNewFrame"] = {} defs["igNewFrame"][1] = {} defs["igNewFrame"][1]["args"] = "()" @@ -23358,7 +25162,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:302" +defs["igNewFrame"][1]["location"] = "imgui:337" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -23374,7 +25178,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:449" +defs["igNewLine"][1]["location"] = "imgui:501" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -23390,7 +25194,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:785" +defs["igNextColumn"][1]["location"] = "imgui:855" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -23413,7 +25217,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:705" +defs["igOpenPopup"][1]["location"] = "imgui:775" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -23434,7 +25238,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:706" +defs["igOpenPopup"][2]["location"] = "imgui:776" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -23458,7 +25262,7 @@ defs["igOpenPopupEx"][1]["cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["defaults"] = {} defs["igOpenPopupEx"][1]["defaults"]["popup_flags"] = "ImGuiPopupFlags_None" defs["igOpenPopupEx"][1]["funcname"] = "OpenPopupEx" -defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3076" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:3500" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -23482,7 +25286,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:707" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:777" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -23491,7 +25295,7 @@ defs["igOpenPopupOnItemClick"][1]["stname"] = "" defs["igOpenPopupOnItemClick"]["(const char*,ImGuiPopupFlags)"] = defs["igOpenPopupOnItemClick"][1] defs["igPlotEx"] = {} defs["igPlotEx"][1] = {} -defs["igPlotEx"][1]["args"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)" +defs["igPlotEx"][1]["args"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2 size_arg)" defs["igPlotEx"][1]["argsT"] = {} defs["igPlotEx"][1]["argsT"][1] = {} defs["igPlotEx"][1]["argsT"][1]["name"] = "plot_type" @@ -23523,20 +25327,20 @@ defs["igPlotEx"][1]["argsT"][9] = {} defs["igPlotEx"][1]["argsT"][9]["name"] = "scale_max" defs["igPlotEx"][1]["argsT"][9]["type"] = "float" defs["igPlotEx"][1]["argsT"][10] = {} -defs["igPlotEx"][1]["argsT"][10]["name"] = "frame_size" -defs["igPlotEx"][1]["argsT"][10]["type"] = "ImVec2" -defs["igPlotEx"][1]["argsoriginal"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 frame_size)" -defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,frame_size)" +defs["igPlotEx"][1]["argsT"][10]["name"] = "size_arg" +defs["igPlotEx"][1]["argsT"][10]["type"] = "const ImVec2" +defs["igPlotEx"][1]["argsoriginal"] = "(ImGuiPlotType plot_type,const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,const ImVec2& size_arg)" +defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,size_arg)" defs["igPlotEx"][1]["cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["defaults"] = {} defs["igPlotEx"][1]["funcname"] = "PlotEx" -defs["igPlotEx"][1]["location"] = "imgui_internal:3427" +defs["igPlotEx"][1]["location"] = "imgui_internal:3909" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" -defs["igPlotEx"][1]["signature"] = "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)" +defs["igPlotEx"][1]["signature"] = "(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,const ImVec2)" defs["igPlotEx"][1]["stname"] = "" -defs["igPlotEx"]["(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotEx"][1] +defs["igPlotEx"]["(ImGuiPlotType,const char*,float(*)(void*,int),void*,int,int,const char*,float,float,const ImVec2)"] = defs["igPlotEx"][1] defs["igPlotHistogram"] = {} defs["igPlotHistogram"][1] = {} defs["igPlotHistogram"][1]["args"] = "(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride)" @@ -23568,7 +25372,7 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["defaults"] = {} @@ -23579,7 +25383,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:650" +defs["igPlotHistogram"][1]["location"] = "imgui:712" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -23617,7 +25421,7 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["defaults"] = {} @@ -23627,7 +25431,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:651" +defs["igPlotHistogram"][2]["location"] = "imgui:713" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -23666,7 +25470,7 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["defaults"] = {} @@ -23677,7 +25481,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:648" +defs["igPlotLines"][1]["location"] = "imgui:710" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -23715,7 +25519,7 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["defaults"] = {} @@ -23725,7 +25529,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:649" +defs["igPlotLines"][2]["location"] = "imgui:711" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -23733,38 +25537,6 @@ defs["igPlotLines"][2]["signature"] = "(const char*,float(*)(void*,int),void*,in defs["igPlotLines"][2]["stname"] = "" defs["igPlotLines"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotLines"][1] defs["igPlotLines"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotLines"][2] -defs["igPopAllowKeyboardFocus"] = {} -defs["igPopAllowKeyboardFocus"][1] = {} -defs["igPopAllowKeyboardFocus"][1]["args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPopAllowKeyboardFocus"][1]["argsoriginal"] = "()" -defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:418" -defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPopAllowKeyboardFocus"][1]["signature"] = "()" -defs["igPopAllowKeyboardFocus"][1]["stname"] = "" -defs["igPopAllowKeyboardFocus"]["()"] = defs["igPopAllowKeyboardFocus"][1] -defs["igPopButtonRepeat"] = {} -defs["igPopButtonRepeat"][1] = {} -defs["igPopButtonRepeat"][1]["args"] = "()" -defs["igPopButtonRepeat"][1]["argsT"] = {} -defs["igPopButtonRepeat"][1]["argsoriginal"] = "()" -defs["igPopButtonRepeat"][1]["call_args"] = "()" -defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["defaults"] = {} -defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui:420" -defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["ret"] = "void" -defs["igPopButtonRepeat"][1]["signature"] = "()" -defs["igPopButtonRepeat"][1]["stname"] = "" -defs["igPopButtonRepeat"]["()"] = defs["igPopButtonRepeat"][1] defs["igPopClipRect"] = {} defs["igPopClipRect"][1] = {} defs["igPopClipRect"][1]["args"] = "()" @@ -23774,7 +25546,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui:855" +defs["igPopClipRect"][1]["location"] = "imgui:926" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -23790,7 +25562,7 @@ defs["igPopColumnsBackground"][1]["call_args"] = "()" defs["igPopColumnsBackground"][1]["cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["defaults"] = {} defs["igPopColumnsBackground"][1]["funcname"] = "PopColumnsBackground" -defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3267" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:3734" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -23806,7 +25578,7 @@ defs["igPopFocusScope"][1]["call_args"] = "()" defs["igPopFocusScope"][1]["cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["defaults"] = {} defs["igPopFocusScope"][1]["funcname"] = "PopFocusScope" -defs["igPopFocusScope"][1]["location"] = "imgui_internal:3251" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:3700" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -23822,7 +25594,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:410" +defs["igPopFont"][1]["location"] = "imgui:447" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -23838,7 +25610,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:486" +defs["igPopID"][1]["location"] = "imgui:529" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -23854,7 +25626,7 @@ defs["igPopItemFlag"][1]["call_args"] = "()" defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["defaults"] = {} defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" -defs["igPopItemFlag"][1]["location"] = "imgui_internal:3066" +defs["igPopItemFlag"][1]["location"] = "imgui:457" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -23870,7 +25642,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:424" +defs["igPopItemWidth"][1]["location"] = "imgui:461" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -23890,7 +25662,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:413" +defs["igPopStyleColor"][1]["location"] = "imgui:450" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -23910,7 +25682,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:416" +defs["igPopStyleVar"][1]["location"] = "imgui:455" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -23926,7 +25698,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:428" +defs["igPopTextWrapPos"][1]["location"] = "imgui:465" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -23946,58 +25718,20 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:518" +defs["igProgressBar"][1]["location"] = "imgui:563" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" defs["igProgressBar"][1]["signature"] = "(float,const ImVec2,const char*)" defs["igProgressBar"][1]["stname"] = "" defs["igProgressBar"]["(float,const ImVec2,const char*)"] = defs["igProgressBar"][1] -defs["igPushAllowKeyboardFocus"] = {} -defs["igPushAllowKeyboardFocus"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["args"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["name"] = "allow_keyboard_focus" -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["type"] = "bool" -defs["igPushAllowKeyboardFocus"][1]["argsoriginal"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:417" -defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPushAllowKeyboardFocus"][1]["signature"] = "(bool)" -defs["igPushAllowKeyboardFocus"][1]["stname"] = "" -defs["igPushAllowKeyboardFocus"]["(bool)"] = defs["igPushAllowKeyboardFocus"][1] -defs["igPushButtonRepeat"] = {} -defs["igPushButtonRepeat"][1] = {} -defs["igPushButtonRepeat"][1]["args"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["argsT"] = {} -defs["igPushButtonRepeat"][1]["argsT"][1] = {} -defs["igPushButtonRepeat"][1]["argsT"][1]["name"] = "repeat" -defs["igPushButtonRepeat"][1]["argsT"][1]["type"] = "bool" -defs["igPushButtonRepeat"][1]["argsoriginal"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" -defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["defaults"] = {} -defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui:419" -defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["ret"] = "void" -defs["igPushButtonRepeat"][1]["signature"] = "(bool)" -defs["igPushButtonRepeat"][1]["stname"] = "" -defs["igPushButtonRepeat"]["(bool)"] = defs["igPushButtonRepeat"][1] defs["igPushClipRect"] = {} defs["igPushClipRect"][1] = {} defs["igPushClipRect"][1]["args"] = "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)" @@ -24016,7 +25750,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui:854" +defs["igPushClipRect"][1]["location"] = "imgui:925" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -24035,7 +25769,7 @@ defs["igPushColumnClipRect"][1]["call_args"] = "(column_index)" defs["igPushColumnClipRect"][1]["cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["defaults"] = {} defs["igPushColumnClipRect"][1]["funcname"] = "PushColumnClipRect" -defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3265" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:3732" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -24051,7 +25785,7 @@ defs["igPushColumnsBackground"][1]["call_args"] = "()" defs["igPushColumnsBackground"][1]["cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["defaults"] = {} defs["igPushColumnsBackground"][1]["funcname"] = "PushColumnsBackground" -defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3266" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:3733" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -24070,7 +25804,7 @@ defs["igPushFocusScope"][1]["call_args"] = "(id)" defs["igPushFocusScope"][1]["cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["defaults"] = {} defs["igPushFocusScope"][1]["funcname"] = "PushFocusScope" -defs["igPushFocusScope"][1]["location"] = "imgui_internal:3250" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:3699" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -24089,7 +25823,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:409" +defs["igPushFont"][1]["location"] = "imgui:446" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -24108,7 +25842,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:482" +defs["igPushID"][1]["location"] = "imgui:525" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -24128,7 +25862,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:483" +defs["igPushID"][2]["location"] = "imgui:526" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -24145,7 +25879,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:484" +defs["igPushID"][3]["location"] = "imgui:527" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -24162,7 +25896,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:485" +defs["igPushID"][4]["location"] = "imgui:528" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -24187,7 +25921,7 @@ defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["defaults"] = {} defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" -defs["igPushItemFlag"][1]["location"] = "imgui_internal:3065" +defs["igPushItemFlag"][1]["location"] = "imgui:456" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -24206,7 +25940,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:423" +defs["igPushItemWidth"][1]["location"] = "imgui:460" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -24228,7 +25962,7 @@ defs["igPushMultiItemsWidths"][1]["call_args"] = "(components,width_full)" defs["igPushMultiItemsWidths"][1]["cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["defaults"] = {} defs["igPushMultiItemsWidths"][1]["funcname"] = "PushMultiItemsWidths" -defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3059" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:3481" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -24247,7 +25981,7 @@ defs["igPushOverrideID"][1]["call_args"] = "(id)" defs["igPushOverrideID"][1]["cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["defaults"] = {} defs["igPushOverrideID"][1]["funcname"] = "PushOverrideID" -defs["igPushOverrideID"][1]["location"] = "imgui_internal:3047" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:3467" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -24269,7 +26003,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:411" +defs["igPushStyleColor"][1]["location"] = "imgui:448" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -24289,7 +26023,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:412" +defs["igPushStyleColor"][2]["location"] = "imgui:449" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -24312,7 +26046,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:414" +defs["igPushStyleVar"][1]["location"] = "imgui:451" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -24332,7 +26066,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:415" +defs["igPushStyleVar"][2]["location"] = "imgui:452" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -24340,6 +26074,50 @@ defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] +defs["igPushStyleVarX"] = {} +defs["igPushStyleVarX"][1] = {} +defs["igPushStyleVarX"][1]["args"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["argsT"] = {} +defs["igPushStyleVarX"][1]["argsT"][1] = {} +defs["igPushStyleVarX"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarX"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarX"][1]["argsT"][2] = {} +defs["igPushStyleVarX"][1]["argsT"][2]["name"] = "val_x" +defs["igPushStyleVarX"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarX"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["call_args"] = "(idx,val_x)" +defs["igPushStyleVarX"][1]["cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["defaults"] = {} +defs["igPushStyleVarX"][1]["funcname"] = "PushStyleVarX" +defs["igPushStyleVarX"][1]["location"] = "imgui:453" +defs["igPushStyleVarX"][1]["namespace"] = "ImGui" +defs["igPushStyleVarX"][1]["ov_cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["ret"] = "void" +defs["igPushStyleVarX"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarX"][1]["stname"] = "" +defs["igPushStyleVarX"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarX"][1] +defs["igPushStyleVarY"] = {} +defs["igPushStyleVarY"][1] = {} +defs["igPushStyleVarY"][1]["args"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["argsT"] = {} +defs["igPushStyleVarY"][1]["argsT"][1] = {} +defs["igPushStyleVarY"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarY"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarY"][1]["argsT"][2] = {} +defs["igPushStyleVarY"][1]["argsT"][2]["name"] = "val_y" +defs["igPushStyleVarY"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarY"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["call_args"] = "(idx,val_y)" +defs["igPushStyleVarY"][1]["cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["defaults"] = {} +defs["igPushStyleVarY"][1]["funcname"] = "PushStyleVarY" +defs["igPushStyleVarY"][1]["location"] = "imgui:454" +defs["igPushStyleVarY"][1]["namespace"] = "ImGui" +defs["igPushStyleVarY"][1]["ov_cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["ret"] = "void" +defs["igPushStyleVarY"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarY"][1]["stname"] = "" +defs["igPushStyleVarY"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarY"][1] defs["igPushTextWrapPos"] = {} defs["igPushTextWrapPos"][1] = {} defs["igPushTextWrapPos"][1]["args"] = "(float wrap_local_pos_x)" @@ -24353,7 +26131,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:427" +defs["igPushTextWrapPos"][1]["location"] = "imgui:464" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -24375,7 +26153,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:516" +defs["igRadioButton"][1]["location"] = "imgui:561" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -24398,7 +26176,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:517" +defs["igRadioButton"][2]["location"] = "imgui:562" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -24421,7 +26199,7 @@ defs["igRemoveContextHook"][1]["call_args"] = "(context,hook_to_remove)" defs["igRemoveContextHook"][1]["cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["defaults"] = {} defs["igRemoveContextHook"][1]["funcname"] = "RemoveContextHook" -defs["igRemoveContextHook"][1]["location"] = "imgui_internal:2994" +defs["igRemoveContextHook"][1]["location"] = "imgui_internal:3411" defs["igRemoveContextHook"][1]["namespace"] = "ImGui" defs["igRemoveContextHook"][1]["ov_cimguiname"] = "igRemoveContextHook" defs["igRemoveContextHook"][1]["ret"] = "void" @@ -24440,7 +26218,7 @@ defs["igRemoveSettingsHandler"][1]["call_args"] = "(type_name)" defs["igRemoveSettingsHandler"][1]["cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["defaults"] = {} defs["igRemoveSettingsHandler"][1]["funcname"] = "RemoveSettingsHandler" -defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3014" +defs["igRemoveSettingsHandler"][1]["location"] = "imgui_internal:3428" defs["igRemoveSettingsHandler"][1]["namespace"] = "ImGui" defs["igRemoveSettingsHandler"][1]["ov_cimguiname"] = "igRemoveSettingsHandler" defs["igRemoveSettingsHandler"][1]["ret"] = "void" @@ -24456,7 +26234,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:304" +defs["igRender"][1]["location"] = "imgui:339" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -24488,7 +26266,7 @@ defs["igRenderArrow"][1]["cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["defaults"] = {} defs["igRenderArrow"][1]["defaults"]["scale"] = "1.0f" defs["igRenderArrow"][1]["funcname"] = "RenderArrow" -defs["igRenderArrow"][1]["location"] = "imgui_internal:3358" +defs["igRenderArrow"][1]["location"] = "imgui_internal:3834" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -24516,7 +26294,7 @@ defs["igRenderArrowDockMenu"][1]["call_args"] = "(draw_list,p_min,sz,col)" defs["igRenderArrowDockMenu"][1]["cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["defaults"] = {} defs["igRenderArrowDockMenu"][1]["funcname"] = "RenderArrowDockMenu" -defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3362" +defs["igRenderArrowDockMenu"][1]["location"] = "imgui_internal:3838" defs["igRenderArrowDockMenu"][1]["namespace"] = "ImGui" defs["igRenderArrowDockMenu"][1]["ov_cimguiname"] = "igRenderArrowDockMenu" defs["igRenderArrowDockMenu"][1]["ret"] = "void" @@ -24547,7 +26325,7 @@ defs["igRenderArrowPointingAt"][1]["call_args"] = "(draw_list,pos,half_sz,direct defs["igRenderArrowPointingAt"][1]["cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["defaults"] = {} defs["igRenderArrowPointingAt"][1]["funcname"] = "RenderArrowPointingAt" -defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3361" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:3837" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -24572,7 +26350,7 @@ defs["igRenderBullet"][1]["call_args"] = "(draw_list,pos,col)" defs["igRenderBullet"][1]["cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["defaults"] = {} defs["igRenderBullet"][1]["funcname"] = "RenderBullet" -defs["igRenderBullet"][1]["location"] = "imgui_internal:3359" +defs["igRenderBullet"][1]["location"] = "imgui_internal:3835" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -24600,7 +26378,7 @@ defs["igRenderCheckMark"][1]["call_args"] = "(draw_list,pos,col,sz)" defs["igRenderCheckMark"][1]["cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["defaults"] = {} defs["igRenderCheckMark"][1]["funcname"] = "RenderCheckMark" -defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3360" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:3836" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -24642,7 +26420,7 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["flags"] = "0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3352" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:3828" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -24651,26 +26429,29 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["stname"] = "" defs["igRenderColorRectWithAlphaCheckerboard"]["(ImDrawList*,ImVec2,ImVec2,ImU32,float,ImVec2,float,ImDrawFlags)"] = defs["igRenderColorRectWithAlphaCheckerboard"][1] defs["igRenderDragDropTargetRect"] = {} defs["igRenderDragDropTargetRect"][1] = {} -defs["igRenderDragDropTargetRect"][1]["args"] = "(const ImRect bb)" +defs["igRenderDragDropTargetRect"][1]["args"] = "(const ImRect bb,const ImRect item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["argsT"] = {} defs["igRenderDragDropTargetRect"][1]["argsT"][1] = {} defs["igRenderDragDropTargetRect"][1]["argsT"][1]["name"] = "bb" defs["igRenderDragDropTargetRect"][1]["argsT"][1]["type"] = "const ImRect" -defs["igRenderDragDropTargetRect"][1]["argsoriginal"] = "(const ImRect& bb)" -defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb)" +defs["igRenderDragDropTargetRect"][1]["argsT"][2] = {} +defs["igRenderDragDropTargetRect"][1]["argsT"][2]["name"] = "item_clip_rect" +defs["igRenderDragDropTargetRect"][1]["argsT"][2]["type"] = "const ImRect" +defs["igRenderDragDropTargetRect"][1]["argsoriginal"] = "(const ImRect& bb,const ImRect& item_clip_rect)" +defs["igRenderDragDropTargetRect"][1]["call_args"] = "(bb,item_clip_rect)" defs["igRenderDragDropTargetRect"][1]["cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["defaults"] = {} defs["igRenderDragDropTargetRect"][1]["funcname"] = "RenderDragDropTargetRect" -defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3259" +defs["igRenderDragDropTargetRect"][1]["location"] = "imgui_internal:3708" defs["igRenderDragDropTargetRect"][1]["namespace"] = "ImGui" defs["igRenderDragDropTargetRect"][1]["ov_cimguiname"] = "igRenderDragDropTargetRect" defs["igRenderDragDropTargetRect"][1]["ret"] = "void" -defs["igRenderDragDropTargetRect"][1]["signature"] = "(const ImRect)" +defs["igRenderDragDropTargetRect"][1]["signature"] = "(const ImRect,const ImRect)" defs["igRenderDragDropTargetRect"][1]["stname"] = "" -defs["igRenderDragDropTargetRect"]["(const ImRect)"] = defs["igRenderDragDropTargetRect"][1] +defs["igRenderDragDropTargetRect"]["(const ImRect,const ImRect)"] = defs["igRenderDragDropTargetRect"][1] defs["igRenderFrame"] = {} defs["igRenderFrame"][1] = {} -defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border,float rounding)" +defs["igRenderFrame"][1]["args"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders,float rounding)" defs["igRenderFrame"][1]["argsT"] = {} defs["igRenderFrame"][1]["argsT"][1] = {} defs["igRenderFrame"][1]["argsT"][1]["name"] = "p_min" @@ -24682,19 +26463,19 @@ defs["igRenderFrame"][1]["argsT"][3] = {} defs["igRenderFrame"][1]["argsT"][3]["name"] = "fill_col" defs["igRenderFrame"][1]["argsT"][3]["type"] = "ImU32" defs["igRenderFrame"][1]["argsT"][4] = {} -defs["igRenderFrame"][1]["argsT"][4]["name"] = "border" +defs["igRenderFrame"][1]["argsT"][4]["name"] = "borders" defs["igRenderFrame"][1]["argsT"][4]["type"] = "bool" defs["igRenderFrame"][1]["argsT"][5] = {} defs["igRenderFrame"][1]["argsT"][5]["name"] = "rounding" defs["igRenderFrame"][1]["argsT"][5]["type"] = "float" -defs["igRenderFrame"][1]["argsoriginal"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool border=true,float rounding=0.0f)" -defs["igRenderFrame"][1]["call_args"] = "(p_min,p_max,fill_col,border,rounding)" +defs["igRenderFrame"][1]["argsoriginal"] = "(ImVec2 p_min,ImVec2 p_max,ImU32 fill_col,bool borders=true,float rounding=0.0f)" +defs["igRenderFrame"][1]["call_args"] = "(p_min,p_max,fill_col,borders,rounding)" defs["igRenderFrame"][1]["cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["defaults"] = {} -defs["igRenderFrame"][1]["defaults"]["border"] = "true" +defs["igRenderFrame"][1]["defaults"]["borders"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" -defs["igRenderFrame"][1]["location"] = "imgui_internal:3350" +defs["igRenderFrame"][1]["location"] = "imgui_internal:3826" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -24720,7 +26501,7 @@ defs["igRenderFrameBorder"][1]["cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["defaults"] = {} defs["igRenderFrameBorder"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrameBorder"][1]["funcname"] = "RenderFrameBorder" -defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3351" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:3827" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -24754,7 +26535,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(pos,scale,mouse_cursor,col_fill, defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3355" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:3831" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -24774,13 +26555,13 @@ defs["igRenderNavHighlight"][1]["argsT"][2]["type"] = "ImGuiID" defs["igRenderNavHighlight"][1]["argsT"][3] = {} defs["igRenderNavHighlight"][1]["argsT"][3]["name"] = "flags" defs["igRenderNavHighlight"][1]["argsT"][3]["type"] = "ImGuiNavHighlightFlags" -defs["igRenderNavHighlight"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_TypeDefault)" +defs["igRenderNavHighlight"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,ImGuiNavHighlightFlags flags=ImGuiNavHighlightFlags_None)" defs["igRenderNavHighlight"][1]["call_args"] = "(bb,id,flags)" defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} -defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_TypeDefault" +defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_None" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3353" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:3829" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -24804,7 +26585,7 @@ defs["igRenderPlatformWindowsDefault"][1]["defaults"] = {} defs["igRenderPlatformWindowsDefault"][1]["defaults"]["platform_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["defaults"]["renderer_render_arg"] = "NULL" defs["igRenderPlatformWindowsDefault"][1]["funcname"] = "RenderPlatformWindowsDefault" -defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:982" +defs["igRenderPlatformWindowsDefault"][1]["location"] = "imgui:1084" defs["igRenderPlatformWindowsDefault"][1]["namespace"] = "ImGui" defs["igRenderPlatformWindowsDefault"][1]["ov_cimguiname"] = "igRenderPlatformWindowsDefault" defs["igRenderPlatformWindowsDefault"][1]["ret"] = "void" @@ -24838,7 +26619,7 @@ defs["igRenderRectFilledRangeH"][1]["call_args"] = "(draw_list,rect,col,x_start_ defs["igRenderRectFilledRangeH"][1]["cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["defaults"] = {} defs["igRenderRectFilledRangeH"][1]["funcname"] = "RenderRectFilledRangeH" -defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3363" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:3839" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -24869,7 +26650,7 @@ defs["igRenderRectFilledWithHole"][1]["call_args"] = "(draw_list,outer,inner,col defs["igRenderRectFilledWithHole"][1]["cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["defaults"] = {} defs["igRenderRectFilledWithHole"][1]["funcname"] = "RenderRectFilledWithHole" -defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3364" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:3840" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -24899,7 +26680,7 @@ defs["igRenderText"][1]["defaults"] = {} defs["igRenderText"][1]["defaults"]["hide_text_after_hash"] = "true" defs["igRenderText"][1]["defaults"]["text_end"] = "NULL" defs["igRenderText"][1]["funcname"] = "RenderText" -defs["igRenderText"][1]["location"] = "imgui_internal:3345" +defs["igRenderText"][1]["location"] = "imgui_internal:3821" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -24938,7 +26719,7 @@ defs["igRenderTextClipped"][1]["defaults"] = {} defs["igRenderTextClipped"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClipped"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClipped"][1]["funcname"] = "RenderTextClipped" -defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3347" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:3823" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -24980,7 +26761,7 @@ defs["igRenderTextClippedEx"][1]["defaults"] = {} defs["igRenderTextClippedEx"][1]["defaults"]["align"] = "ImVec2(0,0)" defs["igRenderTextClippedEx"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClippedEx"][1]["funcname"] = "RenderTextClippedEx" -defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3348" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:3824" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -25020,7 +26801,7 @@ defs["igRenderTextEllipsis"][1]["call_args"] = "(draw_list,pos_min,pos_max,clip_ defs["igRenderTextEllipsis"][1]["cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["defaults"] = {} defs["igRenderTextEllipsis"][1]["funcname"] = "RenderTextEllipsis" -defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3349" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:3825" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -25048,7 +26829,7 @@ defs["igRenderTextWrapped"][1]["call_args"] = "(pos,text,text_end,wrap_width)" defs["igRenderTextWrapped"][1]["cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["defaults"] = {} defs["igRenderTextWrapped"][1]["funcname"] = "RenderTextWrapped" -defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3346" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:3822" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -25068,7 +26849,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui:945" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1041" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -25092,7 +26873,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:448" +defs["igSameLine"][1]["location"] = "imgui:500" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -25111,7 +26892,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:961" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1057" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -25131,7 +26912,7 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:962" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1058" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -25153,7 +26934,7 @@ defs["igScaleWindowsInViewport"][1]["call_args"] = "(viewport,scale)" defs["igScaleWindowsInViewport"][1]["cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["defaults"] = {} defs["igScaleWindowsInViewport"][1]["funcname"] = "ScaleWindowsInViewport" -defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:2999" +defs["igScaleWindowsInViewport"][1]["location"] = "imgui_internal:3416" defs["igScaleWindowsInViewport"][1]["namespace"] = "ImGui" defs["igScaleWindowsInViewport"][1]["ov_cimguiname"] = "igScaleWindowsInViewport" defs["igScaleWindowsInViewport"][1]["ret"] = "void" @@ -25175,7 +26956,7 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" -defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3032" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:3452" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["ret"] = "void" @@ -25195,7 +26976,7 @@ defs["igScrollToItem"][1]["cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["defaults"] = {} defs["igScrollToItem"][1]["defaults"]["flags"] = "0" defs["igScrollToItem"][1]["funcname"] = "ScrollToItem" -defs["igScrollToItem"][1]["location"] = "imgui_internal:3028" +defs["igScrollToItem"][1]["location"] = "imgui_internal:3448" defs["igScrollToItem"][1]["namespace"] = "ImGui" defs["igScrollToItem"][1]["ov_cimguiname"] = "igScrollToItem" defs["igScrollToItem"][1]["ret"] = "void" @@ -25221,7 +27002,7 @@ defs["igScrollToRect"][1]["cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["defaults"] = {} defs["igScrollToRect"][1]["defaults"]["flags"] = "0" defs["igScrollToRect"][1]["funcname"] = "ScrollToRect" -defs["igScrollToRect"][1]["location"] = "imgui_internal:3029" +defs["igScrollToRect"][1]["location"] = "imgui_internal:3449" defs["igScrollToRect"][1]["namespace"] = "ImGui" defs["igScrollToRect"][1]["ov_cimguiname"] = "igScrollToRect" defs["igScrollToRect"][1]["ret"] = "void" @@ -25250,7 +27031,7 @@ defs["igScrollToRectEx"][1]["cimguiname"] = "igScrollToRectEx" defs["igScrollToRectEx"][1]["defaults"] = {} defs["igScrollToRectEx"][1]["defaults"]["flags"] = "0" defs["igScrollToRectEx"][1]["funcname"] = "ScrollToRectEx" -defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3030" +defs["igScrollToRectEx"][1]["location"] = "imgui_internal:3450" defs["igScrollToRectEx"][1]["namespace"] = "ImGui" defs["igScrollToRectEx"][1]["nonUDT"] = 1 defs["igScrollToRectEx"][1]["ov_cimguiname"] = "igScrollToRectEx" @@ -25270,7 +27051,7 @@ defs["igScrollbar"][1]["call_args"] = "(axis)" defs["igScrollbar"][1]["cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["defaults"] = {} defs["igScrollbar"][1]["funcname"] = "Scrollbar" -defs["igScrollbar"][1]["location"] = "imgui_internal:3379" +defs["igScrollbar"][1]["location"] = "imgui_internal:3856" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -25307,7 +27088,7 @@ defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "imgui_internal:3380" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:3857" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -25338,7 +27119,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:632" +defs["igSelectable"][1]["location"] = "imgui:682" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -25366,7 +27147,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:633" +defs["igSelectable"][2]["location"] = "imgui:683" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -25383,7 +27164,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:447" +defs["igSeparator"][1]["location"] = "imgui:499" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -25392,23 +27173,74 @@ defs["igSeparator"][1]["stname"] = "" defs["igSeparator"]["()"] = defs["igSeparator"][1] defs["igSeparatorEx"] = {} defs["igSeparatorEx"][1] = {} -defs["igSeparatorEx"][1]["args"] = "(ImGuiSeparatorFlags flags)" +defs["igSeparatorEx"][1]["args"] = "(ImGuiSeparatorFlags flags,float thickness)" defs["igSeparatorEx"][1]["argsT"] = {} defs["igSeparatorEx"][1]["argsT"][1] = {} defs["igSeparatorEx"][1]["argsT"][1]["name"] = "flags" defs["igSeparatorEx"][1]["argsT"][1]["type"] = "ImGuiSeparatorFlags" -defs["igSeparatorEx"][1]["argsoriginal"] = "(ImGuiSeparatorFlags flags)" -defs["igSeparatorEx"][1]["call_args"] = "(flags)" +defs["igSeparatorEx"][1]["argsT"][2] = {} +defs["igSeparatorEx"][1]["argsT"][2]["name"] = "thickness" +defs["igSeparatorEx"][1]["argsT"][2]["type"] = "float" +defs["igSeparatorEx"][1]["argsoriginal"] = "(ImGuiSeparatorFlags flags,float thickness=1.0f)" +defs["igSeparatorEx"][1]["call_args"] = "(flags,thickness)" defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} +defs["igSeparatorEx"][1]["defaults"]["thickness"] = "1.0f" defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "imgui_internal:3372" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:3848" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" -defs["igSeparatorEx"][1]["signature"] = "(ImGuiSeparatorFlags)" +defs["igSeparatorEx"][1]["signature"] = "(ImGuiSeparatorFlags,float)" defs["igSeparatorEx"][1]["stname"] = "" -defs["igSeparatorEx"]["(ImGuiSeparatorFlags)"] = defs["igSeparatorEx"][1] +defs["igSeparatorEx"]["(ImGuiSeparatorFlags,float)"] = defs["igSeparatorEx"][1] +defs["igSeparatorText"] = {} +defs["igSeparatorText"][1] = {} +defs["igSeparatorText"][1]["args"] = "(const char* label)" +defs["igSeparatorText"][1]["argsT"] = {} +defs["igSeparatorText"][1]["argsT"][1] = {} +defs["igSeparatorText"][1]["argsT"][1]["name"] = "label" +defs["igSeparatorText"][1]["argsT"][1]["type"] = "const char*" +defs["igSeparatorText"][1]["argsoriginal"] = "(const char* label)" +defs["igSeparatorText"][1]["call_args"] = "(label)" +defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["defaults"] = {} +defs["igSeparatorText"][1]["funcname"] = "SeparatorText" +defs["igSeparatorText"][1]["location"] = "imgui:549" +defs["igSeparatorText"][1]["namespace"] = "ImGui" +defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["ret"] = "void" +defs["igSeparatorText"][1]["signature"] = "(const char*)" +defs["igSeparatorText"][1]["stname"] = "" +defs["igSeparatorText"]["(const char*)"] = defs["igSeparatorText"][1] +defs["igSeparatorTextEx"] = {} +defs["igSeparatorTextEx"][1] = {} +defs["igSeparatorTextEx"][1]["args"] = "(ImGuiID id,const char* label,const char* label_end,float extra_width)" +defs["igSeparatorTextEx"][1]["argsT"] = {} +defs["igSeparatorTextEx"][1]["argsT"][1] = {} +defs["igSeparatorTextEx"][1]["argsT"][1]["name"] = "id" +defs["igSeparatorTextEx"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSeparatorTextEx"][1]["argsT"][2] = {} +defs["igSeparatorTextEx"][1]["argsT"][2]["name"] = "label" +defs["igSeparatorTextEx"][1]["argsT"][2]["type"] = "const char*" +defs["igSeparatorTextEx"][1]["argsT"][3] = {} +defs["igSeparatorTextEx"][1]["argsT"][3]["name"] = "label_end" +defs["igSeparatorTextEx"][1]["argsT"][3]["type"] = "const char*" +defs["igSeparatorTextEx"][1]["argsT"][4] = {} +defs["igSeparatorTextEx"][1]["argsT"][4]["name"] = "extra_width" +defs["igSeparatorTextEx"][1]["argsT"][4]["type"] = "float" +defs["igSeparatorTextEx"][1]["argsoriginal"] = "(ImGuiID id,const char* label,const char* label_end,float extra_width)" +defs["igSeparatorTextEx"][1]["call_args"] = "(id,label,label_end,extra_width)" +defs["igSeparatorTextEx"][1]["cimguiname"] = "igSeparatorTextEx" +defs["igSeparatorTextEx"][1]["defaults"] = {} +defs["igSeparatorTextEx"][1]["funcname"] = "SeparatorTextEx" +defs["igSeparatorTextEx"][1]["location"] = "imgui_internal:3849" +defs["igSeparatorTextEx"][1]["namespace"] = "ImGui" +defs["igSeparatorTextEx"][1]["ov_cimguiname"] = "igSeparatorTextEx" +defs["igSeparatorTextEx"][1]["ret"] = "void" +defs["igSeparatorTextEx"][1]["signature"] = "(ImGuiID,const char*,const char*,float)" +defs["igSeparatorTextEx"][1]["stname"] = "" +defs["igSeparatorTextEx"]["(ImGuiID,const char*,const char*,float)"] = defs["igSeparatorTextEx"][1] defs["igSetActiveID"] = {} defs["igSetActiveID"][1] = {} defs["igSetActiveID"][1]["args"] = "(ImGuiID id,ImGuiWindow* window)" @@ -25424,7 +27256,7 @@ defs["igSetActiveID"][1]["call_args"] = "(id,window)" defs["igSetActiveID"][1]["cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["defaults"] = {} defs["igSetActiveID"][1]["funcname"] = "SetActiveID" -defs["igSetActiveID"][1]["location"] = "imgui_internal:3040" +defs["igSetActiveID"][1]["location"] = "imgui_internal:3460" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -25440,7 +27272,7 @@ defs["igSetActiveIdUsingAllKeyboardKeys"][1]["call_args"] = "()" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["defaults"] = {} defs["igSetActiveIdUsingAllKeyboardKeys"][1]["funcname"] = "SetActiveIdUsingAllKeyboardKeys" -defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3142" +defs["igSetActiveIdUsingAllKeyboardKeys"][1]["location"] = "imgui_internal:3581" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["namespace"] = "ImGui" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ov_cimguiname"] = "igSetActiveIdUsingAllKeyboardKeys" defs["igSetActiveIdUsingAllKeyboardKeys"][1]["ret"] = "void" @@ -25466,7 +27298,7 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui:972" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1075" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -25485,7 +27317,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui:953" +defs["igSetClipboardText"][1]["location"] = "imgui:1049" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -25504,7 +27336,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:607" +defs["igSetColorEditOptions"][1]["location"] = "imgui:656" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -25526,7 +27358,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:790" +defs["igSetColumnOffset"][1]["location"] = "imgui:860" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -25548,7 +27380,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:788" +defs["igSetColumnWidth"][1]["location"] = "imgui:858" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -25567,7 +27399,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:297" +defs["igSetCurrentContext"][1]["location"] = "imgui:331" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -25586,7 +27418,7 @@ defs["igSetCurrentFont"][1]["call_args"] = "(font)" defs["igSetCurrentFont"][1]["cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["defaults"] = {} defs["igSetCurrentFont"][1]["funcname"] = "SetCurrentFont" -defs["igSetCurrentFont"][1]["location"] = "imgui_internal:2976" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:3391" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -25608,7 +27440,7 @@ defs["igSetCurrentViewport"][1]["call_args"] = "(window,viewport)" defs["igSetCurrentViewport"][1]["cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["defaults"] = {} defs["igSetCurrentViewport"][1]["funcname"] = "SetCurrentViewport" -defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3002" +defs["igSetCurrentViewport"][1]["location"] = "imgui_internal:3419" defs["igSetCurrentViewport"][1]["namespace"] = "ImGui" defs["igSetCurrentViewport"][1]["ov_cimguiname"] = "igSetCurrentViewport" defs["igSetCurrentViewport"][1]["ret"] = "void" @@ -25627,7 +27459,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:459" +defs["igSetCursorPos"][1]["location"] = "imgui:493" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -25646,7 +27478,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:460" +defs["igSetCursorPosX"][1]["location"] = "imgui:494" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -25665,7 +27497,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:461" +defs["igSetCursorPosY"][1]["location"] = "imgui:495" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -25684,7 +27516,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:464" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:488" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -25713,7 +27545,7 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui:838" +defs["igSetDragDropPayload"][1]["location"] = "imgui:908" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -25735,7 +27567,7 @@ defs["igSetFocusID"][1]["call_args"] = "(id,window)" defs["igSetFocusID"][1]["cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["defaults"] = {} defs["igSetFocusID"][1]["funcname"] = "SetFocusID" -defs["igSetFocusID"][1]["location"] = "imgui_internal:3041" +defs["igSetFocusID"][1]["location"] = "imgui_internal:3461" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -25754,29 +27586,13 @@ defs["igSetHoveredID"][1]["call_args"] = "(id)" defs["igSetHoveredID"][1]["cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["defaults"] = {} defs["igSetHoveredID"][1]["funcname"] = "SetHoveredID" -defs["igSetHoveredID"][1]["location"] = "imgui_internal:3044" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:3464" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" defs["igSetHoveredID"][1]["signature"] = "(ImGuiID)" defs["igSetHoveredID"][1]["stname"] = "" defs["igSetHoveredID"]["(ImGuiID)"] = defs["igSetHoveredID"][1] -defs["igSetItemAllowOverlap"] = {} -defs["igSetItemAllowOverlap"][1] = {} -defs["igSetItemAllowOverlap"][1]["args"] = "()" -defs["igSetItemAllowOverlap"][1]["argsT"] = {} -defs["igSetItemAllowOverlap"][1]["argsoriginal"] = "()" -defs["igSetItemAllowOverlap"][1]["call_args"] = "()" -defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["defaults"] = {} -defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui:882" -defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" -defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["ret"] = "void" -defs["igSetItemAllowOverlap"][1]["signature"] = "()" -defs["igSetItemAllowOverlap"][1]["stname"] = "" -defs["igSetItemAllowOverlap"]["()"] = defs["igSetItemAllowOverlap"][1] defs["igSetItemDefaultFocus"] = {} defs["igSetItemDefaultFocus"][1] = {} defs["igSetItemDefaultFocus"][1]["args"] = "()" @@ -25786,7 +27602,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:859" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:930" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -25795,27 +27611,89 @@ defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] defs["igSetItemKeyOwner"] = {} defs["igSetItemKeyOwner"][1] = {} -defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key)" defs["igSetItemKeyOwner"][1]["argsT"] = {} defs["igSetItemKeyOwner"][1]["argsT"][1] = {} defs["igSetItemKeyOwner"][1]["argsT"][1]["name"] = "key" defs["igSetItemKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igSetItemKeyOwner"][1]["argsT"][2] = {} -defs["igSetItemKeyOwner"][1]["argsT"][2]["name"] = "flags" -defs["igSetItemKeyOwner"][1]["argsT"][2]["type"] = "ImGuiInputFlags" -defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags=0)" -defs["igSetItemKeyOwner"][1]["call_args"] = "(key,flags)" +defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igSetItemKeyOwner"][1]["call_args"] = "(key)" defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" defs["igSetItemKeyOwner"][1]["defaults"] = {} -defs["igSetItemKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" -defs["igSetItemKeyOwner"][1]["location"] = "imgui_internal:3158" +defs["igSetItemKeyOwner"][1]["location"] = "imgui:1023" defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" -defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner_Nil" defs["igSetItemKeyOwner"][1]["ret"] = "void" -defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiInputFlags)" +defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey)" defs["igSetItemKeyOwner"][1]["stname"] = "" -defs["igSetItemKeyOwner"]["(ImGuiKey,ImGuiInputFlags)"] = defs["igSetItemKeyOwner"][1] +defs["igSetItemKeyOwner"][2] = {} +defs["igSetItemKeyOwner"][2]["args"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][2]["argsT"] = {} +defs["igSetItemKeyOwner"][2]["argsT"][1] = {} +defs["igSetItemKeyOwner"][2]["argsT"][1]["name"] = "key" +defs["igSetItemKeyOwner"][2]["argsT"][1]["type"] = "ImGuiKey" +defs["igSetItemKeyOwner"][2]["argsT"][2] = {} +defs["igSetItemKeyOwner"][2]["argsT"][2]["name"] = "flags" +defs["igSetItemKeyOwner"][2]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetItemKeyOwner"][2]["argsoriginal"] = "(ImGuiKey key,ImGuiInputFlags flags)" +defs["igSetItemKeyOwner"][2]["call_args"] = "(key,flags)" +defs["igSetItemKeyOwner"][2]["cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][2]["defaults"] = {} +defs["igSetItemKeyOwner"][2]["funcname"] = "SetItemKeyOwner" +defs["igSetItemKeyOwner"][2]["location"] = "imgui_internal:3598" +defs["igSetItemKeyOwner"][2]["namespace"] = "ImGui" +defs["igSetItemKeyOwner"][2]["ov_cimguiname"] = "igSetItemKeyOwner_InputFlags" +defs["igSetItemKeyOwner"][2]["ret"] = "void" +defs["igSetItemKeyOwner"][2]["signature"] = "(ImGuiKey,ImGuiInputFlags)" +defs["igSetItemKeyOwner"][2]["stname"] = "" +defs["igSetItemKeyOwner"]["(ImGuiKey)"] = defs["igSetItemKeyOwner"][1] +defs["igSetItemKeyOwner"]["(ImGuiKey,ImGuiInputFlags)"] = defs["igSetItemKeyOwner"][2] +defs["igSetItemTooltip"] = {} +defs["igSetItemTooltip"][1] = {} +defs["igSetItemTooltip"][1]["args"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["argsT"] = {} +defs["igSetItemTooltip"][1]["argsT"][1] = {} +defs["igSetItemTooltip"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltip"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltip"][1]["argsT"][2] = {} +defs["igSetItemTooltip"][1]["argsT"][2]["name"] = "..." +defs["igSetItemTooltip"][1]["argsT"][2]["type"] = "..." +defs["igSetItemTooltip"][1]["argsoriginal"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["call_args"] = "(fmt,...)" +defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["defaults"] = {} +defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" +defs["igSetItemTooltip"][1]["isvararg"] = "...)" +defs["igSetItemTooltip"][1]["location"] = "imgui:750" +defs["igSetItemTooltip"][1]["namespace"] = "ImGui" +defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["ret"] = "void" +defs["igSetItemTooltip"][1]["signature"] = "(const char*,...)" +defs["igSetItemTooltip"][1]["stname"] = "" +defs["igSetItemTooltip"]["(const char*,...)"] = defs["igSetItemTooltip"][1] +defs["igSetItemTooltipV"] = {} +defs["igSetItemTooltipV"][1] = {} +defs["igSetItemTooltipV"][1]["args"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["argsT"] = {} +defs["igSetItemTooltipV"][1]["argsT"][1] = {} +defs["igSetItemTooltipV"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltipV"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltipV"][1]["argsT"][2] = {} +defs["igSetItemTooltipV"][1]["argsT"][2]["name"] = "args" +defs["igSetItemTooltipV"][1]["argsT"][2]["type"] = "va_list" +defs["igSetItemTooltipV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" +defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["defaults"] = {} +defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" +defs["igSetItemTooltipV"][1]["location"] = "imgui:751" +defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" +defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["ret"] = "void" +defs["igSetItemTooltipV"][1]["signature"] = "(const char*,va_list)" +defs["igSetItemTooltipV"][1]["stname"] = "" +defs["igSetItemTooltipV"]["(const char*,va_list)"] = defs["igSetItemTooltipV"][1] defs["igSetKeyOwner"] = {} defs["igSetKeyOwner"][1] = {} defs["igSetKeyOwner"][1]["args"] = "(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags)" @@ -25835,13 +27713,39 @@ defs["igSetKeyOwner"][1]["cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["defaults"] = {} defs["igSetKeyOwner"][1]["defaults"]["flags"] = "0" defs["igSetKeyOwner"][1]["funcname"] = "SetKeyOwner" -defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3157" +defs["igSetKeyOwner"][1]["location"] = "imgui_internal:3596" defs["igSetKeyOwner"][1]["namespace"] = "ImGui" defs["igSetKeyOwner"][1]["ov_cimguiname"] = "igSetKeyOwner" defs["igSetKeyOwner"][1]["ret"] = "void" defs["igSetKeyOwner"][1]["signature"] = "(ImGuiKey,ImGuiID,ImGuiInputFlags)" defs["igSetKeyOwner"][1]["stname"] = "" defs["igSetKeyOwner"]["(ImGuiKey,ImGuiID,ImGuiInputFlags)"] = defs["igSetKeyOwner"][1] +defs["igSetKeyOwnersForKeyChord"] = {} +defs["igSetKeyOwnersForKeyChord"][1] = {} +defs["igSetKeyOwnersForKeyChord"][1]["args"] = "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][1] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][1]["name"] = "key" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][2] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][2]["name"] = "owner_id" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][3] = {} +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][3]["name"] = "flags" +defs["igSetKeyOwnersForKeyChord"][1]["argsT"][3]["type"] = "ImGuiInputFlags" +defs["igSetKeyOwnersForKeyChord"][1]["argsoriginal"] = "(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags=0)" +defs["igSetKeyOwnersForKeyChord"][1]["call_args"] = "(key,owner_id,flags)" +defs["igSetKeyOwnersForKeyChord"][1]["cimguiname"] = "igSetKeyOwnersForKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["defaults"] = {} +defs["igSetKeyOwnersForKeyChord"][1]["defaults"]["flags"] = "0" +defs["igSetKeyOwnersForKeyChord"][1]["funcname"] = "SetKeyOwnersForKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["location"] = "imgui_internal:3597" +defs["igSetKeyOwnersForKeyChord"][1]["namespace"] = "ImGui" +defs["igSetKeyOwnersForKeyChord"][1]["ov_cimguiname"] = "igSetKeyOwnersForKeyChord" +defs["igSetKeyOwnersForKeyChord"][1]["ret"] = "void" +defs["igSetKeyOwnersForKeyChord"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igSetKeyOwnersForKeyChord"][1]["stname"] = "" +defs["igSetKeyOwnersForKeyChord"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igSetKeyOwnersForKeyChord"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} defs["igSetKeyboardFocusHere"][1]["args"] = "(int offset)" @@ -25855,7 +27759,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:860" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:931" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -25883,7 +27787,7 @@ defs["igSetLastItemData"][1]["call_args"] = "(item_id,in_flags,status_flags,item defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" -defs["igSetLastItemData"][1]["location"] = "imgui_internal:3056" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:3478" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -25902,13 +27806,32 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:947" +defs["igSetMouseCursor"][1]["location"] = "imgui:1043" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" defs["igSetMouseCursor"][1]["signature"] = "(ImGuiMouseCursor)" defs["igSetMouseCursor"][1]["stname"] = "" defs["igSetMouseCursor"]["(ImGuiMouseCursor)"] = defs["igSetMouseCursor"][1] +defs["igSetNavFocusScope"] = {} +defs["igSetNavFocusScope"][1] = {} +defs["igSetNavFocusScope"][1]["args"] = "(ImGuiID focus_scope_id)" +defs["igSetNavFocusScope"][1]["argsT"] = {} +defs["igSetNavFocusScope"][1]["argsT"][1] = {} +defs["igSetNavFocusScope"][1]["argsT"][1]["name"] = "focus_scope_id" +defs["igSetNavFocusScope"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNavFocusScope"][1]["argsoriginal"] = "(ImGuiID focus_scope_id)" +defs["igSetNavFocusScope"][1]["call_args"] = "(focus_scope_id)" +defs["igSetNavFocusScope"][1]["cimguiname"] = "igSetNavFocusScope" +defs["igSetNavFocusScope"][1]["defaults"] = {} +defs["igSetNavFocusScope"][1]["funcname"] = "SetNavFocusScope" +defs["igSetNavFocusScope"][1]["location"] = "imgui_internal:3543" +defs["igSetNavFocusScope"][1]["namespace"] = "ImGui" +defs["igSetNavFocusScope"][1]["ov_cimguiname"] = "igSetNavFocusScope" +defs["igSetNavFocusScope"][1]["ret"] = "void" +defs["igSetNavFocusScope"][1]["signature"] = "(ImGuiID)" +defs["igSetNavFocusScope"][1]["stname"] = "" +defs["igSetNavFocusScope"]["(ImGuiID)"] = defs["igSetNavFocusScope"][1] defs["igSetNavID"] = {} defs["igSetNavID"][1] = {} defs["igSetNavID"][1]["args"] = "(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scope_id,const ImRect rect_rel)" @@ -25930,7 +27853,7 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id,rect_rel)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" -defs["igSetNavID"][1]["location"] = "imgui_internal:3111" +defs["igSetNavID"][1]["location"] = "imgui_internal:3542" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -25949,7 +27872,7 @@ defs["igSetNavWindow"][1]["call_args"] = "(window)" defs["igSetNavWindow"][1]["cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["defaults"] = {} defs["igSetNavWindow"][1]["funcname"] = "SetNavWindow" -defs["igSetNavWindow"][1]["location"] = "imgui_internal:3110" +defs["igSetNavWindow"][1]["location"] = "imgui_internal:3541" defs["igSetNavWindow"][1]["namespace"] = "ImGui" defs["igSetNavWindow"][1]["ov_cimguiname"] = "igSetNavWindow" defs["igSetNavWindow"][1]["ret"] = "void" @@ -25968,7 +27891,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:927" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:997" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -25987,13 +27910,29 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:948" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1044" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" defs["igSetNextFrameWantCaptureMouse"][1]["signature"] = "(bool)" defs["igSetNextFrameWantCaptureMouse"][1]["stname"] = "" defs["igSetNextFrameWantCaptureMouse"]["(bool)"] = defs["igSetNextFrameWantCaptureMouse"][1] +defs["igSetNextItemAllowOverlap"] = {} +defs["igSetNextItemAllowOverlap"][1] = {} +defs["igSetNextItemAllowOverlap"][1]["args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["argsT"] = {} +defs["igSetNextItemAllowOverlap"][1]["argsoriginal"] = "()" +defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} +defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:934" +defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" +defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" +defs["igSetNextItemAllowOverlap"][1]["signature"] = "()" +defs["igSetNextItemAllowOverlap"][1]["stname"] = "" +defs["igSetNextItemAllowOverlap"]["()"] = defs["igSetNextItemAllowOverlap"][1] defs["igSetNextItemOpen"] = {} defs["igSetNextItemOpen"][1] = {} defs["igSetNextItemOpen"][1]["args"] = "(bool is_open,ImGuiCond cond)" @@ -26010,13 +27949,96 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:627" +defs["igSetNextItemOpen"][1]["location"] = "imgui:676" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" defs["igSetNextItemOpen"][1]["signature"] = "(bool,ImGuiCond)" defs["igSetNextItemOpen"][1]["stname"] = "" defs["igSetNextItemOpen"]["(bool,ImGuiCond)"] = defs["igSetNextItemOpen"][1] +defs["igSetNextItemRefVal"] = {} +defs["igSetNextItemRefVal"][1] = {} +defs["igSetNextItemRefVal"][1]["args"] = "(ImGuiDataType data_type,void* p_data)" +defs["igSetNextItemRefVal"][1]["argsT"] = {} +defs["igSetNextItemRefVal"][1]["argsT"][1] = {} +defs["igSetNextItemRefVal"][1]["argsT"][1]["name"] = "data_type" +defs["igSetNextItemRefVal"][1]["argsT"][1]["type"] = "ImGuiDataType" +defs["igSetNextItemRefVal"][1]["argsT"][2] = {} +defs["igSetNextItemRefVal"][1]["argsT"][2]["name"] = "p_data" +defs["igSetNextItemRefVal"][1]["argsT"][2]["type"] = "void*" +defs["igSetNextItemRefVal"][1]["argsoriginal"] = "(ImGuiDataType data_type,void* p_data)" +defs["igSetNextItemRefVal"][1]["call_args"] = "(data_type,p_data)" +defs["igSetNextItemRefVal"][1]["cimguiname"] = "igSetNextItemRefVal" +defs["igSetNextItemRefVal"][1]["defaults"] = {} +defs["igSetNextItemRefVal"][1]["funcname"] = "SetNextItemRefVal" +defs["igSetNextItemRefVal"][1]["location"] = "imgui_internal:3901" +defs["igSetNextItemRefVal"][1]["namespace"] = "ImGui" +defs["igSetNextItemRefVal"][1]["ov_cimguiname"] = "igSetNextItemRefVal" +defs["igSetNextItemRefVal"][1]["ret"] = "void" +defs["igSetNextItemRefVal"][1]["signature"] = "(ImGuiDataType,void*)" +defs["igSetNextItemRefVal"][1]["stname"] = "" +defs["igSetNextItemRefVal"]["(ImGuiDataType,void*)"] = defs["igSetNextItemRefVal"][1] +defs["igSetNextItemSelectionUserData"] = {} +defs["igSetNextItemSelectionUserData"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["args"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["argsT"] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["name"] = "selection_user_data" +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["type"] = "ImGuiSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["argsoriginal"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} +defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:694" +defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" +defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" +defs["igSetNextItemSelectionUserData"][1]["signature"] = "(ImGuiSelectionUserData)" +defs["igSetNextItemSelectionUserData"][1]["stname"] = "" +defs["igSetNextItemSelectionUserData"]["(ImGuiSelectionUserData)"] = defs["igSetNextItemSelectionUserData"][1] +defs["igSetNextItemShortcut"] = {} +defs["igSetNextItemShortcut"][1] = {} +defs["igSetNextItemShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" +defs["igSetNextItemShortcut"][1]["argsT"] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igSetNextItemShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetNextItemShortcut"][1]["argsT"][2] = {} +defs["igSetNextItemShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igSetNextItemShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetNextItemShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igSetNextItemShortcut"][1]["call_args"] = "(key_chord,flags)" +defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["defaults"] = {} +defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" +defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["location"] = "imgui:1015" +defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" +defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["ret"] = "void" +defs["igSetNextItemShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" +defs["igSetNextItemShortcut"][1]["stname"] = "" +defs["igSetNextItemShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igSetNextItemShortcut"][1] +defs["igSetNextItemStorageID"] = {} +defs["igSetNextItemStorageID"][1] = {} +defs["igSetNextItemStorageID"][1]["args"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["argsT"] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1]["name"] = "storage_id" +defs["igSetNextItemStorageID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNextItemStorageID"][1]["argsoriginal"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["call_args"] = "(storage_id)" +defs["igSetNextItemStorageID"][1]["cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["defaults"] = {} +defs["igSetNextItemStorageID"][1]["funcname"] = "SetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["location"] = "imgui:677" +defs["igSetNextItemStorageID"][1]["namespace"] = "ImGui" +defs["igSetNextItemStorageID"][1]["ov_cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["ret"] = "void" +defs["igSetNextItemStorageID"][1]["signature"] = "(ImGuiID)" +defs["igSetNextItemStorageID"][1]["stname"] = "" +defs["igSetNextItemStorageID"]["(ImGuiID)"] = defs["igSetNextItemStorageID"][1] defs["igSetNextItemWidth"] = {} defs["igSetNextItemWidth"][1] = {} defs["igSetNextItemWidth"][1]["args"] = "(float item_width)" @@ -26029,7 +28051,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:425" +defs["igSetNextItemWidth"][1]["location"] = "imgui:462" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -26048,7 +28070,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:374" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:419" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -26067,7 +28089,7 @@ defs["igSetNextWindowClass"][1]["call_args"] = "(window_class)" defs["igSetNextWindowClass"][1]["cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["defaults"] = {} defs["igSetNextWindowClass"][1]["funcname"] = "SetNextWindowClass" -defs["igSetNextWindowClass"][1]["location"] = "imgui:818" +defs["igSetNextWindowClass"][1]["location"] = "imgui:888" defs["igSetNextWindowClass"][1]["namespace"] = "ImGui" defs["igSetNextWindowClass"][1]["ov_cimguiname"] = "igSetNextWindowClass" defs["igSetNextWindowClass"][1]["ret"] = "void" @@ -26090,7 +28112,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:371" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:416" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -26109,7 +28131,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:370" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:415" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -26132,7 +28154,7 @@ defs["igSetNextWindowDockID"][1]["cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["defaults"] = {} defs["igSetNextWindowDockID"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowDockID"][1]["funcname"] = "SetNextWindowDockID" -defs["igSetNextWindowDockID"][1]["location"] = "imgui:817" +defs["igSetNextWindowDockID"][1]["location"] = "imgui:887" defs["igSetNextWindowDockID"][1]["namespace"] = "ImGui" defs["igSetNextWindowDockID"][1]["ov_cimguiname"] = "igSetNextWindowDockID" defs["igSetNextWindowDockID"][1]["ret"] = "void" @@ -26148,7 +28170,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:372" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:417" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -26175,13 +28197,32 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:367" +defs["igSetNextWindowPos"][1]["location"] = "imgui:412" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" defs["igSetNextWindowPos"][1]["signature"] = "(const ImVec2,ImGuiCond,const ImVec2)" defs["igSetNextWindowPos"][1]["stname"] = "" defs["igSetNextWindowPos"]["(const ImVec2,ImGuiCond,const ImVec2)"] = defs["igSetNextWindowPos"][1] +defs["igSetNextWindowRefreshPolicy"] = {} +defs["igSetNextWindowRefreshPolicy"][1] = {} +defs["igSetNextWindowRefreshPolicy"][1]["args"] = "(ImGuiWindowRefreshFlags flags)" +defs["igSetNextWindowRefreshPolicy"][1]["argsT"] = {} +defs["igSetNextWindowRefreshPolicy"][1]["argsT"][1] = {} +defs["igSetNextWindowRefreshPolicy"][1]["argsT"][1]["name"] = "flags" +defs["igSetNextWindowRefreshPolicy"][1]["argsT"][1]["type"] = "ImGuiWindowRefreshFlags" +defs["igSetNextWindowRefreshPolicy"][1]["argsoriginal"] = "(ImGuiWindowRefreshFlags flags)" +defs["igSetNextWindowRefreshPolicy"][1]["call_args"] = "(flags)" +defs["igSetNextWindowRefreshPolicy"][1]["cimguiname"] = "igSetNextWindowRefreshPolicy" +defs["igSetNextWindowRefreshPolicy"][1]["defaults"] = {} +defs["igSetNextWindowRefreshPolicy"][1]["funcname"] = "SetNextWindowRefreshPolicy" +defs["igSetNextWindowRefreshPolicy"][1]["location"] = "imgui_internal:3388" +defs["igSetNextWindowRefreshPolicy"][1]["namespace"] = "ImGui" +defs["igSetNextWindowRefreshPolicy"][1]["ov_cimguiname"] = "igSetNextWindowRefreshPolicy" +defs["igSetNextWindowRefreshPolicy"][1]["ret"] = "void" +defs["igSetNextWindowRefreshPolicy"][1]["signature"] = "(ImGuiWindowRefreshFlags)" +defs["igSetNextWindowRefreshPolicy"][1]["stname"] = "" +defs["igSetNextWindowRefreshPolicy"]["(ImGuiWindowRefreshFlags)"] = defs["igSetNextWindowRefreshPolicy"][1] defs["igSetNextWindowScroll"] = {} defs["igSetNextWindowScroll"][1] = {} defs["igSetNextWindowScroll"][1]["args"] = "(const ImVec2 scroll)" @@ -26194,7 +28235,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "imgui:373" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:418" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -26217,7 +28258,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:368" +defs["igSetNextWindowSize"][1]["location"] = "imgui:413" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -26247,7 +28288,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:369" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:414" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -26266,7 +28307,7 @@ defs["igSetNextWindowViewport"][1]["call_args"] = "(viewport_id)" defs["igSetNextWindowViewport"][1]["cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["defaults"] = {} defs["igSetNextWindowViewport"][1]["funcname"] = "SetNextWindowViewport" -defs["igSetNextWindowViewport"][1]["location"] = "imgui:375" +defs["igSetNextWindowViewport"][1]["location"] = "imgui:420" defs["igSetNextWindowViewport"][1]["namespace"] = "ImGui" defs["igSetNextWindowViewport"][1]["ov_cimguiname"] = "igSetNextWindowViewport" defs["igSetNextWindowViewport"][1]["ret"] = "void" @@ -26289,7 +28330,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:405" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:442" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX_Float" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -26312,7 +28353,7 @@ defs["igSetScrollFromPosX"][2]["call_args"] = "(window,local_x,center_x_ratio)" defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3024" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:3444" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosX_WindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -26336,7 +28377,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:406" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:443" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY_Float" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -26359,7 +28400,7 @@ defs["igSetScrollFromPosY"][2]["call_args"] = "(window,local_y,center_y_ratio)" defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3025" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:3445" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosY_WindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -26380,7 +28421,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:403" +defs["igSetScrollHereX"][1]["location"] = "imgui:440" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -26400,7 +28441,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:404" +defs["igSetScrollHereY"][1]["location"] = "imgui:441" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -26419,7 +28460,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:399" +defs["igSetScrollX"][1]["location"] = "imgui:436" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX_Float" defs["igSetScrollX"][1]["ret"] = "void" @@ -26439,7 +28480,7 @@ defs["igSetScrollX"][2]["call_args"] = "(window,scroll_x)" defs["igSetScrollX"][2]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][2]["defaults"] = {} defs["igSetScrollX"][2]["funcname"] = "SetScrollX" -defs["igSetScrollX"][2]["location"] = "imgui_internal:3022" +defs["igSetScrollX"][2]["location"] = "imgui_internal:3442" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollX_WindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -26459,7 +28500,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:400" +defs["igSetScrollY"][1]["location"] = "imgui:437" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY_Float" defs["igSetScrollY"][1]["ret"] = "void" @@ -26479,7 +28520,7 @@ defs["igSetScrollY"][2]["call_args"] = "(window,scroll_y)" defs["igSetScrollY"][2]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][2]["defaults"] = {} defs["igSetScrollY"][2]["funcname"] = "SetScrollY" -defs["igSetScrollY"][2]["location"] = "imgui_internal:3023" +defs["igSetScrollY"][2]["location"] = "imgui_internal:3443" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollY_WindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -26489,31 +28530,29 @@ defs["igSetScrollY"]["(ImGuiWindow*,float)"] = defs["igSetScrollY"][2] defs["igSetScrollY"]["(float)"] = defs["igSetScrollY"][1] defs["igSetShortcutRouting"] = {} defs["igSetShortcutRouting"][1] = {} -defs["igSetShortcutRouting"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igSetShortcutRouting"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" defs["igSetShortcutRouting"][1]["argsT"] = {} defs["igSetShortcutRouting"][1]["argsT"][1] = {} defs["igSetShortcutRouting"][1]["argsT"][1]["name"] = "key_chord" defs["igSetShortcutRouting"][1]["argsT"][1]["type"] = "ImGuiKeyChord" defs["igSetShortcutRouting"][1]["argsT"][2] = {} -defs["igSetShortcutRouting"][1]["argsT"][2]["name"] = "owner_id" -defs["igSetShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiID" +defs["igSetShortcutRouting"][1]["argsT"][2]["name"] = "flags" +defs["igSetShortcutRouting"][1]["argsT"][2]["type"] = "ImGuiInputFlags" defs["igSetShortcutRouting"][1]["argsT"][3] = {} -defs["igSetShortcutRouting"][1]["argsT"][3]["name"] = "flags" -defs["igSetShortcutRouting"][1]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" -defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,owner_id,flags)" +defs["igSetShortcutRouting"][1]["argsT"][3]["name"] = "owner_id" +defs["igSetShortcutRouting"][1]["argsT"][3]["type"] = "ImGuiID" +defs["igSetShortcutRouting"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igSetShortcutRouting"][1]["call_args"] = "(key_chord,flags,owner_id)" defs["igSetShortcutRouting"][1]["cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["defaults"] = {} -defs["igSetShortcutRouting"][1]["defaults"]["flags"] = "0" -defs["igSetShortcutRouting"][1]["defaults"]["owner_id"] = "0" defs["igSetShortcutRouting"][1]["funcname"] = "SetShortcutRouting" -defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3186" +defs["igSetShortcutRouting"][1]["location"] = "imgui_internal:3632" defs["igSetShortcutRouting"][1]["namespace"] = "ImGui" defs["igSetShortcutRouting"][1]["ov_cimguiname"] = "igSetShortcutRouting" defs["igSetShortcutRouting"][1]["ret"] = "bool" -defs["igSetShortcutRouting"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igSetShortcutRouting"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)" defs["igSetShortcutRouting"][1]["stname"] = "" -defs["igSetShortcutRouting"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igSetShortcutRouting"][1] +defs["igSetShortcutRouting"]["(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)"] = defs["igSetShortcutRouting"][1] defs["igSetStateStorage"] = {} defs["igSetStateStorage"][1] = {} defs["igSetStateStorage"][1]["args"] = "(ImGuiStorage* storage)" @@ -26526,7 +28565,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui:903" +defs["igSetStateStorage"][1]["location"] = "imgui:974" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -26545,7 +28584,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui:800" +defs["igSetTabItemClosed"][1]["location"] = "imgui:870" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -26568,7 +28607,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:678" +defs["igSetTooltip"][1]["location"] = "imgui:742" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -26590,7 +28629,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:679" +defs["igSetTooltipV"][1]["location"] = "imgui:743" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -26612,7 +28651,7 @@ defs["igSetWindowClipRectBeforeSetChannel"][1]["call_args"] = "(window,clip_rect defs["igSetWindowClipRectBeforeSetChannel"][1]["cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["defaults"] = {} defs["igSetWindowClipRectBeforeSetChannel"][1]["funcname"] = "SetWindowClipRectBeforeSetChannel" -defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3262" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:3729" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -26635,7 +28674,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:378" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:423" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -26659,7 +28698,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:383" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:428" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -26683,7 +28722,7 @@ defs["igSetWindowCollapsed"][3]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][3]["defaults"] = {} defs["igSetWindowCollapsed"][3]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][3]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:2960" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:3368" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsed_WindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -26710,7 +28749,7 @@ defs["igSetWindowDock"][1]["call_args"] = "(window,dock_id,cond)" defs["igSetWindowDock"][1]["cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["defaults"] = {} defs["igSetWindowDock"][1]["funcname"] = "SetWindowDock" -defs["igSetWindowDock"][1]["location"] = "imgui_internal:3216" +defs["igSetWindowDock"][1]["location"] = "imgui_internal:3665" defs["igSetWindowDock"][1]["namespace"] = "ImGui" defs["igSetWindowDock"][1]["ov_cimguiname"] = "igSetWindowDock" defs["igSetWindowDock"][1]["ret"] = "void" @@ -26726,7 +28765,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:379" +defs["igSetWindowFocus"][1]["location"] = "imgui:424" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -26743,7 +28782,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:384" +defs["igSetWindowFocus"][2]["location"] = "imgui:429" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -26763,13 +28802,32 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:380" +defs["igSetWindowFontScale"][1]["location"] = "imgui:425" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" defs["igSetWindowFontScale"][1]["signature"] = "(float)" defs["igSetWindowFontScale"][1]["stname"] = "" defs["igSetWindowFontScale"]["(float)"] = defs["igSetWindowFontScale"][1] +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["args"] = "(ImGuiWindow* window)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"][1] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"][1]["name"] = "window" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["call_args"] = "(window)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["defaults"] = {} +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["funcname"] = "SetWindowHiddenAndSkipItemsForCurrentFrame" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["location"] = "imgui_internal:3370" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["namespace"] = "ImGui" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ov_cimguiname"] = "igSetWindowHiddenAndSkipItemsForCurrentFrame" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["ret"] = "void" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["signature"] = "(ImGuiWindow*)" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1]["stname"] = "" +defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"]["(ImGuiWindow*)"] = defs["igSetWindowHiddenAndSkipItemsForCurrentFrame"][1] defs["igSetWindowHitTestHole"] = {} defs["igSetWindowHitTestHole"][1] = {} defs["igSetWindowHitTestHole"][1]["args"] = "(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size)" @@ -26788,13 +28846,35 @@ defs["igSetWindowHitTestHole"][1]["call_args"] = "(window,pos,size)" defs["igSetWindowHitTestHole"][1]["cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["defaults"] = {} defs["igSetWindowHitTestHole"][1]["funcname"] = "SetWindowHitTestHole" -defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:2961" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:3369" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" defs["igSetWindowHitTestHole"][1]["signature"] = "(ImGuiWindow*,const ImVec2,const ImVec2)" defs["igSetWindowHitTestHole"][1]["stname"] = "" defs["igSetWindowHitTestHole"]["(ImGuiWindow*,const ImVec2,const ImVec2)"] = defs["igSetWindowHitTestHole"][1] +defs["igSetWindowParentWindowForFocusRoute"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["args"] = "(ImGuiWindow* window,ImGuiWindow* parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1]["name"] = "window" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2]["name"] = "parent_window" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igSetWindowParentWindowForFocusRoute"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiWindow* parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["call_args"] = "(window,parent_window)" +defs["igSetWindowParentWindowForFocusRoute"][1]["cimguiname"] = "igSetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["defaults"] = {} +defs["igSetWindowParentWindowForFocusRoute"][1]["funcname"] = "SetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["location"] = "imgui_internal:3371" +defs["igSetWindowParentWindowForFocusRoute"][1]["namespace"] = "ImGui" +defs["igSetWindowParentWindowForFocusRoute"][1]["ov_cimguiname"] = "igSetWindowParentWindowForFocusRoute" +defs["igSetWindowParentWindowForFocusRoute"][1]["ret"] = "void" +defs["igSetWindowParentWindowForFocusRoute"][1]["signature"] = "(ImGuiWindow*,ImGuiWindow*)" +defs["igSetWindowParentWindowForFocusRoute"][1]["stname"] = "" +defs["igSetWindowParentWindowForFocusRoute"]["(ImGuiWindow*,ImGuiWindow*)"] = defs["igSetWindowParentWindowForFocusRoute"][1] defs["igSetWindowPos"] = {} defs["igSetWindowPos"][1] = {} defs["igSetWindowPos"][1]["args"] = "(const ImVec2 pos,ImGuiCond cond)" @@ -26811,7 +28891,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:376" +defs["igSetWindowPos"][1]["location"] = "imgui:421" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -26835,7 +28915,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:381" +defs["igSetWindowPos"][2]["location"] = "imgui:426" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -26859,7 +28939,7 @@ defs["igSetWindowPos"][3]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][3]["defaults"] = {} defs["igSetWindowPos"][3]["defaults"]["cond"] = "0" defs["igSetWindowPos"][3]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][3]["location"] = "imgui_internal:2958" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:3366" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPos_WindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -26884,7 +28964,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:377" +defs["igSetWindowSize"][1]["location"] = "imgui:422" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -26908,7 +28988,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:382" +defs["igSetWindowSize"][2]["location"] = "imgui:427" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -26932,7 +29012,7 @@ defs["igSetWindowSize"][3]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][3]["defaults"] = {} defs["igSetWindowSize"][3]["defaults"]["cond"] = "0" defs["igSetWindowSize"][3]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][3]["location"] = "imgui_internal:2959" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:3367" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSize_WindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -26956,7 +29036,7 @@ defs["igSetWindowViewport"][1]["call_args"] = "(window,viewport)" defs["igSetWindowViewport"][1]["cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["defaults"] = {} defs["igSetWindowViewport"][1]["funcname"] = "SetWindowViewport" -defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3001" +defs["igSetWindowViewport"][1]["location"] = "imgui_internal:3418" defs["igSetWindowViewport"][1]["namespace"] = "ImGui" defs["igSetWindowViewport"][1]["ov_cimguiname"] = "igSetWindowViewport" defs["igSetWindowViewport"][1]["ret"] = "void" @@ -26993,7 +29073,7 @@ defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["call_args"] = "(draw_list,v defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["defaults"] = {} defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["funcname"] = "ShadeVertsLinearColorGradientKeepAlpha" -defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3430" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:3912" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -27033,40 +29113,97 @@ defs["igShadeVertsLinearUV"][1]["call_args"] = "(draw_list,vert_start_idx,vert_e defs["igShadeVertsLinearUV"][1]["cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["defaults"] = {} defs["igShadeVertsLinearUV"][1]["funcname"] = "ShadeVertsLinearUV" -defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3431" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:3913" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" defs["igShadeVertsLinearUV"][1]["signature"] = "(ImDrawList*,int,int,const ImVec2,const ImVec2,const ImVec2,const ImVec2,bool)" defs["igShadeVertsLinearUV"][1]["stname"] = "" defs["igShadeVertsLinearUV"]["(ImDrawList*,int,int,const ImVec2,const ImVec2,const ImVec2,const ImVec2,bool)"] = defs["igShadeVertsLinearUV"][1] +defs["igShadeVertsTransformPos"] = {} +defs["igShadeVertsTransformPos"][1] = {} +defs["igShadeVertsTransformPos"][1]["args"] = "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2 pivot_in,float cos_a,float sin_a,const ImVec2 pivot_out)" +defs["igShadeVertsTransformPos"][1]["argsT"] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][1] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][1]["name"] = "draw_list" +defs["igShadeVertsTransformPos"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["igShadeVertsTransformPos"][1]["argsT"][2] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][2]["name"] = "vert_start_idx" +defs["igShadeVertsTransformPos"][1]["argsT"][2]["type"] = "int" +defs["igShadeVertsTransformPos"][1]["argsT"][3] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][3]["name"] = "vert_end_idx" +defs["igShadeVertsTransformPos"][1]["argsT"][3]["type"] = "int" +defs["igShadeVertsTransformPos"][1]["argsT"][4] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][4]["name"] = "pivot_in" +defs["igShadeVertsTransformPos"][1]["argsT"][4]["type"] = "const ImVec2" +defs["igShadeVertsTransformPos"][1]["argsT"][5] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][5]["name"] = "cos_a" +defs["igShadeVertsTransformPos"][1]["argsT"][5]["type"] = "float" +defs["igShadeVertsTransformPos"][1]["argsT"][6] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][6]["name"] = "sin_a" +defs["igShadeVertsTransformPos"][1]["argsT"][6]["type"] = "float" +defs["igShadeVertsTransformPos"][1]["argsT"][7] = {} +defs["igShadeVertsTransformPos"][1]["argsT"][7]["name"] = "pivot_out" +defs["igShadeVertsTransformPos"][1]["argsT"][7]["type"] = "const ImVec2" +defs["igShadeVertsTransformPos"][1]["argsoriginal"] = "(ImDrawList* draw_list,int vert_start_idx,int vert_end_idx,const ImVec2& pivot_in,float cos_a,float sin_a,const ImVec2& pivot_out)" +defs["igShadeVertsTransformPos"][1]["call_args"] = "(draw_list,vert_start_idx,vert_end_idx,pivot_in,cos_a,sin_a,pivot_out)" +defs["igShadeVertsTransformPos"][1]["cimguiname"] = "igShadeVertsTransformPos" +defs["igShadeVertsTransformPos"][1]["defaults"] = {} +defs["igShadeVertsTransformPos"][1]["funcname"] = "ShadeVertsTransformPos" +defs["igShadeVertsTransformPos"][1]["location"] = "imgui_internal:3914" +defs["igShadeVertsTransformPos"][1]["namespace"] = "ImGui" +defs["igShadeVertsTransformPos"][1]["ov_cimguiname"] = "igShadeVertsTransformPos" +defs["igShadeVertsTransformPos"][1]["ret"] = "void" +defs["igShadeVertsTransformPos"][1]["signature"] = "(ImDrawList*,int,int,const ImVec2,float,float,const ImVec2)" +defs["igShadeVertsTransformPos"][1]["stname"] = "" +defs["igShadeVertsTransformPos"]["(ImDrawList*,int,int,const ImVec2,float,float,const ImVec2)"] = defs["igShadeVertsTransformPos"][1] defs["igShortcut"] = {} defs["igShortcut"][1] = {} -defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)" +defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" defs["igShortcut"][1]["argsT"] = {} defs["igShortcut"][1]["argsT"][1] = {} defs["igShortcut"][1]["argsT"][1]["name"] = "key_chord" defs["igShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" defs["igShortcut"][1]["argsT"][2] = {} -defs["igShortcut"][1]["argsT"][2]["name"] = "owner_id" -defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiID" -defs["igShortcut"][1]["argsT"][3] = {} -defs["igShortcut"][1]["argsT"][3]["name"] = "flags" -defs["igShortcut"][1]["argsT"][3]["type"] = "ImGuiInputFlags" -defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiID owner_id=0,ImGuiInputFlags flags=0)" -defs["igShortcut"][1]["call_args"] = "(key_chord,owner_id,flags)" +defs["igShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igShortcut"][1]["call_args"] = "(key_chord,flags)" defs["igShortcut"][1]["cimguiname"] = "igShortcut" defs["igShortcut"][1]["defaults"] = {} defs["igShortcut"][1]["defaults"]["flags"] = "0" -defs["igShortcut"][1]["defaults"]["owner_id"] = "0" defs["igShortcut"][1]["funcname"] = "Shortcut" -defs["igShortcut"][1]["location"] = "imgui_internal:3185" +defs["igShortcut"][1]["location"] = "imgui:1014" defs["igShortcut"][1]["namespace"] = "ImGui" -defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut" +defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut_Nil" defs["igShortcut"][1]["ret"] = "bool" -defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)" +defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" defs["igShortcut"][1]["stname"] = "" -defs["igShortcut"]["(ImGuiKeyChord,ImGuiID,ImGuiInputFlags)"] = defs["igShortcut"][1] +defs["igShortcut"][2] = {} +defs["igShortcut"][2]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igShortcut"][2]["argsT"] = {} +defs["igShortcut"][2]["argsT"][1] = {} +defs["igShortcut"][2]["argsT"][1]["name"] = "key_chord" +defs["igShortcut"][2]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igShortcut"][2]["argsT"][2] = {} +defs["igShortcut"][2]["argsT"][2]["name"] = "flags" +defs["igShortcut"][2]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igShortcut"][2]["argsT"][3] = {} +defs["igShortcut"][2]["argsT"][3]["name"] = "owner_id" +defs["igShortcut"][2]["argsT"][3]["type"] = "ImGuiID" +defs["igShortcut"][2]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags,ImGuiID owner_id)" +defs["igShortcut"][2]["call_args"] = "(key_chord,flags,owner_id)" +defs["igShortcut"][2]["cimguiname"] = "igShortcut" +defs["igShortcut"][2]["defaults"] = {} +defs["igShortcut"][2]["funcname"] = "Shortcut" +defs["igShortcut"][2]["location"] = "imgui_internal:3631" +defs["igShortcut"][2]["namespace"] = "ImGui" +defs["igShortcut"][2]["ov_cimguiname"] = "igShortcut_ID" +defs["igShortcut"][2]["ret"] = "bool" +defs["igShortcut"][2]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)" +defs["igShortcut"][2]["stname"] = "" +defs["igShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igShortcut"][1] +defs["igShortcut"]["(ImGuiKeyChord,ImGuiInputFlags,ImGuiID)"] = defs["igShortcut"][2] defs["igShowAboutWindow"] = {} defs["igShowAboutWindow"][1] = {} defs["igShowAboutWindow"][1]["args"] = "(bool* p_open)" @@ -27080,7 +29217,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:312" +defs["igShowAboutWindow"][1]["location"] = "imgui:347" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -27100,7 +29237,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:310" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:345" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -27120,7 +29257,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:308" +defs["igShowDemoWindow"][1]["location"] = "imgui:343" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -27139,7 +29276,7 @@ defs["igShowFontAtlas"][1]["call_args"] = "(atlas)" defs["igShowFontAtlas"][1]["cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["defaults"] = {} defs["igShowFontAtlas"][1]["funcname"] = "ShowFontAtlas" -defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3451" +defs["igShowFontAtlas"][1]["location"] = "imgui_internal:3936" defs["igShowFontAtlas"][1]["namespace"] = "ImGui" defs["igShowFontAtlas"][1]["ov_cimguiname"] = "igShowFontAtlas" defs["igShowFontAtlas"][1]["ret"] = "void" @@ -27158,13 +29295,33 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:315" +defs["igShowFontSelector"][1]["location"] = "imgui:350" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" defs["igShowFontSelector"][1]["signature"] = "(const char*)" defs["igShowFontSelector"][1]["stname"] = "" defs["igShowFontSelector"]["(const char*)"] = defs["igShowFontSelector"][1] +defs["igShowIDStackToolWindow"] = {} +defs["igShowIDStackToolWindow"][1] = {} +defs["igShowIDStackToolWindow"][1]["args"] = "(bool* p_open)" +defs["igShowIDStackToolWindow"][1]["argsT"] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1]["name"] = "p_open" +defs["igShowIDStackToolWindow"][1]["argsT"][1]["type"] = "bool*" +defs["igShowIDStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowIDStackToolWindow"][1]["call_args"] = "(p_open)" +defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["defaults"] = {} +defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" +defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:346" +defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" +defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["ret"] = "void" +defs["igShowIDStackToolWindow"][1]["signature"] = "(bool*)" +defs["igShowIDStackToolWindow"][1]["stname"] = "" +defs["igShowIDStackToolWindow"]["(bool*)"] = defs["igShowIDStackToolWindow"][1] defs["igShowMetricsWindow"] = {} defs["igShowMetricsWindow"][1] = {} defs["igShowMetricsWindow"][1]["args"] = "(bool* p_open)" @@ -27178,33 +29335,13 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:309" +defs["igShowMetricsWindow"][1]["location"] = "imgui:344" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" defs["igShowMetricsWindow"][1]["stname"] = "" defs["igShowMetricsWindow"]["(bool*)"] = defs["igShowMetricsWindow"][1] -defs["igShowStackToolWindow"] = {} -defs["igShowStackToolWindow"][1] = {} -defs["igShowStackToolWindow"][1]["args"] = "(bool* p_open)" -defs["igShowStackToolWindow"][1]["argsT"] = {} -defs["igShowStackToolWindow"][1]["argsT"][1] = {} -defs["igShowStackToolWindow"][1]["argsT"][1]["name"] = "p_open" -defs["igShowStackToolWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" -defs["igShowStackToolWindow"][1]["call_args"] = "(p_open)" -defs["igShowStackToolWindow"][1]["cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["defaults"] = {} -defs["igShowStackToolWindow"][1]["defaults"]["p_open"] = "NULL" -defs["igShowStackToolWindow"][1]["funcname"] = "ShowStackToolWindow" -defs["igShowStackToolWindow"][1]["location"] = "imgui:311" -defs["igShowStackToolWindow"][1]["namespace"] = "ImGui" -defs["igShowStackToolWindow"][1]["ov_cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["ret"] = "void" -defs["igShowStackToolWindow"][1]["signature"] = "(bool*)" -defs["igShowStackToolWindow"][1]["stname"] = "" -defs["igShowStackToolWindow"]["(bool*)"] = defs["igShowStackToolWindow"][1] defs["igShowStyleEditor"] = {} defs["igShowStyleEditor"][1] = {} defs["igShowStyleEditor"][1]["args"] = "(ImGuiStyle* ref)" @@ -27218,7 +29355,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:313" +defs["igShowStyleEditor"][1]["location"] = "imgui:348" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -27237,7 +29374,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:314" +defs["igShowStyleSelector"][1]["location"] = "imgui:349" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -27253,7 +29390,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:316" +defs["igShowUserGuide"][1]["location"] = "imgui:351" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -27278,7 +29415,7 @@ defs["igShrinkWidths"][1]["call_args"] = "(items,count,width_excess)" defs["igShrinkWidths"][1]["cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["defaults"] = {} defs["igShrinkWidths"][1]["funcname"] = "ShrinkWidths" -defs["igShrinkWidths"][1]["location"] = "imgui_internal:3062" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:3482" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -27294,7 +29431,7 @@ defs["igShutdown"][1]["call_args"] = "()" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "imgui_internal:2982" +defs["igShutdown"][1]["location"] = "imgui_internal:3398" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -27332,7 +29469,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:570" +defs["igSliderAngle"][1]["location"] = "imgui:619" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -27375,7 +29512,7 @@ defs["igSliderBehavior"][1]["call_args"] = "(bb,id,data_type,p_v,p_min,p_max,for defs["igSliderBehavior"][1]["cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["defaults"] = {} defs["igSliderBehavior"][1]["funcname"] = "SliderBehavior" -defs["igSliderBehavior"][1]["location"] = "imgui_internal:3389" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:3866" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -27411,7 +29548,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:566" +defs["igSliderFloat"][1]["location"] = "imgui:615" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -27447,7 +29584,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:567" +defs["igSliderFloat2"][1]["location"] = "imgui:616" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -27483,7 +29620,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:568" +defs["igSliderFloat3"][1]["location"] = "imgui:617" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -27519,7 +29656,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:569" +defs["igSliderFloat4"][1]["location"] = "imgui:618" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -27555,7 +29692,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:571" +defs["igSliderInt"][1]["location"] = "imgui:620" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -27591,7 +29728,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:572" +defs["igSliderInt2"][1]["location"] = "imgui:621" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -27627,7 +29764,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:573" +defs["igSliderInt3"][1]["location"] = "imgui:622" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -27663,7 +29800,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:574" +defs["igSliderInt4"][1]["location"] = "imgui:623" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -27702,7 +29839,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:575" +defs["igSliderScalar"][1]["location"] = "imgui:624" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -27744,7 +29881,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:576" +defs["igSliderScalarN"][1]["location"] = "imgui:625" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -27763,7 +29900,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:510" +defs["igSmallButton"][1]["location"] = "imgui:555" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -27779,7 +29916,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:450" +defs["igSpacing"][1]["location"] = "imgui:502" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -27828,7 +29965,7 @@ defs["igSplitterBehavior"][1]["defaults"]["bg_col"] = "0" defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" -defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3390" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:3867" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -27847,7 +29984,7 @@ defs["igStartMouseMovingWindow"][1]["call_args"] = "(window)" defs["igStartMouseMovingWindow"][1]["cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["defaults"] = {} defs["igStartMouseMovingWindow"][1]["funcname"] = "StartMouseMovingWindow" -defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:2987" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:3404" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -27856,7 +29993,7 @@ defs["igStartMouseMovingWindow"][1]["stname"] = "" defs["igStartMouseMovingWindow"]["(ImGuiWindow*)"] = defs["igStartMouseMovingWindow"][1] defs["igStartMouseMovingWindowOrNode"] = {} defs["igStartMouseMovingWindowOrNode"][1] = {} -defs["igStartMouseMovingWindowOrNode"][1]["args"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)" +defs["igStartMouseMovingWindowOrNode"][1]["args"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)" defs["igStartMouseMovingWindowOrNode"][1]["argsT"] = {} defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1] = {} defs["igStartMouseMovingWindowOrNode"][1]["argsT"][1]["name"] = "window" @@ -27865,14 +30002,14 @@ defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2] = {} defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2]["name"] = "node" defs["igStartMouseMovingWindowOrNode"][1]["argsT"][2]["type"] = "ImGuiDockNode*" defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3] = {} -defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["name"] = "undock_floating_node" +defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["name"] = "undock" defs["igStartMouseMovingWindowOrNode"][1]["argsT"][3]["type"] = "bool" -defs["igStartMouseMovingWindowOrNode"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock_floating_node)" -defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock_floating_node)" +defs["igStartMouseMovingWindowOrNode"][1]["argsoriginal"] = "(ImGuiWindow* window,ImGuiDockNode* node,bool undock)" +defs["igStartMouseMovingWindowOrNode"][1]["call_args"] = "(window,node,undock)" defs["igStartMouseMovingWindowOrNode"][1]["cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["defaults"] = {} defs["igStartMouseMovingWindowOrNode"][1]["funcname"] = "StartMouseMovingWindowOrNode" -defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:2988" +defs["igStartMouseMovingWindowOrNode"][1]["location"] = "imgui_internal:3405" defs["igStartMouseMovingWindowOrNode"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindowOrNode"][1]["ov_cimguiname"] = "igStartMouseMovingWindowOrNode" defs["igStartMouseMovingWindowOrNode"][1]["ret"] = "void" @@ -27892,7 +30029,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:322" +defs["igStyleColorsClassic"][1]["location"] = "imgui:357" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -27912,7 +30049,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:320" +defs["igStyleColorsDark"][1]["location"] = "imgui:355" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -27932,7 +30069,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:321" +defs["igStyleColorsLight"][1]["location"] = "imgui:356" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -27957,7 +30094,7 @@ defs["igTabBarAddTab"][1]["call_args"] = "(tab_bar,tab_flags,window)" defs["igTabBarAddTab"][1]["cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["defaults"] = {} defs["igTabBarAddTab"][1]["funcname"] = "TabBarAddTab" -defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3330" +defs["igTabBarAddTab"][1]["location"] = "imgui_internal:3805" defs["igTabBarAddTab"][1]["namespace"] = "ImGui" defs["igTabBarAddTab"][1]["ov_cimguiname"] = "igTabBarAddTab" defs["igTabBarAddTab"][1]["ret"] = "void" @@ -27979,7 +30116,7 @@ defs["igTabBarCloseTab"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarCloseTab"][1]["cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["defaults"] = {} defs["igTabBarCloseTab"][1]["funcname"] = "TabBarCloseTab" -defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3332" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:3807" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -27998,7 +30135,7 @@ defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["call_args"] = "(t defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["defaults"] = {} defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["funcname"] = "TabBarFindMostRecentlySelectedTabForActiveWindow" -defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3329" +defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["location"] = "imgui_internal:3801" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["namespace"] = "ImGui" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ov_cimguiname"] = "igTabBarFindMostRecentlySelectedTabForActiveWindow" defs["igTabBarFindMostRecentlySelectedTabForActiveWindow"][1]["ret"] = "ImGuiTabItem*" @@ -28020,13 +30157,98 @@ defs["igTabBarFindTabByID"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarFindTabByID"][1]["cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["defaults"] = {} defs["igTabBarFindTabByID"][1]["funcname"] = "TabBarFindTabByID" -defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3328" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:3799" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" defs["igTabBarFindTabByID"][1]["signature"] = "(ImGuiTabBar*,ImGuiID)" defs["igTabBarFindTabByID"][1]["stname"] = "" defs["igTabBarFindTabByID"]["(ImGuiTabBar*,ImGuiID)"] = defs["igTabBarFindTabByID"][1] +defs["igTabBarFindTabByOrder"] = {} +defs["igTabBarFindTabByOrder"][1] = {} +defs["igTabBarFindTabByOrder"][1]["args"] = "(ImGuiTabBar* tab_bar,int order)" +defs["igTabBarFindTabByOrder"][1]["argsT"] = {} +defs["igTabBarFindTabByOrder"][1]["argsT"][1] = {} +defs["igTabBarFindTabByOrder"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarFindTabByOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarFindTabByOrder"][1]["argsT"][2] = {} +defs["igTabBarFindTabByOrder"][1]["argsT"][2]["name"] = "order" +defs["igTabBarFindTabByOrder"][1]["argsT"][2]["type"] = "int" +defs["igTabBarFindTabByOrder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,int order)" +defs["igTabBarFindTabByOrder"][1]["call_args"] = "(tab_bar,order)" +defs["igTabBarFindTabByOrder"][1]["cimguiname"] = "igTabBarFindTabByOrder" +defs["igTabBarFindTabByOrder"][1]["defaults"] = {} +defs["igTabBarFindTabByOrder"][1]["funcname"] = "TabBarFindTabByOrder" +defs["igTabBarFindTabByOrder"][1]["location"] = "imgui_internal:3800" +defs["igTabBarFindTabByOrder"][1]["namespace"] = "ImGui" +defs["igTabBarFindTabByOrder"][1]["ov_cimguiname"] = "igTabBarFindTabByOrder" +defs["igTabBarFindTabByOrder"][1]["ret"] = "ImGuiTabItem*" +defs["igTabBarFindTabByOrder"][1]["signature"] = "(ImGuiTabBar*,int)" +defs["igTabBarFindTabByOrder"][1]["stname"] = "" +defs["igTabBarFindTabByOrder"]["(ImGuiTabBar*,int)"] = defs["igTabBarFindTabByOrder"][1] +defs["igTabBarGetCurrentTab"] = {} +defs["igTabBarGetCurrentTab"][1] = {} +defs["igTabBarGetCurrentTab"][1]["args"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarGetCurrentTab"][1]["argsT"] = {} +defs["igTabBarGetCurrentTab"][1]["argsT"][1] = {} +defs["igTabBarGetCurrentTab"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarGetCurrentTab"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarGetCurrentTab"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar)" +defs["igTabBarGetCurrentTab"][1]["call_args"] = "(tab_bar)" +defs["igTabBarGetCurrentTab"][1]["cimguiname"] = "igTabBarGetCurrentTab" +defs["igTabBarGetCurrentTab"][1]["defaults"] = {} +defs["igTabBarGetCurrentTab"][1]["funcname"] = "TabBarGetCurrentTab" +defs["igTabBarGetCurrentTab"][1]["location"] = "imgui_internal:3802" +defs["igTabBarGetCurrentTab"][1]["namespace"] = "ImGui" +defs["igTabBarGetCurrentTab"][1]["ov_cimguiname"] = "igTabBarGetCurrentTab" +defs["igTabBarGetCurrentTab"][1]["ret"] = "ImGuiTabItem*" +defs["igTabBarGetCurrentTab"][1]["signature"] = "(ImGuiTabBar*)" +defs["igTabBarGetCurrentTab"][1]["stname"] = "" +defs["igTabBarGetCurrentTab"]["(ImGuiTabBar*)"] = defs["igTabBarGetCurrentTab"][1] +defs["igTabBarGetTabName"] = {} +defs["igTabBarGetTabName"][1] = {} +defs["igTabBarGetTabName"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabName"][1]["argsT"] = {} +defs["igTabBarGetTabName"][1]["argsT"][1] = {} +defs["igTabBarGetTabName"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarGetTabName"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarGetTabName"][1]["argsT"][2] = {} +defs["igTabBarGetTabName"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarGetTabName"][1]["argsT"][2]["type"] = "ImGuiTabItem*" +defs["igTabBarGetTabName"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabName"][1]["call_args"] = "(tab_bar,tab)" +defs["igTabBarGetTabName"][1]["cimguiname"] = "igTabBarGetTabName" +defs["igTabBarGetTabName"][1]["defaults"] = {} +defs["igTabBarGetTabName"][1]["funcname"] = "TabBarGetTabName" +defs["igTabBarGetTabName"][1]["location"] = "imgui_internal:3804" +defs["igTabBarGetTabName"][1]["namespace"] = "ImGui" +defs["igTabBarGetTabName"][1]["ov_cimguiname"] = "igTabBarGetTabName" +defs["igTabBarGetTabName"][1]["ret"] = "const char*" +defs["igTabBarGetTabName"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" +defs["igTabBarGetTabName"][1]["stname"] = "" +defs["igTabBarGetTabName"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarGetTabName"][1] +defs["igTabBarGetTabOrder"] = {} +defs["igTabBarGetTabOrder"][1] = {} +defs["igTabBarGetTabOrder"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabOrder"][1]["argsT"] = {} +defs["igTabBarGetTabOrder"][1]["argsT"][1] = {} +defs["igTabBarGetTabOrder"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarGetTabOrder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarGetTabOrder"][1]["argsT"][2] = {} +defs["igTabBarGetTabOrder"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarGetTabOrder"][1]["argsT"][2]["type"] = "ImGuiTabItem*" +defs["igTabBarGetTabOrder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarGetTabOrder"][1]["call_args"] = "(tab_bar,tab)" +defs["igTabBarGetTabOrder"][1]["cimguiname"] = "igTabBarGetTabOrder" +defs["igTabBarGetTabOrder"][1]["defaults"] = {} +defs["igTabBarGetTabOrder"][1]["funcname"] = "TabBarGetTabOrder" +defs["igTabBarGetTabOrder"][1]["location"] = "imgui_internal:3803" +defs["igTabBarGetTabOrder"][1]["namespace"] = "ImGui" +defs["igTabBarGetTabOrder"][1]["ov_cimguiname"] = "igTabBarGetTabOrder" +defs["igTabBarGetTabOrder"][1]["ret"] = "int" +defs["igTabBarGetTabOrder"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" +defs["igTabBarGetTabOrder"][1]["stname"] = "" +defs["igTabBarGetTabOrder"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarGetTabOrder"][1] defs["igTabBarProcessReorder"] = {} defs["igTabBarProcessReorder"][1] = {} defs["igTabBarProcessReorder"][1]["args"] = "(ImGuiTabBar* tab_bar)" @@ -28039,63 +30261,85 @@ defs["igTabBarProcessReorder"][1]["call_args"] = "(tab_bar)" defs["igTabBarProcessReorder"][1]["cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["defaults"] = {} defs["igTabBarProcessReorder"][1]["funcname"] = "TabBarProcessReorder" -defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3335" +defs["igTabBarProcessReorder"][1]["location"] = "imgui_internal:3811" defs["igTabBarProcessReorder"][1]["namespace"] = "ImGui" defs["igTabBarProcessReorder"][1]["ov_cimguiname"] = "igTabBarProcessReorder" defs["igTabBarProcessReorder"][1]["ret"] = "bool" defs["igTabBarProcessReorder"][1]["signature"] = "(ImGuiTabBar*)" defs["igTabBarProcessReorder"][1]["stname"] = "" defs["igTabBarProcessReorder"]["(ImGuiTabBar*)"] = defs["igTabBarProcessReorder"][1] +defs["igTabBarQueueFocus"] = {} +defs["igTabBarQueueFocus"][1] = {} +defs["igTabBarQueueFocus"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarQueueFocus"][1]["argsT"] = {} +defs["igTabBarQueueFocus"][1]["argsT"][1] = {} +defs["igTabBarQueueFocus"][1]["argsT"][1]["name"] = "tab_bar" +defs["igTabBarQueueFocus"][1]["argsT"][1]["type"] = "ImGuiTabBar*" +defs["igTabBarQueueFocus"][1]["argsT"][2] = {} +defs["igTabBarQueueFocus"][1]["argsT"][2]["name"] = "tab" +defs["igTabBarQueueFocus"][1]["argsT"][2]["type"] = "ImGuiTabItem*" +defs["igTabBarQueueFocus"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab)" +defs["igTabBarQueueFocus"][1]["call_args"] = "(tab_bar,tab)" +defs["igTabBarQueueFocus"][1]["cimguiname"] = "igTabBarQueueFocus" +defs["igTabBarQueueFocus"][1]["defaults"] = {} +defs["igTabBarQueueFocus"][1]["funcname"] = "TabBarQueueFocus" +defs["igTabBarQueueFocus"][1]["location"] = "imgui_internal:3808" +defs["igTabBarQueueFocus"][1]["namespace"] = "ImGui" +defs["igTabBarQueueFocus"][1]["ov_cimguiname"] = "igTabBarQueueFocus" +defs["igTabBarQueueFocus"][1]["ret"] = "void" +defs["igTabBarQueueFocus"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*)" +defs["igTabBarQueueFocus"][1]["stname"] = "" +defs["igTabBarQueueFocus"]["(ImGuiTabBar*,ImGuiTabItem*)"] = defs["igTabBarQueueFocus"][1] defs["igTabBarQueueReorder"] = {} defs["igTabBarQueueReorder"][1] = {} -defs["igTabBarQueueReorder"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)" +defs["igTabBarQueueReorder"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)" defs["igTabBarQueueReorder"][1]["argsT"] = {} defs["igTabBarQueueReorder"][1]["argsT"][1] = {} defs["igTabBarQueueReorder"][1]["argsT"][1]["name"] = "tab_bar" defs["igTabBarQueueReorder"][1]["argsT"][1]["type"] = "ImGuiTabBar*" defs["igTabBarQueueReorder"][1]["argsT"][2] = {} defs["igTabBarQueueReorder"][1]["argsT"][2]["name"] = "tab" -defs["igTabBarQueueReorder"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" +defs["igTabBarQueueReorder"][1]["argsT"][2]["type"] = "ImGuiTabItem*" defs["igTabBarQueueReorder"][1]["argsT"][3] = {} defs["igTabBarQueueReorder"][1]["argsT"][3]["name"] = "offset" defs["igTabBarQueueReorder"][1]["argsT"][3]["type"] = "int" -defs["igTabBarQueueReorder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,int offset)" +defs["igTabBarQueueReorder"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,int offset)" defs["igTabBarQueueReorder"][1]["call_args"] = "(tab_bar,tab,offset)" defs["igTabBarQueueReorder"][1]["cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["defaults"] = {} defs["igTabBarQueueReorder"][1]["funcname"] = "TabBarQueueReorder" -defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3333" +defs["igTabBarQueueReorder"][1]["location"] = "imgui_internal:3809" defs["igTabBarQueueReorder"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorder"][1]["ov_cimguiname"] = "igTabBarQueueReorder" defs["igTabBarQueueReorder"][1]["ret"] = "void" -defs["igTabBarQueueReorder"][1]["signature"] = "(ImGuiTabBar*,const ImGuiTabItem*,int)" +defs["igTabBarQueueReorder"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*,int)" defs["igTabBarQueueReorder"][1]["stname"] = "" -defs["igTabBarQueueReorder"]["(ImGuiTabBar*,const ImGuiTabItem*,int)"] = defs["igTabBarQueueReorder"][1] +defs["igTabBarQueueReorder"]["(ImGuiTabBar*,ImGuiTabItem*,int)"] = defs["igTabBarQueueReorder"][1] defs["igTabBarQueueReorderFromMousePos"] = {} defs["igTabBarQueueReorderFromMousePos"][1] = {} -defs["igTabBarQueueReorderFromMousePos"][1]["args"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)" +defs["igTabBarQueueReorderFromMousePos"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][1] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][1]["name"] = "tab_bar" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][1]["type"] = "ImGuiTabBar*" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2]["name"] = "tab" -defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2]["type"] = "const ImGuiTabItem*" +defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][2]["type"] = "ImGuiTabItem*" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][3] = {} defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][3]["name"] = "mouse_pos" defs["igTabBarQueueReorderFromMousePos"][1]["argsT"][3]["type"] = "ImVec2" -defs["igTabBarQueueReorderFromMousePos"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,const ImGuiTabItem* tab,ImVec2 mouse_pos)" +defs["igTabBarQueueReorderFromMousePos"][1]["argsoriginal"] = "(ImGuiTabBar* tab_bar,ImGuiTabItem* tab,ImVec2 mouse_pos)" defs["igTabBarQueueReorderFromMousePos"][1]["call_args"] = "(tab_bar,tab,mouse_pos)" defs["igTabBarQueueReorderFromMousePos"][1]["cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["defaults"] = {} defs["igTabBarQueueReorderFromMousePos"][1]["funcname"] = "TabBarQueueReorderFromMousePos" -defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3334" +defs["igTabBarQueueReorderFromMousePos"][1]["location"] = "imgui_internal:3810" defs["igTabBarQueueReorderFromMousePos"][1]["namespace"] = "ImGui" defs["igTabBarQueueReorderFromMousePos"][1]["ov_cimguiname"] = "igTabBarQueueReorderFromMousePos" defs["igTabBarQueueReorderFromMousePos"][1]["ret"] = "void" -defs["igTabBarQueueReorderFromMousePos"][1]["signature"] = "(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)" +defs["igTabBarQueueReorderFromMousePos"][1]["signature"] = "(ImGuiTabBar*,ImGuiTabItem*,ImVec2)" defs["igTabBarQueueReorderFromMousePos"][1]["stname"] = "" -defs["igTabBarQueueReorderFromMousePos"]["(ImGuiTabBar*,const ImGuiTabItem*,ImVec2)"] = defs["igTabBarQueueReorderFromMousePos"][1] +defs["igTabBarQueueReorderFromMousePos"]["(ImGuiTabBar*,ImGuiTabItem*,ImVec2)"] = defs["igTabBarQueueReorderFromMousePos"][1] defs["igTabBarRemoveTab"] = {} defs["igTabBarRemoveTab"][1] = {} defs["igTabBarRemoveTab"][1]["args"] = "(ImGuiTabBar* tab_bar,ImGuiID tab_id)" @@ -28111,7 +30355,7 @@ defs["igTabBarRemoveTab"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarRemoveTab"][1]["cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["defaults"] = {} defs["igTabBarRemoveTab"][1]["funcname"] = "TabBarRemoveTab" -defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3331" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:3806" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -28139,7 +30383,7 @@ defs["igTabItemBackground"][1]["call_args"] = "(draw_list,bb,flags,col)" defs["igTabItemBackground"][1]["cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["defaults"] = {} defs["igTabItemBackground"][1]["funcname"] = "TabItemBackground" -defs["igTabItemBackground"][1]["location"] = "imgui_internal:3339" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:3815" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -28162,7 +30406,7 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:799" +defs["igTabItemButton"][1]["location"] = "imgui:869" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" @@ -28187,7 +30431,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button_or_unsaved_ defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3337" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:3813" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize_Str" @@ -28208,7 +30452,7 @@ defs["igTabItemCalcSize"][2]["call_args"] = "(window)" defs["igTabItemCalcSize"][2]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][2]["defaults"] = {} defs["igTabItemCalcSize"][2]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3338" +defs["igTabItemCalcSize"][2]["location"] = "imgui_internal:3814" defs["igTabItemCalcSize"][2]["namespace"] = "ImGui" defs["igTabItemCalcSize"][2]["nonUDT"] = 1 defs["igTabItemCalcSize"][2]["ov_cimguiname"] = "igTabItemCalcSize_WindowPtr" @@ -28241,7 +30485,7 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags,docked_window defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" -defs["igTabItemEx"][1]["location"] = "imgui_internal:3336" +defs["igTabItemEx"][1]["location"] = "imgui_internal:3812" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -28287,13 +30531,60 @@ defs["igTabItemLabelAndCloseButton"][1]["call_args"] = "(draw_list,bb,flags,fram defs["igTabItemLabelAndCloseButton"][1]["cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["defaults"] = {} defs["igTabItemLabelAndCloseButton"][1]["funcname"] = "TabItemLabelAndCloseButton" -defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3340" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:3816" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "void" defs["igTabItemLabelAndCloseButton"][1]["signature"] = "(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImVec2,const char*,ImGuiID,ImGuiID,bool,bool*,bool*)" defs["igTabItemLabelAndCloseButton"][1]["stname"] = "" defs["igTabItemLabelAndCloseButton"]["(ImDrawList*,const ImRect,ImGuiTabItemFlags,ImVec2,const char*,ImGuiID,ImGuiID,bool,bool*,bool*)"] = defs["igTabItemLabelAndCloseButton"][1] +defs["igTableAngledHeadersRow"] = {} +defs["igTableAngledHeadersRow"][1] = {} +defs["igTableAngledHeadersRow"][1]["args"] = "()" +defs["igTableAngledHeadersRow"][1]["argsT"] = {} +defs["igTableAngledHeadersRow"][1]["argsoriginal"] = "()" +defs["igTableAngledHeadersRow"][1]["call_args"] = "()" +defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["defaults"] = {} +defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:834" +defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" +defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["ret"] = "void" +defs["igTableAngledHeadersRow"][1]["signature"] = "()" +defs["igTableAngledHeadersRow"][1]["stname"] = "" +defs["igTableAngledHeadersRow"]["()"] = defs["igTableAngledHeadersRow"][1] +defs["igTableAngledHeadersRowEx"] = {} +defs["igTableAngledHeadersRowEx"][1] = {} +defs["igTableAngledHeadersRowEx"][1]["args"] = "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)" +defs["igTableAngledHeadersRowEx"][1]["argsT"] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][1] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][1]["name"] = "row_id" +defs["igTableAngledHeadersRowEx"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igTableAngledHeadersRowEx"][1]["argsT"][2] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][2]["name"] = "angle" +defs["igTableAngledHeadersRowEx"][1]["argsT"][2]["type"] = "float" +defs["igTableAngledHeadersRowEx"][1]["argsT"][3] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][3]["name"] = "max_label_width" +defs["igTableAngledHeadersRowEx"][1]["argsT"][3]["type"] = "float" +defs["igTableAngledHeadersRowEx"][1]["argsT"][4] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][4]["name"] = "data" +defs["igTableAngledHeadersRowEx"][1]["argsT"][4]["type"] = "const ImGuiTableHeaderData*" +defs["igTableAngledHeadersRowEx"][1]["argsT"][5] = {} +defs["igTableAngledHeadersRowEx"][1]["argsT"][5]["name"] = "data_count" +defs["igTableAngledHeadersRowEx"][1]["argsT"][5]["type"] = "int" +defs["igTableAngledHeadersRowEx"][1]["argsoriginal"] = "(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)" +defs["igTableAngledHeadersRowEx"][1]["call_args"] = "(row_id,angle,max_label_width,data,data_count)" +defs["igTableAngledHeadersRowEx"][1]["cimguiname"] = "igTableAngledHeadersRowEx" +defs["igTableAngledHeadersRowEx"][1]["defaults"] = {} +defs["igTableAngledHeadersRowEx"][1]["funcname"] = "TableAngledHeadersRowEx" +defs["igTableAngledHeadersRowEx"][1]["location"] = "imgui_internal:3749" +defs["igTableAngledHeadersRowEx"][1]["namespace"] = "ImGui" +defs["igTableAngledHeadersRowEx"][1]["ov_cimguiname"] = "igTableAngledHeadersRowEx" +defs["igTableAngledHeadersRowEx"][1]["ret"] = "void" +defs["igTableAngledHeadersRowEx"][1]["signature"] = "(ImGuiID,float,float,const ImGuiTableHeaderData*,int)" +defs["igTableAngledHeadersRowEx"][1]["stname"] = "" +defs["igTableAngledHeadersRowEx"]["(ImGuiID,float,float,const ImGuiTableHeaderData*,int)"] = defs["igTableAngledHeadersRowEx"][1] defs["igTableBeginApplyRequests"] = {} defs["igTableBeginApplyRequests"][1] = {} defs["igTableBeginApplyRequests"][1]["args"] = "(ImGuiTable* table)" @@ -28306,7 +30597,7 @@ defs["igTableBeginApplyRequests"][1]["call_args"] = "(table)" defs["igTableBeginApplyRequests"][1]["cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["defaults"] = {} defs["igTableBeginApplyRequests"][1]["funcname"] = "TableBeginApplyRequests" -defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3287" +defs["igTableBeginApplyRequests"][1]["location"] = "imgui_internal:3756" defs["igTableBeginApplyRequests"][1]["namespace"] = "ImGui" defs["igTableBeginApplyRequests"][1]["ov_cimguiname"] = "igTableBeginApplyRequests" defs["igTableBeginApplyRequests"][1]["ret"] = "void" @@ -28328,7 +30619,7 @@ defs["igTableBeginCell"][1]["call_args"] = "(table,column_n)" defs["igTableBeginCell"][1]["cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["defaults"] = {} defs["igTableBeginCell"][1]["funcname"] = "TableBeginCell" -defs["igTableBeginCell"][1]["location"] = "imgui_internal:3304" +defs["igTableBeginCell"][1]["location"] = "imgui_internal:3774" defs["igTableBeginCell"][1]["namespace"] = "ImGui" defs["igTableBeginCell"][1]["ov_cimguiname"] = "igTableBeginCell" defs["igTableBeginCell"][1]["ret"] = "void" @@ -28347,7 +30638,7 @@ defs["igTableBeginContextMenuPopup"][1]["call_args"] = "(table)" defs["igTableBeginContextMenuPopup"][1]["cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["defaults"] = {} defs["igTableBeginContextMenuPopup"][1]["funcname"] = "TableBeginContextMenuPopup" -defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3294" +defs["igTableBeginContextMenuPopup"][1]["location"] = "imgui_internal:3763" defs["igTableBeginContextMenuPopup"][1]["namespace"] = "ImGui" defs["igTableBeginContextMenuPopup"][1]["ov_cimguiname"] = "igTableBeginContextMenuPopup" defs["igTableBeginContextMenuPopup"][1]["ret"] = "bool" @@ -28369,7 +30660,7 @@ defs["igTableBeginInitMemory"][1]["call_args"] = "(table,columns_count)" defs["igTableBeginInitMemory"][1]["cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["defaults"] = {} defs["igTableBeginInitMemory"][1]["funcname"] = "TableBeginInitMemory" -defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3286" +defs["igTableBeginInitMemory"][1]["location"] = "imgui_internal:3755" defs["igTableBeginInitMemory"][1]["namespace"] = "ImGui" defs["igTableBeginInitMemory"][1]["ov_cimguiname"] = "igTableBeginInitMemory" defs["igTableBeginInitMemory"][1]["ret"] = "void" @@ -28388,13 +30679,35 @@ defs["igTableBeginRow"][1]["call_args"] = "(table)" defs["igTableBeginRow"][1]["cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["defaults"] = {} defs["igTableBeginRow"][1]["funcname"] = "TableBeginRow" -defs["igTableBeginRow"][1]["location"] = "imgui_internal:3302" +defs["igTableBeginRow"][1]["location"] = "imgui_internal:3772" defs["igTableBeginRow"][1]["namespace"] = "ImGui" defs["igTableBeginRow"][1]["ov_cimguiname"] = "igTableBeginRow" defs["igTableBeginRow"][1]["ret"] = "void" defs["igTableBeginRow"][1]["signature"] = "(ImGuiTable*)" defs["igTableBeginRow"][1]["stname"] = "" defs["igTableBeginRow"]["(ImGuiTable*)"] = defs["igTableBeginRow"][1] +defs["igTableCalcMaxColumnWidth"] = {} +defs["igTableCalcMaxColumnWidth"][1] = {} +defs["igTableCalcMaxColumnWidth"][1]["args"] = "(const ImGuiTable* table,int column_n)" +defs["igTableCalcMaxColumnWidth"][1]["argsT"] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1]["name"] = "table" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][1]["type"] = "const ImGuiTable*" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2] = {} +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2]["name"] = "column_n" +defs["igTableCalcMaxColumnWidth"][1]["argsT"][2]["type"] = "int" +defs["igTableCalcMaxColumnWidth"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n)" +defs["igTableCalcMaxColumnWidth"][1]["call_args"] = "(table,column_n)" +defs["igTableCalcMaxColumnWidth"][1]["cimguiname"] = "igTableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["defaults"] = {} +defs["igTableCalcMaxColumnWidth"][1]["funcname"] = "TableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["location"] = "imgui_internal:3779" +defs["igTableCalcMaxColumnWidth"][1]["namespace"] = "ImGui" +defs["igTableCalcMaxColumnWidth"][1]["ov_cimguiname"] = "igTableCalcMaxColumnWidth" +defs["igTableCalcMaxColumnWidth"][1]["ret"] = "float" +defs["igTableCalcMaxColumnWidth"][1]["signature"] = "(const ImGuiTable*,int)" +defs["igTableCalcMaxColumnWidth"][1]["stname"] = "" +defs["igTableCalcMaxColumnWidth"]["(const ImGuiTable*,int)"] = defs["igTableCalcMaxColumnWidth"][1] defs["igTableDrawBorders"] = {} defs["igTableDrawBorders"][1] = {} defs["igTableDrawBorders"][1]["args"] = "(ImGuiTable* table)" @@ -28407,32 +30720,35 @@ defs["igTableDrawBorders"][1]["call_args"] = "(table)" defs["igTableDrawBorders"][1]["cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["defaults"] = {} defs["igTableDrawBorders"][1]["funcname"] = "TableDrawBorders" -defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3292" +defs["igTableDrawBorders"][1]["location"] = "imgui_internal:3761" defs["igTableDrawBorders"][1]["namespace"] = "ImGui" defs["igTableDrawBorders"][1]["ov_cimguiname"] = "igTableDrawBorders" defs["igTableDrawBorders"][1]["ret"] = "void" defs["igTableDrawBorders"][1]["signature"] = "(ImGuiTable*)" defs["igTableDrawBorders"][1]["stname"] = "" defs["igTableDrawBorders"]["(ImGuiTable*)"] = defs["igTableDrawBorders"][1] -defs["igTableDrawContextMenu"] = {} -defs["igTableDrawContextMenu"][1] = {} -defs["igTableDrawContextMenu"][1]["args"] = "(ImGuiTable* table)" -defs["igTableDrawContextMenu"][1]["argsT"] = {} -defs["igTableDrawContextMenu"][1]["argsT"][1] = {} -defs["igTableDrawContextMenu"][1]["argsT"][1]["name"] = "table" -defs["igTableDrawContextMenu"][1]["argsT"][1]["type"] = "ImGuiTable*" -defs["igTableDrawContextMenu"][1]["argsoriginal"] = "(ImGuiTable* table)" -defs["igTableDrawContextMenu"][1]["call_args"] = "(table)" -defs["igTableDrawContextMenu"][1]["cimguiname"] = "igTableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["defaults"] = {} -defs["igTableDrawContextMenu"][1]["funcname"] = "TableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["location"] = "imgui_internal:3293" -defs["igTableDrawContextMenu"][1]["namespace"] = "ImGui" -defs["igTableDrawContextMenu"][1]["ov_cimguiname"] = "igTableDrawContextMenu" -defs["igTableDrawContextMenu"][1]["ret"] = "void" -defs["igTableDrawContextMenu"][1]["signature"] = "(ImGuiTable*)" -defs["igTableDrawContextMenu"][1]["stname"] = "" -defs["igTableDrawContextMenu"]["(ImGuiTable*)"] = defs["igTableDrawContextMenu"][1] +defs["igTableDrawDefaultContextMenu"] = {} +defs["igTableDrawDefaultContextMenu"][1] = {} +defs["igTableDrawDefaultContextMenu"][1]["args"] = "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)" +defs["igTableDrawDefaultContextMenu"][1]["argsT"] = {} +defs["igTableDrawDefaultContextMenu"][1]["argsT"][1] = {} +defs["igTableDrawDefaultContextMenu"][1]["argsT"][1]["name"] = "table" +defs["igTableDrawDefaultContextMenu"][1]["argsT"][1]["type"] = "ImGuiTable*" +defs["igTableDrawDefaultContextMenu"][1]["argsT"][2] = {} +defs["igTableDrawDefaultContextMenu"][1]["argsT"][2]["name"] = "flags_for_section_to_display" +defs["igTableDrawDefaultContextMenu"][1]["argsT"][2]["type"] = "ImGuiTableFlags" +defs["igTableDrawDefaultContextMenu"][1]["argsoriginal"] = "(ImGuiTable* table,ImGuiTableFlags flags_for_section_to_display)" +defs["igTableDrawDefaultContextMenu"][1]["call_args"] = "(table,flags_for_section_to_display)" +defs["igTableDrawDefaultContextMenu"][1]["cimguiname"] = "igTableDrawDefaultContextMenu" +defs["igTableDrawDefaultContextMenu"][1]["defaults"] = {} +defs["igTableDrawDefaultContextMenu"][1]["funcname"] = "TableDrawDefaultContextMenu" +defs["igTableDrawDefaultContextMenu"][1]["location"] = "imgui_internal:3762" +defs["igTableDrawDefaultContextMenu"][1]["namespace"] = "ImGui" +defs["igTableDrawDefaultContextMenu"][1]["ov_cimguiname"] = "igTableDrawDefaultContextMenu" +defs["igTableDrawDefaultContextMenu"][1]["ret"] = "void" +defs["igTableDrawDefaultContextMenu"][1]["signature"] = "(ImGuiTable*,ImGuiTableFlags)" +defs["igTableDrawDefaultContextMenu"][1]["stname"] = "" +defs["igTableDrawDefaultContextMenu"]["(ImGuiTable*,ImGuiTableFlags)"] = defs["igTableDrawDefaultContextMenu"][1] defs["igTableEndCell"] = {} defs["igTableEndCell"][1] = {} defs["igTableEndCell"][1]["args"] = "(ImGuiTable* table)" @@ -28445,7 +30761,7 @@ defs["igTableEndCell"][1]["call_args"] = "(table)" defs["igTableEndCell"][1]["cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["defaults"] = {} defs["igTableEndCell"][1]["funcname"] = "TableEndCell" -defs["igTableEndCell"][1]["location"] = "imgui_internal:3305" +defs["igTableEndCell"][1]["location"] = "imgui_internal:3775" defs["igTableEndCell"][1]["namespace"] = "ImGui" defs["igTableEndCell"][1]["ov_cimguiname"] = "igTableEndCell" defs["igTableEndCell"][1]["ret"] = "void" @@ -28464,7 +30780,7 @@ defs["igTableEndRow"][1]["call_args"] = "(table)" defs["igTableEndRow"][1]["cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["defaults"] = {} defs["igTableEndRow"][1]["funcname"] = "TableEndRow" -defs["igTableEndRow"][1]["location"] = "imgui_internal:3303" +defs["igTableEndRow"][1]["location"] = "imgui_internal:3773" defs["igTableEndRow"][1]["namespace"] = "ImGui" defs["igTableEndRow"][1]["ov_cimguiname"] = "igTableEndRow" defs["igTableEndRow"][1]["ret"] = "void" @@ -28483,7 +30799,7 @@ defs["igTableFindByID"][1]["call_args"] = "(id)" defs["igTableFindByID"][1]["cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["defaults"] = {} defs["igTableFindByID"][1]["funcname"] = "TableFindByID" -defs["igTableFindByID"][1]["location"] = "imgui_internal:3284" +defs["igTableFindByID"][1]["location"] = "imgui_internal:3753" defs["igTableFindByID"][1]["namespace"] = "ImGui" defs["igTableFindByID"][1]["ov_cimguiname"] = "igTableFindByID" defs["igTableFindByID"][1]["ret"] = "ImGuiTable*" @@ -28505,7 +30821,7 @@ defs["igTableFixColumnSortDirection"][1]["call_args"] = "(table,column)" defs["igTableFixColumnSortDirection"][1]["cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["defaults"] = {} defs["igTableFixColumnSortDirection"][1]["funcname"] = "TableFixColumnSortDirection" -defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3300" +defs["igTableFixColumnSortDirection"][1]["location"] = "imgui_internal:3770" defs["igTableFixColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableFixColumnSortDirection"][1]["ov_cimguiname"] = "igTableFixColumnSortDirection" defs["igTableFixColumnSortDirection"][1]["ret"] = "void" @@ -28521,7 +30837,7 @@ defs["igTableGcCompactSettings"][1]["call_args"] = "()" defs["igTableGcCompactSettings"][1]["cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["defaults"] = {} defs["igTableGcCompactSettings"][1]["funcname"] = "TableGcCompactSettings" -defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3315" +defs["igTableGcCompactSettings"][1]["location"] = "imgui_internal:3785" defs["igTableGcCompactSettings"][1]["namespace"] = "ImGui" defs["igTableGcCompactSettings"][1]["ov_cimguiname"] = "igTableGcCompactSettings" defs["igTableGcCompactSettings"][1]["ret"] = "void" @@ -28540,7 +30856,7 @@ defs["igTableGcCompactTransientBuffers"][1]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][1]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][1]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][1]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3313" +defs["igTableGcCompactTransientBuffers"][1]["location"] = "imgui_internal:3783" defs["igTableGcCompactTransientBuffers"][1]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][1]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TablePtr" defs["igTableGcCompactTransientBuffers"][1]["ret"] = "void" @@ -28557,7 +30873,7 @@ defs["igTableGcCompactTransientBuffers"][2]["call_args"] = "(table)" defs["igTableGcCompactTransientBuffers"][2]["cimguiname"] = "igTableGcCompactTransientBuffers" defs["igTableGcCompactTransientBuffers"][2]["defaults"] = {} defs["igTableGcCompactTransientBuffers"][2]["funcname"] = "TableGcCompactTransientBuffers" -defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3314" +defs["igTableGcCompactTransientBuffers"][2]["location"] = "imgui_internal:3784" defs["igTableGcCompactTransientBuffers"][2]["namespace"] = "ImGui" defs["igTableGcCompactTransientBuffers"][2]["ov_cimguiname"] = "igTableGcCompactTransientBuffers_TableTempDataPtr" defs["igTableGcCompactTransientBuffers"][2]["ret"] = "void" @@ -28577,7 +30893,7 @@ defs["igTableGetBoundSettings"][1]["call_args"] = "(table)" defs["igTableGetBoundSettings"][1]["cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["defaults"] = {} defs["igTableGetBoundSettings"][1]["funcname"] = "TableGetBoundSettings" -defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3321" +defs["igTableGetBoundSettings"][1]["location"] = "imgui_internal:3791" defs["igTableGetBoundSettings"][1]["namespace"] = "ImGui" defs["igTableGetBoundSettings"][1]["ov_cimguiname"] = "igTableGetBoundSettings" defs["igTableGetBoundSettings"][1]["ret"] = "ImGuiTableSettings*" @@ -28602,7 +30918,7 @@ defs["igTableGetCellBgRect"][1]["call_args"] = "(table,column_n)" defs["igTableGetCellBgRect"][1]["cimguiname"] = "igTableGetCellBgRect" defs["igTableGetCellBgRect"][1]["defaults"] = {} defs["igTableGetCellBgRect"][1]["funcname"] = "TableGetCellBgRect" -defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3306" +defs["igTableGetCellBgRect"][1]["location"] = "imgui_internal:3776" defs["igTableGetCellBgRect"][1]["namespace"] = "ImGui" defs["igTableGetCellBgRect"][1]["nonUDT"] = 1 defs["igTableGetCellBgRect"][1]["ov_cimguiname"] = "igTableGetCellBgRect" @@ -28619,7 +30935,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:774" +defs["igTableGetColumnCount"][1]["location"] = "imgui:843" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -28639,7 +30955,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:778" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:847" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -28655,7 +30971,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:775" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:844" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -28675,7 +30991,7 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:777" +defs["igTableGetColumnName"][1]["location"] = "imgui:846" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName_Int" defs["igTableGetColumnName"][1]["ret"] = "const char*" @@ -28695,7 +31011,7 @@ defs["igTableGetColumnName"][2]["call_args"] = "(table,column_n)" defs["igTableGetColumnName"][2]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][2]["defaults"] = {} defs["igTableGetColumnName"][2]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3307" +defs["igTableGetColumnName"][2]["location"] = "imgui_internal:3777" defs["igTableGetColumnName"][2]["namespace"] = "ImGui" defs["igTableGetColumnName"][2]["ov_cimguiname"] = "igTableGetColumnName_TablePtr" defs["igTableGetColumnName"][2]["ret"] = "const char*" @@ -28715,7 +31031,7 @@ defs["igTableGetColumnNextSortDirection"][1]["call_args"] = "(column)" defs["igTableGetColumnNextSortDirection"][1]["cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["defaults"] = {} defs["igTableGetColumnNextSortDirection"][1]["funcname"] = "TableGetColumnNextSortDirection" -defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3299" +defs["igTableGetColumnNextSortDirection"][1]["location"] = "imgui_internal:3769" defs["igTableGetColumnNextSortDirection"][1]["namespace"] = "ImGui" defs["igTableGetColumnNextSortDirection"][1]["ov_cimguiname"] = "igTableGetColumnNextSortDirection" defs["igTableGetColumnNextSortDirection"][1]["ret"] = "ImGuiSortDirection" @@ -28724,30 +31040,30 @@ defs["igTableGetColumnNextSortDirection"][1]["stname"] = "" defs["igTableGetColumnNextSortDirection"]["(ImGuiTableColumn*)"] = defs["igTableGetColumnNextSortDirection"][1] defs["igTableGetColumnResizeID"] = {} defs["igTableGetColumnResizeID"][1] = {} -defs["igTableGetColumnResizeID"][1]["args"] = "(const ImGuiTable* table,int column_n,int instance_no)" +defs["igTableGetColumnResizeID"][1]["args"] = "(ImGuiTable* table,int column_n,int instance_no)" defs["igTableGetColumnResizeID"][1]["argsT"] = {} defs["igTableGetColumnResizeID"][1]["argsT"][1] = {} defs["igTableGetColumnResizeID"][1]["argsT"][1]["name"] = "table" -defs["igTableGetColumnResizeID"][1]["argsT"][1]["type"] = "const ImGuiTable*" +defs["igTableGetColumnResizeID"][1]["argsT"][1]["type"] = "ImGuiTable*" defs["igTableGetColumnResizeID"][1]["argsT"][2] = {} defs["igTableGetColumnResizeID"][1]["argsT"][2]["name"] = "column_n" defs["igTableGetColumnResizeID"][1]["argsT"][2]["type"] = "int" defs["igTableGetColumnResizeID"][1]["argsT"][3] = {} defs["igTableGetColumnResizeID"][1]["argsT"][3]["name"] = "instance_no" defs["igTableGetColumnResizeID"][1]["argsT"][3]["type"] = "int" -defs["igTableGetColumnResizeID"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n,int instance_no=0)" +defs["igTableGetColumnResizeID"][1]["argsoriginal"] = "(ImGuiTable* table,int column_n,int instance_no=0)" defs["igTableGetColumnResizeID"][1]["call_args"] = "(table,column_n,instance_no)" defs["igTableGetColumnResizeID"][1]["cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["defaults"] = {} defs["igTableGetColumnResizeID"][1]["defaults"]["instance_no"] = "0" defs["igTableGetColumnResizeID"][1]["funcname"] = "TableGetColumnResizeID" -defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3308" +defs["igTableGetColumnResizeID"][1]["location"] = "imgui_internal:3778" defs["igTableGetColumnResizeID"][1]["namespace"] = "ImGui" defs["igTableGetColumnResizeID"][1]["ov_cimguiname"] = "igTableGetColumnResizeID" defs["igTableGetColumnResizeID"][1]["ret"] = "ImGuiID" -defs["igTableGetColumnResizeID"][1]["signature"] = "(const ImGuiTable*,int,int)" +defs["igTableGetColumnResizeID"][1]["signature"] = "(ImGuiTable*,int,int)" defs["igTableGetColumnResizeID"][1]["stname"] = "" -defs["igTableGetColumnResizeID"]["(const ImGuiTable*,int,int)"] = defs["igTableGetColumnResizeID"][1] +defs["igTableGetColumnResizeID"]["(ImGuiTable*,int,int)"] = defs["igTableGetColumnResizeID"][1] defs["igTableGetColumnWidthAuto"] = {} defs["igTableGetColumnWidthAuto"][1] = {} defs["igTableGetColumnWidthAuto"][1]["args"] = "(ImGuiTable* table,ImGuiTableColumn* column)" @@ -28763,13 +31079,29 @@ defs["igTableGetColumnWidthAuto"][1]["call_args"] = "(table,column)" defs["igTableGetColumnWidthAuto"][1]["cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["defaults"] = {} defs["igTableGetColumnWidthAuto"][1]["funcname"] = "TableGetColumnWidthAuto" -defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3301" +defs["igTableGetColumnWidthAuto"][1]["location"] = "imgui_internal:3771" defs["igTableGetColumnWidthAuto"][1]["namespace"] = "ImGui" defs["igTableGetColumnWidthAuto"][1]["ov_cimguiname"] = "igTableGetColumnWidthAuto" defs["igTableGetColumnWidthAuto"][1]["ret"] = "float" defs["igTableGetColumnWidthAuto"][1]["signature"] = "(ImGuiTable*,ImGuiTableColumn*)" defs["igTableGetColumnWidthAuto"][1]["stname"] = "" defs["igTableGetColumnWidthAuto"]["(ImGuiTable*,ImGuiTableColumn*)"] = defs["igTableGetColumnWidthAuto"][1] +defs["igTableGetHeaderAngledMaxLabelWidth"] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["args"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["argsT"] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["argsoriginal"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["call_args"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["defaults"] = {} +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["funcname"] = "TableGetHeaderAngledMaxLabelWidth" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["location"] = "imgui_internal:3746" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["namespace"] = "ImGui" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ov_cimguiname"] = "igTableGetHeaderAngledMaxLabelWidth" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["ret"] = "float" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["signature"] = "()" +defs["igTableGetHeaderAngledMaxLabelWidth"][1]["stname"] = "" +defs["igTableGetHeaderAngledMaxLabelWidth"]["()"] = defs["igTableGetHeaderAngledMaxLabelWidth"][1] defs["igTableGetHeaderRowHeight"] = {} defs["igTableGetHeaderRowHeight"][1] = {} defs["igTableGetHeaderRowHeight"][1]["args"] = "()" @@ -28779,7 +31111,7 @@ defs["igTableGetHeaderRowHeight"][1]["call_args"] = "()" defs["igTableGetHeaderRowHeight"][1]["cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["defaults"] = {} defs["igTableGetHeaderRowHeight"][1]["funcname"] = "TableGetHeaderRowHeight" -defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3278" +defs["igTableGetHeaderRowHeight"][1]["location"] = "imgui_internal:3745" defs["igTableGetHeaderRowHeight"][1]["namespace"] = "ImGui" defs["igTableGetHeaderRowHeight"][1]["ov_cimguiname"] = "igTableGetHeaderRowHeight" defs["igTableGetHeaderRowHeight"][1]["ret"] = "float" @@ -28795,13 +31127,29 @@ defs["igTableGetHoveredColumn"][1]["call_args"] = "()" defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["defaults"] = {} defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" -defs["igTableGetHoveredColumn"][1]["location"] = "imgui_internal:3277" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:849" defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" defs["igTableGetHoveredColumn"][1]["ret"] = "int" defs["igTableGetHoveredColumn"][1]["signature"] = "()" defs["igTableGetHoveredColumn"][1]["stname"] = "" defs["igTableGetHoveredColumn"]["()"] = defs["igTableGetHoveredColumn"][1] +defs["igTableGetHoveredRow"] = {} +defs["igTableGetHoveredRow"][1] = {} +defs["igTableGetHoveredRow"][1]["args"] = "()" +defs["igTableGetHoveredRow"][1]["argsT"] = {} +defs["igTableGetHoveredRow"][1]["argsoriginal"] = "()" +defs["igTableGetHoveredRow"][1]["call_args"] = "()" +defs["igTableGetHoveredRow"][1]["cimguiname"] = "igTableGetHoveredRow" +defs["igTableGetHoveredRow"][1]["defaults"] = {} +defs["igTableGetHoveredRow"][1]["funcname"] = "TableGetHoveredRow" +defs["igTableGetHoveredRow"][1]["location"] = "imgui_internal:3744" +defs["igTableGetHoveredRow"][1]["namespace"] = "ImGui" +defs["igTableGetHoveredRow"][1]["ov_cimguiname"] = "igTableGetHoveredRow" +defs["igTableGetHoveredRow"][1]["ret"] = "int" +defs["igTableGetHoveredRow"][1]["signature"] = "()" +defs["igTableGetHoveredRow"][1]["stname"] = "" +defs["igTableGetHoveredRow"]["()"] = defs["igTableGetHoveredRow"][1] defs["igTableGetInstanceData"] = {} defs["igTableGetInstanceData"][1] = {} defs["igTableGetInstanceData"][1]["args"] = "(ImGuiTable* table,int instance_no)" @@ -28817,35 +31165,35 @@ defs["igTableGetInstanceData"][1]["call_args"] = "(table,instance_no)" defs["igTableGetInstanceData"][1]["cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["defaults"] = {} defs["igTableGetInstanceData"][1]["funcname"] = "TableGetInstanceData" -defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3296" +defs["igTableGetInstanceData"][1]["location"] = "imgui_internal:3765" defs["igTableGetInstanceData"][1]["namespace"] = "ImGui" defs["igTableGetInstanceData"][1]["ov_cimguiname"] = "igTableGetInstanceData" defs["igTableGetInstanceData"][1]["ret"] = "ImGuiTableInstanceData*" defs["igTableGetInstanceData"][1]["signature"] = "(ImGuiTable*,int)" defs["igTableGetInstanceData"][1]["stname"] = "" defs["igTableGetInstanceData"]["(ImGuiTable*,int)"] = defs["igTableGetInstanceData"][1] -defs["igTableGetMaxColumnWidth"] = {} -defs["igTableGetMaxColumnWidth"][1] = {} -defs["igTableGetMaxColumnWidth"][1]["args"] = "(const ImGuiTable* table,int column_n)" -defs["igTableGetMaxColumnWidth"][1]["argsT"] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][1] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][1]["name"] = "table" -defs["igTableGetMaxColumnWidth"][1]["argsT"][1]["type"] = "const ImGuiTable*" -defs["igTableGetMaxColumnWidth"][1]["argsT"][2] = {} -defs["igTableGetMaxColumnWidth"][1]["argsT"][2]["name"] = "column_n" -defs["igTableGetMaxColumnWidth"][1]["argsT"][2]["type"] = "int" -defs["igTableGetMaxColumnWidth"][1]["argsoriginal"] = "(const ImGuiTable* table,int column_n)" -defs["igTableGetMaxColumnWidth"][1]["call_args"] = "(table,column_n)" -defs["igTableGetMaxColumnWidth"][1]["cimguiname"] = "igTableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["defaults"] = {} -defs["igTableGetMaxColumnWidth"][1]["funcname"] = "TableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["location"] = "imgui_internal:3309" -defs["igTableGetMaxColumnWidth"][1]["namespace"] = "ImGui" -defs["igTableGetMaxColumnWidth"][1]["ov_cimguiname"] = "igTableGetMaxColumnWidth" -defs["igTableGetMaxColumnWidth"][1]["ret"] = "float" -defs["igTableGetMaxColumnWidth"][1]["signature"] = "(const ImGuiTable*,int)" -defs["igTableGetMaxColumnWidth"][1]["stname"] = "" -defs["igTableGetMaxColumnWidth"]["(const ImGuiTable*,int)"] = defs["igTableGetMaxColumnWidth"][1] +defs["igTableGetInstanceID"] = {} +defs["igTableGetInstanceID"][1] = {} +defs["igTableGetInstanceID"][1]["args"] = "(ImGuiTable* table,int instance_no)" +defs["igTableGetInstanceID"][1]["argsT"] = {} +defs["igTableGetInstanceID"][1]["argsT"][1] = {} +defs["igTableGetInstanceID"][1]["argsT"][1]["name"] = "table" +defs["igTableGetInstanceID"][1]["argsT"][1]["type"] = "ImGuiTable*" +defs["igTableGetInstanceID"][1]["argsT"][2] = {} +defs["igTableGetInstanceID"][1]["argsT"][2]["name"] = "instance_no" +defs["igTableGetInstanceID"][1]["argsT"][2]["type"] = "int" +defs["igTableGetInstanceID"][1]["argsoriginal"] = "(ImGuiTable* table,int instance_no)" +defs["igTableGetInstanceID"][1]["call_args"] = "(table,instance_no)" +defs["igTableGetInstanceID"][1]["cimguiname"] = "igTableGetInstanceID" +defs["igTableGetInstanceID"][1]["defaults"] = {} +defs["igTableGetInstanceID"][1]["funcname"] = "TableGetInstanceID" +defs["igTableGetInstanceID"][1]["location"] = "imgui_internal:3766" +defs["igTableGetInstanceID"][1]["namespace"] = "ImGui" +defs["igTableGetInstanceID"][1]["ov_cimguiname"] = "igTableGetInstanceID" +defs["igTableGetInstanceID"][1]["ret"] = "ImGuiID" +defs["igTableGetInstanceID"][1]["signature"] = "(ImGuiTable*,int)" +defs["igTableGetInstanceID"][1]["stname"] = "" +defs["igTableGetInstanceID"]["(ImGuiTable*,int)"] = defs["igTableGetInstanceID"][1] defs["igTableGetRowIndex"] = {} defs["igTableGetRowIndex"][1] = {} defs["igTableGetRowIndex"][1]["args"] = "()" @@ -28855,7 +31203,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:776" +defs["igTableGetRowIndex"][1]["location"] = "imgui:845" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -28871,7 +31219,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:773" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:842" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -28890,7 +31238,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:765" +defs["igTableHeader"][1]["location"] = "imgui:832" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -28906,7 +31254,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:764" +defs["igTableHeadersRow"][1]["location"] = "imgui:833" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -28925,7 +31273,7 @@ defs["igTableLoadSettings"][1]["call_args"] = "(table)" defs["igTableLoadSettings"][1]["cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["defaults"] = {} defs["igTableLoadSettings"][1]["funcname"] = "TableLoadSettings" -defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3318" +defs["igTableLoadSettings"][1]["location"] = "imgui_internal:3788" defs["igTableLoadSettings"][1]["namespace"] = "ImGui" defs["igTableLoadSettings"][1]["ov_cimguiname"] = "igTableLoadSettings" defs["igTableLoadSettings"][1]["ret"] = "void" @@ -28944,7 +31292,7 @@ defs["igTableMergeDrawChannels"][1]["call_args"] = "(table)" defs["igTableMergeDrawChannels"][1]["cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["defaults"] = {} defs["igTableMergeDrawChannels"][1]["funcname"] = "TableMergeDrawChannels" -defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3295" +defs["igTableMergeDrawChannels"][1]["location"] = "imgui_internal:3764" defs["igTableMergeDrawChannels"][1]["namespace"] = "ImGui" defs["igTableMergeDrawChannels"][1]["ov_cimguiname"] = "igTableMergeDrawChannels" defs["igTableMergeDrawChannels"][1]["ret"] = "void" @@ -28960,7 +31308,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:751" +defs["igTableNextColumn"][1]["location"] = "imgui:819" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -28984,7 +31332,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:750" +defs["igTableNextRow"][1]["location"] = "imgui:818" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -29004,7 +31352,7 @@ defs["igTableOpenContextMenu"][1]["cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["defaults"] = {} defs["igTableOpenContextMenu"][1]["defaults"]["column_n"] = "-1" defs["igTableOpenContextMenu"][1]["funcname"] = "TableOpenContextMenu" -defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3274" +defs["igTableOpenContextMenu"][1]["location"] = "imgui_internal:3741" defs["igTableOpenContextMenu"][1]["namespace"] = "ImGui" defs["igTableOpenContextMenu"][1]["ov_cimguiname"] = "igTableOpenContextMenu" defs["igTableOpenContextMenu"][1]["ret"] = "void" @@ -29020,7 +31368,7 @@ defs["igTablePopBackgroundChannel"][1]["call_args"] = "()" defs["igTablePopBackgroundChannel"][1]["cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["defaults"] = {} defs["igTablePopBackgroundChannel"][1]["funcname"] = "TablePopBackgroundChannel" -defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3280" +defs["igTablePopBackgroundChannel"][1]["location"] = "imgui_internal:3748" defs["igTablePopBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePopBackgroundChannel"][1]["ov_cimguiname"] = "igTablePopBackgroundChannel" defs["igTablePopBackgroundChannel"][1]["ret"] = "void" @@ -29036,7 +31384,7 @@ defs["igTablePushBackgroundChannel"][1]["call_args"] = "()" defs["igTablePushBackgroundChannel"][1]["cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["defaults"] = {} defs["igTablePushBackgroundChannel"][1]["funcname"] = "TablePushBackgroundChannel" -defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3279" +defs["igTablePushBackgroundChannel"][1]["location"] = "imgui_internal:3747" defs["igTablePushBackgroundChannel"][1]["namespace"] = "ImGui" defs["igTablePushBackgroundChannel"][1]["ov_cimguiname"] = "igTablePushBackgroundChannel" defs["igTablePushBackgroundChannel"][1]["ret"] = "void" @@ -29055,7 +31403,7 @@ defs["igTableRemove"][1]["call_args"] = "(table)" defs["igTableRemove"][1]["cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["defaults"] = {} defs["igTableRemove"][1]["funcname"] = "TableRemove" -defs["igTableRemove"][1]["location"] = "imgui_internal:3312" +defs["igTableRemove"][1]["location"] = "imgui_internal:3782" defs["igTableRemove"][1]["namespace"] = "ImGui" defs["igTableRemove"][1]["ov_cimguiname"] = "igTableRemove" defs["igTableRemove"][1]["ret"] = "void" @@ -29074,7 +31422,7 @@ defs["igTableResetSettings"][1]["call_args"] = "(table)" defs["igTableResetSettings"][1]["cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["defaults"] = {} defs["igTableResetSettings"][1]["funcname"] = "TableResetSettings" -defs["igTableResetSettings"][1]["location"] = "imgui_internal:3320" +defs["igTableResetSettings"][1]["location"] = "imgui_internal:3790" defs["igTableResetSettings"][1]["namespace"] = "ImGui" defs["igTableResetSettings"][1]["ov_cimguiname"] = "igTableResetSettings" defs["igTableResetSettings"][1]["ret"] = "void" @@ -29093,7 +31441,7 @@ defs["igTableSaveSettings"][1]["call_args"] = "(table)" defs["igTableSaveSettings"][1]["cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["defaults"] = {} defs["igTableSaveSettings"][1]["funcname"] = "TableSaveSettings" -defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3319" +defs["igTableSaveSettings"][1]["location"] = "imgui_internal:3789" defs["igTableSaveSettings"][1]["namespace"] = "ImGui" defs["igTableSaveSettings"][1]["ov_cimguiname"] = "igTableSaveSettings" defs["igTableSaveSettings"][1]["ret"] = "void" @@ -29119,7 +31467,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:780" +defs["igTableSetBgColor"][1]["location"] = "imgui:850" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -29141,7 +31489,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:779" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:848" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -29160,7 +31508,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:752" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:820" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -29185,7 +31533,7 @@ defs["igTableSetColumnSortDirection"][1]["call_args"] = "(column_n,sort_directio defs["igTableSetColumnSortDirection"][1]["cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["defaults"] = {} defs["igTableSetColumnSortDirection"][1]["funcname"] = "TableSetColumnSortDirection" -defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3276" +defs["igTableSetColumnSortDirection"][1]["location"] = "imgui_internal:3743" defs["igTableSetColumnSortDirection"][1]["namespace"] = "ImGui" defs["igTableSetColumnSortDirection"][1]["ov_cimguiname"] = "igTableSetColumnSortDirection" defs["igTableSetColumnSortDirection"][1]["ret"] = "void" @@ -29207,7 +31555,7 @@ defs["igTableSetColumnWidth"][1]["call_args"] = "(column_n,width)" defs["igTableSetColumnWidth"][1]["cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["defaults"] = {} defs["igTableSetColumnWidth"][1]["funcname"] = "TableSetColumnWidth" -defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3275" +defs["igTableSetColumnWidth"][1]["location"] = "imgui_internal:3742" defs["igTableSetColumnWidth"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidth"][1]["ov_cimguiname"] = "igTableSetColumnWidth" defs["igTableSetColumnWidth"][1]["ret"] = "void" @@ -29226,7 +31574,7 @@ defs["igTableSetColumnWidthAutoAll"][1]["call_args"] = "(table)" defs["igTableSetColumnWidthAutoAll"][1]["cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoAll"][1]["funcname"] = "TableSetColumnWidthAutoAll" -defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3311" +defs["igTableSetColumnWidthAutoAll"][1]["location"] = "imgui_internal:3781" defs["igTableSetColumnWidthAutoAll"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoAll"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoAll" defs["igTableSetColumnWidthAutoAll"][1]["ret"] = "void" @@ -29248,7 +31596,7 @@ defs["igTableSetColumnWidthAutoSingle"][1]["call_args"] = "(table,column_n)" defs["igTableSetColumnWidthAutoSingle"][1]["cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["defaults"] = {} defs["igTableSetColumnWidthAutoSingle"][1]["funcname"] = "TableSetColumnWidthAutoSingle" -defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3310" +defs["igTableSetColumnWidthAutoSingle"][1]["location"] = "imgui_internal:3780" defs["igTableSetColumnWidthAutoSingle"][1]["namespace"] = "ImGui" defs["igTableSetColumnWidthAutoSingle"][1]["ov_cimguiname"] = "igTableSetColumnWidthAutoSingle" defs["igTableSetColumnWidthAutoSingle"][1]["ret"] = "void" @@ -29264,7 +31612,7 @@ defs["igTableSettingsAddSettingsHandler"][1]["call_args"] = "()" defs["igTableSettingsAddSettingsHandler"][1]["cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["defaults"] = {} defs["igTableSettingsAddSettingsHandler"][1]["funcname"] = "TableSettingsAddSettingsHandler" -defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3322" +defs["igTableSettingsAddSettingsHandler"][1]["location"] = "imgui_internal:3792" defs["igTableSettingsAddSettingsHandler"][1]["namespace"] = "ImGui" defs["igTableSettingsAddSettingsHandler"][1]["ov_cimguiname"] = "igTableSettingsAddSettingsHandler" defs["igTableSettingsAddSettingsHandler"][1]["ret"] = "void" @@ -29286,7 +31634,7 @@ defs["igTableSettingsCreate"][1]["call_args"] = "(id,columns_count)" defs["igTableSettingsCreate"][1]["cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["defaults"] = {} defs["igTableSettingsCreate"][1]["funcname"] = "TableSettingsCreate" -defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3323" +defs["igTableSettingsCreate"][1]["location"] = "imgui_internal:3793" defs["igTableSettingsCreate"][1]["namespace"] = "ImGui" defs["igTableSettingsCreate"][1]["ov_cimguiname"] = "igTableSettingsCreate" defs["igTableSettingsCreate"][1]["ret"] = "ImGuiTableSettings*" @@ -29305,7 +31653,7 @@ defs["igTableSettingsFindByID"][1]["call_args"] = "(id)" defs["igTableSettingsFindByID"][1]["cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["defaults"] = {} defs["igTableSettingsFindByID"][1]["funcname"] = "TableSettingsFindByID" -defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3324" +defs["igTableSettingsFindByID"][1]["location"] = "imgui_internal:3794" defs["igTableSettingsFindByID"][1]["namespace"] = "ImGui" defs["igTableSettingsFindByID"][1]["ov_cimguiname"] = "igTableSettingsFindByID" defs["igTableSettingsFindByID"][1]["ret"] = "ImGuiTableSettings*" @@ -29336,7 +31684,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:762" +defs["igTableSetupColumn"][1]["location"] = "imgui:830" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -29355,7 +31703,7 @@ defs["igTableSetupDrawChannels"][1]["call_args"] = "(table)" defs["igTableSetupDrawChannels"][1]["cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["defaults"] = {} defs["igTableSetupDrawChannels"][1]["funcname"] = "TableSetupDrawChannels" -defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3288" +defs["igTableSetupDrawChannels"][1]["location"] = "imgui_internal:3757" defs["igTableSetupDrawChannels"][1]["namespace"] = "ImGui" defs["igTableSetupDrawChannels"][1]["ov_cimguiname"] = "igTableSetupDrawChannels" defs["igTableSetupDrawChannels"][1]["ret"] = "void" @@ -29377,7 +31725,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:763" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:831" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -29396,7 +31744,7 @@ defs["igTableSortSpecsBuild"][1]["call_args"] = "(table)" defs["igTableSortSpecsBuild"][1]["cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["defaults"] = {} defs["igTableSortSpecsBuild"][1]["funcname"] = "TableSortSpecsBuild" -defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3298" +defs["igTableSortSpecsBuild"][1]["location"] = "imgui_internal:3768" defs["igTableSortSpecsBuild"][1]["namespace"] = "ImGui" defs["igTableSortSpecsBuild"][1]["ov_cimguiname"] = "igTableSortSpecsBuild" defs["igTableSortSpecsBuild"][1]["ret"] = "void" @@ -29415,7 +31763,7 @@ defs["igTableSortSpecsSanitize"][1]["call_args"] = "(table)" defs["igTableSortSpecsSanitize"][1]["cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["defaults"] = {} defs["igTableSortSpecsSanitize"][1]["funcname"] = "TableSortSpecsSanitize" -defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3297" +defs["igTableSortSpecsSanitize"][1]["location"] = "imgui_internal:3767" defs["igTableSortSpecsSanitize"][1]["namespace"] = "ImGui" defs["igTableSortSpecsSanitize"][1]["ov_cimguiname"] = "igTableSortSpecsSanitize" defs["igTableSortSpecsSanitize"][1]["ret"] = "void" @@ -29434,7 +31782,7 @@ defs["igTableUpdateBorders"][1]["call_args"] = "(table)" defs["igTableUpdateBorders"][1]["cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["defaults"] = {} defs["igTableUpdateBorders"][1]["funcname"] = "TableUpdateBorders" -defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3290" +defs["igTableUpdateBorders"][1]["location"] = "imgui_internal:3759" defs["igTableUpdateBorders"][1]["namespace"] = "ImGui" defs["igTableUpdateBorders"][1]["ov_cimguiname"] = "igTableUpdateBorders" defs["igTableUpdateBorders"][1]["ret"] = "void" @@ -29453,7 +31801,7 @@ defs["igTableUpdateColumnsWeightFromWidth"][1]["call_args"] = "(table)" defs["igTableUpdateColumnsWeightFromWidth"][1]["cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["defaults"] = {} defs["igTableUpdateColumnsWeightFromWidth"][1]["funcname"] = "TableUpdateColumnsWeightFromWidth" -defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3291" +defs["igTableUpdateColumnsWeightFromWidth"][1]["location"] = "imgui_internal:3760" defs["igTableUpdateColumnsWeightFromWidth"][1]["namespace"] = "ImGui" defs["igTableUpdateColumnsWeightFromWidth"][1]["ov_cimguiname"] = "igTableUpdateColumnsWeightFromWidth" defs["igTableUpdateColumnsWeightFromWidth"][1]["ret"] = "void" @@ -29472,13 +31820,32 @@ defs["igTableUpdateLayout"][1]["call_args"] = "(table)" defs["igTableUpdateLayout"][1]["cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["defaults"] = {} defs["igTableUpdateLayout"][1]["funcname"] = "TableUpdateLayout" -defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3289" +defs["igTableUpdateLayout"][1]["location"] = "imgui_internal:3758" defs["igTableUpdateLayout"][1]["namespace"] = "ImGui" defs["igTableUpdateLayout"][1]["ov_cimguiname"] = "igTableUpdateLayout" defs["igTableUpdateLayout"][1]["ret"] = "void" defs["igTableUpdateLayout"][1]["signature"] = "(ImGuiTable*)" defs["igTableUpdateLayout"][1]["stname"] = "" defs["igTableUpdateLayout"]["(ImGuiTable*)"] = defs["igTableUpdateLayout"][1] +defs["igTeleportMousePos"] = {} +defs["igTeleportMousePos"][1] = {} +defs["igTeleportMousePos"][1]["args"] = "(const ImVec2 pos)" +defs["igTeleportMousePos"][1]["argsT"] = {} +defs["igTeleportMousePos"][1]["argsT"][1] = {} +defs["igTeleportMousePos"][1]["argsT"][1]["name"] = "pos" +defs["igTeleportMousePos"][1]["argsT"][1]["type"] = "const ImVec2" +defs["igTeleportMousePos"][1]["argsoriginal"] = "(const ImVec2& pos)" +defs["igTeleportMousePos"][1]["call_args"] = "(pos)" +defs["igTeleportMousePos"][1]["cimguiname"] = "igTeleportMousePos" +defs["igTeleportMousePos"][1]["defaults"] = {} +defs["igTeleportMousePos"][1]["funcname"] = "TeleportMousePos" +defs["igTeleportMousePos"][1]["location"] = "imgui_internal:3580" +defs["igTeleportMousePos"][1]["namespace"] = "ImGui" +defs["igTeleportMousePos"][1]["ov_cimguiname"] = "igTeleportMousePos" +defs["igTeleportMousePos"][1]["ret"] = "void" +defs["igTeleportMousePos"][1]["signature"] = "(const ImVec2)" +defs["igTeleportMousePos"][1]["stname"] = "" +defs["igTeleportMousePos"]["(const ImVec2)"] = defs["igTeleportMousePos"][1] defs["igTempInputIsActive"] = {} defs["igTempInputIsActive"][1] = {} defs["igTempInputIsActive"][1]["args"] = "(ImGuiID id)" @@ -29491,7 +31858,7 @@ defs["igTempInputIsActive"][1]["call_args"] = "(id)" defs["igTempInputIsActive"][1]["cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["defaults"] = {} defs["igTempInputIsActive"][1]["funcname"] = "TempInputIsActive" -defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3418" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:3899" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -29533,7 +31900,7 @@ defs["igTempInputScalar"][1]["defaults"] = {} defs["igTempInputScalar"][1]["defaults"]["p_clamp_max"] = "NULL" defs["igTempInputScalar"][1]["defaults"]["p_clamp_min"] = "NULL" defs["igTempInputScalar"][1]["funcname"] = "TempInputScalar" -defs["igTempInputScalar"][1]["location"] = "imgui_internal:3417" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:3898" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -29567,7 +31934,7 @@ defs["igTempInputText"][1]["call_args"] = "(bb,id,label,buf,buf_size,flags)" defs["igTempInputText"][1]["cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["defaults"] = {} defs["igTempInputText"][1]["funcname"] = "TempInputText" -defs["igTempInputText"][1]["location"] = "imgui_internal:3416" +defs["igTempInputText"][1]["location"] = "imgui_internal:3897" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -29589,7 +31956,7 @@ defs["igTestKeyOwner"][1]["call_args"] = "(key,owner_id)" defs["igTestKeyOwner"][1]["cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["defaults"] = {} defs["igTestKeyOwner"][1]["funcname"] = "TestKeyOwner" -defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3159" +defs["igTestKeyOwner"][1]["location"] = "imgui_internal:3599" defs["igTestKeyOwner"][1]["namespace"] = "ImGui" defs["igTestKeyOwner"][1]["ov_cimguiname"] = "igTestKeyOwner" defs["igTestKeyOwner"][1]["ret"] = "bool" @@ -29611,7 +31978,7 @@ defs["igTestShortcutRouting"][1]["call_args"] = "(key_chord,owner_id)" defs["igTestShortcutRouting"][1]["cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["defaults"] = {} defs["igTestShortcutRouting"][1]["funcname"] = "TestShortcutRouting" -defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3187" +defs["igTestShortcutRouting"][1]["location"] = "imgui_internal:3633" defs["igTestShortcutRouting"][1]["namespace"] = "ImGui" defs["igTestShortcutRouting"][1]["ov_cimguiname"] = "igTestShortcutRouting" defs["igTestShortcutRouting"][1]["ret"] = "bool" @@ -29634,7 +32001,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:493" +defs["igText"][1]["location"] = "imgui:537" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -29660,7 +32027,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:495" +defs["igTextColored"][1]["location"] = "imgui:539" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -29685,7 +32052,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:496" +defs["igTextColoredV"][1]["location"] = "imgui:540" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -29708,7 +32075,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:497" +defs["igTextDisabled"][1]["location"] = "imgui:541" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -29730,7 +32097,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:498" +defs["igTextDisabledV"][1]["location"] = "imgui:542" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -29757,13 +32124,55 @@ defs["igTextEx"][1]["defaults"] = {} defs["igTextEx"][1]["defaults"]["flags"] = "0" defs["igTextEx"][1]["defaults"]["text_end"] = "NULL" defs["igTextEx"][1]["funcname"] = "TextEx" -defs["igTextEx"][1]["location"] = "imgui_internal:3368" +defs["igTextEx"][1]["location"] = "imgui_internal:3844" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" defs["igTextEx"][1]["signature"] = "(const char*,const char*,ImGuiTextFlags)" defs["igTextEx"][1]["stname"] = "" defs["igTextEx"]["(const char*,const char*,ImGuiTextFlags)"] = defs["igTextEx"][1] +defs["igTextLink"] = {} +defs["igTextLink"][1] = {} +defs["igTextLink"][1]["args"] = "(const char* label)" +defs["igTextLink"][1]["argsT"] = {} +defs["igTextLink"][1]["argsT"][1] = {} +defs["igTextLink"][1]["argsT"][1]["name"] = "label" +defs["igTextLink"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLink"][1]["argsoriginal"] = "(const char* label)" +defs["igTextLink"][1]["call_args"] = "(label)" +defs["igTextLink"][1]["cimguiname"] = "igTextLink" +defs["igTextLink"][1]["defaults"] = {} +defs["igTextLink"][1]["funcname"] = "TextLink" +defs["igTextLink"][1]["location"] = "imgui:565" +defs["igTextLink"][1]["namespace"] = "ImGui" +defs["igTextLink"][1]["ov_cimguiname"] = "igTextLink" +defs["igTextLink"][1]["ret"] = "bool" +defs["igTextLink"][1]["signature"] = "(const char*)" +defs["igTextLink"][1]["stname"] = "" +defs["igTextLink"]["(const char*)"] = defs["igTextLink"][1] +defs["igTextLinkOpenURL"] = {} +defs["igTextLinkOpenURL"][1] = {} +defs["igTextLinkOpenURL"][1]["args"] = "(const char* label,const char* url)" +defs["igTextLinkOpenURL"][1]["argsT"] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1]["name"] = "label" +defs["igTextLinkOpenURL"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsT"][2] = {} +defs["igTextLinkOpenURL"][1]["argsT"][2]["name"] = "url" +defs["igTextLinkOpenURL"][1]["argsT"][2]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsoriginal"] = "(const char* label,const char* url=((void*)0))" +defs["igTextLinkOpenURL"][1]["call_args"] = "(label,url)" +defs["igTextLinkOpenURL"][1]["cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["defaults"] = {} +defs["igTextLinkOpenURL"][1]["defaults"]["url"] = "NULL" +defs["igTextLinkOpenURL"][1]["funcname"] = "TextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["location"] = "imgui:566" +defs["igTextLinkOpenURL"][1]["namespace"] = "ImGui" +defs["igTextLinkOpenURL"][1]["ov_cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["ret"] = "void" +defs["igTextLinkOpenURL"][1]["signature"] = "(const char*,const char*)" +defs["igTextLinkOpenURL"][1]["stname"] = "" +defs["igTextLinkOpenURL"]["(const char*,const char*)"] = defs["igTextLinkOpenURL"][1] defs["igTextUnformatted"] = {} defs["igTextUnformatted"][1] = {} defs["igTextUnformatted"][1]["args"] = "(const char* text,const char* text_end)" @@ -29780,7 +32189,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:492" +defs["igTextUnformatted"][1]["location"] = "imgui:536" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -29802,7 +32211,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:494" +defs["igTextV"][1]["location"] = "imgui:538" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -29825,7 +32234,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:499" +defs["igTextWrapped"][1]["location"] = "imgui:543" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -29847,7 +32256,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:500" +defs["igTextWrappedV"][1]["location"] = "imgui:544" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -29856,7 +32265,7 @@ defs["igTextWrappedV"][1]["stname"] = "" defs["igTextWrappedV"]["(const char*,va_list)"] = defs["igTextWrappedV"][1] defs["igTranslateWindowsInViewport"] = {} defs["igTranslateWindowsInViewport"][1] = {} -defs["igTranslateWindowsInViewport"][1]["args"] = "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos)" +defs["igTranslateWindowsInViewport"][1]["args"] = "(ImGuiViewportP* viewport,const ImVec2 old_pos,const ImVec2 new_pos,const ImVec2 old_size,const ImVec2 new_size)" defs["igTranslateWindowsInViewport"][1]["argsT"] = {} defs["igTranslateWindowsInViewport"][1]["argsT"][1] = {} defs["igTranslateWindowsInViewport"][1]["argsT"][1]["name"] = "viewport" @@ -29867,18 +32276,24 @@ defs["igTranslateWindowsInViewport"][1]["argsT"][2]["type"] = "const ImVec2" defs["igTranslateWindowsInViewport"][1]["argsT"][3] = {} defs["igTranslateWindowsInViewport"][1]["argsT"][3]["name"] = "new_pos" defs["igTranslateWindowsInViewport"][1]["argsT"][3]["type"] = "const ImVec2" -defs["igTranslateWindowsInViewport"][1]["argsoriginal"] = "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos)" -defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_pos)" +defs["igTranslateWindowsInViewport"][1]["argsT"][4] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][4]["name"] = "old_size" +defs["igTranslateWindowsInViewport"][1]["argsT"][4]["type"] = "const ImVec2" +defs["igTranslateWindowsInViewport"][1]["argsT"][5] = {} +defs["igTranslateWindowsInViewport"][1]["argsT"][5]["name"] = "new_size" +defs["igTranslateWindowsInViewport"][1]["argsT"][5]["type"] = "const ImVec2" +defs["igTranslateWindowsInViewport"][1]["argsoriginal"] = "(ImGuiViewportP* viewport,const ImVec2& old_pos,const ImVec2& new_pos,const ImVec2& old_size,const ImVec2& new_size)" +defs["igTranslateWindowsInViewport"][1]["call_args"] = "(viewport,old_pos,new_pos,old_size,new_size)" defs["igTranslateWindowsInViewport"][1]["cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["defaults"] = {} defs["igTranslateWindowsInViewport"][1]["funcname"] = "TranslateWindowsInViewport" -defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:2998" +defs["igTranslateWindowsInViewport"][1]["location"] = "imgui_internal:3415" defs["igTranslateWindowsInViewport"][1]["namespace"] = "ImGui" defs["igTranslateWindowsInViewport"][1]["ov_cimguiname"] = "igTranslateWindowsInViewport" defs["igTranslateWindowsInViewport"][1]["ret"] = "void" -defs["igTranslateWindowsInViewport"][1]["signature"] = "(ImGuiViewportP*,const ImVec2,const ImVec2)" +defs["igTranslateWindowsInViewport"][1]["signature"] = "(ImGuiViewportP*,const ImVec2,const ImVec2,const ImVec2,const ImVec2)" defs["igTranslateWindowsInViewport"][1]["stname"] = "" -defs["igTranslateWindowsInViewport"]["(ImGuiViewportP*,const ImVec2,const ImVec2)"] = defs["igTranslateWindowsInViewport"][1] +defs["igTranslateWindowsInViewport"]["(ImGuiViewportP*,const ImVec2,const ImVec2,const ImVec2,const ImVec2)"] = defs["igTranslateWindowsInViewport"][1] defs["igTreeNode"] = {} defs["igTreeNode"][1] = {} defs["igTreeNode"][1]["args"] = "(const char* label)" @@ -29891,7 +32306,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:611" +defs["igTreeNode"][1]["location"] = "imgui:660" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -29915,7 +32330,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:612" +defs["igTreeNode"][2]["location"] = "imgui:661" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -29939,7 +32354,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:613" +defs["igTreeNode"][3]["location"] = "imgui:662" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -29970,7 +32385,7 @@ defs["igTreeNodeBehavior"][1]["cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["defaults"] = {} defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "NULL" defs["igTreeNodeBehavior"][1]["funcname"] = "TreeNodeBehavior" -defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3391" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:3870" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -29993,7 +32408,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:616" +defs["igTreeNodeEx"][1]["location"] = "imgui:665" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -30020,7 +32435,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:617" +defs["igTreeNodeEx"][2]["location"] = "imgui:666" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -30047,7 +32462,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:618" +defs["igTreeNodeEx"][3]["location"] = "imgui:667" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -30077,7 +32492,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:619" +defs["igTreeNodeExV"][1]["location"] = "imgui:668" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -30103,7 +32518,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:620" +defs["igTreeNodeExV"][2]["location"] = "imgui:669" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -30111,22 +32526,41 @@ defs["igTreeNodeExV"][2]["signature"] = "(const void*,ImGuiTreeNodeFlags,const c defs["igTreeNodeExV"][2]["stname"] = "" defs["igTreeNodeExV"]["(const char*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][1] defs["igTreeNodeExV"]["(const void*,ImGuiTreeNodeFlags,const char*,va_list)"] = defs["igTreeNodeExV"][2] +defs["igTreeNodeGetOpen"] = {} +defs["igTreeNodeGetOpen"][1] = {} +defs["igTreeNodeGetOpen"][1]["args"] = "(ImGuiID storage_id)" +defs["igTreeNodeGetOpen"][1]["argsT"] = {} +defs["igTreeNodeGetOpen"][1]["argsT"][1] = {} +defs["igTreeNodeGetOpen"][1]["argsT"][1]["name"] = "storage_id" +defs["igTreeNodeGetOpen"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igTreeNodeGetOpen"][1]["argsoriginal"] = "(ImGuiID storage_id)" +defs["igTreeNodeGetOpen"][1]["call_args"] = "(storage_id)" +defs["igTreeNodeGetOpen"][1]["cimguiname"] = "igTreeNodeGetOpen" +defs["igTreeNodeGetOpen"][1]["defaults"] = {} +defs["igTreeNodeGetOpen"][1]["funcname"] = "TreeNodeGetOpen" +defs["igTreeNodeGetOpen"][1]["location"] = "imgui_internal:3872" +defs["igTreeNodeGetOpen"][1]["namespace"] = "ImGui" +defs["igTreeNodeGetOpen"][1]["ov_cimguiname"] = "igTreeNodeGetOpen" +defs["igTreeNodeGetOpen"][1]["ret"] = "bool" +defs["igTreeNodeGetOpen"][1]["signature"] = "(ImGuiID)" +defs["igTreeNodeGetOpen"][1]["stname"] = "" +defs["igTreeNodeGetOpen"]["(ImGuiID)"] = defs["igTreeNodeGetOpen"][1] defs["igTreeNodeSetOpen"] = {} defs["igTreeNodeSetOpen"][1] = {} -defs["igTreeNodeSetOpen"][1]["args"] = "(ImGuiID id,bool open)" +defs["igTreeNodeSetOpen"][1]["args"] = "(ImGuiID storage_id,bool open)" defs["igTreeNodeSetOpen"][1]["argsT"] = {} defs["igTreeNodeSetOpen"][1]["argsT"][1] = {} -defs["igTreeNodeSetOpen"][1]["argsT"][1]["name"] = "id" +defs["igTreeNodeSetOpen"][1]["argsT"][1]["name"] = "storage_id" defs["igTreeNodeSetOpen"][1]["argsT"][1]["type"] = "ImGuiID" defs["igTreeNodeSetOpen"][1]["argsT"][2] = {} defs["igTreeNodeSetOpen"][1]["argsT"][2]["name"] = "open" defs["igTreeNodeSetOpen"][1]["argsT"][2]["type"] = "bool" -defs["igTreeNodeSetOpen"][1]["argsoriginal"] = "(ImGuiID id,bool open)" -defs["igTreeNodeSetOpen"][1]["call_args"] = "(id,open)" +defs["igTreeNodeSetOpen"][1]["argsoriginal"] = "(ImGuiID storage_id,bool open)" +defs["igTreeNodeSetOpen"][1]["call_args"] = "(storage_id,open)" defs["igTreeNodeSetOpen"][1]["cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["defaults"] = {} defs["igTreeNodeSetOpen"][1]["funcname"] = "TreeNodeSetOpen" -defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3393" +defs["igTreeNodeSetOpen"][1]["location"] = "imgui_internal:3873" defs["igTreeNodeSetOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeSetOpen"][1]["ov_cimguiname"] = "igTreeNodeSetOpen" defs["igTreeNodeSetOpen"][1]["ret"] = "void" @@ -30135,20 +32569,20 @@ defs["igTreeNodeSetOpen"][1]["stname"] = "" defs["igTreeNodeSetOpen"]["(ImGuiID,bool)"] = defs["igTreeNodeSetOpen"][1] defs["igTreeNodeUpdateNextOpen"] = {} defs["igTreeNodeUpdateNextOpen"][1] = {} -defs["igTreeNodeUpdateNextOpen"][1]["args"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" +defs["igTreeNodeUpdateNextOpen"][1]["args"] = "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)" defs["igTreeNodeUpdateNextOpen"][1]["argsT"] = {} defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1] = {} -defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["name"] = "id" +defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["name"] = "storage_id" defs["igTreeNodeUpdateNextOpen"][1]["argsT"][1]["type"] = "ImGuiID" defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2] = {} defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2]["name"] = "flags" defs["igTreeNodeUpdateNextOpen"][1]["argsT"][2]["type"] = "ImGuiTreeNodeFlags" -defs["igTreeNodeUpdateNextOpen"][1]["argsoriginal"] = "(ImGuiID id,ImGuiTreeNodeFlags flags)" -defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(id,flags)" +defs["igTreeNodeUpdateNextOpen"][1]["argsoriginal"] = "(ImGuiID storage_id,ImGuiTreeNodeFlags flags)" +defs["igTreeNodeUpdateNextOpen"][1]["call_args"] = "(storage_id,flags)" defs["igTreeNodeUpdateNextOpen"][1]["cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["defaults"] = {} defs["igTreeNodeUpdateNextOpen"][1]["funcname"] = "TreeNodeUpdateNextOpen" -defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3394" +defs["igTreeNodeUpdateNextOpen"][1]["location"] = "imgui_internal:3874" defs["igTreeNodeUpdateNextOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeUpdateNextOpen"][1]["ov_cimguiname"] = "igTreeNodeUpdateNextOpen" defs["igTreeNodeUpdateNextOpen"][1]["ret"] = "bool" @@ -30173,7 +32607,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:614" +defs["igTreeNodeV"][1]["location"] = "imgui:663" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -30196,7 +32630,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:615" +defs["igTreeNodeV"][2]["location"] = "imgui:664" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -30213,7 +32647,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:623" +defs["igTreePop"][1]["location"] = "imgui:672" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -30232,7 +32666,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:621" +defs["igTreePush"][1]["location"] = "imgui:670" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -30249,7 +32683,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:622" +defs["igTreePush"][2]["location"] = "imgui:671" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -30269,13 +32703,109 @@ defs["igTreePushOverrideID"][1]["call_args"] = "(id)" defs["igTreePushOverrideID"][1]["cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["defaults"] = {} defs["igTreePushOverrideID"][1]["funcname"] = "TreePushOverrideID" -defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3392" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:3871" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" defs["igTreePushOverrideID"][1]["signature"] = "(ImGuiID)" defs["igTreePushOverrideID"][1]["stname"] = "" defs["igTreePushOverrideID"]["(ImGuiID)"] = defs["igTreePushOverrideID"][1] +defs["igTypingSelectFindBestLeadingMatch"] = {} +defs["igTypingSelectFindBestLeadingMatch"][1] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["args"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][1] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][1]["name"] = "req" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][1]["type"] = "ImGuiTypingSelectRequest*" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][2] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][2]["name"] = "items_count" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][2]["type"] = "int" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["name"] = "get_item_name_func" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["ret"] = "const char*" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["signature"] = "(void*,int)" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][3]["type"] = "const char*(*)(void*,int)" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][4] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][4]["name"] = "user_data" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsT"][4]["type"] = "void*" +defs["igTypingSelectFindBestLeadingMatch"][1]["argsoriginal"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data)" +defs["igTypingSelectFindBestLeadingMatch"][1]["call_args"] = "(req,items_count,get_item_name_func,user_data)" +defs["igTypingSelectFindBestLeadingMatch"][1]["cimguiname"] = "igTypingSelectFindBestLeadingMatch" +defs["igTypingSelectFindBestLeadingMatch"][1]["defaults"] = {} +defs["igTypingSelectFindBestLeadingMatch"][1]["funcname"] = "TypingSelectFindBestLeadingMatch" +defs["igTypingSelectFindBestLeadingMatch"][1]["location"] = "imgui_internal:3714" +defs["igTypingSelectFindBestLeadingMatch"][1]["namespace"] = "ImGui" +defs["igTypingSelectFindBestLeadingMatch"][1]["ov_cimguiname"] = "igTypingSelectFindBestLeadingMatch" +defs["igTypingSelectFindBestLeadingMatch"][1]["ret"] = "int" +defs["igTypingSelectFindBestLeadingMatch"][1]["signature"] = "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*)" +defs["igTypingSelectFindBestLeadingMatch"][1]["stname"] = "" +defs["igTypingSelectFindBestLeadingMatch"]["(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*)"] = defs["igTypingSelectFindBestLeadingMatch"][1] +defs["igTypingSelectFindMatch"] = {} +defs["igTypingSelectFindMatch"][1] = {} +defs["igTypingSelectFindMatch"][1]["args"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindMatch"][1]["argsT"] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][1] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][1]["name"] = "req" +defs["igTypingSelectFindMatch"][1]["argsT"][1]["type"] = "ImGuiTypingSelectRequest*" +defs["igTypingSelectFindMatch"][1]["argsT"][2] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][2]["name"] = "items_count" +defs["igTypingSelectFindMatch"][1]["argsT"][2]["type"] = "int" +defs["igTypingSelectFindMatch"][1]["argsT"][3] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][3]["name"] = "get_item_name_func" +defs["igTypingSelectFindMatch"][1]["argsT"][3]["ret"] = "const char*" +defs["igTypingSelectFindMatch"][1]["argsT"][3]["signature"] = "(void*,int)" +defs["igTypingSelectFindMatch"][1]["argsT"][3]["type"] = "const char*(*)(void*,int)" +defs["igTypingSelectFindMatch"][1]["argsT"][4] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][4]["name"] = "user_data" +defs["igTypingSelectFindMatch"][1]["argsT"][4]["type"] = "void*" +defs["igTypingSelectFindMatch"][1]["argsT"][5] = {} +defs["igTypingSelectFindMatch"][1]["argsT"][5]["name"] = "nav_item_idx" +defs["igTypingSelectFindMatch"][1]["argsT"][5]["type"] = "int" +defs["igTypingSelectFindMatch"][1]["argsoriginal"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindMatch"][1]["call_args"] = "(req,items_count,get_item_name_func,user_data,nav_item_idx)" +defs["igTypingSelectFindMatch"][1]["cimguiname"] = "igTypingSelectFindMatch" +defs["igTypingSelectFindMatch"][1]["defaults"] = {} +defs["igTypingSelectFindMatch"][1]["funcname"] = "TypingSelectFindMatch" +defs["igTypingSelectFindMatch"][1]["location"] = "imgui_internal:3712" +defs["igTypingSelectFindMatch"][1]["namespace"] = "ImGui" +defs["igTypingSelectFindMatch"][1]["ov_cimguiname"] = "igTypingSelectFindMatch" +defs["igTypingSelectFindMatch"][1]["ret"] = "int" +defs["igTypingSelectFindMatch"][1]["signature"] = "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)" +defs["igTypingSelectFindMatch"][1]["stname"] = "" +defs["igTypingSelectFindMatch"]["(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)"] = defs["igTypingSelectFindMatch"][1] +defs["igTypingSelectFindNextSingleCharMatch"] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["args"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][1] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][1]["name"] = "req" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][1]["type"] = "ImGuiTypingSelectRequest*" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][2] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][2]["name"] = "items_count" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][2]["type"] = "int" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["name"] = "get_item_name_func" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["ret"] = "const char*" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["signature"] = "(void*,int)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][3]["type"] = "const char*(*)(void*,int)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][4] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][4]["name"] = "user_data" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][4]["type"] = "void*" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][5] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][5]["name"] = "nav_item_idx" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsT"][5]["type"] = "int" +defs["igTypingSelectFindNextSingleCharMatch"][1]["argsoriginal"] = "(ImGuiTypingSelectRequest* req,int items_count,const char*(*get_item_name_func)(void*,int),void* user_data,int nav_item_idx)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["call_args"] = "(req,items_count,get_item_name_func,user_data,nav_item_idx)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["cimguiname"] = "igTypingSelectFindNextSingleCharMatch" +defs["igTypingSelectFindNextSingleCharMatch"][1]["defaults"] = {} +defs["igTypingSelectFindNextSingleCharMatch"][1]["funcname"] = "TypingSelectFindNextSingleCharMatch" +defs["igTypingSelectFindNextSingleCharMatch"][1]["location"] = "imgui_internal:3713" +defs["igTypingSelectFindNextSingleCharMatch"][1]["namespace"] = "ImGui" +defs["igTypingSelectFindNextSingleCharMatch"][1]["ov_cimguiname"] = "igTypingSelectFindNextSingleCharMatch" +defs["igTypingSelectFindNextSingleCharMatch"][1]["ret"] = "int" +defs["igTypingSelectFindNextSingleCharMatch"][1]["signature"] = "(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)" +defs["igTypingSelectFindNextSingleCharMatch"][1]["stname"] = "" +defs["igTypingSelectFindNextSingleCharMatch"]["(ImGuiTypingSelectRequest*,int,const char*(*)(void*,int),void*,int)"] = defs["igTypingSelectFindNextSingleCharMatch"][1] defs["igUnindent"] = {} defs["igUnindent"][1] = {} defs["igUnindent"][1]["args"] = "(float indent_w)" @@ -30289,7 +32819,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:453" +defs["igUnindent"][1]["location"] = "imgui:505" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -30305,7 +32835,7 @@ defs["igUpdateHoveredWindowAndCaptureFlags"][1]["call_args"] = "()" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["defaults"] = {} defs["igUpdateHoveredWindowAndCaptureFlags"][1]["funcname"] = "UpdateHoveredWindowAndCaptureFlags" -defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:2986" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:3402" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -30324,7 +32854,7 @@ defs["igUpdateInputEvents"][1]["call_args"] = "(trickle_fast_inputs)" defs["igUpdateInputEvents"][1]["cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["defaults"] = {} defs["igUpdateInputEvents"][1]["funcname"] = "UpdateInputEvents" -defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:2985" +defs["igUpdateInputEvents"][1]["location"] = "imgui_internal:3401" defs["igUpdateInputEvents"][1]["namespace"] = "ImGui" defs["igUpdateInputEvents"][1]["ov_cimguiname"] = "igUpdateInputEvents" defs["igUpdateInputEvents"][1]["ret"] = "void" @@ -30340,7 +32870,7 @@ defs["igUpdateMouseMovingWindowEndFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowEndFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowEndFrame"][1]["funcname"] = "UpdateMouseMovingWindowEndFrame" -defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:2990" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:3407" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -30356,7 +32886,7 @@ defs["igUpdateMouseMovingWindowNewFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowNewFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowNewFrame"][1]["funcname"] = "UpdateMouseMovingWindowNewFrame" -defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:2989" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:3406" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -30372,7 +32902,7 @@ defs["igUpdatePlatformWindows"][1]["call_args"] = "()" defs["igUpdatePlatformWindows"][1]["cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["defaults"] = {} defs["igUpdatePlatformWindows"][1]["funcname"] = "UpdatePlatformWindows" -defs["igUpdatePlatformWindows"][1]["location"] = "imgui:981" +defs["igUpdatePlatformWindows"][1]["location"] = "imgui:1083" defs["igUpdatePlatformWindows"][1]["namespace"] = "ImGui" defs["igUpdatePlatformWindows"][1]["ov_cimguiname"] = "igUpdatePlatformWindows" defs["igUpdatePlatformWindows"][1]["ret"] = "void" @@ -30397,13 +32927,32 @@ defs["igUpdateWindowParentAndRootLinks"][1]["call_args"] = "(window,flags,parent defs["igUpdateWindowParentAndRootLinks"][1]["cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["defaults"] = {} defs["igUpdateWindowParentAndRootLinks"][1]["funcname"] = "UpdateWindowParentAndRootLinks" -defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:2952" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:3359" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" defs["igUpdateWindowParentAndRootLinks"][1]["signature"] = "(ImGuiWindow*,ImGuiWindowFlags,ImGuiWindow*)" defs["igUpdateWindowParentAndRootLinks"][1]["stname"] = "" defs["igUpdateWindowParentAndRootLinks"]["(ImGuiWindow*,ImGuiWindowFlags,ImGuiWindow*)"] = defs["igUpdateWindowParentAndRootLinks"][1] +defs["igUpdateWindowSkipRefresh"] = {} +defs["igUpdateWindowSkipRefresh"][1] = {} +defs["igUpdateWindowSkipRefresh"][1]["args"] = "(ImGuiWindow* window)" +defs["igUpdateWindowSkipRefresh"][1]["argsT"] = {} +defs["igUpdateWindowSkipRefresh"][1]["argsT"][1] = {} +defs["igUpdateWindowSkipRefresh"][1]["argsT"][1]["name"] = "window" +defs["igUpdateWindowSkipRefresh"][1]["argsT"][1]["type"] = "ImGuiWindow*" +defs["igUpdateWindowSkipRefresh"][1]["argsoriginal"] = "(ImGuiWindow* window)" +defs["igUpdateWindowSkipRefresh"][1]["call_args"] = "(window)" +defs["igUpdateWindowSkipRefresh"][1]["cimguiname"] = "igUpdateWindowSkipRefresh" +defs["igUpdateWindowSkipRefresh"][1]["defaults"] = {} +defs["igUpdateWindowSkipRefresh"][1]["funcname"] = "UpdateWindowSkipRefresh" +defs["igUpdateWindowSkipRefresh"][1]["location"] = "imgui_internal:3360" +defs["igUpdateWindowSkipRefresh"][1]["namespace"] = "ImGui" +defs["igUpdateWindowSkipRefresh"][1]["ov_cimguiname"] = "igUpdateWindowSkipRefresh" +defs["igUpdateWindowSkipRefresh"][1]["ret"] = "void" +defs["igUpdateWindowSkipRefresh"][1]["signature"] = "(ImGuiWindow*)" +defs["igUpdateWindowSkipRefresh"][1]["stname"] = "" +defs["igUpdateWindowSkipRefresh"]["(ImGuiWindow*)"] = defs["igUpdateWindowSkipRefresh"][1] defs["igVSliderFloat"] = {} defs["igVSliderFloat"][1] = {} defs["igVSliderFloat"][1]["args"] = "(const char* label,const ImVec2 size,float* v,float v_min,float v_max,const char* format,ImGuiSliderFlags flags)" @@ -30436,7 +32985,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:577" +defs["igVSliderFloat"][1]["location"] = "imgui:626" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -30475,7 +33024,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:578" +defs["igVSliderInt"][1]["location"] = "imgui:627" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -30517,7 +33066,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:579" +defs["igVSliderScalar"][1]["location"] = "imgui:628" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -30539,7 +33088,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:655" +defs["igValue"][1]["location"] = "imgui:717" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -30559,7 +33108,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:656" +defs["igValue"][2]["location"] = "imgui:718" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -30579,7 +33128,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:657" +defs["igValue"][3]["location"] = "imgui:719" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -30603,7 +33152,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:658" +defs["igValue"][4]["location"] = "imgui:720" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" @@ -30613,6 +33162,58 @@ defs["igValue"]["(const char*,bool)"] = defs["igValue"][1] defs["igValue"]["(const char*,float,const char*)"] = defs["igValue"][4] defs["igValue"]["(const char*,int)"] = defs["igValue"][2] defs["igValue"]["(const char*,unsigned int)"] = defs["igValue"][3] +defs["igWindowPosAbsToRel"] = {} +defs["igWindowPosAbsToRel"][1] = {} +defs["igWindowPosAbsToRel"][1]["args"] = "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)" +defs["igWindowPosAbsToRel"][1]["argsT"] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][1] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][1]["name"] = "pOut" +defs["igWindowPosAbsToRel"][1]["argsT"][1]["type"] = "ImVec2*" +defs["igWindowPosAbsToRel"][1]["argsT"][2] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][2]["name"] = "window" +defs["igWindowPosAbsToRel"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igWindowPosAbsToRel"][1]["argsT"][3] = {} +defs["igWindowPosAbsToRel"][1]["argsT"][3]["name"] = "p" +defs["igWindowPosAbsToRel"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igWindowPosAbsToRel"][1]["argsoriginal"] = "(ImGuiWindow* window,const ImVec2& p)" +defs["igWindowPosAbsToRel"][1]["call_args"] = "(window,p)" +defs["igWindowPosAbsToRel"][1]["cimguiname"] = "igWindowPosAbsToRel" +defs["igWindowPosAbsToRel"][1]["defaults"] = {} +defs["igWindowPosAbsToRel"][1]["funcname"] = "WindowPosAbsToRel" +defs["igWindowPosAbsToRel"][1]["location"] = "imgui_internal:3374" +defs["igWindowPosAbsToRel"][1]["namespace"] = "ImGui" +defs["igWindowPosAbsToRel"][1]["nonUDT"] = 1 +defs["igWindowPosAbsToRel"][1]["ov_cimguiname"] = "igWindowPosAbsToRel" +defs["igWindowPosAbsToRel"][1]["ret"] = "void" +defs["igWindowPosAbsToRel"][1]["signature"] = "(ImGuiWindow*,const ImVec2)" +defs["igWindowPosAbsToRel"][1]["stname"] = "" +defs["igWindowPosAbsToRel"]["(ImGuiWindow*,const ImVec2)"] = defs["igWindowPosAbsToRel"][1] +defs["igWindowPosRelToAbs"] = {} +defs["igWindowPosRelToAbs"][1] = {} +defs["igWindowPosRelToAbs"][1]["args"] = "(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p)" +defs["igWindowPosRelToAbs"][1]["argsT"] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][1] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][1]["name"] = "pOut" +defs["igWindowPosRelToAbs"][1]["argsT"][1]["type"] = "ImVec2*" +defs["igWindowPosRelToAbs"][1]["argsT"][2] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][2]["name"] = "window" +defs["igWindowPosRelToAbs"][1]["argsT"][2]["type"] = "ImGuiWindow*" +defs["igWindowPosRelToAbs"][1]["argsT"][3] = {} +defs["igWindowPosRelToAbs"][1]["argsT"][3]["name"] = "p" +defs["igWindowPosRelToAbs"][1]["argsT"][3]["type"] = "const ImVec2" +defs["igWindowPosRelToAbs"][1]["argsoriginal"] = "(ImGuiWindow* window,const ImVec2& p)" +defs["igWindowPosRelToAbs"][1]["call_args"] = "(window,p)" +defs["igWindowPosRelToAbs"][1]["cimguiname"] = "igWindowPosRelToAbs" +defs["igWindowPosRelToAbs"][1]["defaults"] = {} +defs["igWindowPosRelToAbs"][1]["funcname"] = "WindowPosRelToAbs" +defs["igWindowPosRelToAbs"][1]["location"] = "imgui_internal:3375" +defs["igWindowPosRelToAbs"][1]["namespace"] = "ImGui" +defs["igWindowPosRelToAbs"][1]["nonUDT"] = 1 +defs["igWindowPosRelToAbs"][1]["ov_cimguiname"] = "igWindowPosRelToAbs" +defs["igWindowPosRelToAbs"][1]["ret"] = "void" +defs["igWindowPosRelToAbs"][1]["signature"] = "(ImGuiWindow*,const ImVec2)" +defs["igWindowPosRelToAbs"][1]["stname"] = "" +defs["igWindowPosRelToAbs"]["(ImGuiWindow*,const ImVec2)"] = defs["igWindowPosRelToAbs"][1] defs["igWindowRectAbsToRel"] = {} defs["igWindowRectAbsToRel"][1] = {} defs["igWindowRectAbsToRel"][1]["args"] = "(ImRect *pOut,ImGuiWindow* window,const ImRect r)" @@ -30631,7 +33232,7 @@ defs["igWindowRectAbsToRel"][1]["call_args"] = "(window,r)" defs["igWindowRectAbsToRel"][1]["cimguiname"] = "igWindowRectAbsToRel" defs["igWindowRectAbsToRel"][1]["defaults"] = {} defs["igWindowRectAbsToRel"][1]["funcname"] = "WindowRectAbsToRel" -defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:2962" +defs["igWindowRectAbsToRel"][1]["location"] = "imgui_internal:3372" defs["igWindowRectAbsToRel"][1]["namespace"] = "ImGui" defs["igWindowRectAbsToRel"][1]["nonUDT"] = 1 defs["igWindowRectAbsToRel"][1]["ov_cimguiname"] = "igWindowRectAbsToRel" @@ -30657,7 +33258,7 @@ defs["igWindowRectRelToAbs"][1]["call_args"] = "(window,r)" defs["igWindowRectRelToAbs"][1]["cimguiname"] = "igWindowRectRelToAbs" defs["igWindowRectRelToAbs"][1]["defaults"] = {} defs["igWindowRectRelToAbs"][1]["funcname"] = "WindowRectRelToAbs" -defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:2963" +defs["igWindowRectRelToAbs"][1]["location"] = "imgui_internal:3373" defs["igWindowRectRelToAbs"][1]["namespace"] = "ImGui" defs["igWindowRectRelToAbs"][1]["nonUDT"] = 1 defs["igWindowRectRelToAbs"][1]["ov_cimguiname"] = "igWindowRectRelToAbs" diff --git a/imgui-sys/third-party/imgui-docking/impl_definitions.json b/imgui-sys/third-party/imgui-docking/impl_definitions.json index 3597665..ac713a3 100644 --- a/imgui-sys/third-party/imgui-docking/impl_definitions.json +++ b/imgui-sys/third-party/imgui-docking/impl_definitions.json @@ -17,7 +17,7 @@ "cimguiname": "ImGui_ImplGlfw_CharCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw:41", + "location": "imgui_impl_glfw:61", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -42,7 +42,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorEnterCallback", - "location": "imgui_impl_glfw:36", + "location": "imgui_impl_glfw:56", "ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -71,7 +71,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorPosCallback", - "location": "imgui_impl_glfw:37", + "location": "imgui_impl_glfw:57", "ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -96,7 +96,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw:22", + "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -121,7 +121,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOther", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOther", - "location": "imgui_impl_glfw:24", + "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_InitForOther", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -146,7 +146,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw:23", + "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -167,7 +167,7 @@ "cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_InstallCallbacks", - "location": "imgui_impl_glfw:31", + "location": "imgui_impl_glfw:47", "ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -204,7 +204,7 @@ "cimguiname": "ImGui_ImplGlfw_KeyCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw:40", + "location": "imgui_impl_glfw:60", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -229,7 +229,7 @@ "cimguiname": "ImGui_ImplGlfw_MonitorCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MonitorCallback", - "location": "imgui_impl_glfw:42", + "location": "imgui_impl_glfw:62", "ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback", "ret": "void", "signature": "(GLFWmonitor*,int)", @@ -262,7 +262,7 @@ "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw:38", + "location": "imgui_impl_glfw:58", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -278,7 +278,7 @@ "cimguiname": "ImGui_ImplGlfw_NewFrame", "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw:26", + "location": "imgui_impl_glfw:36", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -299,7 +299,7 @@ "cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_RestoreCallbacks", - "location": "imgui_impl_glfw:32", + "location": "imgui_impl_glfw:48", "ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -328,13 +328,34 @@ "cimguiname": "ImGui_ImplGlfw_ScrollCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw:39", + "location": "imgui_impl_glfw:59", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" } ], + "ImGui_ImplGlfw_SetCallbacksChainForAllWindows": [ + { + "args": "(bool chain_for_all_windows)", + "argsT": [ + { + "name": "chain_for_all_windows", + "type": "bool" + } + ], + "argsoriginal": "(bool chain_for_all_windows)", + "call_args": "(chain_for_all_windows)", + "cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "location": "imgui_impl_glfw:52", + "ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "ret": "void", + "signature": "(bool)", + "stname": "" + } + ], "ImGui_ImplGlfw_Shutdown": [ { "args": "()", @@ -344,13 +365,34 @@ "cimguiname": "ImGui_ImplGlfw_Shutdown", "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw:25", + "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" } ], + "ImGui_ImplGlfw_Sleep": [ + { + "args": "(int milliseconds)", + "argsT": [ + { + "name": "milliseconds", + "type": "int" + } + ], + "argsoriginal": "(int milliseconds)", + "call_args": "(milliseconds)", + "cimguiname": "ImGui_ImplGlfw_Sleep", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_Sleep", + "location": "imgui_impl_glfw:65", + "ov_cimguiname": "ImGui_ImplGlfw_Sleep", + "ret": "void", + "signature": "(int)", + "stname": "" + } + ], "ImGui_ImplGlfw_WindowFocusCallback": [ { "args": "(GLFWwindow* window,int focused)", @@ -369,7 +411,7 @@ "cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_WindowFocusCallback", - "location": "imgui_impl_glfw:35", + "location": "imgui_impl_glfw:55", "ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -385,7 +427,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2:31", + "location": "imgui_impl_opengl2:37", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -401,7 +443,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2:29", + "location": "imgui_impl_opengl2:35", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -417,7 +459,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2:32", + "location": "imgui_impl_opengl2:38", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -433,7 +475,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2:30", + "location": "imgui_impl_opengl2:36", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -449,7 +491,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2:23", + "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -465,7 +507,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2:25", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -486,7 +528,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2:26", + "location": "imgui_impl_opengl2:32", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -502,7 +544,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2:24", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -518,7 +560,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3:32", + "location": "imgui_impl_opengl3:42", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -534,7 +576,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3:30", + "location": "imgui_impl_opengl3:40", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -550,7 +592,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3:33", + "location": "imgui_impl_opengl3:43", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -566,7 +608,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3:31", + "location": "imgui_impl_opengl3:41", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -589,7 +631,7 @@ "glsl_version": "nullptr" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3:24", + "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", @@ -605,7 +647,7 @@ "cimguiname": "ImGui_ImplOpenGL3_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3:26", + "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", @@ -626,7 +668,7 @@ "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3:27", + "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -642,7 +684,7 @@ "cimguiname": "ImGui_ImplOpenGL3_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3:25", + "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", @@ -663,7 +705,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForD3D", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForD3D", - "location": "imgui_impl_sdl:27", + "location": "imgui_impl_sdl2:37", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -684,7 +726,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForMetal", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForMetal", - "location": "imgui_impl_sdl:28", + "location": "imgui_impl_sdl2:38", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -709,13 +751,34 @@ "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl:25", + "location": "imgui_impl_sdl2:35", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" } ], + "ImGui_ImplSDL2_InitForOther": [ + { + "args": "(SDL_Window* window)", + "argsT": [ + { + "name": "window", + "type": "SDL_Window*" + } + ], + "argsoriginal": "(SDL_Window* window)", + "call_args": "(window)", + "cimguiname": "ImGui_ImplSDL2_InitForOther", + "defaults": {}, + "funcname": "ImGui_ImplSDL2_InitForOther", + "location": "imgui_impl_sdl2:40", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOther", + "ret": "bool", + "signature": "(SDL_Window*)", + "stname": "" + } + ], "ImGui_ImplSDL2_InitForSDLRenderer": [ { "args": "(SDL_Window* window,SDL_Renderer* renderer)", @@ -734,7 +797,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForSDLRenderer", - "location": "imgui_impl_sdl:29", + "location": "imgui_impl_sdl2:39", "ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "ret": "bool", "signature": "(SDL_Window*,SDL_Renderer*)", @@ -755,7 +818,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl:26", + "location": "imgui_impl_sdl2:36", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -771,7 +834,7 @@ "cimguiname": "ImGui_ImplSDL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl:31", + "location": "imgui_impl_sdl2:42", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "()", @@ -792,13 +855,45 @@ "cimguiname": "ImGui_ImplSDL2_ProcessEvent", "defaults": {}, "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl:32", + "location": "imgui_impl_sdl2:43", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" } ], + "ImGui_ImplSDL2_SetGamepadMode": [ + { + "args": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)", + "argsT": [ + { + "name": "mode", + "type": "ImGui_ImplSDL2_GamepadMode" + }, + { + "name": "manual_gamepads_array", + "type": "struct _SDL_GameController**" + }, + { + "name": "manual_gamepads_count", + "type": "int" + } + ], + "argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)", + "call_args": "(mode,manual_gamepads_array,manual_gamepads_count)", + "cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "defaults": { + "manual_gamepads_array": "NULL", + "manual_gamepads_count": "-1" + }, + "funcname": "ImGui_ImplSDL2_SetGamepadMode", + "location": "imgui_impl_sdl2:48", + "ov_cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "ret": "void", + "signature": "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)", + "stname": "" + } + ], "ImGui_ImplSDL2_Shutdown": [ { "args": "()", @@ -808,7 +903,7 @@ "cimguiname": "ImGui_ImplSDL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl:30", + "location": "imgui_impl_sdl2:41", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", diff --git a/imgui-sys/third-party/imgui-docking/impl_definitions.lua b/imgui-sys/third-party/imgui-docking/impl_definitions.lua index fbc6a4c..828c8f2 100644 --- a/imgui-sys/third-party/imgui-docking/impl_definitions.lua +++ b/imgui-sys/third-party/imgui-docking/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:41" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:61" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback" -defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:36" +defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:56" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback" -defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:37" +defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:57" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:22" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:32" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther" -defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:24" +defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:34" defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)" @@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:23" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:33" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks" -defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:31" +defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:47" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:40" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:60" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)" defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback" -defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:42" +defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:62" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)" @@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:38" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:58" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:26" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:36" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks" -defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:32" +defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:48" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -275,12 +275,30 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:39" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:59" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["stname"] = "" defs["ImGui_ImplGlfw_ScrollCallback"]["(GLFWwindow*,double,double)"] = defs["ImGui_ImplGlfw_ScrollCallback"][1] +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["args"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["name"] = "chain_for_all_windows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["type"] = "bool" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsoriginal"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:52" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["stname"] = "" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"]["(bool)"] = defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] defs["ImGui_ImplGlfw_Shutdown"] = {} defs["ImGui_ImplGlfw_Shutdown"][1] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["args"] = "()" @@ -290,12 +308,30 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:25" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:35" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" defs["ImGui_ImplGlfw_Shutdown"]["()"] = defs["ImGui_ImplGlfw_Shutdown"][1] +defs["ImGui_ImplGlfw_Sleep"] = {} +defs["ImGui_ImplGlfw_Sleep"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["args"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["name"] = "milliseconds" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["type"] = "int" +defs["ImGui_ImplGlfw_Sleep"][1]["argsoriginal"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["call_args"] = "(milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["funcname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["location"] = "imgui_impl_glfw:65" +defs["ImGui_ImplGlfw_Sleep"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_Sleep"][1]["signature"] = "(int)" +defs["ImGui_ImplGlfw_Sleep"][1]["stname"] = "" +defs["ImGui_ImplGlfw_Sleep"]["(int)"] = defs["ImGui_ImplGlfw_Sleep"][1] defs["ImGui_ImplGlfw_WindowFocusCallback"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["args"] = "(GLFWwindow* window,int focused)" @@ -311,7 +347,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback" -defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:35" +defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:55" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -326,7 +362,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:31" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:37" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -341,7 +377,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:29" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:35" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -356,7 +392,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:32" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:38" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -371,7 +407,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:30" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:36" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -386,7 +422,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:23" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:29" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -401,7 +437,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:25" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -419,7 +455,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:26" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:32" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -434,7 +470,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:24" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -449,7 +485,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:32" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:42" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" @@ -464,7 +500,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:30" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:40" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" @@ -479,7 +515,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:33" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:43" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" @@ -494,7 +530,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:31" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:41" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" @@ -513,7 +549,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "nullptr" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:24" +defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:34" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" @@ -528,7 +564,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:26" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:36" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" @@ -546,7 +582,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:27" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:37" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -561,7 +597,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:25" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:35" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" @@ -579,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D" -defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl:27" +defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:37" defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -597,7 +633,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal" -defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl:28" +defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:38" defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -618,12 +654,30 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl:25" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:35" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["stname"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"]["(SDL_Window*,void*)"] = defs["ImGui_ImplSDL2_InitForOpenGL"][1] +defs["ImGui_ImplSDL2_InitForOther"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["args"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["name"] = "window" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["type"] = "SDL_Window*" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsoriginal"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["call_args"] = "(window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:40" +defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool" +defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)" +defs["ImGui_ImplSDL2_InitForOther"][1]["stname"] = "" +defs["ImGui_ImplSDL2_InitForOther"]["(SDL_Window*)"] = defs["ImGui_ImplSDL2_InitForOther"][1] defs["ImGui_ImplSDL2_InitForSDLRenderer"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["args"] = "(SDL_Window* window,SDL_Renderer* renderer)" @@ -639,7 +693,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer" -defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl:29" +defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:39" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)" @@ -657,7 +711,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl:26" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:36" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -672,7 +726,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl:31" +defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:42" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()" @@ -690,12 +744,38 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl:32" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:43" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = "" defs["ImGui_ImplSDL2_ProcessEvent"]["(const SDL_Event*)"] = defs["ImGui_ImplSDL2_ProcessEvent"][1] +defs["ImGui_ImplSDL2_SetGamepadMode"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["args"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["name"] = "mode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["type"] = "ImGui_ImplSDL2_GamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["name"] = "manual_gamepads_array" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["type"] = "struct _SDL_GameController**" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["type"] = "int" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["location"] = "imgui_impl_sdl2:48" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ret"] = "void" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["signature"] = "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["stname"] = "" +defs["ImGui_ImplSDL2_SetGamepadMode"]["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"] = defs["ImGui_ImplSDL2_SetGamepadMode"][1] defs["ImGui_ImplSDL2_Shutdown"] = {} defs["ImGui_ImplSDL2_Shutdown"][1] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()" @@ -705,7 +785,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl:30" +defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:41" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" diff --git a/imgui-sys/third-party/imgui-docking/overloads.txt b/imgui-sys/third-party/imgui-docking/overloads.txt index 6b78943..70d0f30 100644 --- a/imgui-sys/third-party/imgui-docking/overloads.txt +++ b/imgui-sys/third-party/imgui-docking/overloads.txt @@ -94,8 +94,8 @@ ImVector_resize 2 1 void ImVector_resize_Nil (int) 2 void ImVector_resize_T (int,const T) igBeginChild 2 -1 bool igBeginChild_Str (const char*,const ImVec2,bool,ImGuiWindowFlags) -2 bool igBeginChild_ID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) +1 bool igBeginChild_Str (const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) +2 bool igBeginChild_ID (ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) igCheckboxFlags 4 1 bool igCheckboxFlags_IntPtr (const char*,int*,int) 2 bool igCheckboxFlags_UintPtr (const char*,unsigned int*,unsigned int) @@ -107,22 +107,25 @@ igCollapsingHeader 2 igCombo 3 1 bool igCombo_Str_arr (const char*,int*,const char* const[],int,int) 2 bool igCombo_Str (const char*,int*,const char*,int) -3 bool igCombo_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) -igGetBackgroundDrawList 2 -1 ImDrawList* igGetBackgroundDrawList_Nil () -2 ImDrawList* igGetBackgroundDrawList_ViewportPtr (ImGuiViewport*) +3 bool igCombo_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igGetColorU32 3 1 ImU32 igGetColorU32_Col (ImGuiCol,float) 2 ImU32 igGetColorU32_Vec4 (const ImVec4) -3 ImU32 igGetColorU32_U32 (ImU32) -igGetForegroundDrawList 3 -1 ImDrawList* igGetForegroundDrawList_Nil () -2 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*) -3 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*) -igGetID 3 +3 ImU32 igGetColorU32_U32 (ImU32,float) +igGetForegroundDrawList 2 +1 ImDrawList* igGetForegroundDrawList_ViewportPtr (ImGuiViewport*) +2 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*) +igGetID 4 1 ImGuiID igGetID_Str (const char*) 2 ImGuiID igGetID_StrStr (const char*,const char*) 3 ImGuiID igGetID_Ptr (const void*) +4 ImGuiID igGetID_Int (int) +igGetIDWithSeed 2 +1 ImGuiID igGetIDWithSeed_Str (const char*,const char*,ImGuiID) +2 ImGuiID igGetIDWithSeed_Int (int,ImGuiID) +igGetKeyData 2 +1 ImGuiKeyData* igGetKeyData_ContextPtr (ImGuiContext*,ImGuiKey) +2 ImGuiKeyData* igGetKeyData_Key (ImGuiKey) igImAbs 3 1 int igImAbs_Int (int) 2 float igImAbs_Float (float) @@ -130,9 +133,6 @@ igImAbs 3 igImFloor 2 1 float igImFloor_Float (float) 2 ImVec2 igImFloor_Vec2 (const ImVec2) -igImFloorSigned 2 -1 float igImFloorSigned_Float (float) -2 ImVec2 igImFloorSigned_Vec2 (const ImVec2) igImIsPowerOfTwo 2 1 bool igImIsPowerOfTwo_Int (int) 2 bool igImIsPowerOfTwo_U64 (ImU64) @@ -155,18 +155,27 @@ igImRsqrt 2 igImSign 2 1 float igImSign_Float (float) 2 double igImSign_double (double) +igImTrunc 2 +1 float igImTrunc_Float (float) +2 ImVec2 igImTrunc_Vec2 (const ImVec2) +igIsKeyChordPressed 2 +1 bool igIsKeyChordPressed_Nil (ImGuiKeyChord) +2 bool igIsKeyChordPressed_InputFlags (ImGuiKeyChord,ImGuiInputFlags,ImGuiID) igIsKeyDown 2 1 bool igIsKeyDown_Nil (ImGuiKey) 2 bool igIsKeyDown_ID (ImGuiKey,ImGuiID) igIsKeyPressed 2 1 bool igIsKeyPressed_Bool (ImGuiKey,bool) -2 bool igIsKeyPressed_ID (ImGuiKey,ImGuiID,ImGuiInputFlags) +2 bool igIsKeyPressed_InputFlags (ImGuiKey,ImGuiInputFlags,ImGuiID) igIsKeyReleased 2 1 bool igIsKeyReleased_Nil (ImGuiKey) 2 bool igIsKeyReleased_ID (ImGuiKey,ImGuiID) igIsMouseClicked 2 1 bool igIsMouseClicked_Bool (ImGuiMouseButton,bool) -2 bool igIsMouseClicked_ID (ImGuiMouseButton,ImGuiID,ImGuiInputFlags) +2 bool igIsMouseClicked_InputFlags (ImGuiMouseButton,ImGuiInputFlags,ImGuiID) +igIsMouseDoubleClicked 2 +1 bool igIsMouseDoubleClicked_Nil (ImGuiMouseButton) +2 bool igIsMouseDoubleClicked_ID (ImGuiMouseButton,ImGuiID) igIsMouseDown 2 1 bool igIsMouseDown_Nil (ImGuiMouseButton) 2 bool igIsMouseDown_ID (ImGuiMouseButton,ImGuiID) @@ -184,7 +193,7 @@ igItemSize 2 2 void igItemSize_Rect (const ImRect,float) igListBox 2 1 bool igListBox_Str_arr (const char*,int*,const char* const[],int,int) -2 bool igListBox_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +2 bool igListBox_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igMarkIniSettingsDirty 2 1 void igMarkIniSettingsDirty_Nil () 2 void igMarkIniSettingsDirty_WindowPtr (ImGuiWindow*) @@ -217,6 +226,9 @@ igRadioButton 2 igSelectable 2 1 bool igSelectable_Bool (const char*,bool,ImGuiSelectableFlags,const ImVec2) 2 bool igSelectable_BoolPtr (const char*,bool*,ImGuiSelectableFlags,const ImVec2) +igSetItemKeyOwner 2 +1 void igSetItemKeyOwner_Nil (ImGuiKey) +2 void igSetItemKeyOwner_InputFlags (ImGuiKey,ImGuiInputFlags) igSetScrollFromPosX 2 1 void igSetScrollFromPosX_Float (float,float) 2 void igSetScrollFromPosX_WindowPtr (ImGuiWindow*,float,float) @@ -244,6 +256,9 @@ igSetWindowSize 3 1 void igSetWindowSize_Vec2 (const ImVec2,ImGuiCond) 2 void igSetWindowSize_Str (const char*,const ImVec2,ImGuiCond) 3 void igSetWindowSize_WindowPtr (ImGuiWindow*,const ImVec2,ImGuiCond) +igShortcut 2 +1 bool igShortcut_Nil (ImGuiKeyChord,ImGuiInputFlags) +2 bool igShortcut_ID (ImGuiKeyChord,ImGuiInputFlags,ImGuiID) igTabItemCalcSize 2 1 ImVec2 igTabItemCalcSize_Str (const char*,bool) 2 ImVec2 igTabItemCalcSize_WindowPtr (ImGuiWindow*) @@ -275,4 +290,4 @@ igValue 4 2 void igValue_Int (const char*,int) 3 void igValue_Uint (const char*,unsigned int) 4 void igValue_Float (const char*,float,const char*) -193 overloaded \ No newline at end of file +203 overloaded \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-docking/structs_and_enums.json b/imgui-sys/third-party/imgui-docking/structs_and_enums.json index 4da6cfb..051f9d9 100644 --- a/imgui-sys/third-party/imgui-docking/structs_and_enums.json +++ b/imgui-sys/third-party/imgui-docking/structs_and_enums.json @@ -141,6 +141,16 @@ "calc_value": 4, "name": "ImGuiActivateFlags_TryToPreserveState", "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiActivateFlags_FromTabbing", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiActivateFlags_FromShortcut", + "value": "1 << 4" } ], "ImGuiAxis": [ @@ -245,7 +255,7 @@ }, { "calc_value": 4096, - "name": "ImGuiButtonFlags_AllowItemOverlap", + "name": "ImGuiButtonFlags_AllowOverlap", "value": "1 << 12" }, { @@ -324,11 +334,58 @@ "calc_value": 7, "name": "ImGuiButtonFlags_MouseButtonMask_", "value": "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" + } + ], + "ImGuiChildFlags_": [ + { + "calc_value": 0, + "name": "ImGuiChildFlags_None", + "value": "0" }, { "calc_value": 1, - "name": "ImGuiButtonFlags_MouseButtonDefault_", - "value": "ImGuiButtonFlags_MouseButtonLeft" + "name": "ImGuiChildFlags_Borders", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiChildFlags_AlwaysUseWindowPadding", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiChildFlags_ResizeX", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiChildFlags_ResizeY", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiChildFlags_AutoResizeX", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiChildFlags_AutoResizeY", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiChildFlags_AlwaysAutoResize", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiChildFlags_FrameStyle", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiChildFlags_NavFlattened", + "value": "1 << 8" } ], "ImGuiCol_": [ @@ -499,118 +556,133 @@ }, { "calc_value": 33, - "name": "ImGuiCol_Tab", + "name": "ImGuiCol_TabHovered", "value": "33" }, { "calc_value": 34, - "name": "ImGuiCol_TabHovered", + "name": "ImGuiCol_Tab", "value": "34" }, { "calc_value": 35, - "name": "ImGuiCol_TabActive", + "name": "ImGuiCol_TabSelected", "value": "35" }, { "calc_value": 36, - "name": "ImGuiCol_TabUnfocused", + "name": "ImGuiCol_TabSelectedOverline", "value": "36" }, { "calc_value": 37, - "name": "ImGuiCol_TabUnfocusedActive", + "name": "ImGuiCol_TabDimmed", "value": "37" }, { "calc_value": 38, - "name": "ImGuiCol_DockingPreview", + "name": "ImGuiCol_TabDimmedSelected", "value": "38" }, { "calc_value": 39, - "name": "ImGuiCol_DockingEmptyBg", + "name": "ImGuiCol_TabDimmedSelectedOverline", "value": "39" }, { "calc_value": 40, - "name": "ImGuiCol_PlotLines", + "name": "ImGuiCol_DockingPreview", "value": "40" }, { "calc_value": 41, - "name": "ImGuiCol_PlotLinesHovered", + "name": "ImGuiCol_DockingEmptyBg", "value": "41" }, { "calc_value": 42, - "name": "ImGuiCol_PlotHistogram", + "name": "ImGuiCol_PlotLines", "value": "42" }, { "calc_value": 43, - "name": "ImGuiCol_PlotHistogramHovered", + "name": "ImGuiCol_PlotLinesHovered", "value": "43" }, { "calc_value": 44, - "name": "ImGuiCol_TableHeaderBg", + "name": "ImGuiCol_PlotHistogram", "value": "44" }, { "calc_value": 45, - "name": "ImGuiCol_TableBorderStrong", + "name": "ImGuiCol_PlotHistogramHovered", "value": "45" }, { "calc_value": 46, - "name": "ImGuiCol_TableBorderLight", + "name": "ImGuiCol_TableHeaderBg", "value": "46" }, { "calc_value": 47, - "name": "ImGuiCol_TableRowBg", + "name": "ImGuiCol_TableBorderStrong", "value": "47" }, { "calc_value": 48, - "name": "ImGuiCol_TableRowBgAlt", + "name": "ImGuiCol_TableBorderLight", "value": "48" }, { "calc_value": 49, - "name": "ImGuiCol_TextSelectedBg", + "name": "ImGuiCol_TableRowBg", "value": "49" }, { "calc_value": 50, - "name": "ImGuiCol_DragDropTarget", + "name": "ImGuiCol_TableRowBgAlt", "value": "50" }, { "calc_value": 51, - "name": "ImGuiCol_NavHighlight", + "name": "ImGuiCol_TextLink", "value": "51" }, { "calc_value": 52, - "name": "ImGuiCol_NavWindowingHighlight", + "name": "ImGuiCol_TextSelectedBg", "value": "52" }, { "calc_value": 53, - "name": "ImGuiCol_NavWindowingDimBg", + "name": "ImGuiCol_DragDropTarget", "value": "53" }, { "calc_value": 54, - "name": "ImGuiCol_ModalWindowDimBg", + "name": "ImGuiCol_NavHighlight", "value": "54" }, { "calc_value": 55, - "name": "ImGuiCol_COUNT", + "name": "ImGuiCol_NavWindowingHighlight", "value": "55" + }, + { + "calc_value": 56, + "name": "ImGuiCol_NavWindowingDimBg", + "value": "56" + }, + { + "calc_value": 57, + "name": "ImGuiCol_ModalWindowDimBg", + "value": "57" + }, + { + "calc_value": 58, + "name": "ImGuiCol_COUNT", + "value": "58" } ], "ImGuiColorEditFlags_": [ @@ -808,6 +880,11 @@ "name": "ImGuiComboFlags_NoPreview", "value": "1 << 6" }, + { + "calc_value": 128, + "name": "ImGuiComboFlags_WidthFitPreview", + "value": "1 << 7" + }, { "calc_value": 30, "name": "ImGuiComboFlags_HeightMask_", @@ -879,9 +956,14 @@ }, { "calc_value": 64, - "name": "ImGuiConfigFlags_DockingEnable", + "name": "ImGuiConfigFlags_NoKeyboard", "value": "1 << 6" }, + { + "calc_value": 128, + "name": "ImGuiConfigFlags_DockingEnable", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiConfigFlags_ViewportsEnable", @@ -969,17 +1051,17 @@ ], "ImGuiDataTypePrivate_": [ { - "calc_value": 11, + "calc_value": 12, "name": "ImGuiDataType_String", "value": "ImGuiDataType_COUNT + 1" }, { - "calc_value": 12, + "calc_value": 13, "name": "ImGuiDataType_Pointer", "value": "ImGuiDataType_COUNT + 1+1" }, { - "calc_value": 13, + "calc_value": 14, "name": "ImGuiDataType_ID", "value": "ImGuiDataType_COUNT + 1+1+1" } @@ -1037,8 +1119,13 @@ }, { "calc_value": 10, - "name": "ImGuiDataType_COUNT", + "name": "ImGuiDataType_Bool", "value": "10" + }, + { + "calc_value": 11, + "name": "ImGuiDataType_COUNT", + "value": "11" } ], "ImGuiDebugLogFlags_": [ @@ -1074,31 +1161,46 @@ }, { "calc_value": 32, - "name": "ImGuiDebugLogFlags_EventIO", + "name": "ImGuiDebugLogFlags_EventSelection", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiDebugLogFlags_EventDocking", + "name": "ImGuiDebugLogFlags_EventIO", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiDebugLogFlags_EventViewport", + "name": "ImGuiDebugLogFlags_EventInputRouting", "value": "1 << 7" }, { - "calc_value": 255, - "name": "ImGuiDebugLogFlags_EventMask_", - "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" + "calc_value": 256, + "name": "ImGuiDebugLogFlags_EventDocking", + "value": "1 << 8" }, { - "calc_value": 1024, + "calc_value": 512, + "name": "ImGuiDebugLogFlags_EventViewport", + "value": "1 << 9" + }, + { + "calc_value": 1023, + "name": "ImGuiDebugLogFlags_EventMask_", + "value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" + }, + { + "calc_value": 1048576, "name": "ImGuiDebugLogFlags_OutputToTTY", - "value": "1 << 10" + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiDebugLogFlags_OutputToTestEngine", + "value": "1 << 21" } ], - "ImGuiDir_": [ + "ImGuiDir": [ { "calc_value": -1, "name": "ImGuiDir_None", @@ -1163,43 +1265,43 @@ }, { "calc_value": 65536, - "name": "ImGuiDockNodeFlags_NoDocking", + "name": "ImGuiDockNodeFlags_NoResizeX", "value": "1 << 16" }, { "calc_value": 131072, - "name": "ImGuiDockNodeFlags_NoDockingSplitMe", + "name": "ImGuiDockNodeFlags_NoResizeY", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiDockNodeFlags_NoDockingSplitOther", + "name": "ImGuiDockNodeFlags_DockedWindowsInFocusRoute", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiDockNodeFlags_NoDockingOverMe", + "name": "ImGuiDockNodeFlags_NoDockingSplitOther", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiDockNodeFlags_NoDockingOverOther", + "name": "ImGuiDockNodeFlags_NoDockingOverMe", "value": "1 << 20" }, { "calc_value": 2097152, - "name": "ImGuiDockNodeFlags_NoDockingOverEmpty", + "name": "ImGuiDockNodeFlags_NoDockingOverOther", "value": "1 << 21" }, { "calc_value": 4194304, - "name": "ImGuiDockNodeFlags_NoResizeX", + "name": "ImGuiDockNodeFlags_NoDockingOverEmpty", "value": "1 << 22" }, { - "calc_value": 8388608, - "name": "ImGuiDockNodeFlags_NoResizeY", - "value": "1 << 23" + "calc_value": 7864336, + "name": "ImGuiDockNodeFlags_NoDocking", + "value": "ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther" }, { "calc_value": -1, @@ -1207,24 +1309,19 @@ "value": "~0" }, { - "calc_value": 12582944, + "calc_value": 196640, "name": "ImGuiDockNodeFlags_NoResizeFlagsMask_", - "value": "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" + "value": "(int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" }, { - "calc_value": 12713072, - "name": "ImGuiDockNodeFlags_LocalFlagsMask_", - "value": "ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" - }, - { - "calc_value": 12712048, + "calc_value": 260208, "name": "ImGuiDockNodeFlags_LocalFlagsTransferMask_", - "value": "ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace" + "value": "(int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" }, { - "calc_value": 12712992, + "calc_value": 261152, "name": "ImGuiDockNodeFlags_SavedFlagsMask_", - "value": "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" + "value": "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" } ], "ImGuiDockNodeFlags_": [ @@ -1240,7 +1337,7 @@ }, { "calc_value": 4, - "name": "ImGuiDockNodeFlags_NoDockingInCentralNode", + "name": "ImGuiDockNodeFlags_NoDockingOverCentralNode", "value": "1 << 2" }, { @@ -1250,7 +1347,7 @@ }, { "calc_value": 16, - "name": "ImGuiDockNodeFlags_NoSplit", + "name": "ImGuiDockNodeFlags_NoDockingSplit", "value": "1 << 4" }, { @@ -1262,6 +1359,11 @@ "calc_value": 64, "name": "ImGuiDockNodeFlags_AutoHideTabBar", "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDockNodeFlags_NoUndocking", + "value": "1 << 7" } ], "ImGuiDockNodeState": [ @@ -1319,9 +1421,19 @@ }, { "calc_value": 32, - "name": "ImGuiDragDropFlags_SourceAutoExpirePayload", + "name": "ImGuiDragDropFlags_PayloadAutoExpire", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiDragDropFlags_PayloadNoCrossContext", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDragDropFlags_PayloadNoCrossProcess", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiDragDropFlags_AcceptBeforeDelivery", @@ -1343,6 +1455,23 @@ "value": "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" } ], + "ImGuiFocusRequestFlags_": [ + { + "calc_value": 0, + "name": "ImGuiFocusRequestFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiFocusRequestFlags_RestoreFocusedChild", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiFocusRequestFlags_UnlessBelowModal", + "value": "1 << 1" + } + ], "ImGuiFocusedFlags_": [ { "calc_value": 0, @@ -1380,6 +1509,23 @@ "value": "ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows" } ], + "ImGuiHoveredFlagsPrivate_": [ + { + "calc_value": 245760, + "name": "ImGuiHoveredFlags_DelayMask_", + "value": "ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay" + }, + { + "calc_value": 12479, + "name": "ImGuiHoveredFlags_AllowedMaskForIsWindowHovered", + "value": "ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_DockHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary" + }, + { + "calc_value": 262048, + "name": "ImGuiHoveredFlags_AllowedMaskForIsItemHovered", + "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_" + } + ], "ImGuiHoveredFlags_": [ { "calc_value": 0, @@ -1423,21 +1569,31 @@ }, { "calc_value": 256, - "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByItem", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiHoveredFlags_AllowWhenDisabled", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByWindow", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiHoveredFlags_NoNavOverride", + "name": "ImGuiHoveredFlags_AllowWhenDisabled", "value": "1 << 10" }, { - "calc_value": 416, + "calc_value": 2048, + "name": "ImGuiHoveredFlags_NoNavOverride", + "value": "1 << 11" + }, + { + "calc_value": 768, + "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "value": "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" + }, + { + "calc_value": 928, "name": "ImGuiHoveredFlags_RectOnly", "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" }, @@ -1446,20 +1602,35 @@ "name": "ImGuiHoveredFlags_RootAndChildWindows", "value": "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" }, - { - "calc_value": 2048, - "name": "ImGuiHoveredFlags_DelayNormal", - "value": "1 << 11" - }, { "calc_value": 4096, - "name": "ImGuiHoveredFlags_DelayShort", + "name": "ImGuiHoveredFlags_ForTooltip", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiHoveredFlags_NoSharedDelay", + "name": "ImGuiHoveredFlags_Stationary", "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiHoveredFlags_DelayNone", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiHoveredFlags_DelayShort", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiHoveredFlags_DelayNormal", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiHoveredFlags_NoSharedDelay", + "value": "1 << 17" } ], "ImGuiInputEventType": [ @@ -1509,17 +1680,7 @@ "value": "8" } ], - "ImGuiInputFlags_": [ - { - "calc_value": 0, - "name": "ImGuiInputFlags_None", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiInputFlags_Repeat", - "value": "1 << 0" - }, + "ImGuiInputFlagsPrivate_": [ { "calc_value": 2, "name": "ImGuiInputFlags_RepeatRateDefault", @@ -1535,102 +1696,169 @@ "name": "ImGuiInputFlags_RepeatRateNavTweak", "value": "1 << 3" }, + { + "calc_value": 16, + "name": "ImGuiInputFlags_RepeatUntilRelease", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiInputFlags_RepeatUntilKeyModsChange", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiInputFlags_RepeatUntilOtherKeyPress", + "value": "1 << 7" + }, + { + "calc_value": 1048576, + "name": "ImGuiInputFlags_LockThisFrame", + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiInputFlags_LockUntilRelease", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiInputFlags_CondHovered", + "value": "1 << 22" + }, + { + "calc_value": 8388608, + "name": "ImGuiInputFlags_CondActive", + "value": "1 << 23" + }, + { + "calc_value": 12582912, + "name": "ImGuiInputFlags_CondDefault_", + "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" + }, { "calc_value": 14, "name": "ImGuiInputFlags_RepeatRateMask_", "value": "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" }, { - "calc_value": 16, - "name": "ImGuiInputFlags_CondHovered", - "value": "1 << 4" + "calc_value": 240, + "name": "ImGuiInputFlags_RepeatUntilMask_", + "value": "ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress" }, { - "calc_value": 32, - "name": "ImGuiInputFlags_CondActive", - "value": "1 << 5" + "calc_value": 255, + "name": "ImGuiInputFlags_RepeatMask_", + "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" }, { - "calc_value": 48, - "name": "ImGuiInputFlags_CondDefault_", - "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" - }, - { - "calc_value": 48, + "calc_value": 12582912, "name": "ImGuiInputFlags_CondMask_", "value": "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" }, { - "calc_value": 64, - "name": "ImGuiInputFlags_LockThisFrame", - "value": "1 << 6" + "calc_value": 15360, + "name": "ImGuiInputFlags_RouteTypeMask_", + "value": "ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways" }, { - "calc_value": 128, - "name": "ImGuiInputFlags_LockUntilRelease", - "value": "1 << 7" + "calc_value": 245760, + "name": "ImGuiInputFlags_RouteOptionsMask_", + "value": "ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow" }, { - "calc_value": 256, - "name": "ImGuiInputFlags_RouteFocused", - "value": "1 << 8" - }, - { - "calc_value": 512, - "name": "ImGuiInputFlags_RouteGlobalLow", - "value": "1 << 9" - }, - { - "calc_value": 1024, - "name": "ImGuiInputFlags_RouteGlobal", - "value": "1 << 10" - }, - { - "calc_value": 2048, - "name": "ImGuiInputFlags_RouteGlobalHigh", - "value": "1 << 11" - }, - { - "calc_value": 3840, - "name": "ImGuiInputFlags_RouteMask_", - "value": "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" - }, - { - "calc_value": 4096, - "name": "ImGuiInputFlags_RouteAlways", - "value": "1 << 12" - }, - { - "calc_value": 8192, - "name": "ImGuiInputFlags_RouteUnlessBgFocused", - "value": "1 << 13" - }, - { - "calc_value": 12288, - "name": "ImGuiInputFlags_RouteExtraMask_", - "value": "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" - }, - { - "calc_value": 15, + "calc_value": 255, "name": "ImGuiInputFlags_SupportedByIsKeyPressed", - "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_" + "value": "ImGuiInputFlags_RepeatMask_" }, { - "calc_value": 16143, + "calc_value": 1, + "name": "ImGuiInputFlags_SupportedByIsMouseClicked", + "value": "ImGuiInputFlags_Repeat" + }, + { + "calc_value": 261375, "name": "ImGuiInputFlags_SupportedByShortcut", - "value": "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" + "value": "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_" }, { - "calc_value": 192, + "calc_value": 523519, + "name": "ImGuiInputFlags_SupportedBySetNextItemShortcut", + "value": "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip" + }, + { + "calc_value": 3145728, "name": "ImGuiInputFlags_SupportedBySetKeyOwner", "value": "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" }, { - "calc_value": 240, + "calc_value": 15728640, "name": "ImGuiInputFlags_SupportedBySetItemKeyOwner", "value": "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" } ], + "ImGuiInputFlags_": [ + { + "calc_value": 0, + "name": "ImGuiInputFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiInputFlags_Repeat", + "value": "1 << 0" + }, + { + "calc_value": 1024, + "name": "ImGuiInputFlags_RouteActive", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiInputFlags_RouteFocused", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiInputFlags_RouteGlobal", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiInputFlags_RouteAlways", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiInputFlags_RouteOverFocused", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiInputFlags_RouteOverActive", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiInputFlags_RouteUnlessBgFocused", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiInputFlags_RouteFromRootWindow", + "value": "1 << 17" + }, + { + "calc_value": 262144, + "name": "ImGuiInputFlags_Tooltip", + "value": "1 << 18" + } + ], "ImGuiInputSource": [ { "calc_value": 0, @@ -1654,18 +1882,8 @@ }, { "calc_value": 4, - "name": "ImGuiInputSource_Clipboard", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiInputSource_Nav", - "value": "5" - }, - { - "calc_value": 6, "name": "ImGuiInputSource_COUNT", - "value": "6" + "value": "4" } ], "ImGuiInputTextFlagsPrivate_": [ @@ -1683,6 +1901,11 @@ "calc_value": 268435456, "name": "ImGuiInputTextFlags_MergedItem", "value": "1 << 28" + }, + { + "calc_value": 536870912, + "name": "ImGuiInputTextFlags_LocalizeDecimalPoint", + "value": "1 << 29" } ], "ImGuiInputTextFlags_": [ @@ -1703,72 +1926,72 @@ }, { "calc_value": 4, - "name": "ImGuiInputTextFlags_CharsUppercase", + "name": "ImGuiInputTextFlags_CharsScientific", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiInputTextFlags_CharsNoBlank", + "name": "ImGuiInputTextFlags_CharsUppercase", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiInputTextFlags_AutoSelectAll", + "name": "ImGuiInputTextFlags_CharsNoBlank", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiInputTextFlags_EnterReturnsTrue", + "name": "ImGuiInputTextFlags_AllowTabInput", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiInputTextFlags_CallbackCompletion", + "name": "ImGuiInputTextFlags_EnterReturnsTrue", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiInputTextFlags_CallbackHistory", + "name": "ImGuiInputTextFlags_EscapeClearsAll", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiInputTextFlags_CallbackAlways", + "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiInputTextFlags_CallbackCharFilter", + "name": "ImGuiInputTextFlags_ReadOnly", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiInputTextFlags_AllowTabInput", + "name": "ImGuiInputTextFlags_Password", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", + "name": "ImGuiInputTextFlags_AlwaysOverwrite", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiInputTextFlags_NoHorizontalScroll", + "name": "ImGuiInputTextFlags_AutoSelectAll", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiInputTextFlags_AlwaysOverwrite", + "name": "ImGuiInputTextFlags_ParseEmptyRefVal", "value": "1 << 13" }, { "calc_value": 16384, - "name": "ImGuiInputTextFlags_ReadOnly", + "name": "ImGuiInputTextFlags_DisplayEmptyRefVal", "value": "1 << 14" }, { "calc_value": 32768, - "name": "ImGuiInputTextFlags_Password", + "name": "ImGuiInputTextFlags_NoHorizontalScroll", "value": "1 << 15" }, { @@ -1778,23 +2001,80 @@ }, { "calc_value": 131072, - "name": "ImGuiInputTextFlags_CharsScientific", + "name": "ImGuiInputTextFlags_CallbackCompletion", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiInputTextFlags_CallbackResize", + "name": "ImGuiInputTextFlags_CallbackHistory", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiInputTextFlags_CallbackEdit", + "name": "ImGuiInputTextFlags_CallbackAlways", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiInputTextFlags_EscapeClearsAll", + "name": "ImGuiInputTextFlags_CallbackCharFilter", "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiInputTextFlags_CallbackResize", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 22" + } + ], + "ImGuiItemFlagsPrivate_": [ + { + "calc_value": 1024, + "name": "ImGuiItemFlags_Disabled", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiItemFlags_ReadOnly", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiItemFlags_MixedValue", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiItemFlags_NoWindowHoverableCheck", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiItemFlags_AllowOverlap", + "value": "1 << 14" + }, + { + "calc_value": 1048576, + "name": "ImGuiItemFlags_Inputable", + "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiItemFlags_HasSelectionUserData", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiItemFlags_IsMultiSelect", + "value": "1 << 22" + }, + { + "calc_value": 16, + "name": "ImGuiItemFlags_Default_", + "value": "ImGuiItemFlags_AutoClosePopups" } ], "ImGuiItemFlags_": [ @@ -1810,48 +2090,28 @@ }, { "calc_value": 2, - "name": "ImGuiItemFlags_ButtonRepeat", + "name": "ImGuiItemFlags_NoNav", "value": "1 << 1" }, { "calc_value": 4, - "name": "ImGuiItemFlags_Disabled", + "name": "ImGuiItemFlags_NoNavDefaultFocus", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiItemFlags_NoNav", + "name": "ImGuiItemFlags_ButtonRepeat", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiItemFlags_NoNavDefaultFocus", + "name": "ImGuiItemFlags_AutoClosePopups", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiItemFlags_SelectableDontClosePopup", + "name": "ImGuiItemFlags_AllowDuplicateId", "value": "1 << 5" - }, - { - "calc_value": 64, - "name": "ImGuiItemFlags_MixedValue", - "value": "1 << 6" - }, - { - "calc_value": 128, - "name": "ImGuiItemFlags_ReadOnly", - "value": "1 << 7" - }, - { - "calc_value": 256, - "name": "ImGuiItemFlags_NoWindowHoverableCheck", - "value": "1 << 8" - }, - { - "calc_value": 1024, - "name": "ImGuiItemFlags_Inputable", - "value": "1 << 10" } ], "ImGuiItemStatusFlags_": [ @@ -1902,13 +2162,18 @@ }, { "calc_value": 256, - "name": "ImGuiItemStatusFlags_FocusedByTabbing", + "name": "ImGuiItemStatusFlags_Visible", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiItemStatusFlags_Visible", + "name": "ImGuiItemStatusFlags_HasClipRect", "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiItemStatusFlags_HasShortcut", + "value": "1 << 10" } ], "ImGuiKey": [ @@ -2279,349 +2544,419 @@ }, { "calc_value": 584, - "name": "ImGuiKey_Apostrophe", + "name": "ImGuiKey_F13", "value": "584" }, { "calc_value": 585, - "name": "ImGuiKey_Comma", + "name": "ImGuiKey_F14", "value": "585" }, { "calc_value": 586, - "name": "ImGuiKey_Minus", + "name": "ImGuiKey_F15", "value": "586" }, { "calc_value": 587, - "name": "ImGuiKey_Period", + "name": "ImGuiKey_F16", "value": "587" }, { "calc_value": 588, - "name": "ImGuiKey_Slash", + "name": "ImGuiKey_F17", "value": "588" }, { "calc_value": 589, - "name": "ImGuiKey_Semicolon", + "name": "ImGuiKey_F18", "value": "589" }, { "calc_value": 590, - "name": "ImGuiKey_Equal", + "name": "ImGuiKey_F19", "value": "590" }, { "calc_value": 591, - "name": "ImGuiKey_LeftBracket", + "name": "ImGuiKey_F20", "value": "591" }, { "calc_value": 592, - "name": "ImGuiKey_Backslash", + "name": "ImGuiKey_F21", "value": "592" }, { "calc_value": 593, - "name": "ImGuiKey_RightBracket", + "name": "ImGuiKey_F22", "value": "593" }, { "calc_value": 594, - "name": "ImGuiKey_GraveAccent", + "name": "ImGuiKey_F23", "value": "594" }, { "calc_value": 595, - "name": "ImGuiKey_CapsLock", + "name": "ImGuiKey_F24", "value": "595" }, { "calc_value": 596, - "name": "ImGuiKey_ScrollLock", + "name": "ImGuiKey_Apostrophe", "value": "596" }, { "calc_value": 597, - "name": "ImGuiKey_NumLock", + "name": "ImGuiKey_Comma", "value": "597" }, { "calc_value": 598, - "name": "ImGuiKey_PrintScreen", + "name": "ImGuiKey_Minus", "value": "598" }, { "calc_value": 599, - "name": "ImGuiKey_Pause", + "name": "ImGuiKey_Period", "value": "599" }, { "calc_value": 600, - "name": "ImGuiKey_Keypad0", + "name": "ImGuiKey_Slash", "value": "600" }, { "calc_value": 601, - "name": "ImGuiKey_Keypad1", + "name": "ImGuiKey_Semicolon", "value": "601" }, { "calc_value": 602, - "name": "ImGuiKey_Keypad2", + "name": "ImGuiKey_Equal", "value": "602" }, { "calc_value": 603, - "name": "ImGuiKey_Keypad3", + "name": "ImGuiKey_LeftBracket", "value": "603" }, { "calc_value": 604, - "name": "ImGuiKey_Keypad4", + "name": "ImGuiKey_Backslash", "value": "604" }, { "calc_value": 605, - "name": "ImGuiKey_Keypad5", + "name": "ImGuiKey_RightBracket", "value": "605" }, { "calc_value": 606, - "name": "ImGuiKey_Keypad6", + "name": "ImGuiKey_GraveAccent", "value": "606" }, { "calc_value": 607, - "name": "ImGuiKey_Keypad7", + "name": "ImGuiKey_CapsLock", "value": "607" }, { "calc_value": 608, - "name": "ImGuiKey_Keypad8", + "name": "ImGuiKey_ScrollLock", "value": "608" }, { "calc_value": 609, - "name": "ImGuiKey_Keypad9", + "name": "ImGuiKey_NumLock", "value": "609" }, { "calc_value": 610, - "name": "ImGuiKey_KeypadDecimal", + "name": "ImGuiKey_PrintScreen", "value": "610" }, { "calc_value": 611, - "name": "ImGuiKey_KeypadDivide", + "name": "ImGuiKey_Pause", "value": "611" }, { "calc_value": 612, - "name": "ImGuiKey_KeypadMultiply", + "name": "ImGuiKey_Keypad0", "value": "612" }, { "calc_value": 613, - "name": "ImGuiKey_KeypadSubtract", + "name": "ImGuiKey_Keypad1", "value": "613" }, { "calc_value": 614, - "name": "ImGuiKey_KeypadAdd", + "name": "ImGuiKey_Keypad2", "value": "614" }, { "calc_value": 615, - "name": "ImGuiKey_KeypadEnter", + "name": "ImGuiKey_Keypad3", "value": "615" }, { "calc_value": 616, - "name": "ImGuiKey_KeypadEqual", + "name": "ImGuiKey_Keypad4", "value": "616" }, { "calc_value": 617, - "name": "ImGuiKey_GamepadStart", + "name": "ImGuiKey_Keypad5", "value": "617" }, { "calc_value": 618, - "name": "ImGuiKey_GamepadBack", + "name": "ImGuiKey_Keypad6", "value": "618" }, { "calc_value": 619, - "name": "ImGuiKey_GamepadFaceLeft", + "name": "ImGuiKey_Keypad7", "value": "619" }, { "calc_value": 620, - "name": "ImGuiKey_GamepadFaceRight", + "name": "ImGuiKey_Keypad8", "value": "620" }, { "calc_value": 621, - "name": "ImGuiKey_GamepadFaceUp", + "name": "ImGuiKey_Keypad9", "value": "621" }, { "calc_value": 622, - "name": "ImGuiKey_GamepadFaceDown", + "name": "ImGuiKey_KeypadDecimal", "value": "622" }, { "calc_value": 623, - "name": "ImGuiKey_GamepadDpadLeft", + "name": "ImGuiKey_KeypadDivide", "value": "623" }, { "calc_value": 624, - "name": "ImGuiKey_GamepadDpadRight", + "name": "ImGuiKey_KeypadMultiply", "value": "624" }, { "calc_value": 625, - "name": "ImGuiKey_GamepadDpadUp", + "name": "ImGuiKey_KeypadSubtract", "value": "625" }, { "calc_value": 626, - "name": "ImGuiKey_GamepadDpadDown", + "name": "ImGuiKey_KeypadAdd", "value": "626" }, { "calc_value": 627, - "name": "ImGuiKey_GamepadL1", + "name": "ImGuiKey_KeypadEnter", "value": "627" }, { "calc_value": 628, - "name": "ImGuiKey_GamepadR1", + "name": "ImGuiKey_KeypadEqual", "value": "628" }, { "calc_value": 629, - "name": "ImGuiKey_GamepadL2", + "name": "ImGuiKey_AppBack", "value": "629" }, { "calc_value": 630, - "name": "ImGuiKey_GamepadR2", + "name": "ImGuiKey_AppForward", "value": "630" }, { "calc_value": 631, - "name": "ImGuiKey_GamepadL3", + "name": "ImGuiKey_GamepadStart", "value": "631" }, { "calc_value": 632, - "name": "ImGuiKey_GamepadR3", + "name": "ImGuiKey_GamepadBack", "value": "632" }, { "calc_value": 633, - "name": "ImGuiKey_GamepadLStickLeft", + "name": "ImGuiKey_GamepadFaceLeft", "value": "633" }, { "calc_value": 634, - "name": "ImGuiKey_GamepadLStickRight", + "name": "ImGuiKey_GamepadFaceRight", "value": "634" }, { "calc_value": 635, - "name": "ImGuiKey_GamepadLStickUp", + "name": "ImGuiKey_GamepadFaceUp", "value": "635" }, { "calc_value": 636, - "name": "ImGuiKey_GamepadLStickDown", + "name": "ImGuiKey_GamepadFaceDown", "value": "636" }, { "calc_value": 637, - "name": "ImGuiKey_GamepadRStickLeft", + "name": "ImGuiKey_GamepadDpadLeft", "value": "637" }, { "calc_value": 638, - "name": "ImGuiKey_GamepadRStickRight", + "name": "ImGuiKey_GamepadDpadRight", "value": "638" }, { "calc_value": 639, - "name": "ImGuiKey_GamepadRStickUp", + "name": "ImGuiKey_GamepadDpadUp", "value": "639" }, { "calc_value": 640, - "name": "ImGuiKey_GamepadRStickDown", + "name": "ImGuiKey_GamepadDpadDown", "value": "640" }, { "calc_value": 641, - "name": "ImGuiKey_MouseLeft", + "name": "ImGuiKey_GamepadL1", "value": "641" }, { "calc_value": 642, - "name": "ImGuiKey_MouseRight", + "name": "ImGuiKey_GamepadR1", "value": "642" }, { "calc_value": 643, - "name": "ImGuiKey_MouseMiddle", + "name": "ImGuiKey_GamepadL2", "value": "643" }, { "calc_value": 644, - "name": "ImGuiKey_MouseX1", + "name": "ImGuiKey_GamepadR2", "value": "644" }, { "calc_value": 645, - "name": "ImGuiKey_MouseX2", + "name": "ImGuiKey_GamepadL3", "value": "645" }, { "calc_value": 646, - "name": "ImGuiKey_MouseWheelX", + "name": "ImGuiKey_GamepadR3", "value": "646" }, { "calc_value": 647, - "name": "ImGuiKey_MouseWheelY", + "name": "ImGuiKey_GamepadLStickLeft", "value": "647" }, { "calc_value": 648, - "name": "ImGuiKey_ReservedForModCtrl", + "name": "ImGuiKey_GamepadLStickRight", "value": "648" }, { "calc_value": 649, - "name": "ImGuiKey_ReservedForModShift", + "name": "ImGuiKey_GamepadLStickUp", "value": "649" }, { "calc_value": 650, - "name": "ImGuiKey_ReservedForModAlt", + "name": "ImGuiKey_GamepadLStickDown", "value": "650" }, { "calc_value": 651, - "name": "ImGuiKey_ReservedForModSuper", + "name": "ImGuiKey_GamepadRStickLeft", "value": "651" }, { "calc_value": 652, - "name": "ImGuiKey_COUNT", + "name": "ImGuiKey_GamepadRStickRight", "value": "652" }, + { + "calc_value": 653, + "name": "ImGuiKey_GamepadRStickUp", + "value": "653" + }, + { + "calc_value": 654, + "name": "ImGuiKey_GamepadRStickDown", + "value": "654" + }, + { + "calc_value": 655, + "name": "ImGuiKey_MouseLeft", + "value": "655" + }, + { + "calc_value": 656, + "name": "ImGuiKey_MouseRight", + "value": "656" + }, + { + "calc_value": 657, + "name": "ImGuiKey_MouseMiddle", + "value": "657" + }, + { + "calc_value": 658, + "name": "ImGuiKey_MouseX1", + "value": "658" + }, + { + "calc_value": 659, + "name": "ImGuiKey_MouseX2", + "value": "659" + }, + { + "calc_value": 660, + "name": "ImGuiKey_MouseWheelX", + "value": "660" + }, + { + "calc_value": 661, + "name": "ImGuiKey_MouseWheelY", + "value": "661" + }, + { + "calc_value": 662, + "name": "ImGuiKey_ReservedForModCtrl", + "value": "662" + }, + { + "calc_value": 663, + "name": "ImGuiKey_ReservedForModShift", + "value": "663" + }, + { + "calc_value": 664, + "name": "ImGuiKey_ReservedForModAlt", + "value": "664" + }, + { + "calc_value": 665, + "name": "ImGuiKey_ReservedForModSuper", + "value": "665" + }, + { + "calc_value": 666, + "name": "ImGuiKey_COUNT", + "value": "666" + }, { "calc_value": 0, "name": "ImGuiMod_None", @@ -2648,14 +2983,9 @@ "value": "1 << 15" }, { - "calc_value": 2048, - "name": "ImGuiMod_Shortcut", - "value": "1 << 11" - }, - { - "calc_value": 63488, + "calc_value": 61440, "name": "ImGuiMod_Mask_", - "value": "0xF800" + "value": "0xF000" }, { "calc_value": 512, @@ -2663,24 +2993,24 @@ "value": "512" }, { - "calc_value": 652, + "calc_value": 666, "name": "ImGuiKey_NamedKey_END", "value": "ImGuiKey_COUNT" }, { - "calc_value": 140, + "calc_value": 154, "name": "ImGuiKey_NamedKey_COUNT", "value": "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" }, { - "calc_value": 652, + "calc_value": 154, "name": "ImGuiKey_KeysData_SIZE", - "value": "ImGuiKey_COUNT" + "value": "ImGuiKey_NamedKey_COUNT" }, { - "calc_value": 0, + "calc_value": 512, "name": "ImGuiKey_KeysData_OFFSET", - "value": "0" + "value": "ImGuiKey_NamedKey_BEGIN" } ], "ImGuiLayoutType_": [ @@ -2698,48 +3028,73 @@ "ImGuiLocKey": [ { "calc_value": 0, - "name": "ImGuiLocKey_TableSizeOne", + "name": "ImGuiLocKey_VersionStr", "value": "0" }, { "calc_value": 1, - "name": "ImGuiLocKey_TableSizeAllFit", + "name": "ImGuiLocKey_TableSizeOne", "value": "1" }, { "calc_value": 2, - "name": "ImGuiLocKey_TableSizeAllDefault", + "name": "ImGuiLocKey_TableSizeAllFit", "value": "2" }, { "calc_value": 3, - "name": "ImGuiLocKey_TableResetOrder", + "name": "ImGuiLocKey_TableSizeAllDefault", "value": "3" }, { "calc_value": 4, - "name": "ImGuiLocKey_WindowingMainMenuBar", + "name": "ImGuiLocKey_TableResetOrder", "value": "4" }, { "calc_value": 5, - "name": "ImGuiLocKey_WindowingPopup", + "name": "ImGuiLocKey_WindowingMainMenuBar", "value": "5" }, { "calc_value": 6, - "name": "ImGuiLocKey_WindowingUntitled", + "name": "ImGuiLocKey_WindowingPopup", "value": "6" }, { "calc_value": 7, - "name": "ImGuiLocKey_DockingHideTabBar", + "name": "ImGuiLocKey_WindowingUntitled", "value": "7" }, { "calc_value": 8, - "name": "ImGuiLocKey_COUNT", + "name": "ImGuiLocKey_OpenLink_s", "value": "8" + }, + { + "calc_value": 9, + "name": "ImGuiLocKey_CopyLink", + "value": "9" + }, + { + "calc_value": 10, + "name": "ImGuiLocKey_DockingHideTabBar", + "value": "10" + }, + { + "calc_value": 11, + "name": "ImGuiLocKey_DockingHoldShiftToDock", + "value": "11" + }, + { + "calc_value": 12, + "name": "ImGuiLocKey_DockingDragToUndockOrMoveNode", + "value": "12" + }, + { + "calc_value": 13, + "name": "ImGuiLocKey_COUNT", + "value": "13" } ], "ImGuiLogType": [ @@ -2848,20 +3203,124 @@ "value": "9" } ], + "ImGuiMouseSource": [ + { + "calc_value": 0, + "name": "ImGuiMouseSource_Mouse", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiMouseSource_TouchScreen", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiMouseSource_Pen", + "value": "2" + }, + { + "calc_value": 3, + "name": "ImGuiMouseSource_COUNT", + "value": "3" + } + ], + "ImGuiMultiSelectFlags_": [ + { + "calc_value": 0, + "name": "ImGuiMultiSelectFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiMultiSelectFlags_SingleSelect", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiMultiSelectFlags_NoSelectAll", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiMultiSelectFlags_NoRangeSelect", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiMultiSelectFlags_NoAutoSelect", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiMultiSelectFlags_NoAutoClear", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiMultiSelectFlags_NoAutoClearOnReselect", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiMultiSelectFlags_BoxSelect1d", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiMultiSelectFlags_BoxSelect2d", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiMultiSelectFlags_BoxSelectNoScroll", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiMultiSelectFlags_ClearOnEscape", + "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiMultiSelectFlags_ClearOnClickVoid", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiMultiSelectFlags_ScopeWindow", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiMultiSelectFlags_ScopeRect", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiMultiSelectFlags_SelectOnClick", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiMultiSelectFlags_SelectOnClickRelease", + "value": "1 << 14" + }, + { + "calc_value": 65536, + "name": "ImGuiMultiSelectFlags_NavWrapX", + "value": "1 << 16" + } + ], "ImGuiNavHighlightFlags_": [ { "calc_value": 0, "name": "ImGuiNavHighlightFlags_None", "value": "0" }, - { - "calc_value": 1, - "name": "ImGuiNavHighlightFlags_TypeDefault", - "value": "1 << 0" - }, { "calc_value": 2, - "name": "ImGuiNavHighlightFlags_TypeThin", + "name": "ImGuiNavHighlightFlags_Compact", "value": "1 << 1" }, { @@ -2875,93 +3334,6 @@ "value": "1 << 3" } ], - "ImGuiNavInput": [ - { - "calc_value": 0, - "name": "ImGuiNavInput_Activate", - "value": "0" - }, - { - "calc_value": 1, - "name": "ImGuiNavInput_Cancel", - "value": "1" - }, - { - "calc_value": 2, - "name": "ImGuiNavInput_Input", - "value": "2" - }, - { - "calc_value": 3, - "name": "ImGuiNavInput_Menu", - "value": "3" - }, - { - "calc_value": 4, - "name": "ImGuiNavInput_DpadLeft", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiNavInput_DpadRight", - "value": "5" - }, - { - "calc_value": 6, - "name": "ImGuiNavInput_DpadUp", - "value": "6" - }, - { - "calc_value": 7, - "name": "ImGuiNavInput_DpadDown", - "value": "7" - }, - { - "calc_value": 8, - "name": "ImGuiNavInput_LStickLeft", - "value": "8" - }, - { - "calc_value": 9, - "name": "ImGuiNavInput_LStickRight", - "value": "9" - }, - { - "calc_value": 10, - "name": "ImGuiNavInput_LStickUp", - "value": "10" - }, - { - "calc_value": 11, - "name": "ImGuiNavInput_LStickDown", - "value": "11" - }, - { - "calc_value": 12, - "name": "ImGuiNavInput_FocusPrev", - "value": "12" - }, - { - "calc_value": 13, - "name": "ImGuiNavInput_FocusNext", - "value": "13" - }, - { - "calc_value": 14, - "name": "ImGuiNavInput_TweakSlow", - "value": "14" - }, - { - "calc_value": 15, - "name": "ImGuiNavInput_TweakFast", - "value": "15" - }, - { - "calc_value": 16, - "name": "ImGuiNavInput_COUNT", - "value": "16" - } - ], "ImGuiNavLayer": [ { "calc_value": 0, @@ -3005,6 +3377,11 @@ "name": "ImGuiNavMoveFlags_WrapY", "value": "1 << 3" }, + { + "calc_value": 15, + "name": "ImGuiNavMoveFlags_WrapMask_", + "value": "ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY" + }, { "calc_value": 16, "name": "ImGuiNavMoveFlags_AllowCurrentNavId", @@ -3037,18 +3414,33 @@ }, { "calc_value": 1024, - "name": "ImGuiNavMoveFlags_Tabbing", + "name": "ImGuiNavMoveFlags_IsTabbing", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiNavMoveFlags_Activate", + "name": "ImGuiNavMoveFlags_IsPageMove", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiNavMoveFlags_DontSetNavHighlight", + "name": "ImGuiNavMoveFlags_Activate", "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiNavMoveFlags_NoSelect", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiNavMoveFlags_NoSetNavHighlight", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiNavMoveFlags_NoClearActiveId", + "value": "1 << 15" } ], "ImGuiNextItemDataFlags_": [ @@ -3066,6 +3458,21 @@ "calc_value": 2, "name": "ImGuiNextItemDataFlags_HasOpen", "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiNextItemDataFlags_HasShortcut", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiNextItemDataFlags_HasRefVal", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiNextItemDataFlags_HasStorageID", + "value": "1 << 4" } ], "ImGuiNextWindowDataFlags_": [ @@ -3116,18 +3523,28 @@ }, { "calc_value": 256, - "name": "ImGuiNextWindowDataFlags_HasViewport", + "name": "ImGuiNextWindowDataFlags_HasChildFlags", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiNextWindowDataFlags_HasDock", + "name": "ImGuiNextWindowDataFlags_HasRefreshPolicy", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiNextWindowDataFlags_HasWindowClass", + "name": "ImGuiNextWindowDataFlags_HasViewport", "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiNextWindowDataFlags_HasDock", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiNextWindowDataFlags_HasWindowClass", + "value": "1 << 12" } ], "ImGuiOldColumnFlags_": [ @@ -3207,26 +3624,31 @@ }, { "calc_value": 32, - "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", + "name": "ImGuiPopupFlags_NoReopen", "value": "1 << 5" }, - { - "calc_value": 64, - "name": "ImGuiPopupFlags_NoOpenOverItems", - "value": "1 << 6" - }, { "calc_value": 128, - "name": "ImGuiPopupFlags_AnyPopupId", + "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiPopupFlags_AnyPopupLevel", + "name": "ImGuiPopupFlags_NoOpenOverItems", "value": "1 << 8" }, { - "calc_value": 384, + "calc_value": 1024, + "name": "ImGuiPopupFlags_AnyPopupId", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiPopupFlags_AnyPopupLevel", + "value": "1 << 11" + }, + { + "calc_value": 3072, "name": "ImGuiPopupFlags_AnyPopup", "value": "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" } @@ -3350,7 +3772,7 @@ }, { "calc_value": 1, - "name": "ImGuiSelectableFlags_DontClosePopups", + "name": "ImGuiSelectableFlags_NoAutoClosePopups", "value": "1 << 0" }, { @@ -3370,8 +3792,30 @@ }, { "calc_value": 16, - "name": "ImGuiSelectableFlags_AllowItemOverlap", + "name": "ImGuiSelectableFlags_AllowOverlap", "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiSelectableFlags_Highlight", + "value": "1 << 5" + } + ], + "ImGuiSelectionRequestType": [ + { + "calc_value": 0, + "name": "ImGuiSelectionRequestType_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiSelectionRequestType_SetAll", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiSelectionRequestType_SetRange", + "value": "2" } ], "ImGuiSeparatorFlags_": [ @@ -3434,13 +3878,18 @@ "name": "ImGuiSliderFlags_NoInput", "value": "1 << 7" }, + { + "calc_value": 256, + "name": "ImGuiSliderFlags_WrapAround", + "value": "1 << 8" + }, { "calc_value": 1879048207, "name": "ImGuiSliderFlags_InvalidMask_", "value": "0x7000000F" } ], - "ImGuiSortDirection_": [ + "ImGuiSortDirection": [ { "calc_value": 0, "name": "ImGuiSortDirection_None", @@ -3575,18 +4024,63 @@ }, { "calc_value": 23, - "name": "ImGuiStyleVar_ButtonTextAlign", + "name": "ImGuiStyleVar_TabBorderSize", "value": "23" }, { "calc_value": 24, - "name": "ImGuiStyleVar_SelectableTextAlign", + "name": "ImGuiStyleVar_TabBarBorderSize", "value": "24" }, { "calc_value": 25, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_TabBarOverlineSize", "value": "25" + }, + { + "calc_value": 26, + "name": "ImGuiStyleVar_TableAngledHeadersAngle", + "value": "26" + }, + { + "calc_value": 27, + "name": "ImGuiStyleVar_TableAngledHeadersTextAlign", + "value": "27" + }, + { + "calc_value": 28, + "name": "ImGuiStyleVar_ButtonTextAlign", + "value": "28" + }, + { + "calc_value": 29, + "name": "ImGuiStyleVar_SelectableTextAlign", + "value": "29" + }, + { + "calc_value": 30, + "name": "ImGuiStyleVar_SeparatorTextBorderSize", + "value": "30" + }, + { + "calc_value": 31, + "name": "ImGuiStyleVar_SeparatorTextAlign", + "value": "31" + }, + { + "calc_value": 32, + "name": "ImGuiStyleVar_SeparatorTextPadding", + "value": "32" + }, + { + "calc_value": 33, + "name": "ImGuiStyleVar_DockingSeparatorSize", + "value": "33" + }, + { + "calc_value": 34, + "name": "ImGuiStyleVar_COUNT", + "value": "34" } ], "ImGuiTabBarFlagsPrivate_": [ @@ -3644,21 +4138,26 @@ }, { "calc_value": 64, - "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", + "name": "ImGuiTabBarFlags_DrawSelectedOverline", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", "value": "1 << 7" }, { - "calc_value": 192, + "calc_value": 256, + "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "value": "1 << 8" + }, + { + "calc_value": 384, "name": "ImGuiTabBarFlags_FittingPolicyMask_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" }, { - "calc_value": 64, + "calc_value": 128, "name": "ImGuiTabBarFlags_FittingPolicyDefault_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown" } @@ -3683,11 +4182,6 @@ "calc_value": 4194304, "name": "ImGuiTabItemFlags_Unsorted", "value": "1 << 22" - }, - { - "calc_value": 8388608, - "name": "ImGuiTabItemFlags_Preview", - "value": "1 << 23" } ], "ImGuiTabItemFlags_": [ @@ -3735,6 +4229,11 @@ "calc_value": 128, "name": "ImGuiTabItemFlags_Trailing", "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiTabItemFlags_NoAssumedClosure", + "value": "1 << 8" } ], "ImGuiTableBgTarget_": [ @@ -3855,6 +4354,11 @@ "name": "ImGuiTableColumnFlags_IndentDisable", "value": "1 << 17" }, + { + "calc_value": 262144, + "name": "ImGuiTableColumnFlags_AngledHeader", + "value": "1 << 18" + }, { "calc_value": 16777216, "name": "ImGuiTableColumnFlags_IsEnabled", @@ -4072,6 +4576,11 @@ "name": "ImGuiTableFlags_SortTristate", "value": "1 << 27" }, + { + "calc_value": 268435456, + "name": "ImGuiTableFlags_HighlightHoveredColumn", + "value": "1 << 28" + }, { "calc_value": 57344, "name": "ImGuiTableFlags_SizingMask_", @@ -4109,16 +4618,26 @@ "value": "0" }, { - "calc_value": 1, - "name": "ImGuiTooltipFlags_OverridePreviousTooltip", - "value": "1 << 0" + "calc_value": 2, + "name": "ImGuiTooltipFlags_OverridePrevious", + "value": "1 << 1" } ], "ImGuiTreeNodeFlagsPrivate_": [ { - "calc_value": 1048576, + "calc_value": 268435456, "name": "ImGuiTreeNodeFlags_ClipLabelForTrailingButton", - "value": "1 << 20" + "value": "1 << 28" + }, + { + "calc_value": 536870912, + "name": "ImGuiTreeNodeFlags_UpsideDownArrow", + "value": "1 << 29" + }, + { + "calc_value": 192, + "name": "ImGuiTreeNodeFlags_OpenOnMask_", + "value": "ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow" } ], "ImGuiTreeNodeFlags_": [ @@ -4139,7 +4658,7 @@ }, { "calc_value": 4, - "name": "ImGuiTreeNodeFlags_AllowItemOverlap", + "name": "ImGuiTreeNodeFlags_AllowOverlap", "value": "1 << 2" }, { @@ -4194,15 +4713,42 @@ }, { "calc_value": 8192, - "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "name": "ImGuiTreeNodeFlags_SpanTextWidth", "value": "1 << 13" }, + { + "calc_value": 16384, + "name": "ImGuiTreeNodeFlags_SpanAllColumns", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "value": "1 << 15" + }, { "calc_value": 26, "name": "ImGuiTreeNodeFlags_CollapsingHeader", "value": "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" } ], + "ImGuiTypingSelectFlags_": [ + { + "calc_value": 0, + "name": "ImGuiTypingSelectFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiTypingSelectFlags_AllowBackspace", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiTypingSelectFlags_AllowSingleCharMode", + "value": "1 << 1" + } + ], "ImGuiViewportFlags_": [ { "calc_value": 0, @@ -4256,23 +4802,28 @@ }, { "calc_value": 512, - "name": "ImGuiViewportFlags_TopMost", + "name": "ImGuiViewportFlags_NoAutoMerge", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiViewportFlags_Minimized", + "name": "ImGuiViewportFlags_TopMost", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiViewportFlags_NoAutoMerge", + "name": "ImGuiViewportFlags_CanHostOtherWindows", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiViewportFlags_CanHostOtherWindows", + "name": "ImGuiViewportFlags_IsMinimized", "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiViewportFlags_IsFocused", + "value": "1 << 13" } ], "ImGuiWindowDockStyleCol": [ @@ -4283,33 +4834,43 @@ }, { "calc_value": 1, - "name": "ImGuiWindowDockStyleCol_Tab", + "name": "ImGuiWindowDockStyleCol_TabHovered", "value": "1" }, { "calc_value": 2, - "name": "ImGuiWindowDockStyleCol_TabHovered", + "name": "ImGuiWindowDockStyleCol_TabFocused", "value": "2" }, { "calc_value": 3, - "name": "ImGuiWindowDockStyleCol_TabActive", + "name": "ImGuiWindowDockStyleCol_TabSelected", "value": "3" }, { "calc_value": 4, - "name": "ImGuiWindowDockStyleCol_TabUnfocused", + "name": "ImGuiWindowDockStyleCol_TabSelectedOverline", "value": "4" }, { "calc_value": 5, - "name": "ImGuiWindowDockStyleCol_TabUnfocusedActive", + "name": "ImGuiWindowDockStyleCol_TabDimmed", "value": "5" }, { "calc_value": 6, - "name": "ImGuiWindowDockStyleCol_COUNT", + "name": "ImGuiWindowDockStyleCol_TabDimmedSelected", "value": "6" + }, + { + "calc_value": 7, + "name": "ImGuiWindowDockStyleCol_TabDimmedSelectedOverline", + "value": "7" + }, + { + "calc_value": 8, + "name": "ImGuiWindowDockStyleCol_COUNT", + "value": "8" } ], "ImGuiWindowFlags_": [ @@ -4400,31 +4961,26 @@ }, { "calc_value": 65536, - "name": "ImGuiWindowFlags_AlwaysUseWindowPadding", + "name": "ImGuiWindowFlags_NoNavInputs", "value": "1 << 16" }, + { + "calc_value": 131072, + "name": "ImGuiWindowFlags_NoNavFocus", + "value": "1 << 17" + }, { "calc_value": 262144, - "name": "ImGuiWindowFlags_NoNavInputs", + "name": "ImGuiWindowFlags_UnsavedDocument", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiWindowFlags_NoNavFocus", + "name": "ImGuiWindowFlags_NoDocking", "value": "1 << 19" }, { - "calc_value": 1048576, - "name": "ImGuiWindowFlags_UnsavedDocument", - "value": "1 << 20" - }, - { - "calc_value": 2097152, - "name": "ImGuiWindowFlags_NoDocking", - "value": "1 << 21" - }, - { - "calc_value": 786432, + "calc_value": 196608, "name": "ImGuiWindowFlags_NoNav", "value": "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, @@ -4434,15 +4990,10 @@ "value": "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" }, { - "calc_value": 786944, + "calc_value": 197120, "name": "ImGuiWindowFlags_NoInputs", "value": "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, - { - "calc_value": 8388608, - "name": "ImGuiWindowFlags_NavFlattened", - "value": "1 << 23" - }, { "calc_value": 16777216, "name": "ImGuiWindowFlags_ChildWindow", @@ -4473,188 +5024,234 @@ "name": "ImGuiWindowFlags_DockNodeHost", "value": "1 << 29" } + ], + "ImGuiWindowRefreshFlags_": [ + { + "calc_value": 0, + "name": "ImGuiWindowRefreshFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiWindowRefreshFlags_TryToAvoidRefresh", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiWindowRefreshFlags_RefreshOnHover", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiWindowRefreshFlags_RefreshOnFocus", + "value": "1 << 2" + } ] }, "enumtypes": { + "ImGuiDir": "int", "ImGuiKey": "int", - "ImGuiLocKey": "int" + "ImGuiLocKey": "int", + "ImGuiMouseSource": "int", + "ImGuiSortDirection": "ImU8" }, "locations": { - "ImBitVector": "imgui_internal:598", - "ImColor": "imgui:2455", - "ImDrawChannel": "imgui:2545", - "ImDrawCmd": "imgui:2504", - "ImDrawCmdHeader": "imgui:2537", - "ImDrawData": "imgui:2737", - "ImDrawDataBuilder": "imgui_internal:787", - "ImDrawFlags_": "imgui:2571", - "ImDrawList": "imgui:2609", - "ImDrawListFlags_": "imgui:2591", - "ImDrawListSharedData": "imgui_internal:764", - "ImDrawListSplitter": "imgui:2554", - "ImDrawVert": "imgui:2522", - "ImFont": "imgui:2957", - "ImFontAtlas": "imgui:2854", - "ImFontAtlasCustomRect": "imgui:2816", - "ImFontAtlasFlags_": "imgui:2829", - "ImFontBuilderIO": "imgui_internal:3497", - "ImFontConfig": "imgui:2760", - "ImFontGlyph": "imgui:2789", - "ImFontGlyphRangesBuilder": "imgui:2801", - "ImGuiActivateFlags_": "imgui_internal:1433", - "ImGuiAxis": "imgui_internal:953", - "ImGuiBackendFlags_": "imgui:1576", - "ImGuiButtonFlagsPrivate_": "imgui_internal:858", - "ImGuiButtonFlags_": "imgui:1690", - "ImGuiCol_": "imgui:1591", - "ImGuiColorEditFlags_": "imgui:1703", - "ImGuiColorMod": "imgui_internal:996", - "ImGuiComboFlagsPrivate_": "imgui_internal:883", - "ImGuiComboFlags_": "imgui:1124", - "ImGuiComboPreviewData": "imgui_internal:1013", - "ImGuiCond_": "imgui:1794", - "ImGuiConfigFlags_": "imgui:1551", - "ImGuiContext": "imgui_internal:1910", - "ImGuiContextHook": "imgui_internal:1895", - "ImGuiContextHookType": "imgui_internal:1893", - "ImGuiDataAuthority_": "imgui_internal:1604", - "ImGuiDataTypeInfo": "imgui_internal:979", - "ImGuiDataTypePrivate_": "imgui_internal:988", - "ImGuiDataTypeTempStorage": "imgui_internal:973", - "ImGuiDataType_": "imgui:1376", - "ImGuiDebugLogFlags_": "imgui_internal:1825", - "ImGuiDir_": "imgui:1392", - "ImGuiDockContext": "imgui_internal:1702", - "ImGuiDockNode": "imgui_internal:1620", - "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1579", - "ImGuiDockNodeFlags_": "imgui:1341", - "ImGuiDockNodeState": "imgui_internal:1611", - "ImGuiDragDropFlags_": "imgui:1354", - "ImGuiFocusedFlags_": "imgui:1301", - "ImGuiGroupData": "imgui_internal:1026", - "ImGuiHoveredFlags_": "imgui:1315", - "ImGuiIO": "imgui:1971", - "ImGuiInputEvent": "imgui_internal:1291", - "ImGuiInputEventAppFocused": "imgui_internal:1289", - "ImGuiInputEventKey": "imgui_internal:1287", - "ImGuiInputEventMouseButton": "imgui_internal:1285", - "ImGuiInputEventMousePos": "imgui_internal:1283", - "ImGuiInputEventMouseViewport": "imgui_internal:1286", - "ImGuiInputEventMouseWheel": "imgui_internal:1284", - "ImGuiInputEventText": "imgui_internal:1288", - "ImGuiInputEventType": "imgui_internal:1257", - "ImGuiInputFlags_": "imgui_internal:1354", - "ImGuiInputSource": "imgui_internal:1270", - "ImGuiInputTextCallbackData": "imgui:2159", - "ImGuiInputTextFlagsPrivate_": "imgui_internal:849", - "ImGuiInputTextFlags_": "imgui:1036", - "ImGuiInputTextState": "imgui_internal:1061", - "ImGuiItemFlags_": "imgui_internal:806", - "ImGuiItemStatusFlags_": "imgui_internal:826", - "ImGuiKey": "imgui:1414", - "ImGuiKeyData": "imgui:1963", - "ImGuiKeyOwnerData": "imgui_internal:1342", - "ImGuiKeyRoutingData": "imgui_internal:1317", - "ImGuiKeyRoutingTable": "imgui_internal:1330", - "ImGuiLastItemData": "imgui_internal:1176", - "ImGuiLayoutType_": "imgui_internal:937", - "ImGuiListClipper": "imgui:2404", - "ImGuiListClipperData": "imgui_internal:1417", - "ImGuiListClipperRange": "imgui_internal:1404", - "ImGuiLocEntry": "imgui_internal:1814", - "ImGuiLocKey": "imgui_internal:1801", - "ImGuiLogType": "imgui_internal:943", - "ImGuiMenuColumns": "imgui_internal:1042", - "ImGuiMetricsConfig": "imgui_internal:1841", - "ImGuiMouseButton_": "imgui:1766", - "ImGuiMouseCursor_": "imgui:1776", - "ImGuiNavHighlightFlags_": "imgui_internal:1456", - "ImGuiNavInput": "imgui:1542", - "ImGuiNavItemData": "imgui_internal:1490", - "ImGuiNavLayer": "imgui_internal:1483", - "ImGuiNavMoveFlags_": "imgui_internal:1465", - "ImGuiNextItemData": "imgui_internal:1163", - "ImGuiNextItemDataFlags_": "imgui_internal:1156", - "ImGuiNextWindowData": "imgui_internal:1129", - "ImGuiNextWindowDataFlags_": "imgui_internal:1112", - "ImGuiOldColumnData": "imgui_internal:1530", - "ImGuiOldColumnFlags_": "imgui_internal:1510", - "ImGuiOldColumns": "imgui_internal:1540", - "ImGuiOnceUponAFrame": "imgui:2279", - "ImGuiPayload": "imgui:2220", - "ImGuiPlatformIO": "imgui:3122", - "ImGuiPlatformImeData": "imgui:3194", - "ImGuiPlatformMonitor": "imgui:3185", - "ImGuiPlotType": "imgui_internal:960", - "ImGuiPopupData": "imgui_internal:1098", - "ImGuiPopupFlags_": "imgui:1097", - "ImGuiPopupPositionPolicy": "imgui_internal:966", - "ImGuiPtrOrIndex": "imgui_internal:1220", - "ImGuiScrollFlags_": "imgui_internal:1442", - "ImGuiSelectableFlagsPrivate_": "imgui_internal:896", - "ImGuiSelectableFlags_": "imgui:1113", - "ImGuiSeparatorFlags_": "imgui_internal:915", - "ImGuiSettingsHandler": "imgui_internal:1781", - "ImGuiShrinkWidthItem": "imgui_internal:1213", - "ImGuiSizeCallbackData": "imgui:2190", - "ImGuiSliderFlagsPrivate_": "imgui_internal:889", - "ImGuiSliderFlags_": "imgui:1749", - "ImGuiSortDirection_": "imgui:1403", - "ImGuiStackLevelInfo": "imgui_internal:1864", - "ImGuiStackSizes": "imgui_internal:1188", - "ImGuiStackTool": "imgui_internal:1876", - "ImGuiStorage": "imgui:2341", - "ImGuiStoragePair": "imgui:2344", - "ImGuiStyle": "imgui:1906", - "ImGuiStyleMod": "imgui_internal:1003", - "ImGuiStyleVar_": "imgui:1658", - "ImGuiTabBar": "imgui_internal:2625", - "ImGuiTabBarFlagsPrivate_": "imgui_internal:2587", - "ImGuiTabBarFlags_": "imgui:1138", - "ImGuiTabItem": "imgui_internal:2605", - "ImGuiTabItemFlagsPrivate_": "imgui_internal:2595", - "ImGuiTabItemFlags_": "imgui:1154", - "ImGuiTable": "imgui_internal:2762", - "ImGuiTableBgTarget_": "imgui:1292", - "ImGuiTableCellData": "imgui_internal:2745", - "ImGuiTableColumn": "imgui_internal:2686", - "ImGuiTableColumnFlags_": "imgui:1240", - "ImGuiTableColumnSettings": "imgui_internal:2899", - "ImGuiTableColumnSortSpecs": "imgui:2242", - "ImGuiTableFlags_": "imgui:1189", - "ImGuiTableInstanceData": "imgui_internal:2752", - "ImGuiTableRowFlags_": "imgui:1277", - "ImGuiTableSettings": "imgui_internal:2923", - "ImGuiTableSortSpecs": "imgui:2256", - "ImGuiTableTempData": "imgui_internal:2878", - "ImGuiTextBuffer": "imgui:2314", - "ImGuiTextFilter": "imgui:2287", - "ImGuiTextFlags_": "imgui_internal:923", - "ImGuiTextIndex": "imgui_internal:721", - "ImGuiTextRange": "imgui:2297", - "ImGuiTooltipFlags_": "imgui_internal:929", - "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:910", - "ImGuiTreeNodeFlags_": "imgui:1068", - "ImGuiViewport": "imgui:3038", - "ImGuiViewportFlags_": "imgui:3013", - "ImGuiViewportP": "imgui_internal:1719", - "ImGuiWindow": "imgui_internal:2440", - "ImGuiWindowClass": "imgui:2205", - "ImGuiWindowDockStyle": "imgui_internal:1697", - "ImGuiWindowDockStyleCol": "imgui_internal:1686", - "ImGuiWindowFlags_": "imgui:995", - "ImGuiWindowSettings": "imgui_internal:1764", - "ImGuiWindowStackData": "imgui_internal:1206", - "ImGuiWindowTempData": "imgui_internal:2392", - "ImRect": "imgui_internal:526", - "ImVec1": "imgui_internal:508", - "ImVec2": "imgui:259", - "ImVec2ih": "imgui_internal:516", - "ImVec4": "imgui:272", - "STB_TexteditState": "imstb_textedit:320", - "StbTexteditRow": "imstb_textedit:367", - "StbUndoRecord": "imstb_textedit:302", - "StbUndoState": "imstb_textedit:311" + "ImBitVector": "imgui_internal:607", + "ImColor": "imgui:2845", + "ImDrawChannel": "imgui:3083", + "ImDrawCmd": "imgui:3042", + "ImDrawCmdHeader": "imgui:3075", + "ImDrawData": "imgui:3288", + "ImDrawDataBuilder": "imgui_internal:796", + "ImDrawFlags_": "imgui:3109", + "ImDrawList": "imgui:3147", + "ImDrawListFlags_": "imgui:3129", + "ImDrawListSharedData": "imgui_internal:772", + "ImDrawListSplitter": "imgui:3092", + "ImDrawVert": "imgui:3060", + "ImFont": "imgui:3511", + "ImFontAtlas": "imgui:3407", + "ImFontAtlasCustomRect": "imgui:3369", + "ImFontAtlasFlags_": "imgui:3382", + "ImFontBuilderIO": "imgui_internal:3983", + "ImFontConfig": "imgui:3312", + "ImFontGlyph": "imgui:3342", + "ImFontGlyphRangesBuilder": "imgui:3354", + "ImGuiActivateFlags_": "imgui_internal:1550", + "ImGuiAxis": "imgui_internal:1018", + "ImGuiBackendFlags_": "imgui:1679", + "ImGuiBoxSelectState": "imgui_internal:1733", + "ImGuiButtonFlagsPrivate_": "imgui_internal:911", + "ImGuiButtonFlags_": "imgui:1812", + "ImGuiChildFlags_": "imgui:1148", + "ImGuiCol_": "imgui:1694", + "ImGuiColorEditFlags_": "imgui:1823", + "ImGuiColorMod": "imgui_internal:1032", + "ImGuiComboFlagsPrivate_": "imgui_internal:936", + "ImGuiComboFlags_": "imgui:1291", + "ImGuiComboPreviewData": "imgui_internal:1049", + "ImGuiCond_": "imgui:1925", + "ImGuiConfigFlags_": "imgui:1653", + "ImGuiContext": "imgui_internal:2184", + "ImGuiContextHook": "imgui_internal:2169", + "ImGuiContextHookType": "imgui_internal:2167", + "ImGuiDataAuthority_": "imgui_internal:1844", + "ImGuiDataTypeInfo": "imgui_internal:822", + "ImGuiDataTypePrivate_": "imgui_internal:831", + "ImGuiDataTypeStorage": "imgui_internal:816", + "ImGuiDataType_": "imgui:1439", + "ImGuiDataVarInfo": "imgui_internal:808", + "ImGuiDebugAllocEntry": "imgui_internal:2103", + "ImGuiDebugAllocInfo": "imgui_internal:2110", + "ImGuiDebugLogFlags_": "imgui_internal:2083", + "ImGuiDir": "imgui:1456", + "ImGuiDockContext": "imgui_internal:1946", + "ImGuiDockNode": "imgui_internal:1860", + "ImGuiDockNodeFlagsPrivate_": "imgui_internal:1814", + "ImGuiDockNodeFlags_": "imgui:1392", + "ImGuiDockNodeState": "imgui_internal:1851", + "ImGuiDragDropFlags_": "imgui:1411", + "ImGuiFocusRequestFlags_": "imgui_internal:981", + "ImGuiFocusScopeData": "imgui_internal:1630", + "ImGuiFocusedFlags_": "imgui:1338", + "ImGuiGroupData": "imgui_internal:1062", + "ImGuiHoveredFlagsPrivate_": "imgui_internal:893", + "ImGuiHoveredFlags_": "imgui:1352", + "ImGuiIDStackTool": "imgui_internal:2150", + "ImGuiIO": "imgui:2298", + "ImGuiInputEvent": "imgui_internal:1410", + "ImGuiInputEventAppFocused": "imgui_internal:1408", + "ImGuiInputEventKey": "imgui_internal:1406", + "ImGuiInputEventMouseButton": "imgui_internal:1404", + "ImGuiInputEventMousePos": "imgui_internal:1402", + "ImGuiInputEventMouseViewport": "imgui_internal:1405", + "ImGuiInputEventMouseWheel": "imgui_internal:1403", + "ImGuiInputEventText": "imgui_internal:1407", + "ImGuiInputEventType": "imgui_internal:1378", + "ImGuiInputFlagsPrivate_": "imgui_internal:1477", + "ImGuiInputFlags_": "imgui:1618", + "ImGuiInputSource": "imgui_internal:1391", + "ImGuiInputTextCallbackData": "imgui:2524", + "ImGuiInputTextDeactivatedState": "imgui_internal:1098", + "ImGuiInputTextFlagsPrivate_": "imgui_internal:901", + "ImGuiInputTextFlags_": "imgui:1182", + "ImGuiInputTextState": "imgui_internal:1120", + "ImGuiItemFlagsPrivate_": "imgui_internal:845", + "ImGuiItemFlags_": "imgui:1169", + "ImGuiItemStatusFlags_": "imgui_internal:867", + "ImGuiKey": "imgui:1485", + "ImGuiKeyData": "imgui:2290", + "ImGuiKeyOwnerData": "imgui_internal:1464", + "ImGuiKeyRoutingData": "imgui_internal:1438", + "ImGuiKeyRoutingTable": "imgui_internal:1452", + "ImGuiLastItemData": "imgui_internal:1254", + "ImGuiLayoutType_": "imgui_internal:1002", + "ImGuiListClipper": "imgui:2753", + "ImGuiListClipperData": "imgui_internal:1534", + "ImGuiListClipperRange": "imgui_internal:1521", + "ImGuiLocEntry": "imgui_internal:2072", + "ImGuiLocKey": "imgui_internal:2054", + "ImGuiLogType": "imgui_internal:1008", + "ImGuiMenuColumns": "imgui_internal:1080", + "ImGuiMetricsConfig": "imgui_internal:2120", + "ImGuiMouseButton_": "imgui:1885", + "ImGuiMouseCursor_": "imgui:1895", + "ImGuiMouseSource": "imgui:1914", + "ImGuiMultiSelectFlags_": "imgui:2903", + "ImGuiMultiSelectIO": "imgui:2930", + "ImGuiMultiSelectState": "imgui_internal:1790", + "ImGuiMultiSelectTempData": "imgui_internal:1765", + "ImGuiNavHighlightFlags_": "imgui_internal:1575", + "ImGuiNavItemData": "imgui_internal:1613", + "ImGuiNavLayer": "imgui_internal:1605", + "ImGuiNavMoveFlags_": "imgui_internal:1583", + "ImGuiNextItemData": "imgui_internal:1234", + "ImGuiNextItemDataFlags_": "imgui_internal:1224", + "ImGuiNextWindowData": "imgui_internal:1195", + "ImGuiNextWindowDataFlags_": "imgui_internal:1176", + "ImGuiOldColumnData": "imgui_internal:1698", + "ImGuiOldColumnFlags_": "imgui_internal:1678", + "ImGuiOldColumns": "imgui_internal:1708", + "ImGuiOnceUponAFrame": "imgui:2624", + "ImGuiPayload": "imgui:2589", + "ImGuiPlatformIO": "imgui:3682", + "ImGuiPlatformImeData": "imgui:3781", + "ImGuiPlatformMonitor": "imgui:3771", + "ImGuiPlotType": "imgui_internal:1025", + "ImGuiPopupData": "imgui_internal:1335", + "ImGuiPopupFlags_": "imgui:1256", + "ImGuiPopupPositionPolicy": "imgui_internal:1327", + "ImGuiPtrOrIndex": "imgui_internal:1314", + "ImGuiScrollFlags_": "imgui_internal:1561", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:949", + "ImGuiSelectableFlags_": "imgui:1274", + "ImGuiSelectionBasicStorage": "imgui:2976", + "ImGuiSelectionExternalStorage": "imgui:2999", + "ImGuiSelectionRequest": "imgui:2950", + "ImGuiSelectionRequestType": "imgui:2942", + "ImGuiSeparatorFlags_": "imgui_internal:970", + "ImGuiSettingsHandler": "imgui_internal:2034", + "ImGuiShrinkWidthItem": "imgui_internal:1307", + "ImGuiSizeCallbackData": "imgui:2558", + "ImGuiSliderFlagsPrivate_": "imgui_internal:942", + "ImGuiSliderFlags_": "imgui:1869", + "ImGuiSortDirection": "imgui:1467", + "ImGuiStackLevelInfo": "imgui_internal:2138", + "ImGuiStackSizes": "imgui_internal:1281", + "ImGuiStorage": "imgui:2696", + "ImGuiStoragePair": "imgui:2679", + "ImGuiStyle": "imgui:2212", + "ImGuiStyleMod": "imgui_internal:1039", + "ImGuiStyleVar_": "imgui:1771", + "ImGuiTabBar": "imgui_internal:3013", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:2976", + "ImGuiTabBarFlags_": "imgui:1306", + "ImGuiTabItem": "imgui_internal:2993", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:2984", + "ImGuiTabItemFlags_": "imgui:1323", + "ImGuiTable": "imgui_internal:3159", + "ImGuiTableBgTarget_": "imgui:2066", + "ImGuiTableCellData": "imgui_internal:3127", + "ImGuiTableColumn": "imgui_internal:3067", + "ImGuiTableColumnFlags_": "imgui:2013", + "ImGuiTableColumnSettings": "imgui_internal:3306", + "ImGuiTableColumnSortSpecs": "imgui:2088", + "ImGuiTableFlags_": "imgui:1960", + "ImGuiTableHeaderData": "imgui_internal:3136", + "ImGuiTableInstanceData": "imgui_internal:3146", + "ImGuiTableRowFlags_": "imgui:2051", + "ImGuiTableSettings": "imgui_internal:3330", + "ImGuiTableSortSpecs": "imgui:2078", + "ImGuiTableTempData": "imgui_internal:3283", + "ImGuiTextBuffer": "imgui:2659", + "ImGuiTextFilter": "imgui:2632", + "ImGuiTextFlags_": "imgui_internal:988", + "ImGuiTextIndex": "imgui_internal:727", + "ImGuiTextRange": "imgui:2642", + "ImGuiTooltipFlags_": "imgui_internal:994", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:963", + "ImGuiTreeNodeFlags_": "imgui:1221", + "ImGuiTreeNodeStackData": "imgui_internal:1273", + "ImGuiTypingSelectFlags_": "imgui_internal:1641", + "ImGuiTypingSelectRequest": "imgui_internal:1649", + "ImGuiTypingSelectState": "imgui_internal:1660", + "ImGuiViewport": "imgui:3597", + "ImGuiViewportFlags_": "imgui:3569", + "ImGuiViewportP": "imgui_internal:1963", + "ImGuiWindow": "imgui_internal:2824", + "ImGuiWindowClass": "imgui:2573", + "ImGuiWindowDockStyle": "imgui_internal:1941", + "ImGuiWindowDockStyleCol": "imgui_internal:1927", + "ImGuiWindowFlags_": "imgui:1097", + "ImGuiWindowRefreshFlags_": "imgui_internal:1167", + "ImGuiWindowSettings": "imgui_internal:2015", + "ImGuiWindowStackData": "imgui_internal:1299", + "ImGuiWindowTempData": "imgui_internal:2774", + "ImRect": "imgui_internal:529", + "ImVec1": "imgui_internal:511", + "ImVec2": "imgui:293", + "ImVec2ih": "imgui_internal:519", + "ImVec4": "imgui:306" }, "structs": { "ImBitVector": [ @@ -4745,7 +5342,8 @@ }, { "name": "CmdLists", - "type": "ImDrawList**" + "template_type": "ImDrawList*", + "type": "ImVector_ImDrawListPtr" }, { "name": "DisplayPos", @@ -4769,6 +5367,11 @@ "name": "Layers[2]", "size": 2, "template_type": "ImDrawList*", + "type": "ImVector_ImDrawListPtr*" + }, + { + "name": "LayerData1", + "template_type": "ImDrawList*", "type": "ImVector_ImDrawListPtr" } ], @@ -4800,10 +5403,6 @@ "name": "_Data", "type": "ImDrawListSharedData*" }, - { - "name": "_OwnerName", - "type": "const char*" - }, { "name": "_VtxWritePtr", "type": "ImDrawVert*" @@ -4812,16 +5411,6 @@ "name": "_IdxWritePtr", "type": "ImDrawIdx*" }, - { - "name": "_ClipRectStack", - "template_type": "ImVec4", - "type": "ImVector_ImVec4" - }, - { - "name": "_TextureIdStack", - "template_type": "ImTextureID", - "type": "ImVector_ImTextureID" - }, { "name": "_Path", "template_type": "ImVec2", @@ -4835,9 +5424,23 @@ "name": "_Splitter", "type": "ImDrawListSplitter" }, + { + "name": "_ClipRectStack", + "template_type": "ImVec4", + "type": "ImVector_ImVec4" + }, + { + "name": "_TextureIdStack", + "template_type": "ImTextureID", + "type": "ImVector_ImTextureID" + }, { "name": "_FringeScale", "type": "float" + }, + { + "name": "_OwnerName", + "type": "const char*" } ], "ImDrawListSharedData": [ @@ -4853,6 +5456,10 @@ "name": "FontSize", "type": "float" }, + { + "name": "FontScale", + "type": "float" + }, { "name": "CurveTessellationTol", "type": "float" @@ -4971,8 +5578,16 @@ "type": "ImWchar" }, { - "name": "DotChar", - "type": "ImWchar" + "name": "EllipsisCharCount", + "type": "short" + }, + { + "name": "EllipsisWidth", + "type": "float" + }, + { + "name": "EllipsisCharStep", + "type": "float" }, { "name": "DirtyLookupTables", @@ -5199,6 +5814,10 @@ "name": "RasterizerMultiply", "type": "float" }, + { + "name": "RasterizerDensity", + "type": "float" + }, { "name": "EllipsisChar", "type": "ImWchar" @@ -5273,6 +5892,69 @@ "type": "ImVector_ImU32" } ], + "ImGuiBoxSelectState": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "IsActive", + "type": "bool" + }, + { + "name": "IsStarting", + "type": "bool" + }, + { + "name": "IsStartedFromVoid", + "type": "bool" + }, + { + "name": "IsStartedSetNavIdOnce", + "type": "bool" + }, + { + "name": "RequestClear", + "type": "bool" + }, + { + "bitfield": "16", + "name": "KeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "StartPosRel", + "type": "ImVec2" + }, + { + "name": "EndPosRel", + "type": "ImVec2" + }, + { + "name": "ScrollAccum", + "type": "ImVec2" + }, + { + "name": "Window", + "type": "ImGuiWindow*" + }, + { + "name": "UnclipMode", + "type": "bool" + }, + { + "name": "UnclipRect", + "type": "ImRect" + }, + { + "name": "BoxSelectRectPrev", + "type": "ImRect" + }, + { + "name": "BoxSelectRectCurr", + "type": "ImRect" + } + ], "ImGuiColorMod": [ { "name": "Col", @@ -5326,16 +6008,6 @@ "name": "PlatformIO", "type": "ImGuiPlatformIO" }, - { - "name": "InputEventsQueue", - "template_type": "ImGuiInputEvent", - "type": "ImVector_ImGuiInputEvent" - }, - { - "name": "InputEventsTrail", - "template_type": "ImGuiInputEvent", - "type": "ImVector_ImGuiInputEvent" - }, { "name": "Style", "type": "ImGuiStyle" @@ -5360,6 +6032,14 @@ "name": "FontBaseSize", "type": "float" }, + { + "name": "FontScale", + "type": "float" + }, + { + "name": "CurrentDpiScale", + "type": "float" + }, { "name": "DrawListSharedData", "type": "ImDrawListSharedData" @@ -5408,6 +6088,29 @@ "name": "TestEngine", "type": "void*" }, + { + "name": "ContextName[16]", + "size": 16, + "type": "char" + }, + { + "name": "InputEventsQueue", + "template_type": "ImGuiInputEvent", + "type": "ImVector_ImGuiInputEvent" + }, + { + "name": "InputEventsTrail", + "template_type": "ImGuiInputEvent", + "type": "ImVector_ImGuiInputEvent" + }, + { + "name": "InputEventsNextMouseSource", + "type": "ImGuiMouseSource" + }, + { + "name": "InputEventsNextEventId", + "type": "ImU32" + }, { "name": "Windows", "template_type": "ImGuiWindow*", @@ -5440,6 +6143,10 @@ "name": "WindowsHoverPadding", "type": "ImVec2" }, + { + "name": "DebugBreakInWindow", + "type": "ImGuiID" + }, { "name": "CurrentWindow", "type": "ImGuiWindow*" @@ -5452,6 +6159,10 @@ "name": "HoveredWindowUnderMovingWindow", "type": "ImGuiWindow*" }, + { + "name": "HoveredWindowBeforeClear", + "type": "ImGuiWindow*" + }, { "name": "MovingWindow", "type": "ImGuiWindow*" @@ -5468,6 +6179,10 @@ "name": "WheelingWindowStartFrame", "type": "int" }, + { + "name": "WheelingWindowScrolledFrame", + "type": "int" + }, { "name": "WheelingWindowReleaseTimer", "type": "float" @@ -5480,6 +6195,10 @@ "name": "WheelingAxisAvg", "type": "ImVec2" }, + { + "name": "DebugDrawIdConflicts", + "type": "ImGuiID" + }, { "name": "DebugHookIdInfo", "type": "ImGuiID" @@ -5493,12 +6212,8 @@ "type": "ImGuiID" }, { - "name": "HoveredIdAllowOverlap", - "type": "bool" - }, - { - "name": "HoveredIdDisabled", - "type": "bool" + "name": "HoveredIdPreviousFrameItemCount", + "type": "int" }, { "name": "HoveredIdTimer", @@ -5508,6 +6223,18 @@ "name": "HoveredIdNotActiveTimer", "type": "float" }, + { + "name": "HoveredIdAllowOverlap", + "type": "bool" + }, + { + "name": "HoveredIdIsDisabled", + "type": "bool" + }, + { + "name": "ItemUnclipByLog", + "type": "bool" + }, { "name": "ActiveId", "type": "ImGuiID" @@ -5544,6 +6271,15 @@ "name": "ActiveIdHasBeenEditedThisFrame", "type": "bool" }, + { + "name": "ActiveIdFromShortcut", + "type": "bool" + }, + { + "bitfield": "8", + "name": "ActiveIdMouseButton", + "type": "int" + }, { "name": "ActiveIdClickOffset", "type": "ImVec2" @@ -5556,10 +6292,6 @@ "name": "ActiveIdSource", "type": "ImGuiInputSource" }, - { - "name": "ActiveIdMouseButton", - "type": "int" - }, { "name": "ActiveIdPreviousFrame", "type": "ImGuiID" @@ -5584,9 +6316,25 @@ "name": "LastActiveIdTimer", "type": "float" }, + { + "name": "LastKeyModsChangeTime", + "type": "double" + }, + { + "name": "LastKeyModsChangeFromNoneTime", + "type": "double" + }, + { + "name": "LastKeyboardKeyPressTime", + "type": "double" + }, + { + "name": "KeysMayBeCharInput", + "type": "ImBitArrayForNamedKeys" + }, { "name": "KeysOwnerData[ImGuiKey_NamedKey_COUNT]", - "size": 140, + "size": 154, "type": "ImGuiKeyOwnerData" }, { @@ -5602,8 +6350,8 @@ "type": "bool" }, { - "name": "ActiveIdUsingNavInputMask", - "type": "ImU32" + "name": "DebugBreakInShortcutRouting", + "type": "ImGuiKeyChord" }, { "name": "CurrentFocusScopeId", @@ -5629,6 +6377,14 @@ "name": "NextWindowData", "type": "ImGuiNextWindowData" }, + { + "name": "DebugShowGroupRects", + "type": "bool" + }, + { + "name": "DebugFlashStyleColorIdx", + "type": "ImGuiCol" + }, { "name": "ColorStack", "template_type": "ImGuiColorMod", @@ -5646,8 +6402,8 @@ }, { "name": "FocusScopeStack", - "template_type": "ImGuiID", - "type": "ImVector_ImGuiID" + "template_type": "ImGuiFocusScopeData", + "type": "ImVector_ImGuiFocusScopeData" }, { "name": "ItemFlagsStack", @@ -5670,18 +6426,15 @@ "type": "ImVector_ImGuiPopupData" }, { - "name": "BeginMenuCount", - "type": "int" + "name": "TreeNodeStack", + "template_type": "ImGuiTreeNodeStackData", + "type": "ImVector_ImGuiTreeNodeStackData" }, { "name": "Viewports", "template_type": "ImGuiViewportP*", "type": "ImVector_ImGuiViewportPPtr" }, - { - "name": "CurrentDpiScale", - "type": "float" - }, { "name": "CurrentViewport", "type": "ImGuiViewportP*" @@ -5703,7 +6456,19 @@ "type": "ImGuiPlatformMonitor" }, { - "name": "ViewportFrontMostStampCount", + "name": "PlatformMonitorsFullWorkRect", + "type": "ImRect" + }, + { + "name": "ViewportCreatedCount", + "type": "int" + }, + { + "name": "PlatformWindowsCreatedCount", + "type": "int" + }, + { + "name": "ViewportFocusedStampCount", "type": "int" }, { @@ -5718,6 +6483,10 @@ "name": "NavFocusScopeId", "type": "ImGuiID" }, + { + "name": "NavLayer", + "type": "ImGuiNavLayer" + }, { "name": "NavActivateId", "type": "ImGuiID" @@ -5730,25 +6499,22 @@ "name": "NavActivatePressedId", "type": "ImGuiID" }, - { - "name": "NavActivateInputId", - "type": "ImGuiID" - }, { "name": "NavActivateFlags", "type": "ImGuiActivateFlags" }, { - "name": "NavJustMovedToId", + "name": "NavFocusRoute", + "template_type": "ImGuiFocusScopeData", + "type": "ImVector_ImGuiFocusScopeData" + }, + { + "name": "NavHighlightActivatedId", "type": "ImGuiID" }, { - "name": "NavJustMovedToFocusScopeId", - "type": "ImGuiID" - }, - { - "name": "NavJustMovedToKeyMods", - "type": "ImGuiKeyChord" + "name": "NavHighlightActivatedTimer", + "type": "float" }, { "name": "NavNextActivateId", @@ -5763,8 +6529,8 @@ "type": "ImGuiInputSource" }, { - "name": "NavLayer", - "type": "ImGuiNavLayer" + "name": "NavLastValidSelectionUserData", + "type": "ImGuiSelectionUserData" }, { "name": "NavIdIsAlive", @@ -5795,12 +6561,8 @@ "type": "bool" }, { - "name": "NavInitResultId", - "type": "ImGuiID" - }, - { - "name": "NavInitResultRectRel", - "type": "ImRect" + "name": "NavInitResult", + "type": "ImGuiNavItemData" }, { "name": "NavMoveSubmitted", @@ -5874,6 +6636,30 @@ "name": "NavTabbingResultFirst", "type": "ImGuiNavItemData" }, + { + "name": "NavJustMovedFromFocusScopeId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToFocusScopeId", + "type": "ImGuiID" + }, + { + "name": "NavJustMovedToKeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "NavJustMovedToIsTabbing", + "type": "bool" + }, + { + "name": "NavJustMovedToHasSelectionData", + "type": "bool" + }, { "name": "ConfigNavWindowingKeyNext", "type": "ImGuiKeyChord" @@ -5906,6 +6692,10 @@ "name": "NavWindowingToggleLayer", "type": "bool" }, + { + "name": "NavWindowingToggleKey", + "type": "ImGuiKey" + }, { "name": "NavWindowingAccumDeltaPos", "type": "ImVec2" @@ -5918,10 +6708,6 @@ "name": "DimBgRatio", "type": "float" }, - { - "name": "MouseCursor", - "type": "ImGuiMouseCursor" - }, { "name": "DragDropActive", "type": "bool" @@ -5954,6 +6740,10 @@ "name": "DragDropTargetRect", "type": "ImRect" }, + { + "name": "DragDropTargetClipRect", + "type": "ImRect" + }, { "name": "DragDropTargetId", "type": "ImGuiID" @@ -6005,6 +6795,10 @@ "name": "CurrentTable", "type": "ImGuiTable*" }, + { + "name": "DebugBreakInTable", + "type": "ImGuiID" + }, { "name": "TablesTempDataStacked", "type": "int" @@ -6049,19 +6843,57 @@ "type": "ImVector_ImGuiShrinkWidthItem" }, { - "name": "HoverDelayId", + "name": "BoxSelectState", + "type": "ImGuiBoxSelectState" + }, + { + "name": "CurrentMultiSelect", + "type": "ImGuiMultiSelectTempData*" + }, + { + "name": "MultiSelectTempDataStacked", + "type": "int" + }, + { + "name": "MultiSelectTempData", + "template_type": "ImGuiMultiSelectTempData", + "type": "ImVector_ImGuiMultiSelectTempData" + }, + { + "name": "MultiSelectStorage", + "template_type": "ImGuiMultiSelectState", + "type": "ImPool_ImGuiMultiSelectState" + }, + { + "name": "HoverItemDelayId", "type": "ImGuiID" }, { - "name": "HoverDelayIdPreviousFrame", + "name": "HoverItemDelayIdPreviousFrame", "type": "ImGuiID" }, { - "name": "HoverDelayTimer", + "name": "HoverItemDelayTimer", "type": "float" }, { - "name": "HoverDelayClearTimer", + "name": "HoverItemDelayClearTimer", + "type": "float" + }, + { + "name": "HoverItemUnlockedStationaryId", + "type": "ImGuiID" + }, + { + "name": "HoverWindowUnlockedStationaryId", + "type": "ImGuiID" + }, + { + "name": "MouseCursor", + "type": "ImGuiMouseCursor" + }, + { + "name": "MouseStationaryTimer", "type": "float" }, { @@ -6072,6 +6904,10 @@ "name": "InputTextState", "type": "ImGuiInputTextState" }, + { + "name": "InputTextDeactivatedState", + "type": "ImGuiInputTextDeactivatedState" + }, { "name": "InputTextPasswordFont", "type": "ImFont" @@ -6080,20 +6916,40 @@ "name": "TempInputId", "type": "ImGuiID" }, + { + "name": "DataTypeZeroValue", + "type": "ImGuiDataTypeStorage" + }, + { + "name": "BeginMenuDepth", + "type": "int" + }, + { + "name": "BeginComboDepth", + "type": "int" + }, { "name": "ColorEditOptions", "type": "ImGuiColorEditFlags" }, { - "name": "ColorEditLastHue", + "name": "ColorEditCurrentID", + "type": "ImGuiID" + }, + { + "name": "ColorEditSavedID", + "type": "ImGuiID" + }, + { + "name": "ColorEditSavedHue", "type": "float" }, { - "name": "ColorEditLastSat", + "name": "ColorEditSavedSat", "type": "float" }, { - "name": "ColorEditLastColor", + "name": "ColorEditSavedColor", "type": "ImU32" }, { @@ -6104,6 +6960,22 @@ "name": "ComboPreviewData", "type": "ImGuiComboPreviewData" }, + { + "name": "WindowResizeBorderExpectedRect", + "type": "ImRect" + }, + { + "name": "WindowResizeRelativeMode", + "type": "bool" + }, + { + "name": "ScrollbarSeekMode", + "type": "short" + }, + { + "name": "ScrollbarClickDeltaToGrabCenter", + "type": "float" + }, { "name": "SliderGrabClickOffset", "type": "float" @@ -6128,10 +7000,6 @@ "name": "DragSpeedDefaultRatio", "type": "float" }, - { - "name": "ScrollbarClickDeltaToGrabCenter", - "type": "float" - }, { "name": "DisabledAlphaBackup", "type": "float" @@ -6140,6 +7008,10 @@ "name": "DisabledStackSize", "type": "short" }, + { + "name": "LockMarkEdited", + "type": "short" + }, { "name": "TooltipOverrideCount", "type": "short" @@ -6154,6 +7026,10 @@ "template_type": "ImGuiID", "type": "ImVector_ImGuiID" }, + { + "name": "TypingSelectState", + "type": "ImGuiTypingSelectState" + }, { "name": "PlatformImeData", "type": "ImGuiPlatformImeData" @@ -6166,14 +7042,14 @@ "name": "PlatformImeViewport", "type": "ImGuiID" }, - { - "name": "PlatformLocaleDecimalPoint", - "type": "char" - }, { "name": "DockContext", "type": "ImGuiDockContext" }, + { + "name": "DockNodeWindowMenuHandler", + "type": "void(*)(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" + }, { "name": "SettingsLoaded", "type": "bool" @@ -6212,7 +7088,7 @@ }, { "name": "LocalizationTable[ImGuiLocKey_COUNT]", - "size": 8, + "size": 13, "type": "const char*" }, { @@ -6271,10 +7147,30 @@ "name": "DebugLogIndex", "type": "ImGuiTextIndex" }, + { + "name": "DebugLogAutoDisableFlags", + "type": "ImGuiDebugLogFlags" + }, + { + "name": "DebugLogAutoDisableFrames", + "type": "ImU8" + }, { "name": "DebugLocateFrames", "type": "ImU8" }, + { + "name": "DebugBreakInLocateId", + "type": "bool" + }, + { + "name": "DebugBreakKeyChord", + "type": "ImGuiKeyChord" + }, + { + "name": "DebugBeginReturnValueCullDepth", + "type": "ImS8" + }, { "name": "DebugItemPickerActive", "type": "bool" @@ -6287,13 +7183,25 @@ "name": "DebugItemPickerBreakId", "type": "ImGuiID" }, + { + "name": "DebugFlashStyleColorTime", + "type": "float" + }, + { + "name": "DebugFlashStyleColorBackup", + "type": "ImVec4" + }, { "name": "DebugMetricsConfig", "type": "ImGuiMetricsConfig" }, { - "name": "DebugStackTool", - "type": "ImGuiStackTool" + "name": "DebugIDStackTool", + "type": "ImGuiIDStackTool" + }, + { + "name": "DebugAllocInfo", + "type": "ImGuiDebugAllocInfo" }, { "name": "DebugHoveredDockNode", @@ -6332,6 +7240,11 @@ "name": "TempBuffer", "template_type": "char", "type": "ImVector_char" + }, + { + "name": "TempKeychordName[64]", + "size": 64, + "type": "char" } ], "ImGuiContextHook": [ @@ -6374,13 +7287,60 @@ "type": "const char*" } ], - "ImGuiDataTypeTempStorage": [ + "ImGuiDataTypeStorage": [ { "name": "Data[8]", "size": 8, "type": "ImU8" } ], + "ImGuiDataVarInfo": [ + { + "name": "Type", + "type": "ImGuiDataType" + }, + { + "name": "Count", + "type": "ImU32" + }, + { + "name": "Offset", + "type": "ImU32" + } + ], + "ImGuiDebugAllocEntry": [ + { + "name": "FrameCount", + "type": "int" + }, + { + "name": "AllocCount", + "type": "ImS16" + }, + { + "name": "FreeCount", + "type": "ImS16" + } + ], + "ImGuiDebugAllocInfo": [ + { + "name": "TotalAllocCount", + "type": "int" + }, + { + "name": "TotalFreeCount", + "type": "int" + }, + { + "name": "LastEntriesIdx", + "type": "ImS16" + }, + { + "name": "LastEntriesBuf[6]", + "size": 6, + "type": "ImGuiDebugAllocEntry" + } + ], "ImGuiDockContext": [ { "name": "Nodes", @@ -6512,6 +7472,10 @@ "name": "WantCloseTabId", "type": "ImGuiID" }, + { + "name": "RefViewportId", + "type": "ImGuiID" + }, { "bitfield": "3", "name": "AuthorityForPos", @@ -6583,6 +7547,16 @@ "type": "bool" } ], + "ImGuiFocusScopeData": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "WindowID", + "type": "ImGuiID" + } + ], "ImGuiGroupData": [ { "name": "WindowID", @@ -6596,6 +7570,10 @@ "name": "BackupCursorMaxPos", "type": "ImVec2" }, + { + "name": "BackupCursorPosPrevLine", + "type": "ImVec2" + }, { "name": "BackupIndent", "type": "ImVec1" @@ -6624,11 +7602,42 @@ "name": "BackupHoveredIdIsAlive", "type": "bool" }, + { + "name": "BackupIsSameLine", + "type": "bool" + }, { "name": "EmitItem", "type": "bool" } ], + "ImGuiIDStackTool": [ + { + "name": "LastActiveFrame", + "type": "int" + }, + { + "name": "StackLevel", + "type": "int" + }, + { + "name": "QueryId", + "type": "ImGuiID" + }, + { + "name": "Results", + "template_type": "ImGuiStackLevelInfo", + "type": "ImVector_ImGuiStackLevelInfo" + }, + { + "name": "CopyToClipboardOnCtrlC", + "type": "bool" + }, + { + "name": "CopyToClipboardLastTime", + "type": "float" + } + ], "ImGuiIO": [ { "name": "ConfigFlags", @@ -6658,34 +7667,6 @@ "name": "LogFilename", "type": "const char*" }, - { - "name": "MouseDoubleClickTime", - "type": "float" - }, - { - "name": "MouseDoubleClickMaxDist", - "type": "float" - }, - { - "name": "MouseDragThreshold", - "type": "float" - }, - { - "name": "KeyRepeatDelay", - "type": "float" - }, - { - "name": "KeyRepeatRate", - "type": "float" - }, - { - "name": "HoverDelayNormal", - "type": "float" - }, - { - "name": "HoverDelayShort", - "type": "float" - }, { "name": "UserData", "type": "void*" @@ -6750,6 +7731,10 @@ "name": "ConfigMacOSXBehaviors", "type": "bool" }, + { + "name": "ConfigNavSwapGamepadButtons", + "type": "bool" + }, { "name": "ConfigInputTrickleEventQueue", "type": "bool" @@ -6778,6 +7763,50 @@ "name": "ConfigMemoryCompactTimer", "type": "float" }, + { + "name": "MouseDoubleClickTime", + "type": "float" + }, + { + "name": "MouseDoubleClickMaxDist", + "type": "float" + }, + { + "name": "MouseDragThreshold", + "type": "float" + }, + { + "name": "KeyRepeatDelay", + "type": "float" + }, + { + "name": "KeyRepeatRate", + "type": "float" + }, + { + "name": "ConfigDebugIsDebuggerPresent", + "type": "bool" + }, + { + "name": "ConfigDebugHighlightIdConflicts", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueOnce", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueLoop", + "type": "bool" + }, + { + "name": "ConfigDebugIgnoreFocusLoss", + "type": "bool" + }, + { + "name": "ConfigDebugIniSettings", + "type": "bool" + }, { "name": "BackendPlatformName", "type": "const char*" @@ -6798,26 +7827,6 @@ "name": "BackendLanguageUserData", "type": "void*" }, - { - "name": "GetClipboardTextFn", - "type": "const char*(*)(void* user_data)" - }, - { - "name": "SetClipboardTextFn", - "type": "void(*)(void* user_data,const char* text)" - }, - { - "name": "ClipboardUserData", - "type": "void*" - }, - { - "name": "SetPlatformImeDataFn", - "type": "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" - }, - { - "name": "_UnusedPadding", - "type": "void*" - }, { "name": "WantCaptureMouse", "type": "bool" @@ -6866,28 +7875,13 @@ "name": "MetricsActiveWindows", "type": "int" }, - { - "name": "MetricsActiveAllocations", - "type": "int" - }, { "name": "MouseDelta", "type": "ImVec2" }, { - "name": "KeyMap[ImGuiKey_COUNT]", - "size": 652, - "type": "int" - }, - { - "name": "KeysDown[ImGuiKey_COUNT]", - "size": 652, - "type": "bool" - }, - { - "name": "NavInputs[ImGuiNavInput_COUNT]", - "size": 16, - "type": "float" + "name": "Ctx", + "type": "ImGuiContext*" }, { "name": "MousePos", @@ -6906,6 +7900,10 @@ "name": "MouseWheelH", "type": "float" }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" + }, { "name": "MouseHoveredViewport", "type": "ImGuiID" @@ -6932,7 +7930,7 @@ }, { "name": "KeysData[ImGuiKey_KeysData_SIZE]", - "size": 652, + "size": 154, "type": "ImGuiKeyData" }, { @@ -6988,6 +7986,14 @@ "size": 5, "type": "bool" }, + { + "name": "MouseWheelRequestAxisSwap", + "type": "bool" + }, + { + "name": "MouseCtrlLeftAsRightClick", + "type": "bool" + }, { "name": "MouseDownDuration[5]", "size": 5, @@ -7047,6 +8053,10 @@ "name": "Source", "type": "ImGuiInputSource" }, + { + "name": "EventId", + "type": "ImU32" + }, { "name": "", "type": "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventMouseViewport MouseViewport; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}" @@ -7084,6 +8094,10 @@ { "name": "Down", "type": "bool" + }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" } ], "ImGuiInputEventMousePos": [ @@ -7094,6 +8108,10 @@ { "name": "PosY", "type": "float" + }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" } ], "ImGuiInputEventMouseViewport": [ @@ -7110,6 +8128,10 @@ { "name": "WheelY", "type": "float" + }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" } ], "ImGuiInputEventText": [ @@ -7119,6 +8141,10 @@ } ], "ImGuiInputTextCallbackData": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "EventFlag", "type": "ImGuiInputTextFlags" @@ -7168,28 +8194,34 @@ "type": "int" } ], + "ImGuiInputTextDeactivatedState": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "TextA", + "template_type": "char", + "type": "ImVector_char" + } + ], "ImGuiInputTextState": [ { "name": "Ctx", "type": "ImGuiContext*" }, + { + "name": "Stb", + "type": "ImStbTexteditState*" + }, { "name": "ID", "type": "ImGuiID" }, - { - "name": "CurLenW", - "type": "int" - }, { "name": "CurLenA", "type": "int" }, - { - "name": "TextW", - "template_type": "ImWchar", - "type": "ImVector_ImWchar" - }, { "name": "TextA", "template_type": "char", @@ -7201,20 +8233,17 @@ "type": "ImVector_char" }, { - "name": "TextAIsValid", - "type": "bool" + "name": "CallbackTextBackup", + "template_type": "char", + "type": "ImVector_char" }, { "name": "BufCapacityA", "type": "int" }, { - "name": "ScrollX", - "type": "float" - }, - { - "name": "Stb", - "type": "STB_TexteditState" + "name": "Scroll", + "type": "ImVec2" }, { "name": "CursorAnim", @@ -7235,6 +8264,18 @@ { "name": "Flags", "type": "ImGuiInputTextFlags" + }, + { + "name": "ReloadUserBuf", + "type": "bool" + }, + { + "name": "ReloadSelectionStart", + "type": "int" + }, + { + "name": "ReloadSelectionEnd", + "type": "int" } ], "ImGuiKeyData": [ @@ -7282,6 +8323,10 @@ "name": "Mods", "type": "ImU16" }, + { + "name": "RoutingCurrScore", + "type": "ImU8" + }, { "name": "RoutingNextScore", "type": "ImU8" @@ -7298,7 +8343,7 @@ "ImGuiKeyRoutingTable": [ { "name": "Index[ImGuiKey_NamedKey_COUNT]", - "size": 140, + "size": 154, "type": "ImGuiKeyRoutingIndex" }, { @@ -7336,9 +8381,21 @@ { "name": "DisplayRect", "type": "ImRect" + }, + { + "name": "ClipRect", + "type": "ImRect" + }, + { + "name": "Shortcut", + "type": "ImGuiKeyChord" } ], "ImGuiListClipper": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "DisplayStart", "type": "int" @@ -7359,6 +8416,10 @@ "name": "StartPosY", "type": "float" }, + { + "name": "StartSeekOffsetY", + "type": "double" + }, { "name": "TempData", "type": "void*" @@ -7460,7 +8521,7 @@ "type": "bool" }, { - "name": "ShowStackTool", + "name": "ShowIDStackTool", "type": "bool" }, { @@ -7483,6 +8544,14 @@ "name": "ShowDrawCmdBoundingBoxes", "type": "bool" }, + { + "name": "ShowTextEncodingViewer", + "type": "bool" + }, + { + "name": "ShowAtlasTintedWithTextColor", + "type": "bool" + }, { "name": "ShowDockingNodes", "type": "bool" @@ -7494,6 +8563,141 @@ { "name": "ShowTablesRectsType", "type": "int" + }, + { + "name": "HighlightMonitorIdx", + "type": "int" + }, + { + "name": "HighlightViewportID", + "type": "ImGuiID" + } + ], + "ImGuiMultiSelectIO": [ + { + "name": "Requests", + "template_type": "ImGuiSelectionRequest", + "type": "ImVector_ImGuiSelectionRequest" + }, + { + "name": "RangeSrcItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdSelected", + "type": "bool" + }, + { + "name": "RangeSrcReset", + "type": "bool" + }, + { + "name": "ItemsCount", + "type": "int" + } + ], + "ImGuiMultiSelectState": [ + { + "name": "Window", + "type": "ImGuiWindow*" + }, + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "LastFrameActive", + "type": "int" + }, + { + "name": "LastSelectionSize", + "type": "int" + }, + { + "name": "RangeSelected", + "type": "ImS8" + }, + { + "name": "NavIdSelected", + "type": "ImS8" + }, + { + "name": "RangeSrcItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdItem", + "type": "ImGuiSelectionUserData" + } + ], + "ImGuiMultiSelectTempData": [ + { + "name": "IO", + "type": "ImGuiMultiSelectIO" + }, + { + "name": "Storage", + "type": "ImGuiMultiSelectState*" + }, + { + "name": "FocusScopeId", + "type": "ImGuiID" + }, + { + "name": "Flags", + "type": "ImGuiMultiSelectFlags" + }, + { + "name": "ScopeRectMin", + "type": "ImVec2" + }, + { + "name": "BackupCursorMaxPos", + "type": "ImVec2" + }, + { + "name": "LastSubmittedItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "BoxSelectId", + "type": "ImGuiID" + }, + { + "name": "KeyMods", + "type": "ImGuiKeyChord" + }, + { + "name": "LoopRequestSetAll", + "type": "ImS8" + }, + { + "name": "IsEndIO", + "type": "bool" + }, + { + "name": "IsFocused", + "type": "bool" + }, + { + "name": "IsKeyboardSetRange", + "type": "bool" + }, + { + "name": "NavIdPassedBy", + "type": "bool" + }, + { + "name": "RangeSrcPassedBy", + "type": "bool" + }, + { + "name": "RangeDstPassedBy", + "type": "bool" } ], "ImGuiNavItemData": [ @@ -7528,6 +8732,10 @@ { "name": "DistAxial", "type": "float" + }, + { + "name": "SelectionUserData", + "type": "ImGuiSelectionUserData" } ], "ImGuiNextItemData": [ @@ -7536,20 +8744,44 @@ "type": "ImGuiNextItemDataFlags" }, { - "name": "Width", - "type": "float" + "name": "ItemFlags", + "type": "ImGuiItemFlags" }, { "name": "FocusScopeId", "type": "ImGuiID" }, { - "name": "OpenCond", - "type": "ImGuiCond" + "name": "SelectionUserData", + "type": "ImGuiSelectionUserData" + }, + { + "name": "Width", + "type": "float" + }, + { + "name": "Shortcut", + "type": "ImGuiKeyChord" + }, + { + "name": "ShortcutFlags", + "type": "ImGuiInputFlags" }, { "name": "OpenVal", "type": "bool" + }, + { + "name": "OpenCond", + "type": "ImU8" + }, + { + "name": "RefVal", + "type": "ImGuiDataTypeStorage" + }, + { + "name": "StorageId", + "type": "ImGuiID" } ], "ImGuiNextWindowData": [ @@ -7593,6 +8825,10 @@ "name": "ScrollVal", "type": "ImVec2" }, + { + "name": "ChildFlags", + "type": "ImGuiChildFlags" + }, { "name": "PosUndock", "type": "bool" @@ -7632,6 +8868,10 @@ { "name": "MenuBarOffsetMinVal", "type": "ImVec2" + }, + { + "name": "RefreshFlagsVal", + "type": "ImGuiWindowRefreshFlags" } ], "ImGuiOldColumnData": [ @@ -7765,6 +9005,38 @@ } ], "ImGuiPlatformIO": [ + { + "name": "Platform_GetClipboardTextFn", + "type": "const char*(*)(ImGuiContext* ctx)" + }, + { + "name": "Platform_SetClipboardTextFn", + "type": "void(*)(ImGuiContext* ctx,const char* text)" + }, + { + "name": "Platform_ClipboardUserData", + "type": "void*" + }, + { + "name": "Platform_OpenInShellFn", + "type": "bool(*)(ImGuiContext* ctx,const char* path)" + }, + { + "name": "Platform_OpenInShellUserData", + "type": "void*" + }, + { + "name": "Platform_SetImeDataFn", + "type": "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" + }, + { + "name": "Platform_ImeUserData", + "type": "void*" + }, + { + "name": "Platform_LocaleDecimalPoint", + "type": "ImWchar" + }, { "name": "Platform_CreateWindow", "type": "void(*)(ImGuiViewport* vp)" @@ -7833,6 +9105,10 @@ "name": "Platform_OnChangedViewport", "type": "void(*)(ImGuiViewport* vp)" }, + { + "name": "Platform_GetWindowWorkAreaInsets", + "type": "ImVec4(*)(ImGuiViewport* vp)" + }, { "name": "Platform_CreateVkSurface", "type": "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" @@ -7902,6 +9178,10 @@ { "name": "DpiScale", "type": "float" + }, + { + "name": "PlatformHandle", + "type": "void*" } ], "ImGuiPopupData": [ @@ -7914,7 +9194,7 @@ "type": "ImGuiWindow*" }, { - "name": "BackupNavWindow", + "name": "RestoreNavWindow", "type": "ImGuiWindow*" }, { @@ -7948,6 +9228,64 @@ "type": "int" } ], + "ImGuiSelectionBasicStorage": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "PreserveOrder", + "type": "bool" + }, + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterIndexToStorageId", + "type": "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" + }, + { + "name": "_SelectionOrder", + "type": "int" + }, + { + "name": "_Storage", + "type": "ImGuiStorage" + } + ], + "ImGuiSelectionExternalStorage": [ + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterSetItemSelected", + "type": "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" + } + ], + "ImGuiSelectionRequest": [ + { + "name": "Type", + "type": "ImGuiSelectionRequestType" + }, + { + "name": "Selected", + "type": "bool" + }, + { + "name": "RangeDirection", + "type": "ImS8" + }, + { + "name": "RangeFirstItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "RangeLastItem", + "type": "ImGuiSelectionUserData" + } + ], "ImGuiSettingsHandler": [ { "name": "TypeName", @@ -8080,33 +9418,6 @@ "type": "short" } ], - "ImGuiStackTool": [ - { - "name": "LastActiveFrame", - "type": "int" - }, - { - "name": "StackLevel", - "type": "int" - }, - { - "name": "QueryId", - "type": "ImGuiID" - }, - { - "name": "Results", - "template_type": "ImGuiStackLevelInfo", - "type": "ImVector_ImGuiStackLevelInfo" - }, - { - "name": "CopyToClipboardOnCtrlC", - "type": "bool" - }, - { - "name": "CopyToClipboardLastTime", - "type": "float" - } - ], "ImGuiStorage": [ { "name": "Data", @@ -8241,6 +9552,22 @@ "name": "TabMinWidthForCloseButton", "type": "float" }, + { + "name": "TabBarBorderSize", + "type": "float" + }, + { + "name": "TabBarOverlineSize", + "type": "float" + }, + { + "name": "TableAngledHeadersAngle", + "type": "float" + }, + { + "name": "TableAngledHeadersTextAlign", + "type": "ImVec2" + }, { "name": "ColorButtonPosition", "type": "ImGuiDir" @@ -8253,6 +9580,18 @@ "name": "SelectableTextAlign", "type": "ImVec2" }, + { + "name": "SeparatorTextBorderSize", + "type": "float" + }, + { + "name": "SeparatorTextAlign", + "type": "ImVec2" + }, + { + "name": "SeparatorTextPadding", + "type": "ImVec2" + }, { "name": "DisplayWindowPadding", "type": "ImVec2" @@ -8261,6 +9600,10 @@ "name": "DisplaySafeAreaPadding", "type": "ImVec2" }, + { + "name": "DockingSeparatorSize", + "type": "float" + }, { "name": "MouseCursorScale", "type": "float" @@ -8287,8 +9630,28 @@ }, { "name": "Colors[ImGuiCol_COUNT]", - "size": 55, + "size": 58, "type": "ImVec4" + }, + { + "name": "HoverStationaryDelay", + "type": "float" + }, + { + "name": "HoverDelayShort", + "type": "float" + }, + { + "name": "HoverDelayNormal", + "type": "float" + }, + { + "name": "HoverFlagsForTooltipMouse", + "type": "ImGuiHoveredFlags" + }, + { + "name": "HoverFlagsForTooltipNav", + "type": "ImGuiHoveredFlags" } ], "ImGuiStyleMod": [ @@ -8379,6 +9742,14 @@ "name": "ScrollingRectMaxX", "type": "float" }, + { + "name": "SeparatorMinX", + "type": "float" + }, + { + "name": "SeparatorMaxX", + "type": "float" + }, { "name": "ReorderRequestTabId", "type": "ImGuiID" @@ -8516,19 +9887,15 @@ }, { "name": "EnabledMaskByDisplayOrder", - "type": "ImU64" + "type": "ImBitArrayPtr" }, { "name": "EnabledMaskByIndex", - "type": "ImU64" + "type": "ImBitArrayPtr" }, { "name": "VisibleMaskByIndex", - "type": "ImU64" - }, - { - "name": "RequestOutputMaskByIndex", - "type": "ImU64" + "type": "ImBitArrayPtr" }, { "name": "SettingsLoadedFlags", @@ -8574,6 +9941,10 @@ "name": "RowMinHeight", "type": "float" }, + { + "name": "RowCellPaddingY", + "type": "float" + }, { "name": "RowTextBaseline", "type": "float" @@ -8633,10 +10004,6 @@ "name": "CellPaddingX", "type": "float" }, - { - "name": "CellPaddingY", - "type": "float" - }, { "name": "CellSpacingX1", "type": "float" @@ -8673,6 +10040,14 @@ "name": "RefScale", "type": "float" }, + { + "name": "AngledHeadersHeight", + "type": "float" + }, + { + "name": "AngledHeadersSlope", + "type": "float" + }, { "name": "OuterRect", "type": "ImRect" @@ -8763,6 +10138,10 @@ "name": "DeclColumnsCount", "type": "ImGuiTableColumnIdx" }, + { + "name": "AngledHeadersCount", + "type": "ImGuiTableColumnIdx" + }, { "name": "HoveredColumnBody", "type": "ImGuiTableColumnIdx" @@ -8771,6 +10150,10 @@ "name": "HoveredColumnBorder", "type": "ImGuiTableColumnIdx" }, + { + "name": "HighlightColumnHeader", + "type": "ImGuiTableColumnIdx" + }, { "name": "AutoFitSingleColumn", "type": "ImGuiTableColumnIdx" @@ -8871,6 +10254,10 @@ "name": "IsContextPopupOpen", "type": "bool" }, + { + "name": "DisableDefaultContextMenu", + "type": "bool" + }, { "name": "IsSettingsRequestLoad", "type": "bool" @@ -8899,6 +10286,14 @@ "name": "IsDefaultSizingPolicy", "type": "bool" }, + { + "name": "IsActiveIdAliveBeforeTable", + "type": "bool" + }, + { + "name": "IsActiveIdInTable", + "type": "bool" + }, { "name": "HasScrollbarYCurr", "type": "bool" @@ -8951,6 +10346,10 @@ "name": "WidthAuto", "type": "float" }, + { + "name": "WidthMax", + "type": "float" + }, { "name": "StretchWeight", "type": "float" @@ -9146,23 +10545,52 @@ "type": "ImS16" }, { - "bitfield": "8", "name": "SortDirection", "type": "ImGuiSortDirection" } ], + "ImGuiTableHeaderData": [ + { + "name": "Index", + "type": "ImGuiTableColumnIdx" + }, + { + "name": "TextColor", + "type": "ImU32" + }, + { + "name": "BgColor0", + "type": "ImU32" + }, + { + "name": "BgColor1", + "type": "ImU32" + } + ], "ImGuiTableInstanceData": [ + { + "name": "TableInstanceID", + "type": "ImGuiID" + }, { "name": "LastOuterHeight", "type": "float" }, { - "name": "LastFirstRowHeight", + "name": "LastTopHeadersRowHeight", "type": "float" }, { "name": "LastFrozenHeight", "type": "float" + }, + { + "name": "HoveredRowLast", + "type": "int" + }, + { + "name": "HoveredRowNext", + "type": "int" } ], "ImGuiTableSettings": [ @@ -9214,6 +10642,15 @@ "name": "LastTimeActive", "type": "float" }, + { + "name": "AngledHeadersExtraWidth", + "type": "float" + }, + { + "name": "AngledHeadersRequests", + "template_type": "ImGuiTableHeaderData", + "type": "ImVector_ImGuiTableHeaderData" + }, { "name": "UserOuterSize", "type": "ImVec2" @@ -9299,6 +10736,77 @@ "type": "const char*" } ], + "ImGuiTreeNodeStackData": [ + { + "name": "ID", + "type": "ImGuiID" + }, + { + "name": "TreeFlags", + "type": "ImGuiTreeNodeFlags" + }, + { + "name": "InFlags", + "type": "ImGuiItemFlags" + }, + { + "name": "NavRect", + "type": "ImRect" + } + ], + "ImGuiTypingSelectRequest": [ + { + "name": "Flags", + "type": "ImGuiTypingSelectFlags" + }, + { + "name": "SearchBufferLen", + "type": "int" + }, + { + "name": "SearchBuffer", + "type": "const char*" + }, + { + "name": "SelectRequest", + "type": "bool" + }, + { + "name": "SingleCharMode", + "type": "bool" + }, + { + "name": "SingleCharSize", + "type": "ImS8" + } + ], + "ImGuiTypingSelectState": [ + { + "name": "Request", + "type": "ImGuiTypingSelectRequest" + }, + { + "name": "SearchBuffer[64]", + "size": 64, + "type": "char" + }, + { + "name": "FocusScope", + "type": "ImGuiID" + }, + { + "name": "LastRequestFrame", + "type": "int" + }, + { + "name": "LastRequestTime", + "type": "float" + }, + { + "name": "SingleCharModeLock", + "type": "bool" + } + ], "ImGuiViewport": [ { "name": "ID", @@ -9374,6 +10882,10 @@ "name": "_ImGuiViewport", "type": "ImGuiViewport" }, + { + "name": "Window", + "type": "ImGuiWindow*" + }, { "name": "Idx", "type": "int" @@ -9383,7 +10895,7 @@ "type": "int" }, { - "name": "LastFrontMostStampCount", + "name": "LastFocusedStampCount", "type": "int" }, { @@ -9394,6 +10906,10 @@ "name": "LastPos", "type": "ImVec2" }, + { + "name": "LastSize", + "type": "ImVec2" + }, { "name": "Alpha", "type": "float" @@ -9402,21 +10918,21 @@ "name": "LastAlpha", "type": "float" }, + { + "name": "LastFocusedHadNavWindow", + "type": "bool" + }, { "name": "PlatformMonitor", "type": "short" }, { - "name": "Window", - "type": "ImGuiWindow*" - }, - { - "name": "DrawListsLastFrame[2]", + "name": "BgFgDrawListsLastFrame[2]", "size": 2, "type": "int" }, { - "name": "DrawLists[2]", + "name": "BgFgDrawLists[2]", "size": 2, "type": "ImDrawList*" }, @@ -9441,23 +10957,27 @@ "type": "ImVec2" }, { - "name": "WorkOffsetMin", + "name": "WorkInsetMin", "type": "ImVec2" }, { - "name": "WorkOffsetMax", + "name": "WorkInsetMax", "type": "ImVec2" }, { - "name": "BuildWorkOffsetMin", + "name": "BuildWorkInsetMin", "type": "ImVec2" }, { - "name": "BuildWorkOffsetMax", + "name": "BuildWorkInsetMax", "type": "ImVec2" } ], "ImGuiWindow": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "Name", "type": "char*" @@ -9474,6 +10994,10 @@ "name": "FlagsPreviousFrame", "type": "ImGuiWindowFlags" }, + { + "name": "ChildFlags", + "type": "ImGuiChildFlags" + }, { "name": "WindowClass", "type": "ImGuiWindowClass" @@ -9530,6 +11054,14 @@ "name": "WindowBorderSize", "type": "float" }, + { + "name": "TitleBarHeight", + "type": "float" + }, + { + "name": "MenuBarHeight", + "type": "float" + }, { "name": "DecoOuterSizeX1", "type": "float" @@ -9570,6 +11102,10 @@ "name": "ChildId", "type": "ImGuiID" }, + { + "name": "PopupId", + "type": "ImGuiID" + }, { "name": "Scroll", "type": "ImVec2" @@ -9630,6 +11166,10 @@ "name": "SkipItems", "type": "bool" }, + { + "name": "SkipRefresh", + "type": "bool" + }, { "name": "Appearing", "type": "bool" @@ -9650,6 +11190,10 @@ "name": "HasCloseButton", "type": "bool" }, + { + "name": "ResizeBorderHovered", + "type": "signed char" + }, { "name": "ResizeBorderHeld", "type": "signed char" @@ -9674,10 +11218,6 @@ "name": "FocusOrder", "type": "short" }, - { - "name": "PopupId", - "type": "ImGuiID" - }, { "name": "AutoFitFramesX", "type": "ImS8" @@ -9686,10 +11226,6 @@ "name": "AutoFitFramesY", "type": "ImS8" }, - { - "name": "AutoFitChildAxises", - "type": "ImS8" - }, { "name": "AutoFitOnlyGrows", "type": "bool" @@ -9860,6 +11396,10 @@ "name": "RootWindowForNav", "type": "ImGuiWindow*" }, + { + "name": "ParentWindowForFocusRoute", + "type": "ImGuiWindow*" + }, { "name": "NavLastChildNavWindow", "type": "ImGuiWindow*" @@ -9874,6 +11414,11 @@ "size": 2, "type": "ImRect" }, + { + "name": "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]", + "size": 2, + "type": "ImVec2" + }, { "name": "NavRootFocusScopeId", "type": "ImGuiID" @@ -9948,6 +11493,10 @@ "name": "ParentViewportId", "type": "ImGuiID" }, + { + "name": "FocusRouteParentWindowId", + "type": "ImGuiID" + }, { "name": "ViewportFlagsOverrideSet", "type": "ImGuiViewportFlags" @@ -9976,7 +11525,7 @@ "ImGuiWindowDockStyle": [ { "name": "Colors[ImGuiWindowDockStyleCol_COUNT]", - "size": 6, + "size": 8, "type": "ImU32" } ], @@ -10017,9 +11566,17 @@ "name": "Collapsed", "type": "bool" }, + { + "name": "IsChild", + "type": "bool" + }, { "name": "WantApply", "type": "bool" + }, + { + "name": "WantDelete", + "type": "bool" } ], "ImGuiWindowStackData": [ @@ -10034,6 +11591,10 @@ { "name": "StackSizesOnBegin", "type": "ImGuiStackSizes" + }, + { + "name": "DisabledOverrideReenable", + "type": "bool" } ], "ImGuiWindowTempData": [ @@ -10109,12 +11670,16 @@ "name": "NavLayersActiveMaskNext", "type": "short" }, + { + "name": "NavIsScrollPushableX", + "type": "bool" + }, { "name": "NavHideHighlightOneFrame", "type": "bool" }, { - "name": "NavHasScroll", + "name": "NavWindowHasScrollY", "type": "bool" }, { @@ -10134,7 +11699,7 @@ "type": "int" }, { - "name": "TreeJumpToParentOnPopMask", + "name": "TreeHasStackDataDepthMask", "type": "ImU32" }, { @@ -10162,6 +11727,10 @@ "name": "ParentLayoutType", "type": "ImGuiLayoutType" }, + { + "name": "ModalDimBgColor", + "type": "ImU32" + }, { "name": "ItemWidth", "type": "float" @@ -10234,136 +11803,171 @@ "name": "w", "type": "float" } - ], - "STB_TexteditState": [ + ] + }, + "templated_structs": { + "ImBitArray": [ { - "name": "cursor", - "type": "int" - }, - { - "name": "select_start", - "type": "int" - }, - { - "name": "select_end", - "type": "int" - }, - { - "name": "insert_mode", - "type": "unsigned char" - }, - { - "name": "row_count_per_page", - "type": "int" - }, - { - "name": "cursor_at_end_of_line", - "type": "unsigned char" - }, - { - "name": "initialized", - "type": "unsigned char" - }, - { - "name": "has_preferred_x", - "type": "unsigned char" - }, - { - "name": "single_line", - "type": "unsigned char" - }, - { - "name": "padding1", - "type": "unsigned char" - }, - { - "name": "padding2", - "type": "unsigned char" - }, - { - "name": "padding3", - "type": "unsigned char" - }, - { - "name": "preferred_x", - "type": "float" - }, - { - "name": "undostate", - "type": "StbUndoState" + "name": "Storage[(BITCOUNT+31)>>5]", + "type": "ImU32" } ], - "StbTexteditRow": [ + "ImChunkStream": [ { - "name": "x0", - "type": "float" + "name": "Buf", + "template_type": "char", + "type": "ImVector_char" + } + ], + "ImPool": [ + { + "name": "Buf", + "type": "ImVector" }, { - "name": "x1", - "type": "float" + "name": "Map", + "type": "ImGuiStorage" }, { - "name": "baseline_y_delta", - "type": "float" + "name": "FreeIdx", + "type": "ImPoolIdx" }, { - "name": "ymin", - "type": "float" + "name": "AliveCount", + "type": "ImPoolIdx" + } + ], + "ImSpan": [ + { + "name": "Data", + "type": "T*" }, { - "name": "ymax", - "type": "float" + "name": "DataEnd", + "type": "T*" + } + ], + "ImSpanAllocator": [ + { + "name": "BasePtr", + "type": "char*" }, { - "name": "num_chars", + "name": "CurrOff", + "type": "int" + }, + { + "name": "CurrIdx", + "type": "int" + }, + { + "name": "Offsets[CHUNKS]", + "type": "int" + }, + { + "name": "Sizes[CHUNKS]", "type": "int" } ], - "StbUndoRecord": [ + "ImVector": [ { - "name": "where", + "name": "Size", "type": "int" }, { - "name": "insert_length", + "name": "Capacity", "type": "int" }, { - "name": "delete_length", - "type": "int" - }, - { - "name": "char_storage", - "type": "int" - } - ], - "StbUndoState": [ - { - "name": "undo_rec[99]", - "size": 99, - "type": "StbUndoRecord" - }, - { - "name": "undo_char[999]", - "size": 999, - "type": "ImWchar" - }, - { - "name": "undo_point", - "type": "short" - }, - { - "name": "redo_point", - "type": "short" - }, - { - "name": "undo_char_point", - "type": "int" - }, - { - "name": "redo_char_point", - "type": "int" + "name": "Data", + "type": "T*" } ] + }, + "templates_done": { + "ImBitArray": { + "ImGuiKey_NamedKey_COUNT, -ImGuiKey_NamedKey_BEGIN": true + }, + "ImChunkStream": { + "ImGuiTableSettings": true, + "ImGuiWindowSettings": true + }, + "ImPool": { + "ImGuiMultiSelectState": true, + "ImGuiTabBar": true, + "ImGuiTable": true + }, + "ImSpan": { + "ImGuiTableCellData": true, + "ImGuiTableColumn": true, + "ImGuiTableColumnIdx": true + }, + "ImVector": { + "ImDrawChannel": true, + "ImDrawCmd": true, + "ImDrawIdx": true, + "ImDrawList*": true, + "ImDrawVert": true, + "ImFont*": true, + "ImFontAtlasCustomRect": true, + "ImFontConfig": true, + "ImFontGlyph": true, + "ImGuiColorMod": true, + "ImGuiContextHook": true, + "ImGuiDockNodeSettings": true, + "ImGuiDockRequest": true, + "ImGuiFocusScopeData": true, + "ImGuiGroupData": true, + "ImGuiID": true, + "ImGuiInputEvent": true, + "ImGuiItemFlags": true, + "ImGuiKeyRoutingData": true, + "ImGuiListClipperData": true, + "ImGuiListClipperRange": true, + "ImGuiMultiSelectState": true, + "ImGuiMultiSelectTempData": true, + "ImGuiOldColumnData": true, + "ImGuiOldColumns": true, + "ImGuiPlatformMonitor": true, + "ImGuiPopupData": true, + "ImGuiPtrOrIndex": true, + "ImGuiSelectionRequest": true, + "ImGuiSettingsHandler": true, + "ImGuiShrinkWidthItem": true, + "ImGuiStackLevelInfo": true, + "ImGuiStoragePair": true, + "ImGuiStyleMod": true, + "ImGuiTabBar": true, + "ImGuiTabItem": true, + "ImGuiTable": true, + "ImGuiTableColumnSortSpecs": true, + "ImGuiTableHeaderData": true, + "ImGuiTableInstanceData": true, + "ImGuiTableTempData": true, + "ImGuiTextRange": true, + "ImGuiTreeNodeStackData": true, + "ImGuiViewport*": true, + "ImGuiViewportP*": true, + "ImGuiWindow*": true, + "ImGuiWindowStackData": true, + "ImTextureID": true, + "ImU32": true, + "ImVec2": true, + "ImVec4": true, + "ImWchar": true, + "char": true, + "const char*": true, + "float": true, + "int": true, + "unsigned char": true + } + }, + "typenames": { + "ImBitArray": "int BITCOUNT, int OFFSET = 0", + "ImChunkStream": "T", + "ImPool": "T", + "ImSpan": "T", + "ImSpanAllocator": "int CHUNKS", + "ImVector": "T" } } \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-docking/structs_and_enums.lua b/imgui-sys/third-party/imgui-docking/structs_and_enums.lua index 8209c42..2de5660 100644 --- a/imgui-sys/third-party/imgui-docking/structs_and_enums.lua +++ b/imgui-sys/third-party/imgui-docking/structs_and_enums.lua @@ -112,6 +112,14 @@ defs["enums"]["ImGuiActivateFlags_"][4] = {} defs["enums"]["ImGuiActivateFlags_"][4]["calc_value"] = 4 defs["enums"]["ImGuiActivateFlags_"][4]["name"] = "ImGuiActivateFlags_TryToPreserveState" defs["enums"]["ImGuiActivateFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiActivateFlags_"][5] = {} +defs["enums"]["ImGuiActivateFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiActivateFlags_"][5]["name"] = "ImGuiActivateFlags_FromTabbing" +defs["enums"]["ImGuiActivateFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiActivateFlags_"][6] = {} +defs["enums"]["ImGuiActivateFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiActivateFlags_"][6]["name"] = "ImGuiActivateFlags_FromShortcut" +defs["enums"]["ImGuiActivateFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiAxis"] = {} defs["enums"]["ImGuiAxis"][1] = {} defs["enums"]["ImGuiAxis"][1]["calc_value"] = -1 @@ -193,7 +201,7 @@ defs["enums"]["ImGuiButtonFlagsPrivate_"][8]["name"] = "ImGuiButtonFlags_Flatten defs["enums"]["ImGuiButtonFlagsPrivate_"][8]["value"] = "1 << 11" defs["enums"]["ImGuiButtonFlagsPrivate_"][9] = {} defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["calc_value"] = 4096 -defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["name"] = "ImGuiButtonFlags_AllowItemOverlap" +defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["name"] = "ImGuiButtonFlags_AllowOverlap" defs["enums"]["ImGuiButtonFlagsPrivate_"][9]["value"] = "1 << 12" defs["enums"]["ImGuiButtonFlagsPrivate_"][10] = {} defs["enums"]["ImGuiButtonFlagsPrivate_"][10]["calc_value"] = 8192 @@ -256,10 +264,47 @@ defs["enums"]["ImGuiButtonFlags_"][5] = {} defs["enums"]["ImGuiButtonFlags_"][5]["calc_value"] = 7 defs["enums"]["ImGuiButtonFlags_"][5]["name"] = "ImGuiButtonFlags_MouseButtonMask_" defs["enums"]["ImGuiButtonFlags_"][5]["value"] = "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" -defs["enums"]["ImGuiButtonFlags_"][6] = {} -defs["enums"]["ImGuiButtonFlags_"][6]["calc_value"] = 1 -defs["enums"]["ImGuiButtonFlags_"][6]["name"] = "ImGuiButtonFlags_MouseButtonDefault_" -defs["enums"]["ImGuiButtonFlags_"][6]["value"] = "ImGuiButtonFlags_MouseButtonLeft" +defs["enums"]["ImGuiChildFlags_"] = {} +defs["enums"]["ImGuiChildFlags_"][1] = {} +defs["enums"]["ImGuiChildFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiChildFlags_"][1]["name"] = "ImGuiChildFlags_None" +defs["enums"]["ImGuiChildFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiChildFlags_"][2] = {} +defs["enums"]["ImGuiChildFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiChildFlags_"][2]["name"] = "ImGuiChildFlags_Borders" +defs["enums"]["ImGuiChildFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiChildFlags_"][3] = {} +defs["enums"]["ImGuiChildFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiChildFlags_"][3]["name"] = "ImGuiChildFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiChildFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiChildFlags_"][4] = {} +defs["enums"]["ImGuiChildFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiChildFlags_"][4]["name"] = "ImGuiChildFlags_ResizeX" +defs["enums"]["ImGuiChildFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiChildFlags_"][5] = {} +defs["enums"]["ImGuiChildFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiChildFlags_"][5]["name"] = "ImGuiChildFlags_ResizeY" +defs["enums"]["ImGuiChildFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiChildFlags_"][6] = {} +defs["enums"]["ImGuiChildFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiChildFlags_"][6]["name"] = "ImGuiChildFlags_AutoResizeX" +defs["enums"]["ImGuiChildFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiChildFlags_"][7] = {} +defs["enums"]["ImGuiChildFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiChildFlags_"][7]["name"] = "ImGuiChildFlags_AutoResizeY" +defs["enums"]["ImGuiChildFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiChildFlags_"][8] = {} +defs["enums"]["ImGuiChildFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiChildFlags_"][8]["name"] = "ImGuiChildFlags_AlwaysAutoResize" +defs["enums"]["ImGuiChildFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiChildFlags_"][9] = {} +defs["enums"]["ImGuiChildFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiChildFlags_"][9]["name"] = "ImGuiChildFlags_FrameStyle" +defs["enums"]["ImGuiChildFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiChildFlags_"][10] = {} +defs["enums"]["ImGuiChildFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiChildFlags_"][10]["name"] = "ImGuiChildFlags_NavFlattened" +defs["enums"]["ImGuiChildFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiCol_"] = {} defs["enums"]["ImGuiCol_"][1] = {} defs["enums"]["ImGuiCol_"][1]["calc_value"] = 0 @@ -395,96 +440,108 @@ defs["enums"]["ImGuiCol_"][33]["name"] = "ImGuiCol_ResizeGripActive" defs["enums"]["ImGuiCol_"][33]["value"] = "32" defs["enums"]["ImGuiCol_"][34] = {} defs["enums"]["ImGuiCol_"][34]["calc_value"] = 33 -defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_Tab" +defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_TabHovered" defs["enums"]["ImGuiCol_"][34]["value"] = "33" defs["enums"]["ImGuiCol_"][35] = {} defs["enums"]["ImGuiCol_"][35]["calc_value"] = 34 -defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_TabHovered" +defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_Tab" defs["enums"]["ImGuiCol_"][35]["value"] = "34" defs["enums"]["ImGuiCol_"][36] = {} defs["enums"]["ImGuiCol_"][36]["calc_value"] = 35 -defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabActive" +defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabSelected" defs["enums"]["ImGuiCol_"][36]["value"] = "35" defs["enums"]["ImGuiCol_"][37] = {} defs["enums"]["ImGuiCol_"][37]["calc_value"] = 36 -defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabUnfocused" +defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabSelectedOverline" defs["enums"]["ImGuiCol_"][37]["value"] = "36" defs["enums"]["ImGuiCol_"][38] = {} defs["enums"]["ImGuiCol_"][38]["calc_value"] = 37 -defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabUnfocusedActive" +defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabDimmed" defs["enums"]["ImGuiCol_"][38]["value"] = "37" defs["enums"]["ImGuiCol_"][39] = {} defs["enums"]["ImGuiCol_"][39]["calc_value"] = 38 -defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_DockingPreview" +defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_TabDimmedSelected" defs["enums"]["ImGuiCol_"][39]["value"] = "38" defs["enums"]["ImGuiCol_"][40] = {} defs["enums"]["ImGuiCol_"][40]["calc_value"] = 39 -defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_DockingEmptyBg" +defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_TabDimmedSelectedOverline" defs["enums"]["ImGuiCol_"][40]["value"] = "39" defs["enums"]["ImGuiCol_"][41] = {} defs["enums"]["ImGuiCol_"][41]["calc_value"] = 40 -defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotLines" +defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_DockingPreview" defs["enums"]["ImGuiCol_"][41]["value"] = "40" defs["enums"]["ImGuiCol_"][42] = {} defs["enums"]["ImGuiCol_"][42]["calc_value"] = 41 -defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotLinesHovered" +defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_DockingEmptyBg" defs["enums"]["ImGuiCol_"][42]["value"] = "41" defs["enums"]["ImGuiCol_"][43] = {} defs["enums"]["ImGuiCol_"][43]["calc_value"] = 42 -defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotHistogram" +defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotLines" defs["enums"]["ImGuiCol_"][43]["value"] = "42" defs["enums"]["ImGuiCol_"][44] = {} defs["enums"]["ImGuiCol_"][44]["calc_value"] = 43 -defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotHistogramHovered" +defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotLinesHovered" defs["enums"]["ImGuiCol_"][44]["value"] = "43" defs["enums"]["ImGuiCol_"][45] = {} defs["enums"]["ImGuiCol_"][45]["calc_value"] = 44 -defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_TableHeaderBg" +defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_PlotHistogram" defs["enums"]["ImGuiCol_"][45]["value"] = "44" defs["enums"]["ImGuiCol_"][46] = {} defs["enums"]["ImGuiCol_"][46]["calc_value"] = 45 -defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_TableBorderStrong" +defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_PlotHistogramHovered" defs["enums"]["ImGuiCol_"][46]["value"] = "45" defs["enums"]["ImGuiCol_"][47] = {} defs["enums"]["ImGuiCol_"][47]["calc_value"] = 46 -defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableBorderLight" +defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableHeaderBg" defs["enums"]["ImGuiCol_"][47]["value"] = "46" defs["enums"]["ImGuiCol_"][48] = {} defs["enums"]["ImGuiCol_"][48]["calc_value"] = 47 -defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableRowBg" +defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableBorderStrong" defs["enums"]["ImGuiCol_"][48]["value"] = "47" defs["enums"]["ImGuiCol_"][49] = {} defs["enums"]["ImGuiCol_"][49]["calc_value"] = 48 -defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableRowBgAlt" +defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableBorderLight" defs["enums"]["ImGuiCol_"][49]["value"] = "48" defs["enums"]["ImGuiCol_"][50] = {} defs["enums"]["ImGuiCol_"][50]["calc_value"] = 49 -defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TextSelectedBg" +defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TableRowBg" defs["enums"]["ImGuiCol_"][50]["value"] = "49" defs["enums"]["ImGuiCol_"][51] = {} defs["enums"]["ImGuiCol_"][51]["calc_value"] = 50 -defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_DragDropTarget" +defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_TableRowBgAlt" defs["enums"]["ImGuiCol_"][51]["value"] = "50" defs["enums"]["ImGuiCol_"][52] = {} defs["enums"]["ImGuiCol_"][52]["calc_value"] = 51 -defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_NavHighlight" +defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_TextLink" defs["enums"]["ImGuiCol_"][52]["value"] = "51" defs["enums"]["ImGuiCol_"][53] = {} defs["enums"]["ImGuiCol_"][53]["calc_value"] = 52 -defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_NavWindowingHighlight" +defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_TextSelectedBg" defs["enums"]["ImGuiCol_"][53]["value"] = "52" defs["enums"]["ImGuiCol_"][54] = {} defs["enums"]["ImGuiCol_"][54]["calc_value"] = 53 -defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_DragDropTarget" defs["enums"]["ImGuiCol_"][54]["value"] = "53" defs["enums"]["ImGuiCol_"][55] = {} defs["enums"]["ImGuiCol_"][55]["calc_value"] = 54 -defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_NavHighlight" defs["enums"]["ImGuiCol_"][55]["value"] = "54" defs["enums"]["ImGuiCol_"][56] = {} defs["enums"]["ImGuiCol_"][56]["calc_value"] = 55 -defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_NavWindowingHighlight" defs["enums"]["ImGuiCol_"][56]["value"] = "55" +defs["enums"]["ImGuiCol_"][57] = {} +defs["enums"]["ImGuiCol_"][57]["calc_value"] = 56 +defs["enums"]["ImGuiCol_"][57]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][57]["value"] = "56" +defs["enums"]["ImGuiCol_"][58] = {} +defs["enums"]["ImGuiCol_"][58]["calc_value"] = 57 +defs["enums"]["ImGuiCol_"][58]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][58]["value"] = "57" +defs["enums"]["ImGuiCol_"][59] = {} +defs["enums"]["ImGuiCol_"][59]["calc_value"] = 58 +defs["enums"]["ImGuiCol_"][59]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][59]["value"] = "58" defs["enums"]["ImGuiColorEditFlags_"] = {} defs["enums"]["ImGuiColorEditFlags_"][1] = {} defs["enums"]["ImGuiColorEditFlags_"][1]["calc_value"] = 0 @@ -641,9 +698,13 @@ defs["enums"]["ImGuiComboFlags_"][8]["calc_value"] = 64 defs["enums"]["ImGuiComboFlags_"][8]["name"] = "ImGuiComboFlags_NoPreview" defs["enums"]["ImGuiComboFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiComboFlags_"][9] = {} -defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 30 -defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_HeightMask_" -defs["enums"]["ImGuiComboFlags_"][9]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" +defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_WidthFitPreview" +defs["enums"]["ImGuiComboFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiComboFlags_"][10] = {} +defs["enums"]["ImGuiComboFlags_"][10]["calc_value"] = 30 +defs["enums"]["ImGuiComboFlags_"][10]["name"] = "ImGuiComboFlags_HeightMask_" +defs["enums"]["ImGuiComboFlags_"][10]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" defs["enums"]["ImGuiCond_"] = {} defs["enums"]["ImGuiCond_"][1] = {} defs["enums"]["ImGuiCond_"][1]["calc_value"] = 0 @@ -696,28 +757,32 @@ defs["enums"]["ImGuiConfigFlags_"][7]["name"] = "ImGuiConfigFlags_NoMouseCursorC defs["enums"]["ImGuiConfigFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiConfigFlags_"][8] = {} defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_DockingEnable" +defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_NoKeyboard" defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiConfigFlags_"][9] = {} -defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 1024 -defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_ViewportsEnable" -defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 10" +defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_DockingEnable" +defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiConfigFlags_"][10] = {} -defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 16384 -defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_DpiEnableScaleViewports" -defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 14" +defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_ViewportsEnable" +defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiConfigFlags_"][11] = {} -defs["enums"]["ImGuiConfigFlags_"][11]["calc_value"] = 32768 -defs["enums"]["ImGuiConfigFlags_"][11]["name"] = "ImGuiConfigFlags_DpiEnableScaleFonts" -defs["enums"]["ImGuiConfigFlags_"][11]["value"] = "1 << 15" +defs["enums"]["ImGuiConfigFlags_"][11]["calc_value"] = 16384 +defs["enums"]["ImGuiConfigFlags_"][11]["name"] = "ImGuiConfigFlags_DpiEnableScaleViewports" +defs["enums"]["ImGuiConfigFlags_"][11]["value"] = "1 << 14" defs["enums"]["ImGuiConfigFlags_"][12] = {} -defs["enums"]["ImGuiConfigFlags_"][12]["calc_value"] = 1048576 -defs["enums"]["ImGuiConfigFlags_"][12]["name"] = "ImGuiConfigFlags_IsSRGB" -defs["enums"]["ImGuiConfigFlags_"][12]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][12]["calc_value"] = 32768 +defs["enums"]["ImGuiConfigFlags_"][12]["name"] = "ImGuiConfigFlags_DpiEnableScaleFonts" +defs["enums"]["ImGuiConfigFlags_"][12]["value"] = "1 << 15" defs["enums"]["ImGuiConfigFlags_"][13] = {} -defs["enums"]["ImGuiConfigFlags_"][13]["calc_value"] = 2097152 -defs["enums"]["ImGuiConfigFlags_"][13]["name"] = "ImGuiConfigFlags_IsTouchScreen" -defs["enums"]["ImGuiConfigFlags_"][13]["value"] = "1 << 21" +defs["enums"]["ImGuiConfigFlags_"][13]["calc_value"] = 1048576 +defs["enums"]["ImGuiConfigFlags_"][13]["name"] = "ImGuiConfigFlags_IsSRGB" +defs["enums"]["ImGuiConfigFlags_"][13]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][14] = {} +defs["enums"]["ImGuiConfigFlags_"][14]["calc_value"] = 2097152 +defs["enums"]["ImGuiConfigFlags_"][14]["name"] = "ImGuiConfigFlags_IsTouchScreen" +defs["enums"]["ImGuiConfigFlags_"][14]["value"] = "1 << 21" defs["enums"]["ImGuiContextHookType"] = {} defs["enums"]["ImGuiContextHookType"][1] = {} defs["enums"]["ImGuiContextHookType"][1]["calc_value"] = 0 @@ -766,15 +831,15 @@ defs["enums"]["ImGuiDataAuthority_"][3]["name"] = "ImGuiDataAuthority_Window" defs["enums"]["ImGuiDataAuthority_"][3]["value"] = "2" defs["enums"]["ImGuiDataTypePrivate_"] = {} defs["enums"]["ImGuiDataTypePrivate_"][1] = {} -defs["enums"]["ImGuiDataTypePrivate_"][1]["calc_value"] = 11 +defs["enums"]["ImGuiDataTypePrivate_"][1]["calc_value"] = 12 defs["enums"]["ImGuiDataTypePrivate_"][1]["name"] = "ImGuiDataType_String" defs["enums"]["ImGuiDataTypePrivate_"][1]["value"] = "ImGuiDataType_COUNT + 1" defs["enums"]["ImGuiDataTypePrivate_"][2] = {} -defs["enums"]["ImGuiDataTypePrivate_"][2]["calc_value"] = 12 +defs["enums"]["ImGuiDataTypePrivate_"][2]["calc_value"] = 13 defs["enums"]["ImGuiDataTypePrivate_"][2]["name"] = "ImGuiDataType_Pointer" defs["enums"]["ImGuiDataTypePrivate_"][2]["value"] = "ImGuiDataType_COUNT + 1+1" defs["enums"]["ImGuiDataTypePrivate_"][3] = {} -defs["enums"]["ImGuiDataTypePrivate_"][3]["calc_value"] = 13 +defs["enums"]["ImGuiDataTypePrivate_"][3]["calc_value"] = 14 defs["enums"]["ImGuiDataTypePrivate_"][3]["name"] = "ImGuiDataType_ID" defs["enums"]["ImGuiDataTypePrivate_"][3]["value"] = "ImGuiDataType_COUNT + 1+1+1" defs["enums"]["ImGuiDataType_"] = {} @@ -820,8 +885,12 @@ defs["enums"]["ImGuiDataType_"][10]["name"] = "ImGuiDataType_Double" defs["enums"]["ImGuiDataType_"][10]["value"] = "9" defs["enums"]["ImGuiDataType_"][11] = {} defs["enums"]["ImGuiDataType_"][11]["calc_value"] = 10 -defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_Bool" defs["enums"]["ImGuiDataType_"][11]["value"] = "10" +defs["enums"]["ImGuiDataType_"][12] = {} +defs["enums"]["ImGuiDataType_"][12]["calc_value"] = 11 +defs["enums"]["ImGuiDataType_"][12]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][12]["value"] = "11" defs["enums"]["ImGuiDebugLogFlags_"] = {} defs["enums"]["ImGuiDebugLogFlags_"][1] = {} defs["enums"]["ImGuiDebugLogFlags_"][1]["calc_value"] = 0 @@ -849,49 +918,61 @@ defs["enums"]["ImGuiDebugLogFlags_"][6]["name"] = "ImGuiDebugLogFlags_EventClipp defs["enums"]["ImGuiDebugLogFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDebugLogFlags_"][7] = {} defs["enums"]["ImGuiDebugLogFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDebugLogFlags_"][7]["name"] = "ImGuiDebugLogFlags_EventIO" +defs["enums"]["ImGuiDebugLogFlags_"][7]["name"] = "ImGuiDebugLogFlags_EventSelection" defs["enums"]["ImGuiDebugLogFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDebugLogFlags_"][8] = {} defs["enums"]["ImGuiDebugLogFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventDocking" +defs["enums"]["ImGuiDebugLogFlags_"][8]["name"] = "ImGuiDebugLogFlags_EventIO" defs["enums"]["ImGuiDebugLogFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDebugLogFlags_"][9] = {} defs["enums"]["ImGuiDebugLogFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][9]["name"] = "ImGuiDebugLogFlags_EventInputRouting" defs["enums"]["ImGuiDebugLogFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDebugLogFlags_"][10] = {} -defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 255 -defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventMask_" -defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiDebugLogFlags_"][10]["name"] = "ImGuiDebugLogFlags_EventDocking" +defs["enums"]["ImGuiDebugLogFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiDebugLogFlags_"][11] = {} -defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 1024 -defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_OutputToTTY" -defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 10" -defs["enums"]["ImGuiDir_"] = {} -defs["enums"]["ImGuiDir_"][1] = {} -defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 -defs["enums"]["ImGuiDir_"][1]["name"] = "ImGuiDir_None" -defs["enums"]["ImGuiDir_"][1]["value"] = "-1" -defs["enums"]["ImGuiDir_"][2] = {} -defs["enums"]["ImGuiDir_"][2]["calc_value"] = 0 -defs["enums"]["ImGuiDir_"][2]["name"] = "ImGuiDir_Left" -defs["enums"]["ImGuiDir_"][2]["value"] = "0" -defs["enums"]["ImGuiDir_"][3] = {} -defs["enums"]["ImGuiDir_"][3]["calc_value"] = 1 -defs["enums"]["ImGuiDir_"][3]["name"] = "ImGuiDir_Right" -defs["enums"]["ImGuiDir_"][3]["value"] = "1" -defs["enums"]["ImGuiDir_"][4] = {} -defs["enums"]["ImGuiDir_"][4]["calc_value"] = 2 -defs["enums"]["ImGuiDir_"][4]["name"] = "ImGuiDir_Up" -defs["enums"]["ImGuiDir_"][4]["value"] = "2" -defs["enums"]["ImGuiDir_"][5] = {} -defs["enums"]["ImGuiDir_"][5]["calc_value"] = 3 -defs["enums"]["ImGuiDir_"][5]["name"] = "ImGuiDir_Down" -defs["enums"]["ImGuiDir_"][5]["value"] = "3" -defs["enums"]["ImGuiDir_"][6] = {} -defs["enums"]["ImGuiDir_"][6]["calc_value"] = 4 -defs["enums"]["ImGuiDir_"][6]["name"] = "ImGuiDir_COUNT" -defs["enums"]["ImGuiDir_"][6]["value"] = "4" +defs["enums"]["ImGuiDebugLogFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiDebugLogFlags_"][11]["name"] = "ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiDebugLogFlags_"][12] = {} +defs["enums"]["ImGuiDebugLogFlags_"][12]["calc_value"] = 1023 +defs["enums"]["ImGuiDebugLogFlags_"][12]["name"] = "ImGuiDebugLogFlags_EventMask_" +defs["enums"]["ImGuiDebugLogFlags_"][12]["value"] = "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting | ImGuiDebugLogFlags_EventDocking | ImGuiDebugLogFlags_EventViewport" +defs["enums"]["ImGuiDebugLogFlags_"][13] = {} +defs["enums"]["ImGuiDebugLogFlags_"][13]["calc_value"] = 1048576 +defs["enums"]["ImGuiDebugLogFlags_"][13]["name"] = "ImGuiDebugLogFlags_OutputToTTY" +defs["enums"]["ImGuiDebugLogFlags_"][13]["value"] = "1 << 20" +defs["enums"]["ImGuiDebugLogFlags_"][14] = {} +defs["enums"]["ImGuiDebugLogFlags_"][14]["calc_value"] = 2097152 +defs["enums"]["ImGuiDebugLogFlags_"][14]["name"] = "ImGuiDebugLogFlags_OutputToTestEngine" +defs["enums"]["ImGuiDebugLogFlags_"][14]["value"] = "1 << 21" +defs["enums"]["ImGuiDir"] = {} +defs["enums"]["ImGuiDir"][1] = {} +defs["enums"]["ImGuiDir"][1]["calc_value"] = -1 +defs["enums"]["ImGuiDir"][1]["name"] = "ImGuiDir_None" +defs["enums"]["ImGuiDir"][1]["value"] = "-1" +defs["enums"]["ImGuiDir"][2] = {} +defs["enums"]["ImGuiDir"][2]["calc_value"] = 0 +defs["enums"]["ImGuiDir"][2]["name"] = "ImGuiDir_Left" +defs["enums"]["ImGuiDir"][2]["value"] = "0" +defs["enums"]["ImGuiDir"][3] = {} +defs["enums"]["ImGuiDir"][3]["calc_value"] = 1 +defs["enums"]["ImGuiDir"][3]["name"] = "ImGuiDir_Right" +defs["enums"]["ImGuiDir"][3]["value"] = "1" +defs["enums"]["ImGuiDir"][4] = {} +defs["enums"]["ImGuiDir"][4]["calc_value"] = 2 +defs["enums"]["ImGuiDir"][4]["name"] = "ImGuiDir_Up" +defs["enums"]["ImGuiDir"][4]["value"] = "2" +defs["enums"]["ImGuiDir"][5] = {} +defs["enums"]["ImGuiDir"][5]["calc_value"] = 3 +defs["enums"]["ImGuiDir"][5]["name"] = "ImGuiDir_Down" +defs["enums"]["ImGuiDir"][5]["value"] = "3" +defs["enums"]["ImGuiDir"][6] = {} +defs["enums"]["ImGuiDir"][6]["calc_value"] = 4 +defs["enums"]["ImGuiDir"][6]["name"] = "ImGuiDir_COUNT" +defs["enums"]["ImGuiDir"][6]["value"] = "4" defs["enums"]["ImGuiDockNodeFlagsPrivate_"] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][1] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][1]["calc_value"] = 1024 @@ -919,56 +1000,52 @@ defs["enums"]["ImGuiDockNodeFlagsPrivate_"][6]["name"] = "ImGuiDockNodeFlags_NoC defs["enums"]["ImGuiDockNodeFlagsPrivate_"][6]["value"] = "1 << 15" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["calc_value"] = 65536 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["name"] = "ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["name"] = "ImGuiDockNodeFlags_NoResizeX" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][7]["value"] = "1 << 16" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["calc_value"] = 131072 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["name"] = "ImGuiDockNodeFlags_NoDockingSplitMe" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["name"] = "ImGuiDockNodeFlags_NoResizeY" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][8]["value"] = "1 << 17" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["calc_value"] = 262144 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["name"] = "ImGuiDockNodeFlags_NoDockingSplitOther" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["name"] = "ImGuiDockNodeFlags_DockedWindowsInFocusRoute" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][9]["value"] = "1 << 18" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["calc_value"] = 524288 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["name"] = "ImGuiDockNodeFlags_NoDockingOverMe" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["name"] = "ImGuiDockNodeFlags_NoDockingSplitOther" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][10]["value"] = "1 << 19" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["calc_value"] = 1048576 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["name"] = "ImGuiDockNodeFlags_NoDockingOverOther" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["name"] = "ImGuiDockNodeFlags_NoDockingOverMe" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][11]["value"] = "1 << 20" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["calc_value"] = 2097152 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["name"] = "ImGuiDockNodeFlags_NoDockingOverEmpty" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["name"] = "ImGuiDockNodeFlags_NoDockingOverOther" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][12]["value"] = "1 << 21" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["calc_value"] = 4194304 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["name"] = "ImGuiDockNodeFlags_NoResizeX" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["name"] = "ImGuiDockNodeFlags_NoDockingOverEmpty" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][13]["value"] = "1 << 22" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["calc_value"] = 8388608 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["name"] = "ImGuiDockNodeFlags_NoResizeY" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["value"] = "1 << 23" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["calc_value"] = 7864336 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["name"] = "ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][14]["value"] = "ImGuiDockNodeFlags_NoDockingOverMe | ImGuiDockNodeFlags_NoDockingOverOther | ImGuiDockNodeFlags_NoDockingOverEmpty | ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoDockingSplitOther" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15] = {} defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["calc_value"] = -1 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["name"] = "ImGuiDockNodeFlags_SharedFlagsInheritMask_" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][15]["value"] = "~0" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["calc_value"] = 12582944 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["calc_value"] = 196640 defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["name"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["value"] = "ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][16]["value"] = "(int)ImGuiDockNodeFlags_NoResize | ImGuiDockNodeFlags_NoResizeX | ImGuiDockNodeFlags_NoResizeY" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["calc_value"] = 12713072 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["name"] = "ImGuiDockNodeFlags_LocalFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["value"] = "ImGuiDockNodeFlags_NoSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["calc_value"] = 260208 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["name"] = "ImGuiDockNodeFlags_LocalFlagsTransferMask_" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][17]["value"] = "(int)ImGuiDockNodeFlags_NoDockingSplit | ImGuiDockNodeFlags_NoResizeFlagsMask_ | (int)ImGuiDockNodeFlags_AutoHideTabBar | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["calc_value"] = 12712048 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["name"] = "ImGuiDockNodeFlags_LocalFlagsTransferMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["value"] = "ImGuiDockNodeFlags_LocalFlagsMask_ & ~ImGuiDockNodeFlags_DockSpace" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19] = {} -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19]["calc_value"] = 12712992 -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19]["name"] = "ImGuiDockNodeFlags_SavedFlagsMask_" -defs["enums"]["ImGuiDockNodeFlagsPrivate_"][19]["value"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton | ImGuiDockNodeFlags_NoDocking" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["calc_value"] = 261152 +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["name"] = "ImGuiDockNodeFlags_SavedFlagsMask_" +defs["enums"]["ImGuiDockNodeFlagsPrivate_"][18]["value"] = "ImGuiDockNodeFlags_NoResizeFlagsMask_ | ImGuiDockNodeFlags_DockSpace | ImGuiDockNodeFlags_CentralNode | ImGuiDockNodeFlags_NoTabBar | ImGuiDockNodeFlags_HiddenTabBar | ImGuiDockNodeFlags_NoWindowMenuButton | ImGuiDockNodeFlags_NoCloseButton" defs["enums"]["ImGuiDockNodeFlags_"] = {} defs["enums"]["ImGuiDockNodeFlags_"][1] = {} defs["enums"]["ImGuiDockNodeFlags_"][1]["calc_value"] = 0 @@ -980,7 +1057,7 @@ defs["enums"]["ImGuiDockNodeFlags_"][2]["name"] = "ImGuiDockNodeFlags_KeepAliveO defs["enums"]["ImGuiDockNodeFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiDockNodeFlags_"][3] = {} defs["enums"]["ImGuiDockNodeFlags_"][3]["calc_value"] = 4 -defs["enums"]["ImGuiDockNodeFlags_"][3]["name"] = "ImGuiDockNodeFlags_NoDockingInCentralNode" +defs["enums"]["ImGuiDockNodeFlags_"][3]["name"] = "ImGuiDockNodeFlags_NoDockingOverCentralNode" defs["enums"]["ImGuiDockNodeFlags_"][3]["value"] = "1 << 2" defs["enums"]["ImGuiDockNodeFlags_"][4] = {} defs["enums"]["ImGuiDockNodeFlags_"][4]["calc_value"] = 8 @@ -988,7 +1065,7 @@ defs["enums"]["ImGuiDockNodeFlags_"][4]["name"] = "ImGuiDockNodeFlags_PassthruCe defs["enums"]["ImGuiDockNodeFlags_"][4]["value"] = "1 << 3" defs["enums"]["ImGuiDockNodeFlags_"][5] = {} defs["enums"]["ImGuiDockNodeFlags_"][5]["calc_value"] = 16 -defs["enums"]["ImGuiDockNodeFlags_"][5]["name"] = "ImGuiDockNodeFlags_NoSplit" +defs["enums"]["ImGuiDockNodeFlags_"][5]["name"] = "ImGuiDockNodeFlags_NoDockingSplit" defs["enums"]["ImGuiDockNodeFlags_"][5]["value"] = "1 << 4" defs["enums"]["ImGuiDockNodeFlags_"][6] = {} defs["enums"]["ImGuiDockNodeFlags_"][6]["calc_value"] = 32 @@ -998,6 +1075,10 @@ defs["enums"]["ImGuiDockNodeFlags_"][7] = {} defs["enums"]["ImGuiDockNodeFlags_"][7]["calc_value"] = 64 defs["enums"]["ImGuiDockNodeFlags_"][7]["name"] = "ImGuiDockNodeFlags_AutoHideTabBar" defs["enums"]["ImGuiDockNodeFlags_"][7]["value"] = "1 << 6" +defs["enums"]["ImGuiDockNodeFlags_"][8] = {} +defs["enums"]["ImGuiDockNodeFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiDockNodeFlags_"][8]["name"] = "ImGuiDockNodeFlags_NoUndocking" +defs["enums"]["ImGuiDockNodeFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiDockNodeState"] = {} defs["enums"]["ImGuiDockNodeState"][1] = {} defs["enums"]["ImGuiDockNodeState"][1]["calc_value"] = 0 @@ -1042,24 +1123,45 @@ defs["enums"]["ImGuiDragDropFlags_"][6]["name"] = "ImGuiDragDropFlags_SourceExte defs["enums"]["ImGuiDragDropFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDragDropFlags_"][7] = {} defs["enums"]["ImGuiDragDropFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_SourceAutoExpirePayload" +defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_PayloadAutoExpire" defs["enums"]["ImGuiDragDropFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDragDropFlags_"][8] = {} -defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 1024 -defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" -defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 10" +defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_PayloadNoCrossContext" +defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDragDropFlags_"][9] = {} -defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 2048 -defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" -defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_PayloadNoCrossProcess" +defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDragDropFlags_"][10] = {} -defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 4096 -defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" -defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" +defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiDragDropFlags_"][11] = {} -defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 3072 -defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" -defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][12] = {} +defs["enums"]["ImGuiDragDropFlags_"][12]["calc_value"] = 4096 +defs["enums"]["ImGuiDragDropFlags_"][12]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" +defs["enums"]["ImGuiDragDropFlags_"][12]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][13] = {} +defs["enums"]["ImGuiDragDropFlags_"][13]["calc_value"] = 3072 +defs["enums"]["ImGuiDragDropFlags_"][13]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" +defs["enums"]["ImGuiDragDropFlags_"][13]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiFocusRequestFlags_"] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][1] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiFocusRequestFlags_"][1]["name"] = "ImGuiFocusRequestFlags_None" +defs["enums"]["ImGuiFocusRequestFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiFocusRequestFlags_"][2] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiFocusRequestFlags_"][2]["name"] = "ImGuiFocusRequestFlags_RestoreFocusedChild" +defs["enums"]["ImGuiFocusRequestFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiFocusRequestFlags_"][3] = {} +defs["enums"]["ImGuiFocusRequestFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiFocusRequestFlags_"][3]["name"] = "ImGuiFocusRequestFlags_UnlessBelowModal" +defs["enums"]["ImGuiFocusRequestFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiFocusedFlags_"] = {} defs["enums"]["ImGuiFocusedFlags_"][1] = {} defs["enums"]["ImGuiFocusedFlags_"][1]["calc_value"] = 0 @@ -1089,6 +1191,19 @@ defs["enums"]["ImGuiFocusedFlags_"][7] = {} defs["enums"]["ImGuiFocusedFlags_"][7]["calc_value"] = 3 defs["enums"]["ImGuiFocusedFlags_"][7]["name"] = "ImGuiFocusedFlags_RootAndChildWindows" defs["enums"]["ImGuiFocusedFlags_"][7]["value"] = "ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows" +defs["enums"]["ImGuiHoveredFlagsPrivate_"] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1]["calc_value"] = 245760 +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1]["name"] = "ImGuiHoveredFlags_DelayMask_" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][1]["value"] = "ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2]["calc_value"] = 12479 +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2]["name"] = "ImGuiHoveredFlags_AllowedMaskForIsWindowHovered" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][2]["value"] = "ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_DockHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3]["calc_value"] = 262048 +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3]["name"] = "ImGuiHoveredFlags_AllowedMaskForIsItemHovered" +defs["enums"]["ImGuiHoveredFlagsPrivate_"][3]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_" defs["enums"]["ImGuiHoveredFlags_"] = {} defs["enums"]["ImGuiHoveredFlags_"][1] = {} defs["enums"]["ImGuiHoveredFlags_"][1]["calc_value"] = 0 @@ -1124,36 +1239,56 @@ defs["enums"]["ImGuiHoveredFlags_"][8]["name"] = "ImGuiHoveredFlags_AllowWhenBlo defs["enums"]["ImGuiHoveredFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiHoveredFlags_"][9] = {} defs["enums"]["ImGuiHoveredFlags_"][9]["calc_value"] = 256 -defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem" defs["enums"]["ImGuiHoveredFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiHoveredFlags_"][10] = {} defs["enums"]["ImGuiHoveredFlags_"][10]["calc_value"] = 512 -defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" +defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][10]["value"] = "1 << 9" defs["enums"]["ImGuiHoveredFlags_"][11] = {} defs["enums"]["ImGuiHoveredFlags_"][11]["calc_value"] = 1024 -defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" defs["enums"]["ImGuiHoveredFlags_"][11]["value"] = "1 << 10" defs["enums"]["ImGuiHoveredFlags_"][12] = {} -defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 416 -defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_RectOnly" -defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 2048 +defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "1 << 11" defs["enums"]["ImGuiHoveredFlags_"][13] = {} -defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 3 -defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" -defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 768 +defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][14] = {} -defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 2048 -defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_DelayNormal" -defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "1 << 11" +defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 928 +defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_RectOnly" +defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" defs["enums"]["ImGuiHoveredFlags_"][15] = {} -defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 4096 -defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_DelayShort" -defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 3 +defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" defs["enums"]["ImGuiHoveredFlags_"][16] = {} -defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 8192 -defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_NoSharedDelay" -defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 4096 +defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_ForTooltip" +defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][17] = {} +defs["enums"]["ImGuiHoveredFlags_"][17]["calc_value"] = 8192 +defs["enums"]["ImGuiHoveredFlags_"][17]["name"] = "ImGuiHoveredFlags_Stationary" +defs["enums"]["ImGuiHoveredFlags_"][17]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][18] = {} +defs["enums"]["ImGuiHoveredFlags_"][18]["calc_value"] = 16384 +defs["enums"]["ImGuiHoveredFlags_"][18]["name"] = "ImGuiHoveredFlags_DelayNone" +defs["enums"]["ImGuiHoveredFlags_"][18]["value"] = "1 << 14" +defs["enums"]["ImGuiHoveredFlags_"][19] = {} +defs["enums"]["ImGuiHoveredFlags_"][19]["calc_value"] = 32768 +defs["enums"]["ImGuiHoveredFlags_"][19]["name"] = "ImGuiHoveredFlags_DelayShort" +defs["enums"]["ImGuiHoveredFlags_"][19]["value"] = "1 << 15" +defs["enums"]["ImGuiHoveredFlags_"][20] = {} +defs["enums"]["ImGuiHoveredFlags_"][20]["calc_value"] = 65536 +defs["enums"]["ImGuiHoveredFlags_"][20]["name"] = "ImGuiHoveredFlags_DelayNormal" +defs["enums"]["ImGuiHoveredFlags_"][20]["value"] = "1 << 16" +defs["enums"]["ImGuiHoveredFlags_"][21] = {} +defs["enums"]["ImGuiHoveredFlags_"][21]["calc_value"] = 131072 +defs["enums"]["ImGuiHoveredFlags_"][21]["name"] = "ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlags_"][21]["value"] = "1 << 17" defs["enums"]["ImGuiInputEventType"] = {} defs["enums"]["ImGuiInputEventType"][1] = {} defs["enums"]["ImGuiInputEventType"][1]["calc_value"] = 0 @@ -1191,6 +1326,103 @@ defs["enums"]["ImGuiInputEventType"][9] = {} defs["enums"]["ImGuiInputEventType"][9]["calc_value"] = 8 defs["enums"]["ImGuiInputEventType"][9]["name"] = "ImGuiInputEventType_COUNT" defs["enums"]["ImGuiInputEventType"][9]["value"] = "8" +defs["enums"]["ImGuiInputFlagsPrivate_"] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][1] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][1]["calc_value"] = 2 +defs["enums"]["ImGuiInputFlagsPrivate_"][1]["name"] = "ImGuiInputFlags_RepeatRateDefault" +defs["enums"]["ImGuiInputFlagsPrivate_"][1]["value"] = "1 << 1" +defs["enums"]["ImGuiInputFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][2]["calc_value"] = 4 +defs["enums"]["ImGuiInputFlagsPrivate_"][2]["name"] = "ImGuiInputFlags_RepeatRateNavMove" +defs["enums"]["ImGuiInputFlagsPrivate_"][2]["value"] = "1 << 2" +defs["enums"]["ImGuiInputFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][3]["calc_value"] = 8 +defs["enums"]["ImGuiInputFlagsPrivate_"][3]["name"] = "ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlagsPrivate_"][3]["value"] = "1 << 3" +defs["enums"]["ImGuiInputFlagsPrivate_"][4] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][4]["calc_value"] = 16 +defs["enums"]["ImGuiInputFlagsPrivate_"][4]["name"] = "ImGuiInputFlags_RepeatUntilRelease" +defs["enums"]["ImGuiInputFlagsPrivate_"][4]["value"] = "1 << 4" +defs["enums"]["ImGuiInputFlagsPrivate_"][5] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][5]["calc_value"] = 32 +defs["enums"]["ImGuiInputFlagsPrivate_"][5]["name"] = "ImGuiInputFlags_RepeatUntilKeyModsChange" +defs["enums"]["ImGuiInputFlagsPrivate_"][5]["value"] = "1 << 5" +defs["enums"]["ImGuiInputFlagsPrivate_"][6] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][6]["calc_value"] = 64 +defs["enums"]["ImGuiInputFlagsPrivate_"][6]["name"] = "ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone" +defs["enums"]["ImGuiInputFlagsPrivate_"][6]["value"] = "1 << 6" +defs["enums"]["ImGuiInputFlagsPrivate_"][7] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][7]["calc_value"] = 128 +defs["enums"]["ImGuiInputFlagsPrivate_"][7]["name"] = "ImGuiInputFlags_RepeatUntilOtherKeyPress" +defs["enums"]["ImGuiInputFlagsPrivate_"][7]["value"] = "1 << 7" +defs["enums"]["ImGuiInputFlagsPrivate_"][8] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][8]["calc_value"] = 1048576 +defs["enums"]["ImGuiInputFlagsPrivate_"][8]["name"] = "ImGuiInputFlags_LockThisFrame" +defs["enums"]["ImGuiInputFlagsPrivate_"][8]["value"] = "1 << 20" +defs["enums"]["ImGuiInputFlagsPrivate_"][9] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][9]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputFlagsPrivate_"][9]["name"] = "ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlagsPrivate_"][9]["value"] = "1 << 21" +defs["enums"]["ImGuiInputFlagsPrivate_"][10] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][10]["calc_value"] = 4194304 +defs["enums"]["ImGuiInputFlagsPrivate_"][10]["name"] = "ImGuiInputFlags_CondHovered" +defs["enums"]["ImGuiInputFlagsPrivate_"][10]["value"] = "1 << 22" +defs["enums"]["ImGuiInputFlagsPrivate_"][11] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][11]["calc_value"] = 8388608 +defs["enums"]["ImGuiInputFlagsPrivate_"][11]["name"] = "ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlagsPrivate_"][11]["value"] = "1 << 23" +defs["enums"]["ImGuiInputFlagsPrivate_"][12] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][12]["calc_value"] = 12582912 +defs["enums"]["ImGuiInputFlagsPrivate_"][12]["name"] = "ImGuiInputFlags_CondDefault_" +defs["enums"]["ImGuiInputFlagsPrivate_"][12]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlagsPrivate_"][13] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][13]["calc_value"] = 14 +defs["enums"]["ImGuiInputFlagsPrivate_"][13]["name"] = "ImGuiInputFlags_RepeatRateMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][13]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlagsPrivate_"][14] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][14]["calc_value"] = 240 +defs["enums"]["ImGuiInputFlagsPrivate_"][14]["name"] = "ImGuiInputFlags_RepeatUntilMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][14]["value"] = "ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress" +defs["enums"]["ImGuiInputFlagsPrivate_"][15] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][15]["calc_value"] = 255 +defs["enums"]["ImGuiInputFlagsPrivate_"][15]["name"] = "ImGuiInputFlags_RepeatMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][15]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][16] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][16]["calc_value"] = 12582912 +defs["enums"]["ImGuiInputFlagsPrivate_"][16]["name"] = "ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][16]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlagsPrivate_"][17] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][17]["calc_value"] = 15360 +defs["enums"]["ImGuiInputFlagsPrivate_"][17]["name"] = "ImGuiInputFlags_RouteTypeMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][17]["value"] = "ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlagsPrivate_"][18] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][18]["calc_value"] = 245760 +defs["enums"]["ImGuiInputFlagsPrivate_"][18]["name"] = "ImGuiInputFlags_RouteOptionsMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][18]["value"] = "ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow" +defs["enums"]["ImGuiInputFlagsPrivate_"][19] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][19]["calc_value"] = 255 +defs["enums"]["ImGuiInputFlagsPrivate_"][19]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" +defs["enums"]["ImGuiInputFlagsPrivate_"][19]["value"] = "ImGuiInputFlags_RepeatMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][20] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][20]["calc_value"] = 1 +defs["enums"]["ImGuiInputFlagsPrivate_"][20]["name"] = "ImGuiInputFlags_SupportedByIsMouseClicked" +defs["enums"]["ImGuiInputFlagsPrivate_"][20]["value"] = "ImGuiInputFlags_Repeat" +defs["enums"]["ImGuiInputFlagsPrivate_"][21] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][21]["calc_value"] = 261375 +defs["enums"]["ImGuiInputFlagsPrivate_"][21]["name"] = "ImGuiInputFlags_SupportedByShortcut" +defs["enums"]["ImGuiInputFlagsPrivate_"][21]["value"] = "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_" +defs["enums"]["ImGuiInputFlagsPrivate_"][22] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][22]["calc_value"] = 523519 +defs["enums"]["ImGuiInputFlagsPrivate_"][22]["name"] = "ImGuiInputFlags_SupportedBySetNextItemShortcut" +defs["enums"]["ImGuiInputFlagsPrivate_"][22]["value"] = "ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip" +defs["enums"]["ImGuiInputFlagsPrivate_"][23] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][23]["calc_value"] = 3145728 +defs["enums"]["ImGuiInputFlagsPrivate_"][23]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" +defs["enums"]["ImGuiInputFlagsPrivate_"][23]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" +defs["enums"]["ImGuiInputFlagsPrivate_"][24] = {} +defs["enums"]["ImGuiInputFlagsPrivate_"][24]["calc_value"] = 15728640 +defs["enums"]["ImGuiInputFlagsPrivate_"][24]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" +defs["enums"]["ImGuiInputFlagsPrivate_"][24]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" defs["enums"]["ImGuiInputFlags_"] = {} defs["enums"]["ImGuiInputFlags_"][1] = {} defs["enums"]["ImGuiInputFlags_"][1]["calc_value"] = 0 @@ -1201,93 +1433,41 @@ defs["enums"]["ImGuiInputFlags_"][2]["calc_value"] = 1 defs["enums"]["ImGuiInputFlags_"][2]["name"] = "ImGuiInputFlags_Repeat" defs["enums"]["ImGuiInputFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiInputFlags_"][3] = {} -defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RepeatRateDefault" -defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 1024 +defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RouteActive" +defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 10" defs["enums"]["ImGuiInputFlags_"][4] = {} -defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RepeatRateNavMove" -defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 2048 +defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RouteFocused" +defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 11" defs["enums"]["ImGuiInputFlags_"][5] = {} -defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RepeatRateNavTweak" -defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 4096 +defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RouteGlobal" +defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 12" defs["enums"]["ImGuiInputFlags_"][6] = {} -defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 14 -defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RepeatRateMask_" -defs["enums"]["ImGuiInputFlags_"][6]["value"] = "ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak" +defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 8192 +defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlags_"][6]["value"] = "1 << 13" defs["enums"]["ImGuiInputFlags_"][7] = {} -defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16 -defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_CondHovered" -defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 4" +defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16384 +defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_RouteOverFocused" +defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 14" defs["enums"]["ImGuiInputFlags_"][8] = {} -defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32 -defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_CondActive" -defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 5" +defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32768 +defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_RouteOverActive" +defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 15" defs["enums"]["ImGuiInputFlags_"][9] = {} -defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 48 -defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_CondDefault_" -defs["enums"]["ImGuiInputFlags_"][9]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 65536 +defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][9]["value"] = "1 << 16" defs["enums"]["ImGuiInputFlags_"][10] = {} -defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 48 -defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_CondMask_" -defs["enums"]["ImGuiInputFlags_"][10]["value"] = "ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive" +defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 131072 +defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_RouteFromRootWindow" +defs["enums"]["ImGuiInputFlags_"][10]["value"] = "1 << 17" defs["enums"]["ImGuiInputFlags_"][11] = {} -defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_LockThisFrame" -defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 6" -defs["enums"]["ImGuiInputFlags_"][12] = {} -defs["enums"]["ImGuiInputFlags_"][12]["calc_value"] = 128 -defs["enums"]["ImGuiInputFlags_"][12]["name"] = "ImGuiInputFlags_LockUntilRelease" -defs["enums"]["ImGuiInputFlags_"][12]["value"] = "1 << 7" -defs["enums"]["ImGuiInputFlags_"][13] = {} -defs["enums"]["ImGuiInputFlags_"][13]["calc_value"] = 256 -defs["enums"]["ImGuiInputFlags_"][13]["name"] = "ImGuiInputFlags_RouteFocused" -defs["enums"]["ImGuiInputFlags_"][13]["value"] = "1 << 8" -defs["enums"]["ImGuiInputFlags_"][14] = {} -defs["enums"]["ImGuiInputFlags_"][14]["calc_value"] = 512 -defs["enums"]["ImGuiInputFlags_"][14]["name"] = "ImGuiInputFlags_RouteGlobalLow" -defs["enums"]["ImGuiInputFlags_"][14]["value"] = "1 << 9" -defs["enums"]["ImGuiInputFlags_"][15] = {} -defs["enums"]["ImGuiInputFlags_"][15]["calc_value"] = 1024 -defs["enums"]["ImGuiInputFlags_"][15]["name"] = "ImGuiInputFlags_RouteGlobal" -defs["enums"]["ImGuiInputFlags_"][15]["value"] = "1 << 10" -defs["enums"]["ImGuiInputFlags_"][16] = {} -defs["enums"]["ImGuiInputFlags_"][16]["calc_value"] = 2048 -defs["enums"]["ImGuiInputFlags_"][16]["name"] = "ImGuiInputFlags_RouteGlobalHigh" -defs["enums"]["ImGuiInputFlags_"][16]["value"] = "1 << 11" -defs["enums"]["ImGuiInputFlags_"][17] = {} -defs["enums"]["ImGuiInputFlags_"][17]["calc_value"] = 3840 -defs["enums"]["ImGuiInputFlags_"][17]["name"] = "ImGuiInputFlags_RouteMask_" -defs["enums"]["ImGuiInputFlags_"][17]["value"] = "ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh" -defs["enums"]["ImGuiInputFlags_"][18] = {} -defs["enums"]["ImGuiInputFlags_"][18]["calc_value"] = 4096 -defs["enums"]["ImGuiInputFlags_"][18]["name"] = "ImGuiInputFlags_RouteAlways" -defs["enums"]["ImGuiInputFlags_"][18]["value"] = "1 << 12" -defs["enums"]["ImGuiInputFlags_"][19] = {} -defs["enums"]["ImGuiInputFlags_"][19]["calc_value"] = 8192 -defs["enums"]["ImGuiInputFlags_"][19]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" -defs["enums"]["ImGuiInputFlags_"][19]["value"] = "1 << 13" -defs["enums"]["ImGuiInputFlags_"][20] = {} -defs["enums"]["ImGuiInputFlags_"][20]["calc_value"] = 12288 -defs["enums"]["ImGuiInputFlags_"][20]["name"] = "ImGuiInputFlags_RouteExtraMask_" -defs["enums"]["ImGuiInputFlags_"][20]["value"] = "ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused" -defs["enums"]["ImGuiInputFlags_"][21] = {} -defs["enums"]["ImGuiInputFlags_"][21]["calc_value"] = 15 -defs["enums"]["ImGuiInputFlags_"][21]["name"] = "ImGuiInputFlags_SupportedByIsKeyPressed" -defs["enums"]["ImGuiInputFlags_"][21]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_" -defs["enums"]["ImGuiInputFlags_"][22] = {} -defs["enums"]["ImGuiInputFlags_"][22]["calc_value"] = 16143 -defs["enums"]["ImGuiInputFlags_"][22]["name"] = "ImGuiInputFlags_SupportedByShortcut" -defs["enums"]["ImGuiInputFlags_"][22]["value"] = "ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_" -defs["enums"]["ImGuiInputFlags_"][23] = {} -defs["enums"]["ImGuiInputFlags_"][23]["calc_value"] = 192 -defs["enums"]["ImGuiInputFlags_"][23]["name"] = "ImGuiInputFlags_SupportedBySetKeyOwner" -defs["enums"]["ImGuiInputFlags_"][23]["value"] = "ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease" -defs["enums"]["ImGuiInputFlags_"][24] = {} -defs["enums"]["ImGuiInputFlags_"][24]["calc_value"] = 240 -defs["enums"]["ImGuiInputFlags_"][24]["name"] = "ImGuiInputFlags_SupportedBySetItemKeyOwner" -defs["enums"]["ImGuiInputFlags_"][24]["value"] = "ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_" +defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 262144 +defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_Tooltip" +defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 18" defs["enums"]["ImGuiInputSource"] = {} defs["enums"]["ImGuiInputSource"][1] = {} defs["enums"]["ImGuiInputSource"][1]["calc_value"] = 0 @@ -1307,16 +1487,8 @@ defs["enums"]["ImGuiInputSource"][4]["name"] = "ImGuiInputSource_Gamepad" defs["enums"]["ImGuiInputSource"][4]["value"] = "3" defs["enums"]["ImGuiInputSource"][5] = {} defs["enums"]["ImGuiInputSource"][5]["calc_value"] = 4 -defs["enums"]["ImGuiInputSource"][5]["name"] = "ImGuiInputSource_Clipboard" +defs["enums"]["ImGuiInputSource"][5]["name"] = "ImGuiInputSource_COUNT" defs["enums"]["ImGuiInputSource"][5]["value"] = "4" -defs["enums"]["ImGuiInputSource"][6] = {} -defs["enums"]["ImGuiInputSource"][6]["calc_value"] = 5 -defs["enums"]["ImGuiInputSource"][6]["name"] = "ImGuiInputSource_Nav" -defs["enums"]["ImGuiInputSource"][6]["value"] = "5" -defs["enums"]["ImGuiInputSource"][7] = {} -defs["enums"]["ImGuiInputSource"][7]["calc_value"] = 6 -defs["enums"]["ImGuiInputSource"][7]["name"] = "ImGuiInputSource_COUNT" -defs["enums"]["ImGuiInputSource"][7]["value"] = "6" defs["enums"]["ImGuiInputTextFlagsPrivate_"] = {} defs["enums"]["ImGuiInputTextFlagsPrivate_"][1] = {} defs["enums"]["ImGuiInputTextFlagsPrivate_"][1]["calc_value"] = 67108864 @@ -1330,6 +1502,10 @@ defs["enums"]["ImGuiInputTextFlagsPrivate_"][3] = {} defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["calc_value"] = 268435456 defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["name"] = "ImGuiInputTextFlags_MergedItem" defs["enums"]["ImGuiInputTextFlagsPrivate_"][3]["value"] = "1 << 28" +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4] = {} +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["calc_value"] = 536870912 +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["name"] = "ImGuiInputTextFlags_LocalizeDecimalPoint" +defs["enums"]["ImGuiInputTextFlagsPrivate_"][4]["value"] = "1 << 29" defs["enums"]["ImGuiInputTextFlags_"] = {} defs["enums"]["ImGuiInputTextFlags_"][1] = {} defs["enums"]["ImGuiInputTextFlags_"][1]["calc_value"] = 0 @@ -1345,59 +1521,59 @@ defs["enums"]["ImGuiInputTextFlags_"][3]["name"] = "ImGuiInputTextFlags_CharsHex defs["enums"]["ImGuiInputTextFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiInputTextFlags_"][4] = {} defs["enums"]["ImGuiInputTextFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsUppercase" +defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsScientific" defs["enums"]["ImGuiInputTextFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiInputTextFlags_"][5] = {} defs["enums"]["ImGuiInputTextFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsNoBlank" +defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsUppercase" defs["enums"]["ImGuiInputTextFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiInputTextFlags_"][6] = {} defs["enums"]["ImGuiInputTextFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_AutoSelectAll" +defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_CharsNoBlank" defs["enums"]["ImGuiInputTextFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiInputTextFlags_"][7] = {} defs["enums"]["ImGuiInputTextFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" +defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_AllowTabInput" defs["enums"]["ImGuiInputTextFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiInputTextFlags_"][8] = {} defs["enums"]["ImGuiInputTextFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_CallbackCompletion" +defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" defs["enums"]["ImGuiInputTextFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiInputTextFlags_"][9] = {} defs["enums"]["ImGuiInputTextFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_CallbackHistory" +defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" defs["enums"]["ImGuiInputTextFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiInputTextFlags_"][10] = {} defs["enums"]["ImGuiInputTextFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CallbackAlways" +defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" defs["enums"]["ImGuiInputTextFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiInputTextFlags_"][11] = {} defs["enums"]["ImGuiInputTextFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" +defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_ReadOnly" defs["enums"]["ImGuiInputTextFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiInputTextFlags_"][12] = {} defs["enums"]["ImGuiInputTextFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_AllowTabInput" +defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_Password" defs["enums"]["ImGuiInputTextFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiInputTextFlags_"][13] = {} defs["enums"]["ImGuiInputTextFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" +defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" defs["enums"]["ImGuiInputTextFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiInputTextFlags_"][14] = {} defs["enums"]["ImGuiInputTextFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" +defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_AutoSelectAll" defs["enums"]["ImGuiInputTextFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiInputTextFlags_"][15] = {} defs["enums"]["ImGuiInputTextFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" +defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_ParseEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiInputTextFlags_"][16] = {} defs["enums"]["ImGuiInputTextFlags_"][16]["calc_value"] = 16384 -defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_ReadOnly" +defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_DisplayEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][16]["value"] = "1 << 14" defs["enums"]["ImGuiInputTextFlags_"][17] = {} defs["enums"]["ImGuiInputTextFlags_"][17]["calc_value"] = 32768 -defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_Password" +defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" defs["enums"]["ImGuiInputTextFlags_"][17]["value"] = "1 << 15" defs["enums"]["ImGuiInputTextFlags_"][18] = {} defs["enums"]["ImGuiInputTextFlags_"][18]["calc_value"] = 65536 @@ -1405,20 +1581,65 @@ defs["enums"]["ImGuiInputTextFlags_"][18]["name"] = "ImGuiInputTextFlags_NoUndoR defs["enums"]["ImGuiInputTextFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiInputTextFlags_"][19] = {} defs["enums"]["ImGuiInputTextFlags_"][19]["calc_value"] = 131072 -defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CharsScientific" +defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CallbackCompletion" defs["enums"]["ImGuiInputTextFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiInputTextFlags_"][20] = {} defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 -defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackHistory" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackAlways" defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][23] = {} +defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" +defs["enums"]["ImGuiInputTextFlags_"][24] = {} +defs["enums"]["ImGuiInputTextFlags_"][24]["calc_value"] = 4194304 +defs["enums"]["ImGuiInputTextFlags_"][24]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][24]["value"] = "1 << 22" +defs["enums"]["ImGuiItemFlagsPrivate_"] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][1] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][1]["calc_value"] = 1024 +defs["enums"]["ImGuiItemFlagsPrivate_"][1]["name"] = "ImGuiItemFlags_Disabled" +defs["enums"]["ImGuiItemFlagsPrivate_"][1]["value"] = "1 << 10" +defs["enums"]["ImGuiItemFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][2]["calc_value"] = 2048 +defs["enums"]["ImGuiItemFlagsPrivate_"][2]["name"] = "ImGuiItemFlags_ReadOnly" +defs["enums"]["ImGuiItemFlagsPrivate_"][2]["value"] = "1 << 11" +defs["enums"]["ImGuiItemFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][3]["calc_value"] = 4096 +defs["enums"]["ImGuiItemFlagsPrivate_"][3]["name"] = "ImGuiItemFlags_MixedValue" +defs["enums"]["ImGuiItemFlagsPrivate_"][3]["value"] = "1 << 12" +defs["enums"]["ImGuiItemFlagsPrivate_"][4] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][4]["calc_value"] = 8192 +defs["enums"]["ImGuiItemFlagsPrivate_"][4]["name"] = "ImGuiItemFlags_NoWindowHoverableCheck" +defs["enums"]["ImGuiItemFlagsPrivate_"][4]["value"] = "1 << 13" +defs["enums"]["ImGuiItemFlagsPrivate_"][5] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][5]["calc_value"] = 16384 +defs["enums"]["ImGuiItemFlagsPrivate_"][5]["name"] = "ImGuiItemFlags_AllowOverlap" +defs["enums"]["ImGuiItemFlagsPrivate_"][5]["value"] = "1 << 14" +defs["enums"]["ImGuiItemFlagsPrivate_"][6] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][6]["calc_value"] = 1048576 +defs["enums"]["ImGuiItemFlagsPrivate_"][6]["name"] = "ImGuiItemFlags_Inputable" +defs["enums"]["ImGuiItemFlagsPrivate_"][6]["value"] = "1 << 20" +defs["enums"]["ImGuiItemFlagsPrivate_"][7] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][7]["calc_value"] = 2097152 +defs["enums"]["ImGuiItemFlagsPrivate_"][7]["name"] = "ImGuiItemFlags_HasSelectionUserData" +defs["enums"]["ImGuiItemFlagsPrivate_"][7]["value"] = "1 << 21" +defs["enums"]["ImGuiItemFlagsPrivate_"][8] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][8]["calc_value"] = 4194304 +defs["enums"]["ImGuiItemFlagsPrivate_"][8]["name"] = "ImGuiItemFlags_IsMultiSelect" +defs["enums"]["ImGuiItemFlagsPrivate_"][8]["value"] = "1 << 22" +defs["enums"]["ImGuiItemFlagsPrivate_"][9] = {} +defs["enums"]["ImGuiItemFlagsPrivate_"][9]["calc_value"] = 16 +defs["enums"]["ImGuiItemFlagsPrivate_"][9]["name"] = "ImGuiItemFlags_Default_" +defs["enums"]["ImGuiItemFlagsPrivate_"][9]["value"] = "ImGuiItemFlags_AutoClosePopups" defs["enums"]["ImGuiItemFlags_"] = {} defs["enums"]["ImGuiItemFlags_"][1] = {} defs["enums"]["ImGuiItemFlags_"][1]["calc_value"] = 0 @@ -1430,40 +1651,24 @@ defs["enums"]["ImGuiItemFlags_"][2]["name"] = "ImGuiItemFlags_NoTabStop" defs["enums"]["ImGuiItemFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiItemFlags_"][3] = {} defs["enums"]["ImGuiItemFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiItemFlags_"][3]["name"] = "ImGuiItemFlags_ButtonRepeat" +defs["enums"]["ImGuiItemFlags_"][3]["name"] = "ImGuiItemFlags_NoNav" defs["enums"]["ImGuiItemFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiItemFlags_"][4] = {} defs["enums"]["ImGuiItemFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiItemFlags_"][4]["name"] = "ImGuiItemFlags_Disabled" +defs["enums"]["ImGuiItemFlags_"][4]["name"] = "ImGuiItemFlags_NoNavDefaultFocus" defs["enums"]["ImGuiItemFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiItemFlags_"][5] = {} defs["enums"]["ImGuiItemFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiItemFlags_"][5]["name"] = "ImGuiItemFlags_NoNav" +defs["enums"]["ImGuiItemFlags_"][5]["name"] = "ImGuiItemFlags_ButtonRepeat" defs["enums"]["ImGuiItemFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiItemFlags_"][6] = {} defs["enums"]["ImGuiItemFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiItemFlags_"][6]["name"] = "ImGuiItemFlags_NoNavDefaultFocus" +defs["enums"]["ImGuiItemFlags_"][6]["name"] = "ImGuiItemFlags_AutoClosePopups" defs["enums"]["ImGuiItemFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiItemFlags_"][7] = {} defs["enums"]["ImGuiItemFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiItemFlags_"][7]["name"] = "ImGuiItemFlags_SelectableDontClosePopup" +defs["enums"]["ImGuiItemFlags_"][7]["name"] = "ImGuiItemFlags_AllowDuplicateId" defs["enums"]["ImGuiItemFlags_"][7]["value"] = "1 << 5" -defs["enums"]["ImGuiItemFlags_"][8] = {} -defs["enums"]["ImGuiItemFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiItemFlags_"][8]["name"] = "ImGuiItemFlags_MixedValue" -defs["enums"]["ImGuiItemFlags_"][8]["value"] = "1 << 6" -defs["enums"]["ImGuiItemFlags_"][9] = {} -defs["enums"]["ImGuiItemFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiItemFlags_"][9]["name"] = "ImGuiItemFlags_ReadOnly" -defs["enums"]["ImGuiItemFlags_"][9]["value"] = "1 << 7" -defs["enums"]["ImGuiItemFlags_"][10] = {} -defs["enums"]["ImGuiItemFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiItemFlags_"][10]["name"] = "ImGuiItemFlags_NoWindowHoverableCheck" -defs["enums"]["ImGuiItemFlags_"][10]["value"] = "1 << 8" -defs["enums"]["ImGuiItemFlags_"][11] = {} -defs["enums"]["ImGuiItemFlags_"][11]["calc_value"] = 1024 -defs["enums"]["ImGuiItemFlags_"][11]["name"] = "ImGuiItemFlags_Inputable" -defs["enums"]["ImGuiItemFlags_"][11]["value"] = "1 << 10" defs["enums"]["ImGuiItemStatusFlags_"] = {} defs["enums"]["ImGuiItemStatusFlags_"][1] = {} defs["enums"]["ImGuiItemStatusFlags_"][1]["calc_value"] = 0 @@ -1503,12 +1708,16 @@ defs["enums"]["ImGuiItemStatusFlags_"][9]["name"] = "ImGuiItemStatusFlags_Hovere defs["enums"]["ImGuiItemStatusFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiItemStatusFlags_"][10] = {} defs["enums"]["ImGuiItemStatusFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiItemStatusFlags_"][10]["name"] = "ImGuiItemStatusFlags_FocusedByTabbing" +defs["enums"]["ImGuiItemStatusFlags_"][10]["name"] = "ImGuiItemStatusFlags_Visible" defs["enums"]["ImGuiItemStatusFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiItemStatusFlags_"][11] = {} defs["enums"]["ImGuiItemStatusFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiItemStatusFlags_"][11]["name"] = "ImGuiItemStatusFlags_Visible" +defs["enums"]["ImGuiItemStatusFlags_"][11]["name"] = "ImGuiItemStatusFlags_HasClipRect" defs["enums"]["ImGuiItemStatusFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiItemStatusFlags_"][12] = {} +defs["enums"]["ImGuiItemStatusFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiItemStatusFlags_"][12]["name"] = "ImGuiItemStatusFlags_HasShortcut" +defs["enums"]["ImGuiItemStatusFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiKey"] = {} defs["enums"]["ImGuiKey"][1] = {} defs["enums"]["ImGuiKey"][1]["calc_value"] = 0 @@ -1804,328 +2013,380 @@ defs["enums"]["ImGuiKey"][73]["name"] = "ImGuiKey_F12" defs["enums"]["ImGuiKey"][73]["value"] = "583" defs["enums"]["ImGuiKey"][74] = {} defs["enums"]["ImGuiKey"][74]["calc_value"] = 584 -defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_Apostrophe" +defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_F13" defs["enums"]["ImGuiKey"][74]["value"] = "584" defs["enums"]["ImGuiKey"][75] = {} defs["enums"]["ImGuiKey"][75]["calc_value"] = 585 -defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_Comma" +defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_F14" defs["enums"]["ImGuiKey"][75]["value"] = "585" defs["enums"]["ImGuiKey"][76] = {} defs["enums"]["ImGuiKey"][76]["calc_value"] = 586 -defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_Minus" +defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_F15" defs["enums"]["ImGuiKey"][76]["value"] = "586" defs["enums"]["ImGuiKey"][77] = {} defs["enums"]["ImGuiKey"][77]["calc_value"] = 587 -defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_Period" +defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_F16" defs["enums"]["ImGuiKey"][77]["value"] = "587" defs["enums"]["ImGuiKey"][78] = {} defs["enums"]["ImGuiKey"][78]["calc_value"] = 588 -defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_Slash" +defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_F17" defs["enums"]["ImGuiKey"][78]["value"] = "588" defs["enums"]["ImGuiKey"][79] = {} defs["enums"]["ImGuiKey"][79]["calc_value"] = 589 -defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_Semicolon" +defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_F18" defs["enums"]["ImGuiKey"][79]["value"] = "589" defs["enums"]["ImGuiKey"][80] = {} defs["enums"]["ImGuiKey"][80]["calc_value"] = 590 -defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_Equal" +defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_F19" defs["enums"]["ImGuiKey"][80]["value"] = "590" defs["enums"]["ImGuiKey"][81] = {} defs["enums"]["ImGuiKey"][81]["calc_value"] = 591 -defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_LeftBracket" +defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_F20" defs["enums"]["ImGuiKey"][81]["value"] = "591" defs["enums"]["ImGuiKey"][82] = {} defs["enums"]["ImGuiKey"][82]["calc_value"] = 592 -defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_Backslash" +defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_F21" defs["enums"]["ImGuiKey"][82]["value"] = "592" defs["enums"]["ImGuiKey"][83] = {} defs["enums"]["ImGuiKey"][83]["calc_value"] = 593 -defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_RightBracket" +defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_F22" defs["enums"]["ImGuiKey"][83]["value"] = "593" defs["enums"]["ImGuiKey"][84] = {} defs["enums"]["ImGuiKey"][84]["calc_value"] = 594 -defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_GraveAccent" +defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_F23" defs["enums"]["ImGuiKey"][84]["value"] = "594" defs["enums"]["ImGuiKey"][85] = {} defs["enums"]["ImGuiKey"][85]["calc_value"] = 595 -defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_CapsLock" +defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_F24" defs["enums"]["ImGuiKey"][85]["value"] = "595" defs["enums"]["ImGuiKey"][86] = {} defs["enums"]["ImGuiKey"][86]["calc_value"] = 596 -defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_ScrollLock" +defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_Apostrophe" defs["enums"]["ImGuiKey"][86]["value"] = "596" defs["enums"]["ImGuiKey"][87] = {} defs["enums"]["ImGuiKey"][87]["calc_value"] = 597 -defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_NumLock" +defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_Comma" defs["enums"]["ImGuiKey"][87]["value"] = "597" defs["enums"]["ImGuiKey"][88] = {} defs["enums"]["ImGuiKey"][88]["calc_value"] = 598 -defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_PrintScreen" +defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_Minus" defs["enums"]["ImGuiKey"][88]["value"] = "598" defs["enums"]["ImGuiKey"][89] = {} defs["enums"]["ImGuiKey"][89]["calc_value"] = 599 -defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Pause" +defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Period" defs["enums"]["ImGuiKey"][89]["value"] = "599" defs["enums"]["ImGuiKey"][90] = {} defs["enums"]["ImGuiKey"][90]["calc_value"] = 600 -defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Keypad0" +defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Slash" defs["enums"]["ImGuiKey"][90]["value"] = "600" defs["enums"]["ImGuiKey"][91] = {} defs["enums"]["ImGuiKey"][91]["calc_value"] = 601 -defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Keypad1" +defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Semicolon" defs["enums"]["ImGuiKey"][91]["value"] = "601" defs["enums"]["ImGuiKey"][92] = {} defs["enums"]["ImGuiKey"][92]["calc_value"] = 602 -defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Keypad2" +defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Equal" defs["enums"]["ImGuiKey"][92]["value"] = "602" defs["enums"]["ImGuiKey"][93] = {} defs["enums"]["ImGuiKey"][93]["calc_value"] = 603 -defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_Keypad3" +defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_LeftBracket" defs["enums"]["ImGuiKey"][93]["value"] = "603" defs["enums"]["ImGuiKey"][94] = {} defs["enums"]["ImGuiKey"][94]["calc_value"] = 604 -defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Keypad4" +defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Backslash" defs["enums"]["ImGuiKey"][94]["value"] = "604" defs["enums"]["ImGuiKey"][95] = {} defs["enums"]["ImGuiKey"][95]["calc_value"] = 605 -defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_Keypad5" +defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_RightBracket" defs["enums"]["ImGuiKey"][95]["value"] = "605" defs["enums"]["ImGuiKey"][96] = {} defs["enums"]["ImGuiKey"][96]["calc_value"] = 606 -defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_Keypad6" +defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_GraveAccent" defs["enums"]["ImGuiKey"][96]["value"] = "606" defs["enums"]["ImGuiKey"][97] = {} defs["enums"]["ImGuiKey"][97]["calc_value"] = 607 -defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_Keypad7" +defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_CapsLock" defs["enums"]["ImGuiKey"][97]["value"] = "607" defs["enums"]["ImGuiKey"][98] = {} defs["enums"]["ImGuiKey"][98]["calc_value"] = 608 -defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_Keypad8" +defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_ScrollLock" defs["enums"]["ImGuiKey"][98]["value"] = "608" defs["enums"]["ImGuiKey"][99] = {} defs["enums"]["ImGuiKey"][99]["calc_value"] = 609 -defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_Keypad9" +defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_NumLock" defs["enums"]["ImGuiKey"][99]["value"] = "609" defs["enums"]["ImGuiKey"][100] = {} defs["enums"]["ImGuiKey"][100]["calc_value"] = 610 -defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_KeypadDecimal" +defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_PrintScreen" defs["enums"]["ImGuiKey"][100]["value"] = "610" defs["enums"]["ImGuiKey"][101] = {} defs["enums"]["ImGuiKey"][101]["calc_value"] = 611 -defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_KeypadDivide" +defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_Pause" defs["enums"]["ImGuiKey"][101]["value"] = "611" defs["enums"]["ImGuiKey"][102] = {} defs["enums"]["ImGuiKey"][102]["calc_value"] = 612 -defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_KeypadMultiply" +defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_Keypad0" defs["enums"]["ImGuiKey"][102]["value"] = "612" defs["enums"]["ImGuiKey"][103] = {} defs["enums"]["ImGuiKey"][103]["calc_value"] = 613 -defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_KeypadSubtract" +defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_Keypad1" defs["enums"]["ImGuiKey"][103]["value"] = "613" defs["enums"]["ImGuiKey"][104] = {} defs["enums"]["ImGuiKey"][104]["calc_value"] = 614 -defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_KeypadAdd" +defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_Keypad2" defs["enums"]["ImGuiKey"][104]["value"] = "614" defs["enums"]["ImGuiKey"][105] = {} defs["enums"]["ImGuiKey"][105]["calc_value"] = 615 -defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_KeypadEnter" +defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_Keypad3" defs["enums"]["ImGuiKey"][105]["value"] = "615" defs["enums"]["ImGuiKey"][106] = {} defs["enums"]["ImGuiKey"][106]["calc_value"] = 616 -defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_KeypadEqual" +defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_Keypad4" defs["enums"]["ImGuiKey"][106]["value"] = "616" defs["enums"]["ImGuiKey"][107] = {} defs["enums"]["ImGuiKey"][107]["calc_value"] = 617 -defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_GamepadStart" +defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_Keypad5" defs["enums"]["ImGuiKey"][107]["value"] = "617" defs["enums"]["ImGuiKey"][108] = {} defs["enums"]["ImGuiKey"][108]["calc_value"] = 618 -defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_GamepadBack" +defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_Keypad6" defs["enums"]["ImGuiKey"][108]["value"] = "618" defs["enums"]["ImGuiKey"][109] = {} defs["enums"]["ImGuiKey"][109]["calc_value"] = 619 -defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_GamepadFaceLeft" +defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_Keypad7" defs["enums"]["ImGuiKey"][109]["value"] = "619" defs["enums"]["ImGuiKey"][110] = {} defs["enums"]["ImGuiKey"][110]["calc_value"] = 620 -defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_GamepadFaceRight" +defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_Keypad8" defs["enums"]["ImGuiKey"][110]["value"] = "620" defs["enums"]["ImGuiKey"][111] = {} defs["enums"]["ImGuiKey"][111]["calc_value"] = 621 -defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_GamepadFaceUp" +defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_Keypad9" defs["enums"]["ImGuiKey"][111]["value"] = "621" defs["enums"]["ImGuiKey"][112] = {} defs["enums"]["ImGuiKey"][112]["calc_value"] = 622 -defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_GamepadFaceDown" +defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_KeypadDecimal" defs["enums"]["ImGuiKey"][112]["value"] = "622" defs["enums"]["ImGuiKey"][113] = {} defs["enums"]["ImGuiKey"][113]["calc_value"] = 623 -defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_GamepadDpadLeft" +defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_KeypadDivide" defs["enums"]["ImGuiKey"][113]["value"] = "623" defs["enums"]["ImGuiKey"][114] = {} defs["enums"]["ImGuiKey"][114]["calc_value"] = 624 -defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_GamepadDpadRight" +defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_KeypadMultiply" defs["enums"]["ImGuiKey"][114]["value"] = "624" defs["enums"]["ImGuiKey"][115] = {} defs["enums"]["ImGuiKey"][115]["calc_value"] = 625 -defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_GamepadDpadUp" +defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_KeypadSubtract" defs["enums"]["ImGuiKey"][115]["value"] = "625" defs["enums"]["ImGuiKey"][116] = {} defs["enums"]["ImGuiKey"][116]["calc_value"] = 626 -defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_GamepadDpadDown" +defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_KeypadAdd" defs["enums"]["ImGuiKey"][116]["value"] = "626" defs["enums"]["ImGuiKey"][117] = {} defs["enums"]["ImGuiKey"][117]["calc_value"] = 627 -defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_GamepadL1" +defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_KeypadEnter" defs["enums"]["ImGuiKey"][117]["value"] = "627" defs["enums"]["ImGuiKey"][118] = {} defs["enums"]["ImGuiKey"][118]["calc_value"] = 628 -defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_GamepadR1" +defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_KeypadEqual" defs["enums"]["ImGuiKey"][118]["value"] = "628" defs["enums"]["ImGuiKey"][119] = {} defs["enums"]["ImGuiKey"][119]["calc_value"] = 629 -defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_GamepadL2" +defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_AppBack" defs["enums"]["ImGuiKey"][119]["value"] = "629" defs["enums"]["ImGuiKey"][120] = {} defs["enums"]["ImGuiKey"][120]["calc_value"] = 630 -defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_GamepadR2" +defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_AppForward" defs["enums"]["ImGuiKey"][120]["value"] = "630" defs["enums"]["ImGuiKey"][121] = {} defs["enums"]["ImGuiKey"][121]["calc_value"] = 631 -defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadL3" +defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadStart" defs["enums"]["ImGuiKey"][121]["value"] = "631" defs["enums"]["ImGuiKey"][122] = {} defs["enums"]["ImGuiKey"][122]["calc_value"] = 632 -defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadR3" +defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadBack" defs["enums"]["ImGuiKey"][122]["value"] = "632" defs["enums"]["ImGuiKey"][123] = {} defs["enums"]["ImGuiKey"][123]["calc_value"] = 633 -defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadLStickLeft" +defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadFaceLeft" defs["enums"]["ImGuiKey"][123]["value"] = "633" defs["enums"]["ImGuiKey"][124] = {} defs["enums"]["ImGuiKey"][124]["calc_value"] = 634 -defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadLStickRight" +defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadFaceRight" defs["enums"]["ImGuiKey"][124]["value"] = "634" defs["enums"]["ImGuiKey"][125] = {} defs["enums"]["ImGuiKey"][125]["calc_value"] = 635 -defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadLStickUp" +defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadFaceUp" defs["enums"]["ImGuiKey"][125]["value"] = "635" defs["enums"]["ImGuiKey"][126] = {} defs["enums"]["ImGuiKey"][126]["calc_value"] = 636 -defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadLStickDown" +defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadFaceDown" defs["enums"]["ImGuiKey"][126]["value"] = "636" defs["enums"]["ImGuiKey"][127] = {} defs["enums"]["ImGuiKey"][127]["calc_value"] = 637 -defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadRStickLeft" +defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadDpadLeft" defs["enums"]["ImGuiKey"][127]["value"] = "637" defs["enums"]["ImGuiKey"][128] = {} defs["enums"]["ImGuiKey"][128]["calc_value"] = 638 -defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadRStickRight" +defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadDpadRight" defs["enums"]["ImGuiKey"][128]["value"] = "638" defs["enums"]["ImGuiKey"][129] = {} defs["enums"]["ImGuiKey"][129]["calc_value"] = 639 -defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadDpadUp" defs["enums"]["ImGuiKey"][129]["value"] = "639" defs["enums"]["ImGuiKey"][130] = {} defs["enums"]["ImGuiKey"][130]["calc_value"] = 640 -defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadDpadDown" defs["enums"]["ImGuiKey"][130]["value"] = "640" defs["enums"]["ImGuiKey"][131] = {} defs["enums"]["ImGuiKey"][131]["calc_value"] = 641 -defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_GamepadL1" defs["enums"]["ImGuiKey"][131]["value"] = "641" defs["enums"]["ImGuiKey"][132] = {} defs["enums"]["ImGuiKey"][132]["calc_value"] = 642 -defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_GamepadR1" defs["enums"]["ImGuiKey"][132]["value"] = "642" defs["enums"]["ImGuiKey"][133] = {} defs["enums"]["ImGuiKey"][133]["calc_value"] = 643 -defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_GamepadL2" defs["enums"]["ImGuiKey"][133]["value"] = "643" defs["enums"]["ImGuiKey"][134] = {} defs["enums"]["ImGuiKey"][134]["calc_value"] = 644 -defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_GamepadR2" defs["enums"]["ImGuiKey"][134]["value"] = "644" defs["enums"]["ImGuiKey"][135] = {} defs["enums"]["ImGuiKey"][135]["calc_value"] = 645 -defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_GamepadL3" defs["enums"]["ImGuiKey"][135]["value"] = "645" defs["enums"]["ImGuiKey"][136] = {} defs["enums"]["ImGuiKey"][136]["calc_value"] = 646 -defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_GamepadR3" defs["enums"]["ImGuiKey"][136]["value"] = "646" defs["enums"]["ImGuiKey"][137] = {} defs["enums"]["ImGuiKey"][137]["calc_value"] = 647 -defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_GamepadLStickLeft" defs["enums"]["ImGuiKey"][137]["value"] = "647" defs["enums"]["ImGuiKey"][138] = {} defs["enums"]["ImGuiKey"][138]["calc_value"] = 648 -defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_GamepadLStickRight" defs["enums"]["ImGuiKey"][138]["value"] = "648" defs["enums"]["ImGuiKey"][139] = {} defs["enums"]["ImGuiKey"][139]["calc_value"] = 649 -defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_GamepadLStickUp" defs["enums"]["ImGuiKey"][139]["value"] = "649" defs["enums"]["ImGuiKey"][140] = {} defs["enums"]["ImGuiKey"][140]["calc_value"] = 650 -defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_GamepadLStickDown" defs["enums"]["ImGuiKey"][140]["value"] = "650" defs["enums"]["ImGuiKey"][141] = {} defs["enums"]["ImGuiKey"][141]["calc_value"] = 651 -defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_GamepadRStickLeft" defs["enums"]["ImGuiKey"][141]["value"] = "651" defs["enums"]["ImGuiKey"][142] = {} defs["enums"]["ImGuiKey"][142]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_GamepadRStickRight" defs["enums"]["ImGuiKey"][142]["value"] = "652" defs["enums"]["ImGuiKey"][143] = {} -defs["enums"]["ImGuiKey"][143]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiMod_None" -defs["enums"]["ImGuiKey"][143]["value"] = "0" +defs["enums"]["ImGuiKey"][143]["calc_value"] = 653 +defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][143]["value"] = "653" defs["enums"]["ImGuiKey"][144] = {} -defs["enums"]["ImGuiKey"][144]["calc_value"] = 4096 -defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiMod_Ctrl" -defs["enums"]["ImGuiKey"][144]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][144]["calc_value"] = 654 +defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][144]["value"] = "654" defs["enums"]["ImGuiKey"][145] = {} -defs["enums"]["ImGuiKey"][145]["calc_value"] = 8192 -defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiMod_Shift" -defs["enums"]["ImGuiKey"][145]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][145]["calc_value"] = 655 +defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][145]["value"] = "655" defs["enums"]["ImGuiKey"][146] = {} -defs["enums"]["ImGuiKey"][146]["calc_value"] = 16384 -defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiMod_Alt" -defs["enums"]["ImGuiKey"][146]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][146]["calc_value"] = 656 +defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][146]["value"] = "656" defs["enums"]["ImGuiKey"][147] = {} -defs["enums"]["ImGuiKey"][147]["calc_value"] = 32768 -defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiMod_Super" -defs["enums"]["ImGuiKey"][147]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][147]["calc_value"] = 657 +defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][147]["value"] = "657" defs["enums"]["ImGuiKey"][148] = {} -defs["enums"]["ImGuiKey"][148]["calc_value"] = 2048 -defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiMod_Shortcut" -defs["enums"]["ImGuiKey"][148]["value"] = "1 << 11" +defs["enums"]["ImGuiKey"][148]["calc_value"] = 658 +defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][148]["value"] = "658" defs["enums"]["ImGuiKey"][149] = {} -defs["enums"]["ImGuiKey"][149]["calc_value"] = 63488 -defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiMod_Mask_" -defs["enums"]["ImGuiKey"][149]["value"] = "0xF800" +defs["enums"]["ImGuiKey"][149]["calc_value"] = 659 +defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][149]["value"] = "659" defs["enums"]["ImGuiKey"][150] = {} -defs["enums"]["ImGuiKey"][150]["calc_value"] = 512 -defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_NamedKey_BEGIN" -defs["enums"]["ImGuiKey"][150]["value"] = "512" +defs["enums"]["ImGuiKey"][150]["calc_value"] = 660 +defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][150]["value"] = "660" defs["enums"]["ImGuiKey"][151] = {} -defs["enums"]["ImGuiKey"][151]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_NamedKey_END" -defs["enums"]["ImGuiKey"][151]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][151]["calc_value"] = 661 +defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][151]["value"] = "661" defs["enums"]["ImGuiKey"][152] = {} -defs["enums"]["ImGuiKey"][152]["calc_value"] = 140 -defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_NamedKey_COUNT" -defs["enums"]["ImGuiKey"][152]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][152]["calc_value"] = 662 +defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][152]["value"] = "662" defs["enums"]["ImGuiKey"][153] = {} -defs["enums"]["ImGuiKey"][153]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_KeysData_SIZE" -defs["enums"]["ImGuiKey"][153]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][153]["calc_value"] = 663 +defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][153]["value"] = "663" defs["enums"]["ImGuiKey"][154] = {} -defs["enums"]["ImGuiKey"][154]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_KeysData_OFFSET" -defs["enums"]["ImGuiKey"][154]["value"] = "0" +defs["enums"]["ImGuiKey"][154]["calc_value"] = 664 +defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][154]["value"] = "664" +defs["enums"]["ImGuiKey"][155] = {} +defs["enums"]["ImGuiKey"][155]["calc_value"] = 665 +defs["enums"]["ImGuiKey"][155]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][155]["value"] = "665" +defs["enums"]["ImGuiKey"][156] = {} +defs["enums"]["ImGuiKey"][156]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][156]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][156]["value"] = "666" +defs["enums"]["ImGuiKey"][157] = {} +defs["enums"]["ImGuiKey"][157]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][157]["name"] = "ImGuiMod_None" +defs["enums"]["ImGuiKey"][157]["value"] = "0" +defs["enums"]["ImGuiKey"][158] = {} +defs["enums"]["ImGuiKey"][158]["calc_value"] = 4096 +defs["enums"]["ImGuiKey"][158]["name"] = "ImGuiMod_Ctrl" +defs["enums"]["ImGuiKey"][158]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][159] = {} +defs["enums"]["ImGuiKey"][159]["calc_value"] = 8192 +defs["enums"]["ImGuiKey"][159]["name"] = "ImGuiMod_Shift" +defs["enums"]["ImGuiKey"][159]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][160] = {} +defs["enums"]["ImGuiKey"][160]["calc_value"] = 16384 +defs["enums"]["ImGuiKey"][160]["name"] = "ImGuiMod_Alt" +defs["enums"]["ImGuiKey"][160]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][161] = {} +defs["enums"]["ImGuiKey"][161]["calc_value"] = 32768 +defs["enums"]["ImGuiKey"][161]["name"] = "ImGuiMod_Super" +defs["enums"]["ImGuiKey"][161]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][162] = {} +defs["enums"]["ImGuiKey"][162]["calc_value"] = 61440 +defs["enums"]["ImGuiKey"][162]["name"] = "ImGuiMod_Mask_" +defs["enums"]["ImGuiKey"][162]["value"] = "0xF000" +defs["enums"]["ImGuiKey"][163] = {} +defs["enums"]["ImGuiKey"][163]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][163]["name"] = "ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][163]["value"] = "512" +defs["enums"]["ImGuiKey"][164] = {} +defs["enums"]["ImGuiKey"][164]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][164]["name"] = "ImGuiKey_NamedKey_END" +defs["enums"]["ImGuiKey"][164]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][165] = {} +defs["enums"]["ImGuiKey"][165]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][165]["name"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][165]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][166] = {} +defs["enums"]["ImGuiKey"][166]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][166]["name"] = "ImGuiKey_KeysData_SIZE" +defs["enums"]["ImGuiKey"][166]["value"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][167] = {} +defs["enums"]["ImGuiKey"][167]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][167]["name"] = "ImGuiKey_KeysData_OFFSET" +defs["enums"]["ImGuiKey"][167]["value"] = "ImGuiKey_NamedKey_BEGIN" defs["enums"]["ImGuiLayoutType_"] = {} defs["enums"]["ImGuiLayoutType_"][1] = {} defs["enums"]["ImGuiLayoutType_"][1]["calc_value"] = 0 @@ -2138,40 +2399,60 @@ defs["enums"]["ImGuiLayoutType_"][2]["value"] = "1" defs["enums"]["ImGuiLocKey"] = {} defs["enums"]["ImGuiLocKey"][1] = {} defs["enums"]["ImGuiLocKey"][1]["calc_value"] = 0 -defs["enums"]["ImGuiLocKey"][1]["name"] = "ImGuiLocKey_TableSizeOne" +defs["enums"]["ImGuiLocKey"][1]["name"] = "ImGuiLocKey_VersionStr" defs["enums"]["ImGuiLocKey"][1]["value"] = "0" defs["enums"]["ImGuiLocKey"][2] = {} defs["enums"]["ImGuiLocKey"][2]["calc_value"] = 1 -defs["enums"]["ImGuiLocKey"][2]["name"] = "ImGuiLocKey_TableSizeAllFit" +defs["enums"]["ImGuiLocKey"][2]["name"] = "ImGuiLocKey_TableSizeOne" defs["enums"]["ImGuiLocKey"][2]["value"] = "1" defs["enums"]["ImGuiLocKey"][3] = {} defs["enums"]["ImGuiLocKey"][3]["calc_value"] = 2 -defs["enums"]["ImGuiLocKey"][3]["name"] = "ImGuiLocKey_TableSizeAllDefault" +defs["enums"]["ImGuiLocKey"][3]["name"] = "ImGuiLocKey_TableSizeAllFit" defs["enums"]["ImGuiLocKey"][3]["value"] = "2" defs["enums"]["ImGuiLocKey"][4] = {} defs["enums"]["ImGuiLocKey"][4]["calc_value"] = 3 -defs["enums"]["ImGuiLocKey"][4]["name"] = "ImGuiLocKey_TableResetOrder" +defs["enums"]["ImGuiLocKey"][4]["name"] = "ImGuiLocKey_TableSizeAllDefault" defs["enums"]["ImGuiLocKey"][4]["value"] = "3" defs["enums"]["ImGuiLocKey"][5] = {} defs["enums"]["ImGuiLocKey"][5]["calc_value"] = 4 -defs["enums"]["ImGuiLocKey"][5]["name"] = "ImGuiLocKey_WindowingMainMenuBar" +defs["enums"]["ImGuiLocKey"][5]["name"] = "ImGuiLocKey_TableResetOrder" defs["enums"]["ImGuiLocKey"][5]["value"] = "4" defs["enums"]["ImGuiLocKey"][6] = {} defs["enums"]["ImGuiLocKey"][6]["calc_value"] = 5 -defs["enums"]["ImGuiLocKey"][6]["name"] = "ImGuiLocKey_WindowingPopup" +defs["enums"]["ImGuiLocKey"][6]["name"] = "ImGuiLocKey_WindowingMainMenuBar" defs["enums"]["ImGuiLocKey"][6]["value"] = "5" defs["enums"]["ImGuiLocKey"][7] = {} defs["enums"]["ImGuiLocKey"][7]["calc_value"] = 6 -defs["enums"]["ImGuiLocKey"][7]["name"] = "ImGuiLocKey_WindowingUntitled" +defs["enums"]["ImGuiLocKey"][7]["name"] = "ImGuiLocKey_WindowingPopup" defs["enums"]["ImGuiLocKey"][7]["value"] = "6" defs["enums"]["ImGuiLocKey"][8] = {} defs["enums"]["ImGuiLocKey"][8]["calc_value"] = 7 -defs["enums"]["ImGuiLocKey"][8]["name"] = "ImGuiLocKey_DockingHideTabBar" +defs["enums"]["ImGuiLocKey"][8]["name"] = "ImGuiLocKey_WindowingUntitled" defs["enums"]["ImGuiLocKey"][8]["value"] = "7" defs["enums"]["ImGuiLocKey"][9] = {} defs["enums"]["ImGuiLocKey"][9]["calc_value"] = 8 -defs["enums"]["ImGuiLocKey"][9]["name"] = "ImGuiLocKey_COUNT" +defs["enums"]["ImGuiLocKey"][9]["name"] = "ImGuiLocKey_OpenLink_s" defs["enums"]["ImGuiLocKey"][9]["value"] = "8" +defs["enums"]["ImGuiLocKey"][10] = {} +defs["enums"]["ImGuiLocKey"][10]["calc_value"] = 9 +defs["enums"]["ImGuiLocKey"][10]["name"] = "ImGuiLocKey_CopyLink" +defs["enums"]["ImGuiLocKey"][10]["value"] = "9" +defs["enums"]["ImGuiLocKey"][11] = {} +defs["enums"]["ImGuiLocKey"][11]["calc_value"] = 10 +defs["enums"]["ImGuiLocKey"][11]["name"] = "ImGuiLocKey_DockingHideTabBar" +defs["enums"]["ImGuiLocKey"][11]["value"] = "10" +defs["enums"]["ImGuiLocKey"][12] = {} +defs["enums"]["ImGuiLocKey"][12]["calc_value"] = 11 +defs["enums"]["ImGuiLocKey"][12]["name"] = "ImGuiLocKey_DockingHoldShiftToDock" +defs["enums"]["ImGuiLocKey"][12]["value"] = "11" +defs["enums"]["ImGuiLocKey"][13] = {} +defs["enums"]["ImGuiLocKey"][13]["calc_value"] = 12 +defs["enums"]["ImGuiLocKey"][13]["name"] = "ImGuiLocKey_DockingDragToUndockOrMoveNode" +defs["enums"]["ImGuiLocKey"][13]["value"] = "12" +defs["enums"]["ImGuiLocKey"][14] = {} +defs["enums"]["ImGuiLocKey"][14]["calc_value"] = 13 +defs["enums"]["ImGuiLocKey"][14]["name"] = "ImGuiLocKey_COUNT" +defs["enums"]["ImGuiLocKey"][14]["value"] = "13" defs["enums"]["ImGuiLogType"] = {} defs["enums"]["ImGuiLogType"][1] = {} defs["enums"]["ImGuiLogType"][1]["calc_value"] = 0 @@ -2255,96 +2536,109 @@ defs["enums"]["ImGuiMouseCursor_"][11] = {} defs["enums"]["ImGuiMouseCursor_"][11]["calc_value"] = 9 defs["enums"]["ImGuiMouseCursor_"][11]["name"] = "ImGuiMouseCursor_COUNT" defs["enums"]["ImGuiMouseCursor_"][11]["value"] = "9" +defs["enums"]["ImGuiMouseSource"] = {} +defs["enums"]["ImGuiMouseSource"][1] = {} +defs["enums"]["ImGuiMouseSource"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMouseSource"][1]["name"] = "ImGuiMouseSource_Mouse" +defs["enums"]["ImGuiMouseSource"][1]["value"] = "0" +defs["enums"]["ImGuiMouseSource"][2] = {} +defs["enums"]["ImGuiMouseSource"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMouseSource"][2]["name"] = "ImGuiMouseSource_TouchScreen" +defs["enums"]["ImGuiMouseSource"][2]["value"] = "1" +defs["enums"]["ImGuiMouseSource"][3] = {} +defs["enums"]["ImGuiMouseSource"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMouseSource"][3]["name"] = "ImGuiMouseSource_Pen" +defs["enums"]["ImGuiMouseSource"][3]["value"] = "2" +defs["enums"]["ImGuiMouseSource"][4] = {} +defs["enums"]["ImGuiMouseSource"][4]["calc_value"] = 3 +defs["enums"]["ImGuiMouseSource"][4]["name"] = "ImGuiMouseSource_COUNT" +defs["enums"]["ImGuiMouseSource"][4]["value"] = "3" +defs["enums"]["ImGuiMultiSelectFlags_"] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMultiSelectFlags_"][1]["name"] = "ImGuiMultiSelectFlags_None" +defs["enums"]["ImGuiMultiSelectFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiMultiSelectFlags_"][2] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMultiSelectFlags_"][2]["name"] = "ImGuiMultiSelectFlags_SingleSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiMultiSelectFlags_"][3] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMultiSelectFlags_"][3]["name"] = "ImGuiMultiSelectFlags_NoSelectAll" +defs["enums"]["ImGuiMultiSelectFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiMultiSelectFlags_"][4] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiMultiSelectFlags_"][4]["name"] = "ImGuiMultiSelectFlags_NoRangeSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiMultiSelectFlags_"][5] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiMultiSelectFlags_"][5]["name"] = "ImGuiMultiSelectFlags_NoAutoSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiMultiSelectFlags_"][6] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiMultiSelectFlags_"][6]["name"] = "ImGuiMultiSelectFlags_NoAutoClear" +defs["enums"]["ImGuiMultiSelectFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiMultiSelectFlags_"][7] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiMultiSelectFlags_"][7]["name"] = "ImGuiMultiSelectFlags_NoAutoClearOnReselect" +defs["enums"]["ImGuiMultiSelectFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiMultiSelectFlags_"][8] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiMultiSelectFlags_"][8]["name"] = "ImGuiMultiSelectFlags_BoxSelect1d" +defs["enums"]["ImGuiMultiSelectFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiMultiSelectFlags_"][9] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiMultiSelectFlags_"][9]["name"] = "ImGuiMultiSelectFlags_BoxSelect2d" +defs["enums"]["ImGuiMultiSelectFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiMultiSelectFlags_"][10] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiMultiSelectFlags_"][10]["name"] = "ImGuiMultiSelectFlags_BoxSelectNoScroll" +defs["enums"]["ImGuiMultiSelectFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiMultiSelectFlags_"][11] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiMultiSelectFlags_"][11]["name"] = "ImGuiMultiSelectFlags_ClearOnEscape" +defs["enums"]["ImGuiMultiSelectFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiMultiSelectFlags_"][12] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiMultiSelectFlags_"][12]["name"] = "ImGuiMultiSelectFlags_ClearOnClickVoid" +defs["enums"]["ImGuiMultiSelectFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiMultiSelectFlags_"][13] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiMultiSelectFlags_"][13]["name"] = "ImGuiMultiSelectFlags_ScopeWindow" +defs["enums"]["ImGuiMultiSelectFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiMultiSelectFlags_"][14] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiMultiSelectFlags_"][14]["name"] = "ImGuiMultiSelectFlags_ScopeRect" +defs["enums"]["ImGuiMultiSelectFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiMultiSelectFlags_"][15] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiMultiSelectFlags_"][15]["name"] = "ImGuiMultiSelectFlags_SelectOnClick" +defs["enums"]["ImGuiMultiSelectFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiMultiSelectFlags_"][16] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiMultiSelectFlags_"][16]["name"] = "ImGuiMultiSelectFlags_SelectOnClickRelease" +defs["enums"]["ImGuiMultiSelectFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiMultiSelectFlags_"][17] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][17]["calc_value"] = 65536 +defs["enums"]["ImGuiMultiSelectFlags_"][17]["name"] = "ImGuiMultiSelectFlags_NavWrapX" +defs["enums"]["ImGuiMultiSelectFlags_"][17]["value"] = "1 << 16" defs["enums"]["ImGuiNavHighlightFlags_"] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1] = {} defs["enums"]["ImGuiNavHighlightFlags_"][1]["calc_value"] = 0 defs["enums"]["ImGuiNavHighlightFlags_"][1]["name"] = "ImGuiNavHighlightFlags_None" defs["enums"]["ImGuiNavHighlightFlags_"][1]["value"] = "0" defs["enums"]["ImGuiNavHighlightFlags_"][2] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavHighlightFlags_"][2]["name"] = "ImGuiNavHighlightFlags_TypeDefault" -defs["enums"]["ImGuiNavHighlightFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiNavHighlightFlags_"][2]["calc_value"] = 2 +defs["enums"]["ImGuiNavHighlightFlags_"][2]["name"] = "ImGuiNavHighlightFlags_Compact" +defs["enums"]["ImGuiNavHighlightFlags_"][2]["value"] = "1 << 1" defs["enums"]["ImGuiNavHighlightFlags_"][3] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavHighlightFlags_"][3]["name"] = "ImGuiNavHighlightFlags_TypeThin" -defs["enums"]["ImGuiNavHighlightFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiNavHighlightFlags_"][3]["calc_value"] = 4 +defs["enums"]["ImGuiNavHighlightFlags_"][3]["name"] = "ImGuiNavHighlightFlags_AlwaysDraw" +defs["enums"]["ImGuiNavHighlightFlags_"][3]["value"] = "1 << 2" defs["enums"]["ImGuiNavHighlightFlags_"][4] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiNavHighlightFlags_"][4]["name"] = "ImGuiNavHighlightFlags_AlwaysDraw" -defs["enums"]["ImGuiNavHighlightFlags_"][4]["value"] = "1 << 2" -defs["enums"]["ImGuiNavHighlightFlags_"][5] = {} -defs["enums"]["ImGuiNavHighlightFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiNavHighlightFlags_"][5]["name"] = "ImGuiNavHighlightFlags_NoRounding" -defs["enums"]["ImGuiNavHighlightFlags_"][5]["value"] = "1 << 3" -defs["enums"]["ImGuiNavInput"] = {} -defs["enums"]["ImGuiNavInput"][1] = {} -defs["enums"]["ImGuiNavInput"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavInput"][1]["name"] = "ImGuiNavInput_Activate" -defs["enums"]["ImGuiNavInput"][1]["value"] = "0" -defs["enums"]["ImGuiNavInput"][2] = {} -defs["enums"]["ImGuiNavInput"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavInput"][2]["name"] = "ImGuiNavInput_Cancel" -defs["enums"]["ImGuiNavInput"][2]["value"] = "1" -defs["enums"]["ImGuiNavInput"][3] = {} -defs["enums"]["ImGuiNavInput"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavInput"][3]["name"] = "ImGuiNavInput_Input" -defs["enums"]["ImGuiNavInput"][3]["value"] = "2" -defs["enums"]["ImGuiNavInput"][4] = {} -defs["enums"]["ImGuiNavInput"][4]["calc_value"] = 3 -defs["enums"]["ImGuiNavInput"][4]["name"] = "ImGuiNavInput_Menu" -defs["enums"]["ImGuiNavInput"][4]["value"] = "3" -defs["enums"]["ImGuiNavInput"][5] = {} -defs["enums"]["ImGuiNavInput"][5]["calc_value"] = 4 -defs["enums"]["ImGuiNavInput"][5]["name"] = "ImGuiNavInput_DpadLeft" -defs["enums"]["ImGuiNavInput"][5]["value"] = "4" -defs["enums"]["ImGuiNavInput"][6] = {} -defs["enums"]["ImGuiNavInput"][6]["calc_value"] = 5 -defs["enums"]["ImGuiNavInput"][6]["name"] = "ImGuiNavInput_DpadRight" -defs["enums"]["ImGuiNavInput"][6]["value"] = "5" -defs["enums"]["ImGuiNavInput"][7] = {} -defs["enums"]["ImGuiNavInput"][7]["calc_value"] = 6 -defs["enums"]["ImGuiNavInput"][7]["name"] = "ImGuiNavInput_DpadUp" -defs["enums"]["ImGuiNavInput"][7]["value"] = "6" -defs["enums"]["ImGuiNavInput"][8] = {} -defs["enums"]["ImGuiNavInput"][8]["calc_value"] = 7 -defs["enums"]["ImGuiNavInput"][8]["name"] = "ImGuiNavInput_DpadDown" -defs["enums"]["ImGuiNavInput"][8]["value"] = "7" -defs["enums"]["ImGuiNavInput"][9] = {} -defs["enums"]["ImGuiNavInput"][9]["calc_value"] = 8 -defs["enums"]["ImGuiNavInput"][9]["name"] = "ImGuiNavInput_LStickLeft" -defs["enums"]["ImGuiNavInput"][9]["value"] = "8" -defs["enums"]["ImGuiNavInput"][10] = {} -defs["enums"]["ImGuiNavInput"][10]["calc_value"] = 9 -defs["enums"]["ImGuiNavInput"][10]["name"] = "ImGuiNavInput_LStickRight" -defs["enums"]["ImGuiNavInput"][10]["value"] = "9" -defs["enums"]["ImGuiNavInput"][11] = {} -defs["enums"]["ImGuiNavInput"][11]["calc_value"] = 10 -defs["enums"]["ImGuiNavInput"][11]["name"] = "ImGuiNavInput_LStickUp" -defs["enums"]["ImGuiNavInput"][11]["value"] = "10" -defs["enums"]["ImGuiNavInput"][12] = {} -defs["enums"]["ImGuiNavInput"][12]["calc_value"] = 11 -defs["enums"]["ImGuiNavInput"][12]["name"] = "ImGuiNavInput_LStickDown" -defs["enums"]["ImGuiNavInput"][12]["value"] = "11" -defs["enums"]["ImGuiNavInput"][13] = {} -defs["enums"]["ImGuiNavInput"][13]["calc_value"] = 12 -defs["enums"]["ImGuiNavInput"][13]["name"] = "ImGuiNavInput_FocusPrev" -defs["enums"]["ImGuiNavInput"][13]["value"] = "12" -defs["enums"]["ImGuiNavInput"][14] = {} -defs["enums"]["ImGuiNavInput"][14]["calc_value"] = 13 -defs["enums"]["ImGuiNavInput"][14]["name"] = "ImGuiNavInput_FocusNext" -defs["enums"]["ImGuiNavInput"][14]["value"] = "13" -defs["enums"]["ImGuiNavInput"][15] = {} -defs["enums"]["ImGuiNavInput"][15]["calc_value"] = 14 -defs["enums"]["ImGuiNavInput"][15]["name"] = "ImGuiNavInput_TweakSlow" -defs["enums"]["ImGuiNavInput"][15]["value"] = "14" -defs["enums"]["ImGuiNavInput"][16] = {} -defs["enums"]["ImGuiNavInput"][16]["calc_value"] = 15 -defs["enums"]["ImGuiNavInput"][16]["name"] = "ImGuiNavInput_TweakFast" -defs["enums"]["ImGuiNavInput"][16]["value"] = "15" -defs["enums"]["ImGuiNavInput"][17] = {} -defs["enums"]["ImGuiNavInput"][17]["calc_value"] = 16 -defs["enums"]["ImGuiNavInput"][17]["name"] = "ImGuiNavInput_COUNT" -defs["enums"]["ImGuiNavInput"][17]["value"] = "16" +defs["enums"]["ImGuiNavHighlightFlags_"][4]["calc_value"] = 8 +defs["enums"]["ImGuiNavHighlightFlags_"][4]["name"] = "ImGuiNavHighlightFlags_NoRounding" +defs["enums"]["ImGuiNavHighlightFlags_"][4]["value"] = "1 << 3" defs["enums"]["ImGuiNavLayer"] = {} defs["enums"]["ImGuiNavLayer"][1] = {} defs["enums"]["ImGuiNavLayer"][1]["calc_value"] = 0 @@ -2380,41 +2674,57 @@ defs["enums"]["ImGuiNavMoveFlags_"][5]["calc_value"] = 8 defs["enums"]["ImGuiNavMoveFlags_"][5]["name"] = "ImGuiNavMoveFlags_WrapY" defs["enums"]["ImGuiNavMoveFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiNavMoveFlags_"][6] = {} -defs["enums"]["ImGuiNavMoveFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiNavMoveFlags_"][6]["name"] = "ImGuiNavMoveFlags_AllowCurrentNavId" -defs["enums"]["ImGuiNavMoveFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiNavMoveFlags_"][6]["calc_value"] = 15 +defs["enums"]["ImGuiNavMoveFlags_"][6]["name"] = "ImGuiNavMoveFlags_WrapMask_" +defs["enums"]["ImGuiNavMoveFlags_"][6]["value"] = "ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY" defs["enums"]["ImGuiNavMoveFlags_"][7] = {} -defs["enums"]["ImGuiNavMoveFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiNavMoveFlags_"][7]["name"] = "ImGuiNavMoveFlags_AlsoScoreVisibleSet" -defs["enums"]["ImGuiNavMoveFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiNavMoveFlags_"][7]["calc_value"] = 16 +defs["enums"]["ImGuiNavMoveFlags_"][7]["name"] = "ImGuiNavMoveFlags_AllowCurrentNavId" +defs["enums"]["ImGuiNavMoveFlags_"][7]["value"] = "1 << 4" defs["enums"]["ImGuiNavMoveFlags_"][8] = {} -defs["enums"]["ImGuiNavMoveFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiNavMoveFlags_"][8]["name"] = "ImGuiNavMoveFlags_ScrollToEdgeY" -defs["enums"]["ImGuiNavMoveFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiNavMoveFlags_"][8]["calc_value"] = 32 +defs["enums"]["ImGuiNavMoveFlags_"][8]["name"] = "ImGuiNavMoveFlags_AlsoScoreVisibleSet" +defs["enums"]["ImGuiNavMoveFlags_"][8]["value"] = "1 << 5" defs["enums"]["ImGuiNavMoveFlags_"][9] = {} -defs["enums"]["ImGuiNavMoveFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiNavMoveFlags_"][9]["name"] = "ImGuiNavMoveFlags_Forwarded" -defs["enums"]["ImGuiNavMoveFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiNavMoveFlags_"][9]["calc_value"] = 64 +defs["enums"]["ImGuiNavMoveFlags_"][9]["name"] = "ImGuiNavMoveFlags_ScrollToEdgeY" +defs["enums"]["ImGuiNavMoveFlags_"][9]["value"] = "1 << 6" defs["enums"]["ImGuiNavMoveFlags_"][10] = {} -defs["enums"]["ImGuiNavMoveFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiNavMoveFlags_"][10]["name"] = "ImGuiNavMoveFlags_DebugNoResult" -defs["enums"]["ImGuiNavMoveFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiNavMoveFlags_"][10]["calc_value"] = 128 +defs["enums"]["ImGuiNavMoveFlags_"][10]["name"] = "ImGuiNavMoveFlags_Forwarded" +defs["enums"]["ImGuiNavMoveFlags_"][10]["value"] = "1 << 7" defs["enums"]["ImGuiNavMoveFlags_"][11] = {} -defs["enums"]["ImGuiNavMoveFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiNavMoveFlags_"][11]["name"] = "ImGuiNavMoveFlags_FocusApi" -defs["enums"]["ImGuiNavMoveFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiNavMoveFlags_"][11]["calc_value"] = 256 +defs["enums"]["ImGuiNavMoveFlags_"][11]["name"] = "ImGuiNavMoveFlags_DebugNoResult" +defs["enums"]["ImGuiNavMoveFlags_"][11]["value"] = "1 << 8" defs["enums"]["ImGuiNavMoveFlags_"][12] = {} -defs["enums"]["ImGuiNavMoveFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiNavMoveFlags_"][12]["name"] = "ImGuiNavMoveFlags_Tabbing" -defs["enums"]["ImGuiNavMoveFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiNavMoveFlags_"][12]["calc_value"] = 512 +defs["enums"]["ImGuiNavMoveFlags_"][12]["name"] = "ImGuiNavMoveFlags_FocusApi" +defs["enums"]["ImGuiNavMoveFlags_"][12]["value"] = "1 << 9" defs["enums"]["ImGuiNavMoveFlags_"][13] = {} -defs["enums"]["ImGuiNavMoveFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiNavMoveFlags_"][13]["name"] = "ImGuiNavMoveFlags_Activate" -defs["enums"]["ImGuiNavMoveFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiNavMoveFlags_"][13]["calc_value"] = 1024 +defs["enums"]["ImGuiNavMoveFlags_"][13]["name"] = "ImGuiNavMoveFlags_IsTabbing" +defs["enums"]["ImGuiNavMoveFlags_"][13]["value"] = "1 << 10" defs["enums"]["ImGuiNavMoveFlags_"][14] = {} -defs["enums"]["ImGuiNavMoveFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiNavMoveFlags_"][14]["name"] = "ImGuiNavMoveFlags_DontSetNavHighlight" -defs["enums"]["ImGuiNavMoveFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiNavMoveFlags_"][14]["calc_value"] = 2048 +defs["enums"]["ImGuiNavMoveFlags_"][14]["name"] = "ImGuiNavMoveFlags_IsPageMove" +defs["enums"]["ImGuiNavMoveFlags_"][14]["value"] = "1 << 11" +defs["enums"]["ImGuiNavMoveFlags_"][15] = {} +defs["enums"]["ImGuiNavMoveFlags_"][15]["calc_value"] = 4096 +defs["enums"]["ImGuiNavMoveFlags_"][15]["name"] = "ImGuiNavMoveFlags_Activate" +defs["enums"]["ImGuiNavMoveFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiNavMoveFlags_"][16] = {} +defs["enums"]["ImGuiNavMoveFlags_"][16]["calc_value"] = 8192 +defs["enums"]["ImGuiNavMoveFlags_"][16]["name"] = "ImGuiNavMoveFlags_NoSelect" +defs["enums"]["ImGuiNavMoveFlags_"][16]["value"] = "1 << 13" +defs["enums"]["ImGuiNavMoveFlags_"][17] = {} +defs["enums"]["ImGuiNavMoveFlags_"][17]["calc_value"] = 16384 +defs["enums"]["ImGuiNavMoveFlags_"][17]["name"] = "ImGuiNavMoveFlags_NoSetNavHighlight" +defs["enums"]["ImGuiNavMoveFlags_"][17]["value"] = "1 << 14" +defs["enums"]["ImGuiNavMoveFlags_"][18] = {} +defs["enums"]["ImGuiNavMoveFlags_"][18]["calc_value"] = 32768 +defs["enums"]["ImGuiNavMoveFlags_"][18]["name"] = "ImGuiNavMoveFlags_NoClearActiveId" +defs["enums"]["ImGuiNavMoveFlags_"][18]["value"] = "1 << 15" defs["enums"]["ImGuiNextItemDataFlags_"] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1] = {} defs["enums"]["ImGuiNextItemDataFlags_"][1]["calc_value"] = 0 @@ -2428,6 +2738,18 @@ defs["enums"]["ImGuiNextItemDataFlags_"][3] = {} defs["enums"]["ImGuiNextItemDataFlags_"][3]["calc_value"] = 2 defs["enums"]["ImGuiNextItemDataFlags_"][3]["name"] = "ImGuiNextItemDataFlags_HasOpen" defs["enums"]["ImGuiNextItemDataFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiNextItemDataFlags_"][4] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiNextItemDataFlags_"][4]["name"] = "ImGuiNextItemDataFlags_HasShortcut" +defs["enums"]["ImGuiNextItemDataFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiNextItemDataFlags_"][5] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiNextItemDataFlags_"][5]["name"] = "ImGuiNextItemDataFlags_HasRefVal" +defs["enums"]["ImGuiNextItemDataFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiNextItemDataFlags_"][6] = {} +defs["enums"]["ImGuiNextItemDataFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiNextItemDataFlags_"][6]["name"] = "ImGuiNextItemDataFlags_HasStorageID" +defs["enums"]["ImGuiNextItemDataFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiNextWindowDataFlags_"] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][1] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][1]["calc_value"] = 0 @@ -2467,16 +2789,24 @@ defs["enums"]["ImGuiNextWindowDataFlags_"][9]["name"] = "ImGuiNextWindowDataFlag defs["enums"]["ImGuiNextWindowDataFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiNextWindowDataFlags_"][10] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiNextWindowDataFlags_"][10]["name"] = "ImGuiNextWindowDataFlags_HasViewport" +defs["enums"]["ImGuiNextWindowDataFlags_"][10]["name"] = "ImGuiNextWindowDataFlags_HasChildFlags" defs["enums"]["ImGuiNextWindowDataFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiNextWindowDataFlags_"][11] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiNextWindowDataFlags_"][11]["name"] = "ImGuiNextWindowDataFlags_HasDock" +defs["enums"]["ImGuiNextWindowDataFlags_"][11]["name"] = "ImGuiNextWindowDataFlags_HasRefreshPolicy" defs["enums"]["ImGuiNextWindowDataFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiNextWindowDataFlags_"][12] = {} defs["enums"]["ImGuiNextWindowDataFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiNextWindowDataFlags_"][12]["name"] = "ImGuiNextWindowDataFlags_HasWindowClass" +defs["enums"]["ImGuiNextWindowDataFlags_"][12]["name"] = "ImGuiNextWindowDataFlags_HasViewport" defs["enums"]["ImGuiNextWindowDataFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiNextWindowDataFlags_"][13] = {} +defs["enums"]["ImGuiNextWindowDataFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiNextWindowDataFlags_"][13]["name"] = "ImGuiNextWindowDataFlags_HasDock" +defs["enums"]["ImGuiNextWindowDataFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiNextWindowDataFlags_"][14] = {} +defs["enums"]["ImGuiNextWindowDataFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiNextWindowDataFlags_"][14]["name"] = "ImGuiNextWindowDataFlags_HasWindowClass" +defs["enums"]["ImGuiNextWindowDataFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiOldColumnFlags_"] = {} defs["enums"]["ImGuiOldColumnFlags_"][1] = {} defs["enums"]["ImGuiOldColumnFlags_"][1]["calc_value"] = 0 @@ -2538,24 +2868,28 @@ defs["enums"]["ImGuiPopupFlags_"][6]["name"] = "ImGuiPopupFlags_MouseButtonDefau defs["enums"]["ImGuiPopupFlags_"][6]["value"] = "1" defs["enums"]["ImGuiPopupFlags_"][7] = {} defs["enums"]["ImGuiPopupFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoReopen" defs["enums"]["ImGuiPopupFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiPopupFlags_"][8] = {} -defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverItems" -defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiPopupFlags_"][9] = {} -defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_AnyPopupId" -defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 256 +defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_NoOpenOverItems" +defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiPopupFlags_"][10] = {} -defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupLevel" -defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupId" +defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiPopupFlags_"][11] = {} -defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 384 -defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopup" -defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiPopupFlags_"][12] = {} +defs["enums"]["ImGuiPopupFlags_"][12]["calc_value"] = 3072 +defs["enums"]["ImGuiPopupFlags_"][12]["name"] = "ImGuiPopupFlags_AnyPopup" +defs["enums"]["ImGuiPopupFlags_"][12]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" defs["enums"]["ImGuiPopupPositionPolicy"] = {} defs["enums"]["ImGuiPopupPositionPolicy"][1] = {} defs["enums"]["ImGuiPopupPositionPolicy"][1]["calc_value"] = 0 @@ -2650,7 +2984,7 @@ defs["enums"]["ImGuiSelectableFlags_"][1]["name"] = "ImGuiSelectableFlags_None" defs["enums"]["ImGuiSelectableFlags_"][1]["value"] = "0" defs["enums"]["ImGuiSelectableFlags_"][2] = {} defs["enums"]["ImGuiSelectableFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_DontClosePopups" +defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_NoAutoClosePopups" defs["enums"]["ImGuiSelectableFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiSelectableFlags_"][3] = {} defs["enums"]["ImGuiSelectableFlags_"][3]["calc_value"] = 2 @@ -2666,8 +3000,25 @@ defs["enums"]["ImGuiSelectableFlags_"][5]["name"] = "ImGuiSelectableFlags_Disabl defs["enums"]["ImGuiSelectableFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiSelectableFlags_"][6] = {} defs["enums"]["ImGuiSelectableFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowItemOverlap" +defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowOverlap" defs["enums"]["ImGuiSelectableFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiSelectableFlags_"][7] = {} +defs["enums"]["ImGuiSelectableFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiSelectableFlags_"][7]["name"] = "ImGuiSelectableFlags_Highlight" +defs["enums"]["ImGuiSelectableFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiSelectionRequestType"] = {} +defs["enums"]["ImGuiSelectionRequestType"][1] = {} +defs["enums"]["ImGuiSelectionRequestType"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSelectionRequestType"][1]["name"] = "ImGuiSelectionRequestType_None" +defs["enums"]["ImGuiSelectionRequestType"][1]["value"] = "0" +defs["enums"]["ImGuiSelectionRequestType"][2] = {} +defs["enums"]["ImGuiSelectionRequestType"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSelectionRequestType"][2]["name"] = "ImGuiSelectionRequestType_SetAll" +defs["enums"]["ImGuiSelectionRequestType"][2]["value"] = "1" +defs["enums"]["ImGuiSelectionRequestType"][3] = {} +defs["enums"]["ImGuiSelectionRequestType"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSelectionRequestType"][3]["name"] = "ImGuiSelectionRequestType_SetRange" +defs["enums"]["ImGuiSelectionRequestType"][3]["value"] = "2" defs["enums"]["ImGuiSeparatorFlags_"] = {} defs["enums"]["ImGuiSeparatorFlags_"][1] = {} defs["enums"]["ImGuiSeparatorFlags_"][1]["calc_value"] = 0 @@ -2716,22 +3067,26 @@ defs["enums"]["ImGuiSliderFlags_"][5]["calc_value"] = 128 defs["enums"]["ImGuiSliderFlags_"][5]["name"] = "ImGuiSliderFlags_NoInput" defs["enums"]["ImGuiSliderFlags_"][5]["value"] = "1 << 7" defs["enums"]["ImGuiSliderFlags_"][6] = {} -defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 1879048207 -defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_InvalidMask_" -defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "0x7000000F" -defs["enums"]["ImGuiSortDirection_"] = {} -defs["enums"]["ImGuiSortDirection_"][1] = {} -defs["enums"]["ImGuiSortDirection_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiSortDirection_"][1]["name"] = "ImGuiSortDirection_None" -defs["enums"]["ImGuiSortDirection_"][1]["value"] = "0" -defs["enums"]["ImGuiSortDirection_"][2] = {} -defs["enums"]["ImGuiSortDirection_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSortDirection_"][2]["name"] = "ImGuiSortDirection_Ascending" -defs["enums"]["ImGuiSortDirection_"][2]["value"] = "1" -defs["enums"]["ImGuiSortDirection_"][3] = {} -defs["enums"]["ImGuiSortDirection_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiSortDirection_"][3]["name"] = "ImGuiSortDirection_Descending" -defs["enums"]["ImGuiSortDirection_"][3]["value"] = "2" +defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 256 +defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_WrapAround" +defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "1 << 8" +defs["enums"]["ImGuiSliderFlags_"][7] = {} +defs["enums"]["ImGuiSliderFlags_"][7]["calc_value"] = 1879048207 +defs["enums"]["ImGuiSliderFlags_"][7]["name"] = "ImGuiSliderFlags_InvalidMask_" +defs["enums"]["ImGuiSliderFlags_"][7]["value"] = "0x7000000F" +defs["enums"]["ImGuiSortDirection"] = {} +defs["enums"]["ImGuiSortDirection"][1] = {} +defs["enums"]["ImGuiSortDirection"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSortDirection"][1]["name"] = "ImGuiSortDirection_None" +defs["enums"]["ImGuiSortDirection"][1]["value"] = "0" +defs["enums"]["ImGuiSortDirection"][2] = {} +defs["enums"]["ImGuiSortDirection"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSortDirection"][2]["name"] = "ImGuiSortDirection_Ascending" +defs["enums"]["ImGuiSortDirection"][2]["value"] = "1" +defs["enums"]["ImGuiSortDirection"][3] = {} +defs["enums"]["ImGuiSortDirection"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSortDirection"][3]["name"] = "ImGuiSortDirection_Descending" +defs["enums"]["ImGuiSortDirection"][3]["value"] = "2" defs["enums"]["ImGuiStyleVar_"] = {} defs["enums"]["ImGuiStyleVar_"][1] = {} defs["enums"]["ImGuiStyleVar_"][1]["calc_value"] = 0 @@ -2827,16 +3182,52 @@ defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_TabRounding" defs["enums"]["ImGuiStyleVar_"][23]["value"] = "22" defs["enums"]["ImGuiStyleVar_"][24] = {} defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23 -defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_TabBorderSize" defs["enums"]["ImGuiStyleVar_"][24]["value"] = "23" defs["enums"]["ImGuiStyleVar_"][25] = {} defs["enums"]["ImGuiStyleVar_"][25]["calc_value"] = 24 -defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_TabBarBorderSize" defs["enums"]["ImGuiStyleVar_"][25]["value"] = "24" defs["enums"]["ImGuiStyleVar_"][26] = {} defs["enums"]["ImGuiStyleVar_"][26]["calc_value"] = 25 -defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_TabBarOverlineSize" defs["enums"]["ImGuiStyleVar_"][26]["value"] = "25" +defs["enums"]["ImGuiStyleVar_"][27] = {} +defs["enums"]["ImGuiStyleVar_"][27]["calc_value"] = 26 +defs["enums"]["ImGuiStyleVar_"][27]["name"] = "ImGuiStyleVar_TableAngledHeadersAngle" +defs["enums"]["ImGuiStyleVar_"][27]["value"] = "26" +defs["enums"]["ImGuiStyleVar_"][28] = {} +defs["enums"]["ImGuiStyleVar_"][28]["calc_value"] = 27 +defs["enums"]["ImGuiStyleVar_"][28]["name"] = "ImGuiStyleVar_TableAngledHeadersTextAlign" +defs["enums"]["ImGuiStyleVar_"][28]["value"] = "27" +defs["enums"]["ImGuiStyleVar_"][29] = {} +defs["enums"]["ImGuiStyleVar_"][29]["calc_value"] = 28 +defs["enums"]["ImGuiStyleVar_"][29]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][29]["value"] = "28" +defs["enums"]["ImGuiStyleVar_"][30] = {} +defs["enums"]["ImGuiStyleVar_"][30]["calc_value"] = 29 +defs["enums"]["ImGuiStyleVar_"][30]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][30]["value"] = "29" +defs["enums"]["ImGuiStyleVar_"][31] = {} +defs["enums"]["ImGuiStyleVar_"][31]["calc_value"] = 30 +defs["enums"]["ImGuiStyleVar_"][31]["name"] = "ImGuiStyleVar_SeparatorTextBorderSize" +defs["enums"]["ImGuiStyleVar_"][31]["value"] = "30" +defs["enums"]["ImGuiStyleVar_"][32] = {} +defs["enums"]["ImGuiStyleVar_"][32]["calc_value"] = 31 +defs["enums"]["ImGuiStyleVar_"][32]["name"] = "ImGuiStyleVar_SeparatorTextAlign" +defs["enums"]["ImGuiStyleVar_"][32]["value"] = "31" +defs["enums"]["ImGuiStyleVar_"][33] = {} +defs["enums"]["ImGuiStyleVar_"][33]["calc_value"] = 32 +defs["enums"]["ImGuiStyleVar_"][33]["name"] = "ImGuiStyleVar_SeparatorTextPadding" +defs["enums"]["ImGuiStyleVar_"][33]["value"] = "32" +defs["enums"]["ImGuiStyleVar_"][34] = {} +defs["enums"]["ImGuiStyleVar_"][34]["calc_value"] = 33 +defs["enums"]["ImGuiStyleVar_"][34]["name"] = "ImGuiStyleVar_DockingSeparatorSize" +defs["enums"]["ImGuiStyleVar_"][34]["value"] = "33" +defs["enums"]["ImGuiStyleVar_"][35] = {} +defs["enums"]["ImGuiStyleVar_"][35]["calc_value"] = 34 +defs["enums"]["ImGuiStyleVar_"][35]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][35]["value"] = "34" defs["enums"]["ImGuiTabBarFlagsPrivate_"] = {} defs["enums"]["ImGuiTabBarFlagsPrivate_"][1] = {} defs["enums"]["ImGuiTabBarFlagsPrivate_"][1]["calc_value"] = 1048576 @@ -2881,20 +3272,24 @@ defs["enums"]["ImGuiTabBarFlags_"][7]["name"] = "ImGuiTabBarFlags_NoTooltip" defs["enums"]["ImGuiTabBarFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiTabBarFlags_"][8] = {} defs["enums"]["ImGuiTabBarFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_DrawSelectedOverline" defs["enums"]["ImGuiTabBarFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiTabBarFlags_"][9] = {} defs["enums"]["ImGuiTabBarFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabBarFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTabBarFlags_"][10] = {} -defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 192 -defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" -defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTabBarFlags_"][11] = {} -defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" -defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 384 +defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" +defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][12] = {} +defs["enums"]["ImGuiTabBarFlags_"][12]["calc_value"] = 128 +defs["enums"]["ImGuiTabBarFlags_"][12]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" +defs["enums"]["ImGuiTabBarFlags_"][12]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabItemFlagsPrivate_"] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][1]["calc_value"] = 192 @@ -2912,10 +3307,6 @@ defs["enums"]["ImGuiTabItemFlagsPrivate_"][4] = {} defs["enums"]["ImGuiTabItemFlagsPrivate_"][4]["calc_value"] = 4194304 defs["enums"]["ImGuiTabItemFlagsPrivate_"][4]["name"] = "ImGuiTabItemFlags_Unsorted" defs["enums"]["ImGuiTabItemFlagsPrivate_"][4]["value"] = "1 << 22" -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5] = {} -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5]["calc_value"] = 8388608 -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5]["name"] = "ImGuiTabItemFlags_Preview" -defs["enums"]["ImGuiTabItemFlagsPrivate_"][5]["value"] = "1 << 23" defs["enums"]["ImGuiTabItemFlags_"] = {} defs["enums"]["ImGuiTabItemFlags_"][1] = {} defs["enums"]["ImGuiTabItemFlags_"][1]["calc_value"] = 0 @@ -2953,6 +3344,10 @@ defs["enums"]["ImGuiTabItemFlags_"][9] = {} defs["enums"]["ImGuiTabItemFlags_"][9]["calc_value"] = 128 defs["enums"]["ImGuiTabItemFlags_"][9]["name"] = "ImGuiTabItemFlags_Trailing" defs["enums"]["ImGuiTabItemFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiTabItemFlags_"][10] = {} +defs["enums"]["ImGuiTabItemFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabItemFlags_"][10]["name"] = "ImGuiTabItemFlags_NoAssumedClosure" +defs["enums"]["ImGuiTabItemFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTableBgTarget_"] = {} defs["enums"]["ImGuiTableBgTarget_"][1] = {} defs["enums"]["ImGuiTableBgTarget_"][1]["calc_value"] = 0 @@ -3048,37 +3443,41 @@ defs["enums"]["ImGuiTableColumnFlags_"][19]["calc_value"] = 131072 defs["enums"]["ImGuiTableColumnFlags_"][19]["name"] = "ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiTableColumnFlags_"][20] = {} -defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 16777216 -defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_IsEnabled" -defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 24" +defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_AngledHeader" +defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiTableColumnFlags_"][21] = {} -defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 33554432 -defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsVisible" -defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 25" +defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 16777216 +defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsEnabled" +defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 24" defs["enums"]["ImGuiTableColumnFlags_"][22] = {} -defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 67108864 -defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsSorted" -defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 26" +defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 33554432 +defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsVisible" +defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 25" defs["enums"]["ImGuiTableColumnFlags_"][23] = {} -defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 134217728 -defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsHovered" -defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 27" +defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 67108864 +defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsSorted" +defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 26" defs["enums"]["ImGuiTableColumnFlags_"][24] = {} -defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 24 -defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_WidthMask_" -defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" +defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 134217728 +defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "1 << 27" defs["enums"]["ImGuiTableColumnFlags_"][25] = {} -defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 196608 -defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_IndentMask_" -defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" +defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 24 +defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_WidthMask_" +defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" defs["enums"]["ImGuiTableColumnFlags_"][26] = {} -defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 251658240 -defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_StatusMask_" -defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 196608 +defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_IndentMask_" +defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][27] = {} -defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 1073741824 -defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" -defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "1 << 30" +defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 251658240 +defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_StatusMask_" +defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][28] = {} +defs["enums"]["ImGuiTableColumnFlags_"][28]["calc_value"] = 1073741824 +defs["enums"]["ImGuiTableColumnFlags_"][28]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" +defs["enums"]["ImGuiTableColumnFlags_"][28]["value"] = "1 << 30" defs["enums"]["ImGuiTableFlags_"] = {} defs["enums"]["ImGuiTableFlags_"][1] = {} defs["enums"]["ImGuiTableFlags_"][1]["calc_value"] = 0 @@ -3221,9 +3620,13 @@ defs["enums"]["ImGuiTableFlags_"][35]["calc_value"] = 134217728 defs["enums"]["ImGuiTableFlags_"][35]["name"] = "ImGuiTableFlags_SortTristate" defs["enums"]["ImGuiTableFlags_"][35]["value"] = "1 << 27" defs["enums"]["ImGuiTableFlags_"][36] = {} -defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 57344 -defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_SizingMask_" -defs["enums"]["ImGuiTableFlags_"][36]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" +defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 268435456 +defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_HighlightHoveredColumn" +defs["enums"]["ImGuiTableFlags_"][36]["value"] = "1 << 28" +defs["enums"]["ImGuiTableFlags_"][37] = {} +defs["enums"]["ImGuiTableFlags_"][37]["calc_value"] = 57344 +defs["enums"]["ImGuiTableFlags_"][37]["name"] = "ImGuiTableFlags_SizingMask_" +defs["enums"]["ImGuiTableFlags_"][37]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" defs["enums"]["ImGuiTableRowFlags_"] = {} defs["enums"]["ImGuiTableRowFlags_"][1] = {} defs["enums"]["ImGuiTableRowFlags_"][1]["calc_value"] = 0 @@ -3248,14 +3651,22 @@ defs["enums"]["ImGuiTooltipFlags_"][1]["calc_value"] = 0 defs["enums"]["ImGuiTooltipFlags_"][1]["name"] = "ImGuiTooltipFlags_None" defs["enums"]["ImGuiTooltipFlags_"][1]["value"] = "0" defs["enums"]["ImGuiTooltipFlags_"][2] = {} -defs["enums"]["ImGuiTooltipFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiTooltipFlags_"][2]["name"] = "ImGuiTooltipFlags_OverridePreviousTooltip" -defs["enums"]["ImGuiTooltipFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiTooltipFlags_"][2]["calc_value"] = 2 +defs["enums"]["ImGuiTooltipFlags_"][2]["name"] = "ImGuiTooltipFlags_OverridePrevious" +defs["enums"]["ImGuiTooltipFlags_"][2]["value"] = "1 << 1" defs["enums"]["ImGuiTreeNodeFlagsPrivate_"] = {} defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1] = {} -defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["calc_value"] = 1048576 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["calc_value"] = 268435456 defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["name"] = "ImGuiTreeNodeFlags_ClipLabelForTrailingButton" -defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["value"] = "1 << 20" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][1]["value"] = "1 << 28" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2] = {} +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["calc_value"] = 536870912 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["name"] = "ImGuiTreeNodeFlags_UpsideDownArrow" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][2]["value"] = "1 << 29" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3] = {} +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["calc_value"] = 192 +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["name"] = "ImGuiTreeNodeFlags_OpenOnMask_" +defs["enums"]["ImGuiTreeNodeFlagsPrivate_"][3]["value"] = "ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow" defs["enums"]["ImGuiTreeNodeFlags_"] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1] = {} defs["enums"]["ImGuiTreeNodeFlags_"][1]["calc_value"] = 0 @@ -3271,7 +3682,7 @@ defs["enums"]["ImGuiTreeNodeFlags_"][3]["name"] = "ImGuiTreeNodeFlags_Framed" defs["enums"]["ImGuiTreeNodeFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiTreeNodeFlags_"][4] = {} defs["enums"]["ImGuiTreeNodeFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowItemOverlap" +defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowOverlap" defs["enums"]["ImGuiTreeNodeFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiTreeNodeFlags_"][5] = {} defs["enums"]["ImGuiTreeNodeFlags_"][5]["calc_value"] = 8 @@ -3315,12 +3726,33 @@ defs["enums"]["ImGuiTreeNodeFlags_"][14]["name"] = "ImGuiTreeNodeFlags_SpanFullW defs["enums"]["ImGuiTreeNodeFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiTreeNodeFlags_"][15] = {} defs["enums"]["ImGuiTreeNodeFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_SpanTextWidth" defs["enums"]["ImGuiTreeNodeFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiTreeNodeFlags_"][16] = {} -defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 26 -defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" -defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_SpanAllColumns" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiTreeNodeFlags_"][17] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][17]["calc_value"] = 32768 +defs["enums"]["ImGuiTreeNodeFlags_"][17]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][17]["value"] = "1 << 15" +defs["enums"]["ImGuiTreeNodeFlags_"][18] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][18]["calc_value"] = 26 +defs["enums"]["ImGuiTreeNodeFlags_"][18]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" +defs["enums"]["ImGuiTreeNodeFlags_"][18]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" +defs["enums"]["ImGuiTypingSelectFlags_"] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][1] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiTypingSelectFlags_"][1]["name"] = "ImGuiTypingSelectFlags_None" +defs["enums"]["ImGuiTypingSelectFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiTypingSelectFlags_"][2] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiTypingSelectFlags_"][2]["name"] = "ImGuiTypingSelectFlags_AllowBackspace" +defs["enums"]["ImGuiTypingSelectFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiTypingSelectFlags_"][3] = {} +defs["enums"]["ImGuiTypingSelectFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiTypingSelectFlags_"][3]["name"] = "ImGuiTypingSelectFlags_AllowSingleCharMode" +defs["enums"]["ImGuiTypingSelectFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiViewportFlags_"] = {} defs["enums"]["ImGuiViewportFlags_"][1] = {} defs["enums"]["ImGuiViewportFlags_"][1]["calc_value"] = 0 @@ -3364,20 +3796,24 @@ defs["enums"]["ImGuiViewportFlags_"][10]["name"] = "ImGuiViewportFlags_NoRendere defs["enums"]["ImGuiViewportFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiViewportFlags_"][11] = {} defs["enums"]["ImGuiViewportFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiViewportFlags_"][11]["name"] = "ImGuiViewportFlags_TopMost" +defs["enums"]["ImGuiViewportFlags_"][11]["name"] = "ImGuiViewportFlags_NoAutoMerge" defs["enums"]["ImGuiViewportFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiViewportFlags_"][12] = {} defs["enums"]["ImGuiViewportFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiViewportFlags_"][12]["name"] = "ImGuiViewportFlags_Minimized" +defs["enums"]["ImGuiViewportFlags_"][12]["name"] = "ImGuiViewportFlags_TopMost" defs["enums"]["ImGuiViewportFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiViewportFlags_"][13] = {} defs["enums"]["ImGuiViewportFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiViewportFlags_"][13]["name"] = "ImGuiViewportFlags_NoAutoMerge" +defs["enums"]["ImGuiViewportFlags_"][13]["name"] = "ImGuiViewportFlags_CanHostOtherWindows" defs["enums"]["ImGuiViewportFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiViewportFlags_"][14] = {} defs["enums"]["ImGuiViewportFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiViewportFlags_"][14]["name"] = "ImGuiViewportFlags_CanHostOtherWindows" +defs["enums"]["ImGuiViewportFlags_"][14]["name"] = "ImGuiViewportFlags_IsMinimized" defs["enums"]["ImGuiViewportFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiViewportFlags_"][15] = {} +defs["enums"]["ImGuiViewportFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiViewportFlags_"][15]["name"] = "ImGuiViewportFlags_IsFocused" +defs["enums"]["ImGuiViewportFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiWindowDockStyleCol"] = {} defs["enums"]["ImGuiWindowDockStyleCol"][1] = {} defs["enums"]["ImGuiWindowDockStyleCol"][1]["calc_value"] = 0 @@ -3385,28 +3821,36 @@ defs["enums"]["ImGuiWindowDockStyleCol"][1]["name"] = "ImGuiWindowDockStyleCol_T defs["enums"]["ImGuiWindowDockStyleCol"][1]["value"] = "0" defs["enums"]["ImGuiWindowDockStyleCol"][2] = {} defs["enums"]["ImGuiWindowDockStyleCol"][2]["calc_value"] = 1 -defs["enums"]["ImGuiWindowDockStyleCol"][2]["name"] = "ImGuiWindowDockStyleCol_Tab" +defs["enums"]["ImGuiWindowDockStyleCol"][2]["name"] = "ImGuiWindowDockStyleCol_TabHovered" defs["enums"]["ImGuiWindowDockStyleCol"][2]["value"] = "1" defs["enums"]["ImGuiWindowDockStyleCol"][3] = {} defs["enums"]["ImGuiWindowDockStyleCol"][3]["calc_value"] = 2 -defs["enums"]["ImGuiWindowDockStyleCol"][3]["name"] = "ImGuiWindowDockStyleCol_TabHovered" +defs["enums"]["ImGuiWindowDockStyleCol"][3]["name"] = "ImGuiWindowDockStyleCol_TabFocused" defs["enums"]["ImGuiWindowDockStyleCol"][3]["value"] = "2" defs["enums"]["ImGuiWindowDockStyleCol"][4] = {} defs["enums"]["ImGuiWindowDockStyleCol"][4]["calc_value"] = 3 -defs["enums"]["ImGuiWindowDockStyleCol"][4]["name"] = "ImGuiWindowDockStyleCol_TabActive" +defs["enums"]["ImGuiWindowDockStyleCol"][4]["name"] = "ImGuiWindowDockStyleCol_TabSelected" defs["enums"]["ImGuiWindowDockStyleCol"][4]["value"] = "3" defs["enums"]["ImGuiWindowDockStyleCol"][5] = {} defs["enums"]["ImGuiWindowDockStyleCol"][5]["calc_value"] = 4 -defs["enums"]["ImGuiWindowDockStyleCol"][5]["name"] = "ImGuiWindowDockStyleCol_TabUnfocused" +defs["enums"]["ImGuiWindowDockStyleCol"][5]["name"] = "ImGuiWindowDockStyleCol_TabSelectedOverline" defs["enums"]["ImGuiWindowDockStyleCol"][5]["value"] = "4" defs["enums"]["ImGuiWindowDockStyleCol"][6] = {} defs["enums"]["ImGuiWindowDockStyleCol"][6]["calc_value"] = 5 -defs["enums"]["ImGuiWindowDockStyleCol"][6]["name"] = "ImGuiWindowDockStyleCol_TabUnfocusedActive" +defs["enums"]["ImGuiWindowDockStyleCol"][6]["name"] = "ImGuiWindowDockStyleCol_TabDimmed" defs["enums"]["ImGuiWindowDockStyleCol"][6]["value"] = "5" defs["enums"]["ImGuiWindowDockStyleCol"][7] = {} defs["enums"]["ImGuiWindowDockStyleCol"][7]["calc_value"] = 6 -defs["enums"]["ImGuiWindowDockStyleCol"][7]["name"] = "ImGuiWindowDockStyleCol_COUNT" +defs["enums"]["ImGuiWindowDockStyleCol"][7]["name"] = "ImGuiWindowDockStyleCol_TabDimmedSelected" defs["enums"]["ImGuiWindowDockStyleCol"][7]["value"] = "6" +defs["enums"]["ImGuiWindowDockStyleCol"][8] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][8]["calc_value"] = 7 +defs["enums"]["ImGuiWindowDockStyleCol"][8]["name"] = "ImGuiWindowDockStyleCol_TabDimmedSelectedOverline" +defs["enums"]["ImGuiWindowDockStyleCol"][8]["value"] = "7" +defs["enums"]["ImGuiWindowDockStyleCol"][9] = {} +defs["enums"]["ImGuiWindowDockStyleCol"][9]["calc_value"] = 8 +defs["enums"]["ImGuiWindowDockStyleCol"][9]["name"] = "ImGuiWindowDockStyleCol_COUNT" +defs["enums"]["ImGuiWindowDockStyleCol"][9]["value"] = "8" defs["enums"]["ImGuiWindowFlags_"] = {} defs["enums"]["ImGuiWindowFlags_"][1] = {} defs["enums"]["ImGuiWindowFlags_"][1]["calc_value"] = 0 @@ -3478,243 +3922,276 @@ defs["enums"]["ImGuiWindowFlags_"][17]["name"] = "ImGuiWindowFlags_AlwaysHorizon defs["enums"]["ImGuiWindowFlags_"][17]["value"] = "1<< 15" defs["enums"]["ImGuiWindowFlags_"][18] = {} defs["enums"]["ImGuiWindowFlags_"][18]["calc_value"] = 65536 -defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_NoNavInputs" defs["enums"]["ImGuiWindowFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiWindowFlags_"][19] = {} -defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 262144 -defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavInputs" -defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 18" +defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 131072 +defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiWindowFlags_"][20] = {} -defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 524288 -defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_NoNavFocus" -defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 19" +defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_UnsavedDocument" +defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiWindowFlags_"][21] = {} -defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 1048576 -defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_UnsavedDocument" -defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "1 << 20" +defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 524288 +defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_NoDocking" +defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiWindowFlags_"][22] = {} -defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 2097152 -defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoDocking" -defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "1 << 21" +defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 196608 +defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoNav" +defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][23] = {} -defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 786432 -defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoNav" -defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 43 +defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoDecoration" +defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" defs["enums"]["ImGuiWindowFlags_"][24] = {} -defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 43 -defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_NoDecoration" -defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" +defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 197120 +defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_NoInputs" +defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][25] = {} -defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 786944 -defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_NoInputs" -defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 16777216 +defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_ChildWindow" +defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "1 << 24" defs["enums"]["ImGuiWindowFlags_"][26] = {} -defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 8388608 -defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_NavFlattened" -defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 23" +defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 33554432 +defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_Tooltip" +defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 25" defs["enums"]["ImGuiWindowFlags_"][27] = {} -defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 16777216 -defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_ChildWindow" -defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 24" +defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 67108864 +defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_Popup" +defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 26" defs["enums"]["ImGuiWindowFlags_"][28] = {} -defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 33554432 -defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_Tooltip" -defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 25" +defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 134217728 +defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_Modal" +defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 27" defs["enums"]["ImGuiWindowFlags_"][29] = {} -defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 67108864 -defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_Popup" -defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 26" +defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 268435456 +defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_ChildMenu" +defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 28" defs["enums"]["ImGuiWindowFlags_"][30] = {} -defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 134217728 -defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_Modal" -defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 27" -defs["enums"]["ImGuiWindowFlags_"][31] = {} -defs["enums"]["ImGuiWindowFlags_"][31]["calc_value"] = 268435456 -defs["enums"]["ImGuiWindowFlags_"][31]["name"] = "ImGuiWindowFlags_ChildMenu" -defs["enums"]["ImGuiWindowFlags_"][31]["value"] = "1 << 28" -defs["enums"]["ImGuiWindowFlags_"][32] = {} -defs["enums"]["ImGuiWindowFlags_"][32]["calc_value"] = 536870912 -defs["enums"]["ImGuiWindowFlags_"][32]["name"] = "ImGuiWindowFlags_DockNodeHost" -defs["enums"]["ImGuiWindowFlags_"][32]["value"] = "1 << 29" +defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 536870912 +defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_DockNodeHost" +defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 29" +defs["enums"]["ImGuiWindowRefreshFlags_"] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][1] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiWindowRefreshFlags_"][1]["name"] = "ImGuiWindowRefreshFlags_None" +defs["enums"]["ImGuiWindowRefreshFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiWindowRefreshFlags_"][2] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiWindowRefreshFlags_"][2]["name"] = "ImGuiWindowRefreshFlags_TryToAvoidRefresh" +defs["enums"]["ImGuiWindowRefreshFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiWindowRefreshFlags_"][3] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiWindowRefreshFlags_"][3]["name"] = "ImGuiWindowRefreshFlags_RefreshOnHover" +defs["enums"]["ImGuiWindowRefreshFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiWindowRefreshFlags_"][4] = {} +defs["enums"]["ImGuiWindowRefreshFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiWindowRefreshFlags_"][4]["name"] = "ImGuiWindowRefreshFlags_RefreshOnFocus" +defs["enums"]["ImGuiWindowRefreshFlags_"][4]["value"] = "1 << 2" defs["enumtypes"] = {} +defs["enumtypes"]["ImGuiDir"] = "int" defs["enumtypes"]["ImGuiKey"] = "int" defs["enumtypes"]["ImGuiLocKey"] = "int" +defs["enumtypes"]["ImGuiMouseSource"] = "int" +defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "imgui_internal:598" -defs["locations"]["ImColor"] = "imgui:2455" -defs["locations"]["ImDrawChannel"] = "imgui:2545" -defs["locations"]["ImDrawCmd"] = "imgui:2504" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2537" -defs["locations"]["ImDrawData"] = "imgui:2737" -defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:787" -defs["locations"]["ImDrawFlags_"] = "imgui:2571" -defs["locations"]["ImDrawList"] = "imgui:2609" -defs["locations"]["ImDrawListFlags_"] = "imgui:2591" -defs["locations"]["ImDrawListSharedData"] = "imgui_internal:764" -defs["locations"]["ImDrawListSplitter"] = "imgui:2554" -defs["locations"]["ImDrawVert"] = "imgui:2522" -defs["locations"]["ImFont"] = "imgui:2957" -defs["locations"]["ImFontAtlas"] = "imgui:2854" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2816" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2829" -defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3497" -defs["locations"]["ImFontConfig"] = "imgui:2760" -defs["locations"]["ImFontGlyph"] = "imgui:2789" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2801" -defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1433" -defs["locations"]["ImGuiAxis"] = "imgui_internal:953" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1576" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:858" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1690" -defs["locations"]["ImGuiCol_"] = "imgui:1591" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1703" -defs["locations"]["ImGuiColorMod"] = "imgui_internal:996" -defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:883" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1124" -defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1013" -defs["locations"]["ImGuiCond_"] = "imgui:1794" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1551" -defs["locations"]["ImGuiContext"] = "imgui_internal:1910" -defs["locations"]["ImGuiContextHook"] = "imgui_internal:1895" -defs["locations"]["ImGuiContextHookType"] = "imgui_internal:1893" -defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1604" -defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:979" -defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:988" -defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:973" -defs["locations"]["ImGuiDataType_"] = "imgui:1376" -defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:1825" -defs["locations"]["ImGuiDir_"] = "imgui:1392" -defs["locations"]["ImGuiDockContext"] = "imgui_internal:1702" -defs["locations"]["ImGuiDockNode"] = "imgui_internal:1620" -defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1579" -defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1341" -defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1611" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1354" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1301" -defs["locations"]["ImGuiGroupData"] = "imgui_internal:1026" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1315" -defs["locations"]["ImGuiIO"] = "imgui:1971" -defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1291" -defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1289" -defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1287" -defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1285" -defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1283" -defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1286" -defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1284" -defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1288" -defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1257" -defs["locations"]["ImGuiInputFlags_"] = "imgui_internal:1354" -defs["locations"]["ImGuiInputSource"] = "imgui_internal:1270" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2159" -defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:849" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1036" -defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1061" -defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:806" -defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:826" -defs["locations"]["ImGuiKey"] = "imgui:1414" -defs["locations"]["ImGuiKeyData"] = "imgui:1963" -defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1342" -defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1317" -defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1330" -defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1176" -defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:937" -defs["locations"]["ImGuiListClipper"] = "imgui:2404" -defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1417" -defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1404" -defs["locations"]["ImGuiLocEntry"] = "imgui_internal:1814" -defs["locations"]["ImGuiLocKey"] = "imgui_internal:1801" -defs["locations"]["ImGuiLogType"] = "imgui_internal:943" -defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1042" -defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:1841" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1766" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1776" -defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1456" -defs["locations"]["ImGuiNavInput"] = "imgui:1542" -defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1490" -defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1483" -defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1465" -defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1163" -defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1156" -defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1129" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1112" -defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1530" -defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1510" -defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1540" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2279" -defs["locations"]["ImGuiPayload"] = "imgui:2220" -defs["locations"]["ImGuiPlatformIO"] = "imgui:3122" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:3194" -defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3185" -defs["locations"]["ImGuiPlotType"] = "imgui_internal:960" -defs["locations"]["ImGuiPopupData"] = "imgui_internal:1098" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1097" -defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:966" -defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1220" -defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1442" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:896" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1113" -defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:915" -defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1781" -defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1213" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2190" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:889" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1749" -defs["locations"]["ImGuiSortDirection_"] = "imgui:1403" -defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:1864" -defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1188" -defs["locations"]["ImGuiStackTool"] = "imgui_internal:1876" -defs["locations"]["ImGuiStorage"] = "imgui:2341" -defs["locations"]["ImGuiStoragePair"] = "imgui:2344" -defs["locations"]["ImGuiStyle"] = "imgui:1906" -defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1003" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1658" -defs["locations"]["ImGuiTabBar"] = "imgui_internal:2625" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2587" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1138" -defs["locations"]["ImGuiTabItem"] = "imgui_internal:2605" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2595" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1154" -defs["locations"]["ImGuiTable"] = "imgui_internal:2762" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1292" -defs["locations"]["ImGuiTableCellData"] = "imgui_internal:2745" -defs["locations"]["ImGuiTableColumn"] = "imgui_internal:2686" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1240" -defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:2899" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2242" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1189" -defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:2752" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1277" -defs["locations"]["ImGuiTableSettings"] = "imgui_internal:2923" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2256" -defs["locations"]["ImGuiTableTempData"] = "imgui_internal:2878" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2314" -defs["locations"]["ImGuiTextFilter"] = "imgui:2287" -defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:923" -defs["locations"]["ImGuiTextIndex"] = "imgui_internal:721" -defs["locations"]["ImGuiTextRange"] = "imgui:2297" -defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:929" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:910" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1068" -defs["locations"]["ImGuiViewport"] = "imgui:3038" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:3013" -defs["locations"]["ImGuiViewportP"] = "imgui_internal:1719" -defs["locations"]["ImGuiWindow"] = "imgui_internal:2440" -defs["locations"]["ImGuiWindowClass"] = "imgui:2205" -defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1697" -defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1686" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:995" -defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1764" -defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1206" -defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2392" -defs["locations"]["ImRect"] = "imgui_internal:526" -defs["locations"]["ImVec1"] = "imgui_internal:508" -defs["locations"]["ImVec2"] = "imgui:259" -defs["locations"]["ImVec2ih"] = "imgui_internal:516" -defs["locations"]["ImVec4"] = "imgui:272" -defs["locations"]["STB_TexteditState"] = "imstb_textedit:320" -defs["locations"]["StbTexteditRow"] = "imstb_textedit:367" -defs["locations"]["StbUndoRecord"] = "imstb_textedit:302" -defs["locations"]["StbUndoState"] = "imstb_textedit:311" +defs["locations"]["ImBitVector"] = "imgui_internal:607" +defs["locations"]["ImColor"] = "imgui:2845" +defs["locations"]["ImDrawChannel"] = "imgui:3083" +defs["locations"]["ImDrawCmd"] = "imgui:3042" +defs["locations"]["ImDrawCmdHeader"] = "imgui:3075" +defs["locations"]["ImDrawData"] = "imgui:3288" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:796" +defs["locations"]["ImDrawFlags_"] = "imgui:3109" +defs["locations"]["ImDrawList"] = "imgui:3147" +defs["locations"]["ImDrawListFlags_"] = "imgui:3129" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:772" +defs["locations"]["ImDrawListSplitter"] = "imgui:3092" +defs["locations"]["ImDrawVert"] = "imgui:3060" +defs["locations"]["ImFont"] = "imgui:3511" +defs["locations"]["ImFontAtlas"] = "imgui:3407" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3369" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:3382" +defs["locations"]["ImFontBuilderIO"] = "imgui_internal:3983" +defs["locations"]["ImFontConfig"] = "imgui:3312" +defs["locations"]["ImFontGlyph"] = "imgui:3342" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3354" +defs["locations"]["ImGuiActivateFlags_"] = "imgui_internal:1550" +defs["locations"]["ImGuiAxis"] = "imgui_internal:1018" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1679" +defs["locations"]["ImGuiBoxSelectState"] = "imgui_internal:1733" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:911" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1812" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1148" +defs["locations"]["ImGuiCol_"] = "imgui:1694" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1823" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:1032" +defs["locations"]["ImGuiComboFlagsPrivate_"] = "imgui_internal:936" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1291" +defs["locations"]["ImGuiComboPreviewData"] = "imgui_internal:1049" +defs["locations"]["ImGuiCond_"] = "imgui:1925" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1653" +defs["locations"]["ImGuiContext"] = "imgui_internal:2184" +defs["locations"]["ImGuiContextHook"] = "imgui_internal:2169" +defs["locations"]["ImGuiContextHookType"] = "imgui_internal:2167" +defs["locations"]["ImGuiDataAuthority_"] = "imgui_internal:1844" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:822" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:831" +defs["locations"]["ImGuiDataTypeStorage"] = "imgui_internal:816" +defs["locations"]["ImGuiDataType_"] = "imgui:1439" +defs["locations"]["ImGuiDataVarInfo"] = "imgui_internal:808" +defs["locations"]["ImGuiDebugAllocEntry"] = "imgui_internal:2103" +defs["locations"]["ImGuiDebugAllocInfo"] = "imgui_internal:2110" +defs["locations"]["ImGuiDebugLogFlags_"] = "imgui_internal:2083" +defs["locations"]["ImGuiDir"] = "imgui:1456" +defs["locations"]["ImGuiDockContext"] = "imgui_internal:1946" +defs["locations"]["ImGuiDockNode"] = "imgui_internal:1860" +defs["locations"]["ImGuiDockNodeFlagsPrivate_"] = "imgui_internal:1814" +defs["locations"]["ImGuiDockNodeFlags_"] = "imgui:1392" +defs["locations"]["ImGuiDockNodeState"] = "imgui_internal:1851" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1411" +defs["locations"]["ImGuiFocusRequestFlags_"] = "imgui_internal:981" +defs["locations"]["ImGuiFocusScopeData"] = "imgui_internal:1630" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1338" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:1062" +defs["locations"]["ImGuiHoveredFlagsPrivate_"] = "imgui_internal:893" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1352" +defs["locations"]["ImGuiIDStackTool"] = "imgui_internal:2150" +defs["locations"]["ImGuiIO"] = "imgui:2298" +defs["locations"]["ImGuiInputEvent"] = "imgui_internal:1410" +defs["locations"]["ImGuiInputEventAppFocused"] = "imgui_internal:1408" +defs["locations"]["ImGuiInputEventKey"] = "imgui_internal:1406" +defs["locations"]["ImGuiInputEventMouseButton"] = "imgui_internal:1404" +defs["locations"]["ImGuiInputEventMousePos"] = "imgui_internal:1402" +defs["locations"]["ImGuiInputEventMouseViewport"] = "imgui_internal:1405" +defs["locations"]["ImGuiInputEventMouseWheel"] = "imgui_internal:1403" +defs["locations"]["ImGuiInputEventText"] = "imgui_internal:1407" +defs["locations"]["ImGuiInputEventType"] = "imgui_internal:1378" +defs["locations"]["ImGuiInputFlagsPrivate_"] = "imgui_internal:1477" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1618" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:1391" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2524" +defs["locations"]["ImGuiInputTextDeactivatedState"] = "imgui_internal:1098" +defs["locations"]["ImGuiInputTextFlagsPrivate_"] = "imgui_internal:901" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1182" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:1120" +defs["locations"]["ImGuiItemFlagsPrivate_"] = "imgui_internal:845" +defs["locations"]["ImGuiItemFlags_"] = "imgui:1169" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:867" +defs["locations"]["ImGuiKey"] = "imgui:1485" +defs["locations"]["ImGuiKeyData"] = "imgui:2290" +defs["locations"]["ImGuiKeyOwnerData"] = "imgui_internal:1464" +defs["locations"]["ImGuiKeyRoutingData"] = "imgui_internal:1438" +defs["locations"]["ImGuiKeyRoutingTable"] = "imgui_internal:1452" +defs["locations"]["ImGuiLastItemData"] = "imgui_internal:1254" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:1002" +defs["locations"]["ImGuiListClipper"] = "imgui:2753" +defs["locations"]["ImGuiListClipperData"] = "imgui_internal:1534" +defs["locations"]["ImGuiListClipperRange"] = "imgui_internal:1521" +defs["locations"]["ImGuiLocEntry"] = "imgui_internal:2072" +defs["locations"]["ImGuiLocKey"] = "imgui_internal:2054" +defs["locations"]["ImGuiLogType"] = "imgui_internal:1008" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:1080" +defs["locations"]["ImGuiMetricsConfig"] = "imgui_internal:2120" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1885" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1895" +defs["locations"]["ImGuiMouseSource"] = "imgui:1914" +defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2903" +defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2930" +defs["locations"]["ImGuiMultiSelectState"] = "imgui_internal:1790" +defs["locations"]["ImGuiMultiSelectTempData"] = "imgui_internal:1765" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:1575" +defs["locations"]["ImGuiNavItemData"] = "imgui_internal:1613" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:1605" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:1583" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:1234" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:1224" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:1195" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:1176" +defs["locations"]["ImGuiOldColumnData"] = "imgui_internal:1698" +defs["locations"]["ImGuiOldColumnFlags_"] = "imgui_internal:1678" +defs["locations"]["ImGuiOldColumns"] = "imgui_internal:1708" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2624" +defs["locations"]["ImGuiPayload"] = "imgui:2589" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3682" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3781" +defs["locations"]["ImGuiPlatformMonitor"] = "imgui:3771" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:1025" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:1335" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1256" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:1327" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:1314" +defs["locations"]["ImGuiScrollFlags_"] = "imgui_internal:1561" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:949" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1274" +defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2976" +defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2999" +defs["locations"]["ImGuiSelectionRequest"] = "imgui:2950" +defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2942" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:970" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:2034" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:1307" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2558" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:942" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1869" +defs["locations"]["ImGuiSortDirection"] = "imgui:1467" +defs["locations"]["ImGuiStackLevelInfo"] = "imgui_internal:2138" +defs["locations"]["ImGuiStackSizes"] = "imgui_internal:1281" +defs["locations"]["ImGuiStorage"] = "imgui:2696" +defs["locations"]["ImGuiStoragePair"] = "imgui:2679" +defs["locations"]["ImGuiStyle"] = "imgui:2212" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:1039" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1771" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:3013" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:2976" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1306" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:2993" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:2984" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1323" +defs["locations"]["ImGuiTable"] = "imgui_internal:3159" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:2066" +defs["locations"]["ImGuiTableCellData"] = "imgui_internal:3127" +defs["locations"]["ImGuiTableColumn"] = "imgui_internal:3067" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:2013" +defs["locations"]["ImGuiTableColumnSettings"] = "imgui_internal:3306" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2088" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1960" +defs["locations"]["ImGuiTableHeaderData"] = "imgui_internal:3136" +defs["locations"]["ImGuiTableInstanceData"] = "imgui_internal:3146" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:2051" +defs["locations"]["ImGuiTableSettings"] = "imgui_internal:3330" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2078" +defs["locations"]["ImGuiTableTempData"] = "imgui_internal:3283" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2659" +defs["locations"]["ImGuiTextFilter"] = "imgui:2632" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:988" +defs["locations"]["ImGuiTextIndex"] = "imgui_internal:727" +defs["locations"]["ImGuiTextRange"] = "imgui:2642" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:994" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:963" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1221" +defs["locations"]["ImGuiTreeNodeStackData"] = "imgui_internal:1273" +defs["locations"]["ImGuiTypingSelectFlags_"] = "imgui_internal:1641" +defs["locations"]["ImGuiTypingSelectRequest"] = "imgui_internal:1649" +defs["locations"]["ImGuiTypingSelectState"] = "imgui_internal:1660" +defs["locations"]["ImGuiViewport"] = "imgui:3597" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3569" +defs["locations"]["ImGuiViewportP"] = "imgui_internal:1963" +defs["locations"]["ImGuiWindow"] = "imgui_internal:2824" +defs["locations"]["ImGuiWindowClass"] = "imgui:2573" +defs["locations"]["ImGuiWindowDockStyle"] = "imgui_internal:1941" +defs["locations"]["ImGuiWindowDockStyleCol"] = "imgui_internal:1927" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1097" +defs["locations"]["ImGuiWindowRefreshFlags_"] = "imgui_internal:1167" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:2015" +defs["locations"]["ImGuiWindowStackData"] = "imgui_internal:1299" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:2774" +defs["locations"]["ImRect"] = "imgui_internal:529" +defs["locations"]["ImVec1"] = "imgui_internal:511" +defs["locations"]["ImVec2"] = "imgui:293" +defs["locations"]["ImVec2ih"] = "imgui_internal:519" +defs["locations"]["ImVec4"] = "imgui:306" defs["structs"] = {} defs["structs"]["ImBitVector"] = {} defs["structs"]["ImBitVector"][1] = {} @@ -3781,7 +4258,8 @@ defs["structs"]["ImDrawData"][4]["name"] = "TotalVtxCount" defs["structs"]["ImDrawData"][4]["type"] = "int" defs["structs"]["ImDrawData"][5] = {} defs["structs"]["ImDrawData"][5]["name"] = "CmdLists" -defs["structs"]["ImDrawData"][5]["type"] = "ImDrawList**" +defs["structs"]["ImDrawData"][5]["template_type"] = "ImDrawList*" +defs["structs"]["ImDrawData"][5]["type"] = "ImVector_ImDrawListPtr" defs["structs"]["ImDrawData"][6] = {} defs["structs"]["ImDrawData"][6]["name"] = "DisplayPos" defs["structs"]["ImDrawData"][6]["type"] = "ImVec2" @@ -3799,7 +4277,11 @@ defs["structs"]["ImDrawDataBuilder"][1] = {} defs["structs"]["ImDrawDataBuilder"][1]["name"] = "Layers[2]" defs["structs"]["ImDrawDataBuilder"][1]["size"] = 2 defs["structs"]["ImDrawDataBuilder"][1]["template_type"] = "ImDrawList*" -defs["structs"]["ImDrawDataBuilder"][1]["type"] = "ImVector_ImDrawListPtr" +defs["structs"]["ImDrawDataBuilder"][1]["type"] = "ImVector_ImDrawListPtr*" +defs["structs"]["ImDrawDataBuilder"][2] = {} +defs["structs"]["ImDrawDataBuilder"][2]["name"] = "LayerData1" +defs["structs"]["ImDrawDataBuilder"][2]["template_type"] = "ImDrawList*" +defs["structs"]["ImDrawDataBuilder"][2]["type"] = "ImVector_ImDrawListPtr" defs["structs"]["ImDrawList"] = {} defs["structs"]["ImDrawList"][1] = {} defs["structs"]["ImDrawList"][1]["name"] = "CmdBuffer" @@ -3823,35 +4305,35 @@ defs["structs"]["ImDrawList"][6] = {} defs["structs"]["ImDrawList"][6]["name"] = "_Data" defs["structs"]["ImDrawList"][6]["type"] = "ImDrawListSharedData*" defs["structs"]["ImDrawList"][7] = {} -defs["structs"]["ImDrawList"][7]["name"] = "_OwnerName" -defs["structs"]["ImDrawList"][7]["type"] = "const char*" +defs["structs"]["ImDrawList"][7]["name"] = "_VtxWritePtr" +defs["structs"]["ImDrawList"][7]["type"] = "ImDrawVert*" defs["structs"]["ImDrawList"][8] = {} -defs["structs"]["ImDrawList"][8]["name"] = "_VtxWritePtr" -defs["structs"]["ImDrawList"][8]["type"] = "ImDrawVert*" +defs["structs"]["ImDrawList"][8]["name"] = "_IdxWritePtr" +defs["structs"]["ImDrawList"][8]["type"] = "ImDrawIdx*" defs["structs"]["ImDrawList"][9] = {} -defs["structs"]["ImDrawList"][9]["name"] = "_IdxWritePtr" -defs["structs"]["ImDrawList"][9]["type"] = "ImDrawIdx*" +defs["structs"]["ImDrawList"][9]["name"] = "_Path" +defs["structs"]["ImDrawList"][9]["template_type"] = "ImVec2" +defs["structs"]["ImDrawList"][9]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawList"][10] = {} -defs["structs"]["ImDrawList"][10]["name"] = "_ClipRectStack" -defs["structs"]["ImDrawList"][10]["template_type"] = "ImVec4" -defs["structs"]["ImDrawList"][10]["type"] = "ImVector_ImVec4" +defs["structs"]["ImDrawList"][10]["name"] = "_CmdHeader" +defs["structs"]["ImDrawList"][10]["type"] = "ImDrawCmdHeader" defs["structs"]["ImDrawList"][11] = {} -defs["structs"]["ImDrawList"][11]["name"] = "_TextureIdStack" -defs["structs"]["ImDrawList"][11]["template_type"] = "ImTextureID" -defs["structs"]["ImDrawList"][11]["type"] = "ImVector_ImTextureID" +defs["structs"]["ImDrawList"][11]["name"] = "_Splitter" +defs["structs"]["ImDrawList"][11]["type"] = "ImDrawListSplitter" defs["structs"]["ImDrawList"][12] = {} -defs["structs"]["ImDrawList"][12]["name"] = "_Path" -defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec2" -defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawList"][12]["name"] = "_ClipRectStack" +defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec4" +defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec4" defs["structs"]["ImDrawList"][13] = {} -defs["structs"]["ImDrawList"][13]["name"] = "_CmdHeader" -defs["structs"]["ImDrawList"][13]["type"] = "ImDrawCmdHeader" +defs["structs"]["ImDrawList"][13]["name"] = "_TextureIdStack" +defs["structs"]["ImDrawList"][13]["template_type"] = "ImTextureID" +defs["structs"]["ImDrawList"][13]["type"] = "ImVector_ImTextureID" defs["structs"]["ImDrawList"][14] = {} -defs["structs"]["ImDrawList"][14]["name"] = "_Splitter" -defs["structs"]["ImDrawList"][14]["type"] = "ImDrawListSplitter" +defs["structs"]["ImDrawList"][14]["name"] = "_FringeScale" +defs["structs"]["ImDrawList"][14]["type"] = "float" defs["structs"]["ImDrawList"][15] = {} -defs["structs"]["ImDrawList"][15]["name"] = "_FringeScale" -defs["structs"]["ImDrawList"][15]["type"] = "float" +defs["structs"]["ImDrawList"][15]["name"] = "_OwnerName" +defs["structs"]["ImDrawList"][15]["type"] = "const char*" defs["structs"]["ImDrawListSharedData"] = {} defs["structs"]["ImDrawListSharedData"][1] = {} defs["structs"]["ImDrawListSharedData"][1]["name"] = "TexUvWhitePixel" @@ -3863,35 +4345,38 @@ defs["structs"]["ImDrawListSharedData"][3] = {} defs["structs"]["ImDrawListSharedData"][3]["name"] = "FontSize" defs["structs"]["ImDrawListSharedData"][3]["type"] = "float" defs["structs"]["ImDrawListSharedData"][4] = {} -defs["structs"]["ImDrawListSharedData"][4]["name"] = "CurveTessellationTol" +defs["structs"]["ImDrawListSharedData"][4]["name"] = "FontScale" defs["structs"]["ImDrawListSharedData"][4]["type"] = "float" defs["structs"]["ImDrawListSharedData"][5] = {} -defs["structs"]["ImDrawListSharedData"][5]["name"] = "CircleSegmentMaxError" +defs["structs"]["ImDrawListSharedData"][5]["name"] = "CurveTessellationTol" defs["structs"]["ImDrawListSharedData"][5]["type"] = "float" defs["structs"]["ImDrawListSharedData"][6] = {} -defs["structs"]["ImDrawListSharedData"][6]["name"] = "ClipRectFullscreen" -defs["structs"]["ImDrawListSharedData"][6]["type"] = "ImVec4" +defs["structs"]["ImDrawListSharedData"][6]["name"] = "CircleSegmentMaxError" +defs["structs"]["ImDrawListSharedData"][6]["type"] = "float" defs["structs"]["ImDrawListSharedData"][7] = {} -defs["structs"]["ImDrawListSharedData"][7]["name"] = "InitialFlags" -defs["structs"]["ImDrawListSharedData"][7]["type"] = "ImDrawListFlags" +defs["structs"]["ImDrawListSharedData"][7]["name"] = "ClipRectFullscreen" +defs["structs"]["ImDrawListSharedData"][7]["type"] = "ImVec4" defs["structs"]["ImDrawListSharedData"][8] = {} -defs["structs"]["ImDrawListSharedData"][8]["name"] = "TempBuffer" -defs["structs"]["ImDrawListSharedData"][8]["template_type"] = "ImVec2" -defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawListSharedData"][8]["name"] = "InitialFlags" +defs["structs"]["ImDrawListSharedData"][8]["type"] = "ImDrawListFlags" defs["structs"]["ImDrawListSharedData"][9] = {} -defs["structs"]["ImDrawListSharedData"][9]["name"] = "ArcFastVtx[48]" -defs["structs"]["ImDrawListSharedData"][9]["size"] = 48 -defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][9]["name"] = "TempBuffer" +defs["structs"]["ImDrawListSharedData"][9]["template_type"] = "ImVec2" +defs["structs"]["ImDrawListSharedData"][9]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawListSharedData"][10] = {} -defs["structs"]["ImDrawListSharedData"][10]["name"] = "ArcFastRadiusCutoff" -defs["structs"]["ImDrawListSharedData"][10]["type"] = "float" +defs["structs"]["ImDrawListSharedData"][10]["name"] = "ArcFastVtx[48]" +defs["structs"]["ImDrawListSharedData"][10]["size"] = 48 +defs["structs"]["ImDrawListSharedData"][10]["type"] = "ImVec2" defs["structs"]["ImDrawListSharedData"][11] = {} -defs["structs"]["ImDrawListSharedData"][11]["name"] = "CircleSegmentCounts[64]" -defs["structs"]["ImDrawListSharedData"][11]["size"] = 64 -defs["structs"]["ImDrawListSharedData"][11]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][11]["name"] = "ArcFastRadiusCutoff" +defs["structs"]["ImDrawListSharedData"][11]["type"] = "float" defs["structs"]["ImDrawListSharedData"][12] = {} -defs["structs"]["ImDrawListSharedData"][12]["name"] = "TexUvLines" -defs["structs"]["ImDrawListSharedData"][12]["type"] = "const ImVec4*" +defs["structs"]["ImDrawListSharedData"][12]["name"] = "CircleSegmentCounts[64]" +defs["structs"]["ImDrawListSharedData"][12]["size"] = 64 +defs["structs"]["ImDrawListSharedData"][12]["type"] = "ImU8" +defs["structs"]["ImDrawListSharedData"][13] = {} +defs["structs"]["ImDrawListSharedData"][13]["name"] = "TexUvLines" +defs["structs"]["ImDrawListSharedData"][13]["type"] = "const ImVec4*" defs["structs"]["ImDrawListSplitter"] = {} defs["structs"]["ImDrawListSplitter"][1] = {} defs["structs"]["ImDrawListSplitter"][1]["name"] = "_Current" @@ -3951,27 +4436,33 @@ defs["structs"]["ImFont"][11] = {} defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "DotChar" -defs["structs"]["ImFont"][12]["type"] = "ImWchar" +defs["structs"]["ImFont"][12]["name"] = "EllipsisCharCount" +defs["structs"]["ImFont"][12]["type"] = "short" defs["structs"]["ImFont"][13] = {} -defs["structs"]["ImFont"][13]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][13]["type"] = "bool" +defs["structs"]["ImFont"][13]["name"] = "EllipsisWidth" +defs["structs"]["ImFont"][13]["type"] = "float" defs["structs"]["ImFont"][14] = {} -defs["structs"]["ImFont"][14]["name"] = "Scale" +defs["structs"]["ImFont"][14]["name"] = "EllipsisCharStep" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "Ascent" -defs["structs"]["ImFont"][15]["type"] = "float" +defs["structs"]["ImFont"][15]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][15]["type"] = "bool" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "Descent" +defs["structs"]["ImFont"][16]["name"] = "Scale" defs["structs"]["ImFont"][16]["type"] = "float" defs["structs"]["ImFont"][17] = {} -defs["structs"]["ImFont"][17]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][17]["type"] = "int" +defs["structs"]["ImFont"][17]["name"] = "Ascent" +defs["structs"]["ImFont"][17]["type"] = "float" defs["structs"]["ImFont"][18] = {} -defs["structs"]["ImFont"][18]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" -defs["structs"]["ImFont"][18]["size"] = 34 -defs["structs"]["ImFont"][18]["type"] = "ImU8" +defs["structs"]["ImFont"][18]["name"] = "Descent" +defs["structs"]["ImFont"][18]["type"] = "float" +defs["structs"]["ImFont"][19] = {} +defs["structs"]["ImFont"][19]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][19]["type"] = "int" +defs["structs"]["ImFont"][20] = {} +defs["structs"]["ImFont"][20]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" +defs["structs"]["ImFont"][20]["size"] = 34 +defs["structs"]["ImFont"][20]["type"] = "ImU8" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Flags" @@ -4122,15 +4613,18 @@ defs["structs"]["ImFontConfig"][16] = {} defs["structs"]["ImFontConfig"][16]["name"] = "RasterizerMultiply" defs["structs"]["ImFontConfig"][16]["type"] = "float" defs["structs"]["ImFontConfig"][17] = {} -defs["structs"]["ImFontConfig"][17]["name"] = "EllipsisChar" -defs["structs"]["ImFontConfig"][17]["type"] = "ImWchar" +defs["structs"]["ImFontConfig"][17]["name"] = "RasterizerDensity" +defs["structs"]["ImFontConfig"][17]["type"] = "float" defs["structs"]["ImFontConfig"][18] = {} -defs["structs"]["ImFontConfig"][18]["name"] = "Name[40]" -defs["structs"]["ImFontConfig"][18]["size"] = 40 -defs["structs"]["ImFontConfig"][18]["type"] = "char" +defs["structs"]["ImFontConfig"][18]["name"] = "EllipsisChar" +defs["structs"]["ImFontConfig"][18]["type"] = "ImWchar" defs["structs"]["ImFontConfig"][19] = {} -defs["structs"]["ImFontConfig"][19]["name"] = "DstFont" -defs["structs"]["ImFontConfig"][19]["type"] = "ImFont*" +defs["structs"]["ImFontConfig"][19]["name"] = "Name[40]" +defs["structs"]["ImFontConfig"][19]["size"] = 40 +defs["structs"]["ImFontConfig"][19]["type"] = "char" +defs["structs"]["ImFontConfig"][20] = {} +defs["structs"]["ImFontConfig"][20]["name"] = "DstFont" +defs["structs"]["ImFontConfig"][20]["type"] = "ImFont*" defs["structs"]["ImFontGlyph"] = {} defs["structs"]["ImFontGlyph"][1] = {} defs["structs"]["ImFontGlyph"][1]["bitfield"] = "1" @@ -4176,6 +4670,53 @@ defs["structs"]["ImFontGlyphRangesBuilder"][1] = {} defs["structs"]["ImFontGlyphRangesBuilder"][1]["name"] = "UsedChars" defs["structs"]["ImFontGlyphRangesBuilder"][1]["template_type"] = "ImU32" defs["structs"]["ImFontGlyphRangesBuilder"][1]["type"] = "ImVector_ImU32" +defs["structs"]["ImGuiBoxSelectState"] = {} +defs["structs"]["ImGuiBoxSelectState"][1] = {} +defs["structs"]["ImGuiBoxSelectState"][1]["name"] = "ID" +defs["structs"]["ImGuiBoxSelectState"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiBoxSelectState"][2] = {} +defs["structs"]["ImGuiBoxSelectState"][2]["name"] = "IsActive" +defs["structs"]["ImGuiBoxSelectState"][2]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][3] = {} +defs["structs"]["ImGuiBoxSelectState"][3]["name"] = "IsStarting" +defs["structs"]["ImGuiBoxSelectState"][3]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][4] = {} +defs["structs"]["ImGuiBoxSelectState"][4]["name"] = "IsStartedFromVoid" +defs["structs"]["ImGuiBoxSelectState"][4]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][5] = {} +defs["structs"]["ImGuiBoxSelectState"][5]["name"] = "IsStartedSetNavIdOnce" +defs["structs"]["ImGuiBoxSelectState"][5]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][6] = {} +defs["structs"]["ImGuiBoxSelectState"][6]["name"] = "RequestClear" +defs["structs"]["ImGuiBoxSelectState"][6]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][7] = {} +defs["structs"]["ImGuiBoxSelectState"][7]["bitfield"] = "16" +defs["structs"]["ImGuiBoxSelectState"][7]["name"] = "KeyMods" +defs["structs"]["ImGuiBoxSelectState"][7]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiBoxSelectState"][8] = {} +defs["structs"]["ImGuiBoxSelectState"][8]["name"] = "StartPosRel" +defs["structs"]["ImGuiBoxSelectState"][8]["type"] = "ImVec2" +defs["structs"]["ImGuiBoxSelectState"][9] = {} +defs["structs"]["ImGuiBoxSelectState"][9]["name"] = "EndPosRel" +defs["structs"]["ImGuiBoxSelectState"][9]["type"] = "ImVec2" +defs["structs"]["ImGuiBoxSelectState"][10] = {} +defs["structs"]["ImGuiBoxSelectState"][10]["name"] = "ScrollAccum" +defs["structs"]["ImGuiBoxSelectState"][10]["type"] = "ImVec2" +defs["structs"]["ImGuiBoxSelectState"][11] = {} +defs["structs"]["ImGuiBoxSelectState"][11]["name"] = "Window" +defs["structs"]["ImGuiBoxSelectState"][11]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiBoxSelectState"][12] = {} +defs["structs"]["ImGuiBoxSelectState"][12]["name"] = "UnclipMode" +defs["structs"]["ImGuiBoxSelectState"][12]["type"] = "bool" +defs["structs"]["ImGuiBoxSelectState"][13] = {} +defs["structs"]["ImGuiBoxSelectState"][13]["name"] = "UnclipRect" +defs["structs"]["ImGuiBoxSelectState"][13]["type"] = "ImRect" +defs["structs"]["ImGuiBoxSelectState"][14] = {} +defs["structs"]["ImGuiBoxSelectState"][14]["name"] = "BoxSelectRectPrev" +defs["structs"]["ImGuiBoxSelectState"][14]["type"] = "ImRect" +defs["structs"]["ImGuiBoxSelectState"][15] = {} +defs["structs"]["ImGuiBoxSelectState"][15]["name"] = "BoxSelectRectCurr" +defs["structs"]["ImGuiBoxSelectState"][15]["type"] = "ImRect" defs["structs"]["ImGuiColorMod"] = {} defs["structs"]["ImGuiColorMod"][1] = {} defs["structs"]["ImGuiColorMod"][1]["name"] = "Col" @@ -4216,30 +4757,28 @@ defs["structs"]["ImGuiContext"][4] = {} defs["structs"]["ImGuiContext"][4]["name"] = "PlatformIO" defs["structs"]["ImGuiContext"][4]["type"] = "ImGuiPlatformIO" defs["structs"]["ImGuiContext"][5] = {} -defs["structs"]["ImGuiContext"][5]["name"] = "InputEventsQueue" -defs["structs"]["ImGuiContext"][5]["template_type"] = "ImGuiInputEvent" -defs["structs"]["ImGuiContext"][5]["type"] = "ImVector_ImGuiInputEvent" +defs["structs"]["ImGuiContext"][5]["name"] = "Style" +defs["structs"]["ImGuiContext"][5]["type"] = "ImGuiStyle" defs["structs"]["ImGuiContext"][6] = {} -defs["structs"]["ImGuiContext"][6]["name"] = "InputEventsTrail" -defs["structs"]["ImGuiContext"][6]["template_type"] = "ImGuiInputEvent" -defs["structs"]["ImGuiContext"][6]["type"] = "ImVector_ImGuiInputEvent" +defs["structs"]["ImGuiContext"][6]["name"] = "ConfigFlagsCurrFrame" +defs["structs"]["ImGuiContext"][6]["type"] = "ImGuiConfigFlags" defs["structs"]["ImGuiContext"][7] = {} -defs["structs"]["ImGuiContext"][7]["name"] = "Style" -defs["structs"]["ImGuiContext"][7]["type"] = "ImGuiStyle" +defs["structs"]["ImGuiContext"][7]["name"] = "ConfigFlagsLastFrame" +defs["structs"]["ImGuiContext"][7]["type"] = "ImGuiConfigFlags" defs["structs"]["ImGuiContext"][8] = {} -defs["structs"]["ImGuiContext"][8]["name"] = "ConfigFlagsCurrFrame" -defs["structs"]["ImGuiContext"][8]["type"] = "ImGuiConfigFlags" +defs["structs"]["ImGuiContext"][8]["name"] = "Font" +defs["structs"]["ImGuiContext"][8]["type"] = "ImFont*" defs["structs"]["ImGuiContext"][9] = {} -defs["structs"]["ImGuiContext"][9]["name"] = "ConfigFlagsLastFrame" -defs["structs"]["ImGuiContext"][9]["type"] = "ImGuiConfigFlags" +defs["structs"]["ImGuiContext"][9]["name"] = "FontSize" +defs["structs"]["ImGuiContext"][9]["type"] = "float" defs["structs"]["ImGuiContext"][10] = {} -defs["structs"]["ImGuiContext"][10]["name"] = "Font" -defs["structs"]["ImGuiContext"][10]["type"] = "ImFont*" +defs["structs"]["ImGuiContext"][10]["name"] = "FontBaseSize" +defs["structs"]["ImGuiContext"][10]["type"] = "float" defs["structs"]["ImGuiContext"][11] = {} -defs["structs"]["ImGuiContext"][11]["name"] = "FontSize" +defs["structs"]["ImGuiContext"][11]["name"] = "FontScale" defs["structs"]["ImGuiContext"][11]["type"] = "float" defs["structs"]["ImGuiContext"][12] = {} -defs["structs"]["ImGuiContext"][12]["name"] = "FontBaseSize" +defs["structs"]["ImGuiContext"][12]["name"] = "CurrentDpiScale" defs["structs"]["ImGuiContext"][12]["type"] = "float" defs["structs"]["ImGuiContext"][13] = {} defs["structs"]["ImGuiContext"][13]["name"] = "DrawListSharedData" @@ -4278,707 +4817,884 @@ defs["structs"]["ImGuiContext"][24] = {} defs["structs"]["ImGuiContext"][24]["name"] = "TestEngine" defs["structs"]["ImGuiContext"][24]["type"] = "void*" defs["structs"]["ImGuiContext"][25] = {} -defs["structs"]["ImGuiContext"][25]["name"] = "Windows" -defs["structs"]["ImGuiContext"][25]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiContext"][25]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][25]["name"] = "ContextName[16]" +defs["structs"]["ImGuiContext"][25]["size"] = 16 +defs["structs"]["ImGuiContext"][25]["type"] = "char" defs["structs"]["ImGuiContext"][26] = {} -defs["structs"]["ImGuiContext"][26]["name"] = "WindowsFocusOrder" -defs["structs"]["ImGuiContext"][26]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiContext"][26]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][26]["name"] = "InputEventsQueue" +defs["structs"]["ImGuiContext"][26]["template_type"] = "ImGuiInputEvent" +defs["structs"]["ImGuiContext"][26]["type"] = "ImVector_ImGuiInputEvent" defs["structs"]["ImGuiContext"][27] = {} -defs["structs"]["ImGuiContext"][27]["name"] = "WindowsTempSortBuffer" -defs["structs"]["ImGuiContext"][27]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiContext"][27]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiContext"][27]["name"] = "InputEventsTrail" +defs["structs"]["ImGuiContext"][27]["template_type"] = "ImGuiInputEvent" +defs["structs"]["ImGuiContext"][27]["type"] = "ImVector_ImGuiInputEvent" defs["structs"]["ImGuiContext"][28] = {} -defs["structs"]["ImGuiContext"][28]["name"] = "CurrentWindowStack" -defs["structs"]["ImGuiContext"][28]["template_type"] = "ImGuiWindowStackData" -defs["structs"]["ImGuiContext"][28]["type"] = "ImVector_ImGuiWindowStackData" +defs["structs"]["ImGuiContext"][28]["name"] = "InputEventsNextMouseSource" +defs["structs"]["ImGuiContext"][28]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiContext"][29] = {} -defs["structs"]["ImGuiContext"][29]["name"] = "WindowsById" -defs["structs"]["ImGuiContext"][29]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiContext"][29]["name"] = "InputEventsNextEventId" +defs["structs"]["ImGuiContext"][29]["type"] = "ImU32" defs["structs"]["ImGuiContext"][30] = {} -defs["structs"]["ImGuiContext"][30]["name"] = "WindowsActiveCount" -defs["structs"]["ImGuiContext"][30]["type"] = "int" +defs["structs"]["ImGuiContext"][30]["name"] = "Windows" +defs["structs"]["ImGuiContext"][30]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][30]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiContext"][31] = {} -defs["structs"]["ImGuiContext"][31]["name"] = "WindowsHoverPadding" -defs["structs"]["ImGuiContext"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][31]["name"] = "WindowsFocusOrder" +defs["structs"]["ImGuiContext"][31]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][31]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiContext"][32] = {} -defs["structs"]["ImGuiContext"][32]["name"] = "CurrentWindow" -defs["structs"]["ImGuiContext"][32]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][32]["name"] = "WindowsTempSortBuffer" +defs["structs"]["ImGuiContext"][32]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][32]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiContext"][33] = {} -defs["structs"]["ImGuiContext"][33]["name"] = "HoveredWindow" -defs["structs"]["ImGuiContext"][33]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][33]["name"] = "CurrentWindowStack" +defs["structs"]["ImGuiContext"][33]["template_type"] = "ImGuiWindowStackData" +defs["structs"]["ImGuiContext"][33]["type"] = "ImVector_ImGuiWindowStackData" defs["structs"]["ImGuiContext"][34] = {} -defs["structs"]["ImGuiContext"][34]["name"] = "HoveredWindowUnderMovingWindow" -defs["structs"]["ImGuiContext"][34]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][34]["name"] = "WindowsById" +defs["structs"]["ImGuiContext"][34]["type"] = "ImGuiStorage" defs["structs"]["ImGuiContext"][35] = {} -defs["structs"]["ImGuiContext"][35]["name"] = "MovingWindow" -defs["structs"]["ImGuiContext"][35]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][35]["name"] = "WindowsActiveCount" +defs["structs"]["ImGuiContext"][35]["type"] = "int" defs["structs"]["ImGuiContext"][36] = {} -defs["structs"]["ImGuiContext"][36]["name"] = "WheelingWindow" -defs["structs"]["ImGuiContext"][36]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][36]["name"] = "WindowsHoverPadding" +defs["structs"]["ImGuiContext"][36]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][37] = {} -defs["structs"]["ImGuiContext"][37]["name"] = "WheelingWindowRefMousePos" -defs["structs"]["ImGuiContext"][37]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][37]["name"] = "DebugBreakInWindow" +defs["structs"]["ImGuiContext"][37]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][38] = {} -defs["structs"]["ImGuiContext"][38]["name"] = "WheelingWindowStartFrame" -defs["structs"]["ImGuiContext"][38]["type"] = "int" +defs["structs"]["ImGuiContext"][38]["name"] = "CurrentWindow" +defs["structs"]["ImGuiContext"][38]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][39] = {} -defs["structs"]["ImGuiContext"][39]["name"] = "WheelingWindowReleaseTimer" -defs["structs"]["ImGuiContext"][39]["type"] = "float" +defs["structs"]["ImGuiContext"][39]["name"] = "HoveredWindow" +defs["structs"]["ImGuiContext"][39]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][40] = {} -defs["structs"]["ImGuiContext"][40]["name"] = "WheelingWindowWheelRemainder" -defs["structs"]["ImGuiContext"][40]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][40]["name"] = "HoveredWindowUnderMovingWindow" +defs["structs"]["ImGuiContext"][40]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][41] = {} -defs["structs"]["ImGuiContext"][41]["name"] = "WheelingAxisAvg" -defs["structs"]["ImGuiContext"][41]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][41]["name"] = "HoveredWindowBeforeClear" +defs["structs"]["ImGuiContext"][41]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][42] = {} -defs["structs"]["ImGuiContext"][42]["name"] = "DebugHookIdInfo" -defs["structs"]["ImGuiContext"][42]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][42]["name"] = "MovingWindow" +defs["structs"]["ImGuiContext"][42]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][43] = {} -defs["structs"]["ImGuiContext"][43]["name"] = "HoveredId" -defs["structs"]["ImGuiContext"][43]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][43]["name"] = "WheelingWindow" +defs["structs"]["ImGuiContext"][43]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][44] = {} -defs["structs"]["ImGuiContext"][44]["name"] = "HoveredIdPreviousFrame" -defs["structs"]["ImGuiContext"][44]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][44]["name"] = "WheelingWindowRefMousePos" +defs["structs"]["ImGuiContext"][44]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][45] = {} -defs["structs"]["ImGuiContext"][45]["name"] = "HoveredIdAllowOverlap" -defs["structs"]["ImGuiContext"][45]["type"] = "bool" +defs["structs"]["ImGuiContext"][45]["name"] = "WheelingWindowStartFrame" +defs["structs"]["ImGuiContext"][45]["type"] = "int" defs["structs"]["ImGuiContext"][46] = {} -defs["structs"]["ImGuiContext"][46]["name"] = "HoveredIdDisabled" -defs["structs"]["ImGuiContext"][46]["type"] = "bool" +defs["structs"]["ImGuiContext"][46]["name"] = "WheelingWindowScrolledFrame" +defs["structs"]["ImGuiContext"][46]["type"] = "int" defs["structs"]["ImGuiContext"][47] = {} -defs["structs"]["ImGuiContext"][47]["name"] = "HoveredIdTimer" +defs["structs"]["ImGuiContext"][47]["name"] = "WheelingWindowReleaseTimer" defs["structs"]["ImGuiContext"][47]["type"] = "float" defs["structs"]["ImGuiContext"][48] = {} -defs["structs"]["ImGuiContext"][48]["name"] = "HoveredIdNotActiveTimer" -defs["structs"]["ImGuiContext"][48]["type"] = "float" +defs["structs"]["ImGuiContext"][48]["name"] = "WheelingWindowWheelRemainder" +defs["structs"]["ImGuiContext"][48]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][49] = {} -defs["structs"]["ImGuiContext"][49]["name"] = "ActiveId" -defs["structs"]["ImGuiContext"][49]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][49]["name"] = "WheelingAxisAvg" +defs["structs"]["ImGuiContext"][49]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][50] = {} -defs["structs"]["ImGuiContext"][50]["name"] = "ActiveIdIsAlive" +defs["structs"]["ImGuiContext"][50]["name"] = "DebugDrawIdConflicts" defs["structs"]["ImGuiContext"][50]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][51] = {} -defs["structs"]["ImGuiContext"][51]["name"] = "ActiveIdTimer" -defs["structs"]["ImGuiContext"][51]["type"] = "float" +defs["structs"]["ImGuiContext"][51]["name"] = "DebugHookIdInfo" +defs["structs"]["ImGuiContext"][51]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][52] = {} -defs["structs"]["ImGuiContext"][52]["name"] = "ActiveIdIsJustActivated" -defs["structs"]["ImGuiContext"][52]["type"] = "bool" +defs["structs"]["ImGuiContext"][52]["name"] = "HoveredId" +defs["structs"]["ImGuiContext"][52]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][53] = {} -defs["structs"]["ImGuiContext"][53]["name"] = "ActiveIdAllowOverlap" -defs["structs"]["ImGuiContext"][53]["type"] = "bool" +defs["structs"]["ImGuiContext"][53]["name"] = "HoveredIdPreviousFrame" +defs["structs"]["ImGuiContext"][53]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][54] = {} -defs["structs"]["ImGuiContext"][54]["name"] = "ActiveIdNoClearOnFocusLoss" -defs["structs"]["ImGuiContext"][54]["type"] = "bool" +defs["structs"]["ImGuiContext"][54]["name"] = "HoveredIdPreviousFrameItemCount" +defs["structs"]["ImGuiContext"][54]["type"] = "int" defs["structs"]["ImGuiContext"][55] = {} -defs["structs"]["ImGuiContext"][55]["name"] = "ActiveIdHasBeenPressedBefore" -defs["structs"]["ImGuiContext"][55]["type"] = "bool" +defs["structs"]["ImGuiContext"][55]["name"] = "HoveredIdTimer" +defs["structs"]["ImGuiContext"][55]["type"] = "float" defs["structs"]["ImGuiContext"][56] = {} -defs["structs"]["ImGuiContext"][56]["name"] = "ActiveIdHasBeenEditedBefore" -defs["structs"]["ImGuiContext"][56]["type"] = "bool" +defs["structs"]["ImGuiContext"][56]["name"] = "HoveredIdNotActiveTimer" +defs["structs"]["ImGuiContext"][56]["type"] = "float" defs["structs"]["ImGuiContext"][57] = {} -defs["structs"]["ImGuiContext"][57]["name"] = "ActiveIdHasBeenEditedThisFrame" +defs["structs"]["ImGuiContext"][57]["name"] = "HoveredIdAllowOverlap" defs["structs"]["ImGuiContext"][57]["type"] = "bool" defs["structs"]["ImGuiContext"][58] = {} -defs["structs"]["ImGuiContext"][58]["name"] = "ActiveIdClickOffset" -defs["structs"]["ImGuiContext"][58]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][58]["name"] = "HoveredIdIsDisabled" +defs["structs"]["ImGuiContext"][58]["type"] = "bool" defs["structs"]["ImGuiContext"][59] = {} -defs["structs"]["ImGuiContext"][59]["name"] = "ActiveIdWindow" -defs["structs"]["ImGuiContext"][59]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][59]["name"] = "ItemUnclipByLog" +defs["structs"]["ImGuiContext"][59]["type"] = "bool" defs["structs"]["ImGuiContext"][60] = {} -defs["structs"]["ImGuiContext"][60]["name"] = "ActiveIdSource" -defs["structs"]["ImGuiContext"][60]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][60]["name"] = "ActiveId" +defs["structs"]["ImGuiContext"][60]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][61] = {} -defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdMouseButton" -defs["structs"]["ImGuiContext"][61]["type"] = "int" +defs["structs"]["ImGuiContext"][61]["name"] = "ActiveIdIsAlive" +defs["structs"]["ImGuiContext"][61]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][62] = {} -defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdPreviousFrame" -defs["structs"]["ImGuiContext"][62]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][62]["name"] = "ActiveIdTimer" +defs["structs"]["ImGuiContext"][62]["type"] = "float" defs["structs"]["ImGuiContext"][63] = {} -defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdPreviousFrameIsAlive" +defs["structs"]["ImGuiContext"][63]["name"] = "ActiveIdIsJustActivated" defs["structs"]["ImGuiContext"][63]["type"] = "bool" defs["structs"]["ImGuiContext"][64] = {} -defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][64]["name"] = "ActiveIdAllowOverlap" defs["structs"]["ImGuiContext"][64]["type"] = "bool" defs["structs"]["ImGuiContext"][65] = {} -defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdPreviousFrameWindow" -defs["structs"]["ImGuiContext"][65]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][65]["name"] = "ActiveIdNoClearOnFocusLoss" +defs["structs"]["ImGuiContext"][65]["type"] = "bool" defs["structs"]["ImGuiContext"][66] = {} -defs["structs"]["ImGuiContext"][66]["name"] = "LastActiveId" -defs["structs"]["ImGuiContext"][66]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][66]["name"] = "ActiveIdHasBeenPressedBefore" +defs["structs"]["ImGuiContext"][66]["type"] = "bool" defs["structs"]["ImGuiContext"][67] = {} -defs["structs"]["ImGuiContext"][67]["name"] = "LastActiveIdTimer" -defs["structs"]["ImGuiContext"][67]["type"] = "float" +defs["structs"]["ImGuiContext"][67]["name"] = "ActiveIdHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][67]["type"] = "bool" defs["structs"]["ImGuiContext"][68] = {} -defs["structs"]["ImGuiContext"][68]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" -defs["structs"]["ImGuiContext"][68]["size"] = 140 -defs["structs"]["ImGuiContext"][68]["type"] = "ImGuiKeyOwnerData" +defs["structs"]["ImGuiContext"][68]["name"] = "ActiveIdHasBeenEditedThisFrame" +defs["structs"]["ImGuiContext"][68]["type"] = "bool" defs["structs"]["ImGuiContext"][69] = {} -defs["structs"]["ImGuiContext"][69]["name"] = "KeysRoutingTable" -defs["structs"]["ImGuiContext"][69]["type"] = "ImGuiKeyRoutingTable" +defs["structs"]["ImGuiContext"][69]["name"] = "ActiveIdFromShortcut" +defs["structs"]["ImGuiContext"][69]["type"] = "bool" defs["structs"]["ImGuiContext"][70] = {} -defs["structs"]["ImGuiContext"][70]["name"] = "ActiveIdUsingNavDirMask" -defs["structs"]["ImGuiContext"][70]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][70]["bitfield"] = "8" +defs["structs"]["ImGuiContext"][70]["name"] = "ActiveIdMouseButton" +defs["structs"]["ImGuiContext"][70]["type"] = "int" defs["structs"]["ImGuiContext"][71] = {} -defs["structs"]["ImGuiContext"][71]["name"] = "ActiveIdUsingAllKeyboardKeys" -defs["structs"]["ImGuiContext"][71]["type"] = "bool" +defs["structs"]["ImGuiContext"][71]["name"] = "ActiveIdClickOffset" +defs["structs"]["ImGuiContext"][71]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][72] = {} -defs["structs"]["ImGuiContext"][72]["name"] = "ActiveIdUsingNavInputMask" -defs["structs"]["ImGuiContext"][72]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][72]["name"] = "ActiveIdWindow" +defs["structs"]["ImGuiContext"][72]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][73] = {} -defs["structs"]["ImGuiContext"][73]["name"] = "CurrentFocusScopeId" -defs["structs"]["ImGuiContext"][73]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][73]["name"] = "ActiveIdSource" +defs["structs"]["ImGuiContext"][73]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][74] = {} -defs["structs"]["ImGuiContext"][74]["name"] = "CurrentItemFlags" -defs["structs"]["ImGuiContext"][74]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][74]["name"] = "ActiveIdPreviousFrame" +defs["structs"]["ImGuiContext"][74]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][75] = {} -defs["structs"]["ImGuiContext"][75]["name"] = "DebugLocateId" -defs["structs"]["ImGuiContext"][75]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][75]["name"] = "ActiveIdPreviousFrameIsAlive" +defs["structs"]["ImGuiContext"][75]["type"] = "bool" defs["structs"]["ImGuiContext"][76] = {} -defs["structs"]["ImGuiContext"][76]["name"] = "NextItemData" -defs["structs"]["ImGuiContext"][76]["type"] = "ImGuiNextItemData" +defs["structs"]["ImGuiContext"][76]["name"] = "ActiveIdPreviousFrameHasBeenEditedBefore" +defs["structs"]["ImGuiContext"][76]["type"] = "bool" defs["structs"]["ImGuiContext"][77] = {} -defs["structs"]["ImGuiContext"][77]["name"] = "LastItemData" -defs["structs"]["ImGuiContext"][77]["type"] = "ImGuiLastItemData" +defs["structs"]["ImGuiContext"][77]["name"] = "ActiveIdPreviousFrameWindow" +defs["structs"]["ImGuiContext"][77]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][78] = {} -defs["structs"]["ImGuiContext"][78]["name"] = "NextWindowData" -defs["structs"]["ImGuiContext"][78]["type"] = "ImGuiNextWindowData" +defs["structs"]["ImGuiContext"][78]["name"] = "LastActiveId" +defs["structs"]["ImGuiContext"][78]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][79] = {} -defs["structs"]["ImGuiContext"][79]["name"] = "ColorStack" -defs["structs"]["ImGuiContext"][79]["template_type"] = "ImGuiColorMod" -defs["structs"]["ImGuiContext"][79]["type"] = "ImVector_ImGuiColorMod" +defs["structs"]["ImGuiContext"][79]["name"] = "LastActiveIdTimer" +defs["structs"]["ImGuiContext"][79]["type"] = "float" defs["structs"]["ImGuiContext"][80] = {} -defs["structs"]["ImGuiContext"][80]["name"] = "StyleVarStack" -defs["structs"]["ImGuiContext"][80]["template_type"] = "ImGuiStyleMod" -defs["structs"]["ImGuiContext"][80]["type"] = "ImVector_ImGuiStyleMod" +defs["structs"]["ImGuiContext"][80]["name"] = "LastKeyModsChangeTime" +defs["structs"]["ImGuiContext"][80]["type"] = "double" defs["structs"]["ImGuiContext"][81] = {} -defs["structs"]["ImGuiContext"][81]["name"] = "FontStack" -defs["structs"]["ImGuiContext"][81]["template_type"] = "ImFont*" -defs["structs"]["ImGuiContext"][81]["type"] = "ImVector_ImFontPtr" +defs["structs"]["ImGuiContext"][81]["name"] = "LastKeyModsChangeFromNoneTime" +defs["structs"]["ImGuiContext"][81]["type"] = "double" defs["structs"]["ImGuiContext"][82] = {} -defs["structs"]["ImGuiContext"][82]["name"] = "FocusScopeStack" -defs["structs"]["ImGuiContext"][82]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][82]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][82]["name"] = "LastKeyboardKeyPressTime" +defs["structs"]["ImGuiContext"][82]["type"] = "double" defs["structs"]["ImGuiContext"][83] = {} -defs["structs"]["ImGuiContext"][83]["name"] = "ItemFlagsStack" -defs["structs"]["ImGuiContext"][83]["template_type"] = "ImGuiItemFlags" -defs["structs"]["ImGuiContext"][83]["type"] = "ImVector_ImGuiItemFlags" +defs["structs"]["ImGuiContext"][83]["name"] = "KeysMayBeCharInput" +defs["structs"]["ImGuiContext"][83]["type"] = "ImBitArrayForNamedKeys" defs["structs"]["ImGuiContext"][84] = {} -defs["structs"]["ImGuiContext"][84]["name"] = "GroupStack" -defs["structs"]["ImGuiContext"][84]["template_type"] = "ImGuiGroupData" -defs["structs"]["ImGuiContext"][84]["type"] = "ImVector_ImGuiGroupData" +defs["structs"]["ImGuiContext"][84]["name"] = "KeysOwnerData[ImGuiKey_NamedKey_COUNT]" +defs["structs"]["ImGuiContext"][84]["size"] = 154 +defs["structs"]["ImGuiContext"][84]["type"] = "ImGuiKeyOwnerData" defs["structs"]["ImGuiContext"][85] = {} -defs["structs"]["ImGuiContext"][85]["name"] = "OpenPopupStack" -defs["structs"]["ImGuiContext"][85]["template_type"] = "ImGuiPopupData" -defs["structs"]["ImGuiContext"][85]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][85]["name"] = "KeysRoutingTable" +defs["structs"]["ImGuiContext"][85]["type"] = "ImGuiKeyRoutingTable" defs["structs"]["ImGuiContext"][86] = {} -defs["structs"]["ImGuiContext"][86]["name"] = "BeginPopupStack" -defs["structs"]["ImGuiContext"][86]["template_type"] = "ImGuiPopupData" -defs["structs"]["ImGuiContext"][86]["type"] = "ImVector_ImGuiPopupData" +defs["structs"]["ImGuiContext"][86]["name"] = "ActiveIdUsingNavDirMask" +defs["structs"]["ImGuiContext"][86]["type"] = "ImU32" defs["structs"]["ImGuiContext"][87] = {} -defs["structs"]["ImGuiContext"][87]["name"] = "BeginMenuCount" -defs["structs"]["ImGuiContext"][87]["type"] = "int" +defs["structs"]["ImGuiContext"][87]["name"] = "ActiveIdUsingAllKeyboardKeys" +defs["structs"]["ImGuiContext"][87]["type"] = "bool" defs["structs"]["ImGuiContext"][88] = {} -defs["structs"]["ImGuiContext"][88]["name"] = "Viewports" -defs["structs"]["ImGuiContext"][88]["template_type"] = "ImGuiViewportP*" -defs["structs"]["ImGuiContext"][88]["type"] = "ImVector_ImGuiViewportPPtr" +defs["structs"]["ImGuiContext"][88]["name"] = "DebugBreakInShortcutRouting" +defs["structs"]["ImGuiContext"][88]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][89] = {} -defs["structs"]["ImGuiContext"][89]["name"] = "CurrentDpiScale" -defs["structs"]["ImGuiContext"][89]["type"] = "float" +defs["structs"]["ImGuiContext"][89]["name"] = "CurrentFocusScopeId" +defs["structs"]["ImGuiContext"][89]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][90] = {} -defs["structs"]["ImGuiContext"][90]["name"] = "CurrentViewport" -defs["structs"]["ImGuiContext"][90]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][90]["name"] = "CurrentItemFlags" +defs["structs"]["ImGuiContext"][90]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiContext"][91] = {} -defs["structs"]["ImGuiContext"][91]["name"] = "MouseViewport" -defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][91]["name"] = "DebugLocateId" +defs["structs"]["ImGuiContext"][91]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][92] = {} -defs["structs"]["ImGuiContext"][92]["name"] = "MouseLastHoveredViewport" -defs["structs"]["ImGuiContext"][92]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][92]["name"] = "NextItemData" +defs["structs"]["ImGuiContext"][92]["type"] = "ImGuiNextItemData" defs["structs"]["ImGuiContext"][93] = {} -defs["structs"]["ImGuiContext"][93]["name"] = "PlatformLastFocusedViewportId" -defs["structs"]["ImGuiContext"][93]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][93]["name"] = "LastItemData" +defs["structs"]["ImGuiContext"][93]["type"] = "ImGuiLastItemData" defs["structs"]["ImGuiContext"][94] = {} -defs["structs"]["ImGuiContext"][94]["name"] = "FallbackMonitor" -defs["structs"]["ImGuiContext"][94]["type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiContext"][94]["name"] = "NextWindowData" +defs["structs"]["ImGuiContext"][94]["type"] = "ImGuiNextWindowData" defs["structs"]["ImGuiContext"][95] = {} -defs["structs"]["ImGuiContext"][95]["name"] = "ViewportFrontMostStampCount" -defs["structs"]["ImGuiContext"][95]["type"] = "int" +defs["structs"]["ImGuiContext"][95]["name"] = "DebugShowGroupRects" +defs["structs"]["ImGuiContext"][95]["type"] = "bool" defs["structs"]["ImGuiContext"][96] = {} -defs["structs"]["ImGuiContext"][96]["name"] = "NavWindow" -defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][96]["name"] = "DebugFlashStyleColorIdx" +defs["structs"]["ImGuiContext"][96]["type"] = "ImGuiCol" defs["structs"]["ImGuiContext"][97] = {} -defs["structs"]["ImGuiContext"][97]["name"] = "NavId" -defs["structs"]["ImGuiContext"][97]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][97]["name"] = "ColorStack" +defs["structs"]["ImGuiContext"][97]["template_type"] = "ImGuiColorMod" +defs["structs"]["ImGuiContext"][97]["type"] = "ImVector_ImGuiColorMod" defs["structs"]["ImGuiContext"][98] = {} -defs["structs"]["ImGuiContext"][98]["name"] = "NavFocusScopeId" -defs["structs"]["ImGuiContext"][98]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][98]["name"] = "StyleVarStack" +defs["structs"]["ImGuiContext"][98]["template_type"] = "ImGuiStyleMod" +defs["structs"]["ImGuiContext"][98]["type"] = "ImVector_ImGuiStyleMod" defs["structs"]["ImGuiContext"][99] = {} -defs["structs"]["ImGuiContext"][99]["name"] = "NavActivateId" -defs["structs"]["ImGuiContext"][99]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][99]["name"] = "FontStack" +defs["structs"]["ImGuiContext"][99]["template_type"] = "ImFont*" +defs["structs"]["ImGuiContext"][99]["type"] = "ImVector_ImFontPtr" defs["structs"]["ImGuiContext"][100] = {} -defs["structs"]["ImGuiContext"][100]["name"] = "NavActivateDownId" -defs["structs"]["ImGuiContext"][100]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][100]["name"] = "FocusScopeStack" +defs["structs"]["ImGuiContext"][100]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][100]["type"] = "ImVector_ImGuiFocusScopeData" defs["structs"]["ImGuiContext"][101] = {} -defs["structs"]["ImGuiContext"][101]["name"] = "NavActivatePressedId" -defs["structs"]["ImGuiContext"][101]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][101]["name"] = "ItemFlagsStack" +defs["structs"]["ImGuiContext"][101]["template_type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiContext"][101]["type"] = "ImVector_ImGuiItemFlags" defs["structs"]["ImGuiContext"][102] = {} -defs["structs"]["ImGuiContext"][102]["name"] = "NavActivateInputId" -defs["structs"]["ImGuiContext"][102]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][102]["name"] = "GroupStack" +defs["structs"]["ImGuiContext"][102]["template_type"] = "ImGuiGroupData" +defs["structs"]["ImGuiContext"][102]["type"] = "ImVector_ImGuiGroupData" defs["structs"]["ImGuiContext"][103] = {} -defs["structs"]["ImGuiContext"][103]["name"] = "NavActivateFlags" -defs["structs"]["ImGuiContext"][103]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][103]["name"] = "OpenPopupStack" +defs["structs"]["ImGuiContext"][103]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][103]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][104] = {} -defs["structs"]["ImGuiContext"][104]["name"] = "NavJustMovedToId" -defs["structs"]["ImGuiContext"][104]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][104]["name"] = "BeginPopupStack" +defs["structs"]["ImGuiContext"][104]["template_type"] = "ImGuiPopupData" +defs["structs"]["ImGuiContext"][104]["type"] = "ImVector_ImGuiPopupData" defs["structs"]["ImGuiContext"][105] = {} -defs["structs"]["ImGuiContext"][105]["name"] = "NavJustMovedToFocusScopeId" -defs["structs"]["ImGuiContext"][105]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][105]["name"] = "TreeNodeStack" +defs["structs"]["ImGuiContext"][105]["template_type"] = "ImGuiTreeNodeStackData" +defs["structs"]["ImGuiContext"][105]["type"] = "ImVector_ImGuiTreeNodeStackData" defs["structs"]["ImGuiContext"][106] = {} -defs["structs"]["ImGuiContext"][106]["name"] = "NavJustMovedToKeyMods" -defs["structs"]["ImGuiContext"][106]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][106]["name"] = "Viewports" +defs["structs"]["ImGuiContext"][106]["template_type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiContext"][106]["type"] = "ImVector_ImGuiViewportPPtr" defs["structs"]["ImGuiContext"][107] = {} -defs["structs"]["ImGuiContext"][107]["name"] = "NavNextActivateId" -defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][107]["name"] = "CurrentViewport" +defs["structs"]["ImGuiContext"][107]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][108] = {} -defs["structs"]["ImGuiContext"][108]["name"] = "NavNextActivateFlags" -defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiActivateFlags" +defs["structs"]["ImGuiContext"][108]["name"] = "MouseViewport" +defs["structs"]["ImGuiContext"][108]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][109] = {} -defs["structs"]["ImGuiContext"][109]["name"] = "NavInputSource" -defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiInputSource" +defs["structs"]["ImGuiContext"][109]["name"] = "MouseLastHoveredViewport" +defs["structs"]["ImGuiContext"][109]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiContext"][110] = {} -defs["structs"]["ImGuiContext"][110]["name"] = "NavLayer" -defs["structs"]["ImGuiContext"][110]["type"] = "ImGuiNavLayer" +defs["structs"]["ImGuiContext"][110]["name"] = "PlatformLastFocusedViewportId" +defs["structs"]["ImGuiContext"][110]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][111] = {} -defs["structs"]["ImGuiContext"][111]["name"] = "NavIdIsAlive" -defs["structs"]["ImGuiContext"][111]["type"] = "bool" +defs["structs"]["ImGuiContext"][111]["name"] = "FallbackMonitor" +defs["structs"]["ImGuiContext"][111]["type"] = "ImGuiPlatformMonitor" defs["structs"]["ImGuiContext"][112] = {} -defs["structs"]["ImGuiContext"][112]["name"] = "NavMousePosDirty" -defs["structs"]["ImGuiContext"][112]["type"] = "bool" +defs["structs"]["ImGuiContext"][112]["name"] = "PlatformMonitorsFullWorkRect" +defs["structs"]["ImGuiContext"][112]["type"] = "ImRect" defs["structs"]["ImGuiContext"][113] = {} -defs["structs"]["ImGuiContext"][113]["name"] = "NavDisableHighlight" -defs["structs"]["ImGuiContext"][113]["type"] = "bool" +defs["structs"]["ImGuiContext"][113]["name"] = "ViewportCreatedCount" +defs["structs"]["ImGuiContext"][113]["type"] = "int" defs["structs"]["ImGuiContext"][114] = {} -defs["structs"]["ImGuiContext"][114]["name"] = "NavDisableMouseHover" -defs["structs"]["ImGuiContext"][114]["type"] = "bool" +defs["structs"]["ImGuiContext"][114]["name"] = "PlatformWindowsCreatedCount" +defs["structs"]["ImGuiContext"][114]["type"] = "int" defs["structs"]["ImGuiContext"][115] = {} -defs["structs"]["ImGuiContext"][115]["name"] = "NavAnyRequest" -defs["structs"]["ImGuiContext"][115]["type"] = "bool" +defs["structs"]["ImGuiContext"][115]["name"] = "ViewportFocusedStampCount" +defs["structs"]["ImGuiContext"][115]["type"] = "int" defs["structs"]["ImGuiContext"][116] = {} -defs["structs"]["ImGuiContext"][116]["name"] = "NavInitRequest" -defs["structs"]["ImGuiContext"][116]["type"] = "bool" +defs["structs"]["ImGuiContext"][116]["name"] = "NavWindow" +defs["structs"]["ImGuiContext"][116]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][117] = {} -defs["structs"]["ImGuiContext"][117]["name"] = "NavInitRequestFromMove" -defs["structs"]["ImGuiContext"][117]["type"] = "bool" +defs["structs"]["ImGuiContext"][117]["name"] = "NavId" +defs["structs"]["ImGuiContext"][117]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][118] = {} -defs["structs"]["ImGuiContext"][118]["name"] = "NavInitResultId" +defs["structs"]["ImGuiContext"][118]["name"] = "NavFocusScopeId" defs["structs"]["ImGuiContext"][118]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][119] = {} -defs["structs"]["ImGuiContext"][119]["name"] = "NavInitResultRectRel" -defs["structs"]["ImGuiContext"][119]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][119]["name"] = "NavLayer" +defs["structs"]["ImGuiContext"][119]["type"] = "ImGuiNavLayer" defs["structs"]["ImGuiContext"][120] = {} -defs["structs"]["ImGuiContext"][120]["name"] = "NavMoveSubmitted" -defs["structs"]["ImGuiContext"][120]["type"] = "bool" +defs["structs"]["ImGuiContext"][120]["name"] = "NavActivateId" +defs["structs"]["ImGuiContext"][120]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][121] = {} -defs["structs"]["ImGuiContext"][121]["name"] = "NavMoveScoringItems" -defs["structs"]["ImGuiContext"][121]["type"] = "bool" +defs["structs"]["ImGuiContext"][121]["name"] = "NavActivateDownId" +defs["structs"]["ImGuiContext"][121]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][122] = {} -defs["structs"]["ImGuiContext"][122]["name"] = "NavMoveForwardToNextFrame" -defs["structs"]["ImGuiContext"][122]["type"] = "bool" +defs["structs"]["ImGuiContext"][122]["name"] = "NavActivatePressedId" +defs["structs"]["ImGuiContext"][122]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][123] = {} -defs["structs"]["ImGuiContext"][123]["name"] = "NavMoveFlags" -defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiNavMoveFlags" +defs["structs"]["ImGuiContext"][123]["name"] = "NavActivateFlags" +defs["structs"]["ImGuiContext"][123]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][124] = {} -defs["structs"]["ImGuiContext"][124]["name"] = "NavMoveScrollFlags" -defs["structs"]["ImGuiContext"][124]["type"] = "ImGuiScrollFlags" +defs["structs"]["ImGuiContext"][124]["name"] = "NavFocusRoute" +defs["structs"]["ImGuiContext"][124]["template_type"] = "ImGuiFocusScopeData" +defs["structs"]["ImGuiContext"][124]["type"] = "ImVector_ImGuiFocusScopeData" defs["structs"]["ImGuiContext"][125] = {} -defs["structs"]["ImGuiContext"][125]["name"] = "NavMoveKeyMods" -defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][125]["name"] = "NavHighlightActivatedId" +defs["structs"]["ImGuiContext"][125]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][126] = {} -defs["structs"]["ImGuiContext"][126]["name"] = "NavMoveDir" -defs["structs"]["ImGuiContext"][126]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][126]["name"] = "NavHighlightActivatedTimer" +defs["structs"]["ImGuiContext"][126]["type"] = "float" defs["structs"]["ImGuiContext"][127] = {} -defs["structs"]["ImGuiContext"][127]["name"] = "NavMoveDirForDebug" -defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][127]["name"] = "NavNextActivateId" +defs["structs"]["ImGuiContext"][127]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][128] = {} -defs["structs"]["ImGuiContext"][128]["name"] = "NavMoveClipDir" -defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiDir" +defs["structs"]["ImGuiContext"][128]["name"] = "NavNextActivateFlags" +defs["structs"]["ImGuiContext"][128]["type"] = "ImGuiActivateFlags" defs["structs"]["ImGuiContext"][129] = {} -defs["structs"]["ImGuiContext"][129]["name"] = "NavScoringRect" -defs["structs"]["ImGuiContext"][129]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][129]["name"] = "NavInputSource" +defs["structs"]["ImGuiContext"][129]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiContext"][130] = {} -defs["structs"]["ImGuiContext"][130]["name"] = "NavScoringNoClipRect" -defs["structs"]["ImGuiContext"][130]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][130]["name"] = "NavLastValidSelectionUserData" +defs["structs"]["ImGuiContext"][130]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiContext"][131] = {} -defs["structs"]["ImGuiContext"][131]["name"] = "NavScoringDebugCount" -defs["structs"]["ImGuiContext"][131]["type"] = "int" +defs["structs"]["ImGuiContext"][131]["name"] = "NavIdIsAlive" +defs["structs"]["ImGuiContext"][131]["type"] = "bool" defs["structs"]["ImGuiContext"][132] = {} -defs["structs"]["ImGuiContext"][132]["name"] = "NavTabbingDir" -defs["structs"]["ImGuiContext"][132]["type"] = "int" +defs["structs"]["ImGuiContext"][132]["name"] = "NavMousePosDirty" +defs["structs"]["ImGuiContext"][132]["type"] = "bool" defs["structs"]["ImGuiContext"][133] = {} -defs["structs"]["ImGuiContext"][133]["name"] = "NavTabbingCounter" -defs["structs"]["ImGuiContext"][133]["type"] = "int" +defs["structs"]["ImGuiContext"][133]["name"] = "NavDisableHighlight" +defs["structs"]["ImGuiContext"][133]["type"] = "bool" defs["structs"]["ImGuiContext"][134] = {} -defs["structs"]["ImGuiContext"][134]["name"] = "NavMoveResultLocal" -defs["structs"]["ImGuiContext"][134]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][134]["name"] = "NavDisableMouseHover" +defs["structs"]["ImGuiContext"][134]["type"] = "bool" defs["structs"]["ImGuiContext"][135] = {} -defs["structs"]["ImGuiContext"][135]["name"] = "NavMoveResultLocalVisible" -defs["structs"]["ImGuiContext"][135]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][135]["name"] = "NavAnyRequest" +defs["structs"]["ImGuiContext"][135]["type"] = "bool" defs["structs"]["ImGuiContext"][136] = {} -defs["structs"]["ImGuiContext"][136]["name"] = "NavMoveResultOther" -defs["structs"]["ImGuiContext"][136]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][136]["name"] = "NavInitRequest" +defs["structs"]["ImGuiContext"][136]["type"] = "bool" defs["structs"]["ImGuiContext"][137] = {} -defs["structs"]["ImGuiContext"][137]["name"] = "NavTabbingResultFirst" -defs["structs"]["ImGuiContext"][137]["type"] = "ImGuiNavItemData" +defs["structs"]["ImGuiContext"][137]["name"] = "NavInitRequestFromMove" +defs["structs"]["ImGuiContext"][137]["type"] = "bool" defs["structs"]["ImGuiContext"][138] = {} -defs["structs"]["ImGuiContext"][138]["name"] = "ConfigNavWindowingKeyNext" -defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][138]["name"] = "NavInitResult" +defs["structs"]["ImGuiContext"][138]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][139] = {} -defs["structs"]["ImGuiContext"][139]["name"] = "ConfigNavWindowingKeyPrev" -defs["structs"]["ImGuiContext"][139]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][139]["name"] = "NavMoveSubmitted" +defs["structs"]["ImGuiContext"][139]["type"] = "bool" defs["structs"]["ImGuiContext"][140] = {} -defs["structs"]["ImGuiContext"][140]["name"] = "NavWindowingTarget" -defs["structs"]["ImGuiContext"][140]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][140]["name"] = "NavMoveScoringItems" +defs["structs"]["ImGuiContext"][140]["type"] = "bool" defs["structs"]["ImGuiContext"][141] = {} -defs["structs"]["ImGuiContext"][141]["name"] = "NavWindowingTargetAnim" -defs["structs"]["ImGuiContext"][141]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][141]["name"] = "NavMoveForwardToNextFrame" +defs["structs"]["ImGuiContext"][141]["type"] = "bool" defs["structs"]["ImGuiContext"][142] = {} -defs["structs"]["ImGuiContext"][142]["name"] = "NavWindowingListWindow" -defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiContext"][142]["name"] = "NavMoveFlags" +defs["structs"]["ImGuiContext"][142]["type"] = "ImGuiNavMoveFlags" defs["structs"]["ImGuiContext"][143] = {} -defs["structs"]["ImGuiContext"][143]["name"] = "NavWindowingTimer" -defs["structs"]["ImGuiContext"][143]["type"] = "float" +defs["structs"]["ImGuiContext"][143]["name"] = "NavMoveScrollFlags" +defs["structs"]["ImGuiContext"][143]["type"] = "ImGuiScrollFlags" defs["structs"]["ImGuiContext"][144] = {} -defs["structs"]["ImGuiContext"][144]["name"] = "NavWindowingHighlightAlpha" -defs["structs"]["ImGuiContext"][144]["type"] = "float" +defs["structs"]["ImGuiContext"][144]["name"] = "NavMoveKeyMods" +defs["structs"]["ImGuiContext"][144]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][145] = {} -defs["structs"]["ImGuiContext"][145]["name"] = "NavWindowingToggleLayer" -defs["structs"]["ImGuiContext"][145]["type"] = "bool" +defs["structs"]["ImGuiContext"][145]["name"] = "NavMoveDir" +defs["structs"]["ImGuiContext"][145]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][146] = {} -defs["structs"]["ImGuiContext"][146]["name"] = "NavWindowingAccumDeltaPos" -defs["structs"]["ImGuiContext"][146]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][146]["name"] = "NavMoveDirForDebug" +defs["structs"]["ImGuiContext"][146]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][147] = {} -defs["structs"]["ImGuiContext"][147]["name"] = "NavWindowingAccumDeltaSize" -defs["structs"]["ImGuiContext"][147]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][147]["name"] = "NavMoveClipDir" +defs["structs"]["ImGuiContext"][147]["type"] = "ImGuiDir" defs["structs"]["ImGuiContext"][148] = {} -defs["structs"]["ImGuiContext"][148]["name"] = "DimBgRatio" -defs["structs"]["ImGuiContext"][148]["type"] = "float" +defs["structs"]["ImGuiContext"][148]["name"] = "NavScoringRect" +defs["structs"]["ImGuiContext"][148]["type"] = "ImRect" defs["structs"]["ImGuiContext"][149] = {} -defs["structs"]["ImGuiContext"][149]["name"] = "MouseCursor" -defs["structs"]["ImGuiContext"][149]["type"] = "ImGuiMouseCursor" +defs["structs"]["ImGuiContext"][149]["name"] = "NavScoringNoClipRect" +defs["structs"]["ImGuiContext"][149]["type"] = "ImRect" defs["structs"]["ImGuiContext"][150] = {} -defs["structs"]["ImGuiContext"][150]["name"] = "DragDropActive" -defs["structs"]["ImGuiContext"][150]["type"] = "bool" +defs["structs"]["ImGuiContext"][150]["name"] = "NavScoringDebugCount" +defs["structs"]["ImGuiContext"][150]["type"] = "int" defs["structs"]["ImGuiContext"][151] = {} -defs["structs"]["ImGuiContext"][151]["name"] = "DragDropWithinSource" -defs["structs"]["ImGuiContext"][151]["type"] = "bool" +defs["structs"]["ImGuiContext"][151]["name"] = "NavTabbingDir" +defs["structs"]["ImGuiContext"][151]["type"] = "int" defs["structs"]["ImGuiContext"][152] = {} -defs["structs"]["ImGuiContext"][152]["name"] = "DragDropWithinTarget" -defs["structs"]["ImGuiContext"][152]["type"] = "bool" +defs["structs"]["ImGuiContext"][152]["name"] = "NavTabbingCounter" +defs["structs"]["ImGuiContext"][152]["type"] = "int" defs["structs"]["ImGuiContext"][153] = {} -defs["structs"]["ImGuiContext"][153]["name"] = "DragDropSourceFlags" -defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][153]["name"] = "NavMoveResultLocal" +defs["structs"]["ImGuiContext"][153]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][154] = {} -defs["structs"]["ImGuiContext"][154]["name"] = "DragDropSourceFrameCount" -defs["structs"]["ImGuiContext"][154]["type"] = "int" +defs["structs"]["ImGuiContext"][154]["name"] = "NavMoveResultLocalVisible" +defs["structs"]["ImGuiContext"][154]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][155] = {} -defs["structs"]["ImGuiContext"][155]["name"] = "DragDropMouseButton" -defs["structs"]["ImGuiContext"][155]["type"] = "int" +defs["structs"]["ImGuiContext"][155]["name"] = "NavMoveResultOther" +defs["structs"]["ImGuiContext"][155]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][156] = {} -defs["structs"]["ImGuiContext"][156]["name"] = "DragDropPayload" -defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiPayload" +defs["structs"]["ImGuiContext"][156]["name"] = "NavTabbingResultFirst" +defs["structs"]["ImGuiContext"][156]["type"] = "ImGuiNavItemData" defs["structs"]["ImGuiContext"][157] = {} -defs["structs"]["ImGuiContext"][157]["name"] = "DragDropTargetRect" -defs["structs"]["ImGuiContext"][157]["type"] = "ImRect" +defs["structs"]["ImGuiContext"][157]["name"] = "NavJustMovedFromFocusScopeId" +defs["structs"]["ImGuiContext"][157]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][158] = {} -defs["structs"]["ImGuiContext"][158]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][158]["name"] = "NavJustMovedToId" defs["structs"]["ImGuiContext"][158]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][159] = {} -defs["structs"]["ImGuiContext"][159]["name"] = "DragDropAcceptFlags" -defs["structs"]["ImGuiContext"][159]["type"] = "ImGuiDragDropFlags" +defs["structs"]["ImGuiContext"][159]["name"] = "NavJustMovedToFocusScopeId" +defs["structs"]["ImGuiContext"][159]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][160] = {} -defs["structs"]["ImGuiContext"][160]["name"] = "DragDropAcceptIdCurrRectSurface" -defs["structs"]["ImGuiContext"][160]["type"] = "float" +defs["structs"]["ImGuiContext"][160]["name"] = "NavJustMovedToKeyMods" +defs["structs"]["ImGuiContext"][160]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][161] = {} -defs["structs"]["ImGuiContext"][161]["name"] = "DragDropAcceptIdCurr" -defs["structs"]["ImGuiContext"][161]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][161]["name"] = "NavJustMovedToIsTabbing" +defs["structs"]["ImGuiContext"][161]["type"] = "bool" defs["structs"]["ImGuiContext"][162] = {} -defs["structs"]["ImGuiContext"][162]["name"] = "DragDropAcceptIdPrev" -defs["structs"]["ImGuiContext"][162]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][162]["name"] = "NavJustMovedToHasSelectionData" +defs["structs"]["ImGuiContext"][162]["type"] = "bool" defs["structs"]["ImGuiContext"][163] = {} -defs["structs"]["ImGuiContext"][163]["name"] = "DragDropAcceptFrameCount" -defs["structs"]["ImGuiContext"][163]["type"] = "int" +defs["structs"]["ImGuiContext"][163]["name"] = "ConfigNavWindowingKeyNext" +defs["structs"]["ImGuiContext"][163]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][164] = {} -defs["structs"]["ImGuiContext"][164]["name"] = "DragDropHoldJustPressedId" -defs["structs"]["ImGuiContext"][164]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][164]["name"] = "ConfigNavWindowingKeyPrev" +defs["structs"]["ImGuiContext"][164]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiContext"][165] = {} -defs["structs"]["ImGuiContext"][165]["name"] = "DragDropPayloadBufHeap" -defs["structs"]["ImGuiContext"][165]["template_type"] = "unsigned char" -defs["structs"]["ImGuiContext"][165]["type"] = "ImVector_unsigned_char" +defs["structs"]["ImGuiContext"][165]["name"] = "NavWindowingTarget" +defs["structs"]["ImGuiContext"][165]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][166] = {} -defs["structs"]["ImGuiContext"][166]["name"] = "DragDropPayloadBufLocal[16]" -defs["structs"]["ImGuiContext"][166]["size"] = 16 -defs["structs"]["ImGuiContext"][166]["type"] = "unsigned char" +defs["structs"]["ImGuiContext"][166]["name"] = "NavWindowingTargetAnim" +defs["structs"]["ImGuiContext"][166]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][167] = {} -defs["structs"]["ImGuiContext"][167]["name"] = "ClipperTempDataStacked" -defs["structs"]["ImGuiContext"][167]["type"] = "int" +defs["structs"]["ImGuiContext"][167]["name"] = "NavWindowingListWindow" +defs["structs"]["ImGuiContext"][167]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiContext"][168] = {} -defs["structs"]["ImGuiContext"][168]["name"] = "ClipperTempData" -defs["structs"]["ImGuiContext"][168]["template_type"] = "ImGuiListClipperData" -defs["structs"]["ImGuiContext"][168]["type"] = "ImVector_ImGuiListClipperData" +defs["structs"]["ImGuiContext"][168]["name"] = "NavWindowingTimer" +defs["structs"]["ImGuiContext"][168]["type"] = "float" defs["structs"]["ImGuiContext"][169] = {} -defs["structs"]["ImGuiContext"][169]["name"] = "CurrentTable" -defs["structs"]["ImGuiContext"][169]["type"] = "ImGuiTable*" +defs["structs"]["ImGuiContext"][169]["name"] = "NavWindowingHighlightAlpha" +defs["structs"]["ImGuiContext"][169]["type"] = "float" defs["structs"]["ImGuiContext"][170] = {} -defs["structs"]["ImGuiContext"][170]["name"] = "TablesTempDataStacked" -defs["structs"]["ImGuiContext"][170]["type"] = "int" +defs["structs"]["ImGuiContext"][170]["name"] = "NavWindowingToggleLayer" +defs["structs"]["ImGuiContext"][170]["type"] = "bool" defs["structs"]["ImGuiContext"][171] = {} -defs["structs"]["ImGuiContext"][171]["name"] = "TablesTempData" -defs["structs"]["ImGuiContext"][171]["template_type"] = "ImGuiTableTempData" -defs["structs"]["ImGuiContext"][171]["type"] = "ImVector_ImGuiTableTempData" +defs["structs"]["ImGuiContext"][171]["name"] = "NavWindowingToggleKey" +defs["structs"]["ImGuiContext"][171]["type"] = "ImGuiKey" defs["structs"]["ImGuiContext"][172] = {} -defs["structs"]["ImGuiContext"][172]["name"] = "Tables" -defs["structs"]["ImGuiContext"][172]["template_type"] = "ImGuiTable" -defs["structs"]["ImGuiContext"][172]["type"] = "ImPool_ImGuiTable" +defs["structs"]["ImGuiContext"][172]["name"] = "NavWindowingAccumDeltaPos" +defs["structs"]["ImGuiContext"][172]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][173] = {} -defs["structs"]["ImGuiContext"][173]["name"] = "TablesLastTimeActive" -defs["structs"]["ImGuiContext"][173]["template_type"] = "float" -defs["structs"]["ImGuiContext"][173]["type"] = "ImVector_float" +defs["structs"]["ImGuiContext"][173]["name"] = "NavWindowingAccumDeltaSize" +defs["structs"]["ImGuiContext"][173]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][174] = {} -defs["structs"]["ImGuiContext"][174]["name"] = "DrawChannelsTempMergeBuffer" -defs["structs"]["ImGuiContext"][174]["template_type"] = "ImDrawChannel" -defs["structs"]["ImGuiContext"][174]["type"] = "ImVector_ImDrawChannel" +defs["structs"]["ImGuiContext"][174]["name"] = "DimBgRatio" +defs["structs"]["ImGuiContext"][174]["type"] = "float" defs["structs"]["ImGuiContext"][175] = {} -defs["structs"]["ImGuiContext"][175]["name"] = "CurrentTabBar" -defs["structs"]["ImGuiContext"][175]["type"] = "ImGuiTabBar*" +defs["structs"]["ImGuiContext"][175]["name"] = "DragDropActive" +defs["structs"]["ImGuiContext"][175]["type"] = "bool" defs["structs"]["ImGuiContext"][176] = {} -defs["structs"]["ImGuiContext"][176]["name"] = "TabBars" -defs["structs"]["ImGuiContext"][176]["template_type"] = "ImGuiTabBar" -defs["structs"]["ImGuiContext"][176]["type"] = "ImPool_ImGuiTabBar" +defs["structs"]["ImGuiContext"][176]["name"] = "DragDropWithinSource" +defs["structs"]["ImGuiContext"][176]["type"] = "bool" defs["structs"]["ImGuiContext"][177] = {} -defs["structs"]["ImGuiContext"][177]["name"] = "CurrentTabBarStack" -defs["structs"]["ImGuiContext"][177]["template_type"] = "ImGuiPtrOrIndex" -defs["structs"]["ImGuiContext"][177]["type"] = "ImVector_ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][177]["name"] = "DragDropWithinTarget" +defs["structs"]["ImGuiContext"][177]["type"] = "bool" defs["structs"]["ImGuiContext"][178] = {} -defs["structs"]["ImGuiContext"][178]["name"] = "ShrinkWidthBuffer" -defs["structs"]["ImGuiContext"][178]["template_type"] = "ImGuiShrinkWidthItem" -defs["structs"]["ImGuiContext"][178]["type"] = "ImVector_ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][178]["name"] = "DragDropSourceFlags" +defs["structs"]["ImGuiContext"][178]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][179] = {} -defs["structs"]["ImGuiContext"][179]["name"] = "HoverDelayId" -defs["structs"]["ImGuiContext"][179]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][179]["name"] = "DragDropSourceFrameCount" +defs["structs"]["ImGuiContext"][179]["type"] = "int" defs["structs"]["ImGuiContext"][180] = {} -defs["structs"]["ImGuiContext"][180]["name"] = "HoverDelayIdPreviousFrame" -defs["structs"]["ImGuiContext"][180]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][180]["name"] = "DragDropMouseButton" +defs["structs"]["ImGuiContext"][180]["type"] = "int" defs["structs"]["ImGuiContext"][181] = {} -defs["structs"]["ImGuiContext"][181]["name"] = "HoverDelayTimer" -defs["structs"]["ImGuiContext"][181]["type"] = "float" +defs["structs"]["ImGuiContext"][181]["name"] = "DragDropPayload" +defs["structs"]["ImGuiContext"][181]["type"] = "ImGuiPayload" defs["structs"]["ImGuiContext"][182] = {} -defs["structs"]["ImGuiContext"][182]["name"] = "HoverDelayClearTimer" -defs["structs"]["ImGuiContext"][182]["type"] = "float" +defs["structs"]["ImGuiContext"][182]["name"] = "DragDropTargetRect" +defs["structs"]["ImGuiContext"][182]["type"] = "ImRect" defs["structs"]["ImGuiContext"][183] = {} -defs["structs"]["ImGuiContext"][183]["name"] = "MouseLastValidPos" -defs["structs"]["ImGuiContext"][183]["type"] = "ImVec2" +defs["structs"]["ImGuiContext"][183]["name"] = "DragDropTargetClipRect" +defs["structs"]["ImGuiContext"][183]["type"] = "ImRect" defs["structs"]["ImGuiContext"][184] = {} -defs["structs"]["ImGuiContext"][184]["name"] = "InputTextState" -defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiInputTextState" +defs["structs"]["ImGuiContext"][184]["name"] = "DragDropTargetId" +defs["structs"]["ImGuiContext"][184]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][185] = {} -defs["structs"]["ImGuiContext"][185]["name"] = "InputTextPasswordFont" -defs["structs"]["ImGuiContext"][185]["type"] = "ImFont" +defs["structs"]["ImGuiContext"][185]["name"] = "DragDropAcceptFlags" +defs["structs"]["ImGuiContext"][185]["type"] = "ImGuiDragDropFlags" defs["structs"]["ImGuiContext"][186] = {} -defs["structs"]["ImGuiContext"][186]["name"] = "TempInputId" -defs["structs"]["ImGuiContext"][186]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][186]["name"] = "DragDropAcceptIdCurrRectSurface" +defs["structs"]["ImGuiContext"][186]["type"] = "float" defs["structs"]["ImGuiContext"][187] = {} -defs["structs"]["ImGuiContext"][187]["name"] = "ColorEditOptions" -defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiColorEditFlags" +defs["structs"]["ImGuiContext"][187]["name"] = "DragDropAcceptIdCurr" +defs["structs"]["ImGuiContext"][187]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][188] = {} -defs["structs"]["ImGuiContext"][188]["name"] = "ColorEditLastHue" -defs["structs"]["ImGuiContext"][188]["type"] = "float" +defs["structs"]["ImGuiContext"][188]["name"] = "DragDropAcceptIdPrev" +defs["structs"]["ImGuiContext"][188]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][189] = {} -defs["structs"]["ImGuiContext"][189]["name"] = "ColorEditLastSat" -defs["structs"]["ImGuiContext"][189]["type"] = "float" +defs["structs"]["ImGuiContext"][189]["name"] = "DragDropAcceptFrameCount" +defs["structs"]["ImGuiContext"][189]["type"] = "int" defs["structs"]["ImGuiContext"][190] = {} -defs["structs"]["ImGuiContext"][190]["name"] = "ColorEditLastColor" -defs["structs"]["ImGuiContext"][190]["type"] = "ImU32" +defs["structs"]["ImGuiContext"][190]["name"] = "DragDropHoldJustPressedId" +defs["structs"]["ImGuiContext"][190]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][191] = {} -defs["structs"]["ImGuiContext"][191]["name"] = "ColorPickerRef" -defs["structs"]["ImGuiContext"][191]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][191]["name"] = "DragDropPayloadBufHeap" +defs["structs"]["ImGuiContext"][191]["template_type"] = "unsigned char" +defs["structs"]["ImGuiContext"][191]["type"] = "ImVector_unsigned_char" defs["structs"]["ImGuiContext"][192] = {} -defs["structs"]["ImGuiContext"][192]["name"] = "ComboPreviewData" -defs["structs"]["ImGuiContext"][192]["type"] = "ImGuiComboPreviewData" +defs["structs"]["ImGuiContext"][192]["name"] = "DragDropPayloadBufLocal[16]" +defs["structs"]["ImGuiContext"][192]["size"] = 16 +defs["structs"]["ImGuiContext"][192]["type"] = "unsigned char" defs["structs"]["ImGuiContext"][193] = {} -defs["structs"]["ImGuiContext"][193]["name"] = "SliderGrabClickOffset" -defs["structs"]["ImGuiContext"][193]["type"] = "float" +defs["structs"]["ImGuiContext"][193]["name"] = "ClipperTempDataStacked" +defs["structs"]["ImGuiContext"][193]["type"] = "int" defs["structs"]["ImGuiContext"][194] = {} -defs["structs"]["ImGuiContext"][194]["name"] = "SliderCurrentAccum" -defs["structs"]["ImGuiContext"][194]["type"] = "float" +defs["structs"]["ImGuiContext"][194]["name"] = "ClipperTempData" +defs["structs"]["ImGuiContext"][194]["template_type"] = "ImGuiListClipperData" +defs["structs"]["ImGuiContext"][194]["type"] = "ImVector_ImGuiListClipperData" defs["structs"]["ImGuiContext"][195] = {} -defs["structs"]["ImGuiContext"][195]["name"] = "SliderCurrentAccumDirty" -defs["structs"]["ImGuiContext"][195]["type"] = "bool" +defs["structs"]["ImGuiContext"][195]["name"] = "CurrentTable" +defs["structs"]["ImGuiContext"][195]["type"] = "ImGuiTable*" defs["structs"]["ImGuiContext"][196] = {} -defs["structs"]["ImGuiContext"][196]["name"] = "DragCurrentAccumDirty" -defs["structs"]["ImGuiContext"][196]["type"] = "bool" +defs["structs"]["ImGuiContext"][196]["name"] = "DebugBreakInTable" +defs["structs"]["ImGuiContext"][196]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][197] = {} -defs["structs"]["ImGuiContext"][197]["name"] = "DragCurrentAccum" -defs["structs"]["ImGuiContext"][197]["type"] = "float" +defs["structs"]["ImGuiContext"][197]["name"] = "TablesTempDataStacked" +defs["structs"]["ImGuiContext"][197]["type"] = "int" defs["structs"]["ImGuiContext"][198] = {} -defs["structs"]["ImGuiContext"][198]["name"] = "DragSpeedDefaultRatio" -defs["structs"]["ImGuiContext"][198]["type"] = "float" +defs["structs"]["ImGuiContext"][198]["name"] = "TablesTempData" +defs["structs"]["ImGuiContext"][198]["template_type"] = "ImGuiTableTempData" +defs["structs"]["ImGuiContext"][198]["type"] = "ImVector_ImGuiTableTempData" defs["structs"]["ImGuiContext"][199] = {} -defs["structs"]["ImGuiContext"][199]["name"] = "ScrollbarClickDeltaToGrabCenter" -defs["structs"]["ImGuiContext"][199]["type"] = "float" +defs["structs"]["ImGuiContext"][199]["name"] = "Tables" +defs["structs"]["ImGuiContext"][199]["template_type"] = "ImGuiTable" +defs["structs"]["ImGuiContext"][199]["type"] = "ImPool_ImGuiTable" defs["structs"]["ImGuiContext"][200] = {} -defs["structs"]["ImGuiContext"][200]["name"] = "DisabledAlphaBackup" -defs["structs"]["ImGuiContext"][200]["type"] = "float" +defs["structs"]["ImGuiContext"][200]["name"] = "TablesLastTimeActive" +defs["structs"]["ImGuiContext"][200]["template_type"] = "float" +defs["structs"]["ImGuiContext"][200]["type"] = "ImVector_float" defs["structs"]["ImGuiContext"][201] = {} -defs["structs"]["ImGuiContext"][201]["name"] = "DisabledStackSize" -defs["structs"]["ImGuiContext"][201]["type"] = "short" +defs["structs"]["ImGuiContext"][201]["name"] = "DrawChannelsTempMergeBuffer" +defs["structs"]["ImGuiContext"][201]["template_type"] = "ImDrawChannel" +defs["structs"]["ImGuiContext"][201]["type"] = "ImVector_ImDrawChannel" defs["structs"]["ImGuiContext"][202] = {} -defs["structs"]["ImGuiContext"][202]["name"] = "TooltipOverrideCount" -defs["structs"]["ImGuiContext"][202]["type"] = "short" +defs["structs"]["ImGuiContext"][202]["name"] = "CurrentTabBar" +defs["structs"]["ImGuiContext"][202]["type"] = "ImGuiTabBar*" defs["structs"]["ImGuiContext"][203] = {} -defs["structs"]["ImGuiContext"][203]["name"] = "ClipboardHandlerData" -defs["structs"]["ImGuiContext"][203]["template_type"] = "char" -defs["structs"]["ImGuiContext"][203]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][203]["name"] = "TabBars" +defs["structs"]["ImGuiContext"][203]["template_type"] = "ImGuiTabBar" +defs["structs"]["ImGuiContext"][203]["type"] = "ImPool_ImGuiTabBar" defs["structs"]["ImGuiContext"][204] = {} -defs["structs"]["ImGuiContext"][204]["name"] = "MenusIdSubmittedThisFrame" -defs["structs"]["ImGuiContext"][204]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiContext"][204]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][204]["name"] = "CurrentTabBarStack" +defs["structs"]["ImGuiContext"][204]["template_type"] = "ImGuiPtrOrIndex" +defs["structs"]["ImGuiContext"][204]["type"] = "ImVector_ImGuiPtrOrIndex" defs["structs"]["ImGuiContext"][205] = {} -defs["structs"]["ImGuiContext"][205]["name"] = "PlatformImeData" -defs["structs"]["ImGuiContext"][205]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][205]["name"] = "ShrinkWidthBuffer" +defs["structs"]["ImGuiContext"][205]["template_type"] = "ImGuiShrinkWidthItem" +defs["structs"]["ImGuiContext"][205]["type"] = "ImVector_ImGuiShrinkWidthItem" defs["structs"]["ImGuiContext"][206] = {} -defs["structs"]["ImGuiContext"][206]["name"] = "PlatformImeDataPrev" -defs["structs"]["ImGuiContext"][206]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][206]["name"] = "BoxSelectState" +defs["structs"]["ImGuiContext"][206]["type"] = "ImGuiBoxSelectState" defs["structs"]["ImGuiContext"][207] = {} -defs["structs"]["ImGuiContext"][207]["name"] = "PlatformImeViewport" -defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][207]["name"] = "CurrentMultiSelect" +defs["structs"]["ImGuiContext"][207]["type"] = "ImGuiMultiSelectTempData*" defs["structs"]["ImGuiContext"][208] = {} -defs["structs"]["ImGuiContext"][208]["name"] = "PlatformLocaleDecimalPoint" -defs["structs"]["ImGuiContext"][208]["type"] = "char" +defs["structs"]["ImGuiContext"][208]["name"] = "MultiSelectTempDataStacked" +defs["structs"]["ImGuiContext"][208]["type"] = "int" defs["structs"]["ImGuiContext"][209] = {} -defs["structs"]["ImGuiContext"][209]["name"] = "DockContext" -defs["structs"]["ImGuiContext"][209]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][209]["name"] = "MultiSelectTempData" +defs["structs"]["ImGuiContext"][209]["template_type"] = "ImGuiMultiSelectTempData" +defs["structs"]["ImGuiContext"][209]["type"] = "ImVector_ImGuiMultiSelectTempData" defs["structs"]["ImGuiContext"][210] = {} -defs["structs"]["ImGuiContext"][210]["name"] = "SettingsLoaded" -defs["structs"]["ImGuiContext"][210]["type"] = "bool" +defs["structs"]["ImGuiContext"][210]["name"] = "MultiSelectStorage" +defs["structs"]["ImGuiContext"][210]["template_type"] = "ImGuiMultiSelectState" +defs["structs"]["ImGuiContext"][210]["type"] = "ImPool_ImGuiMultiSelectState" defs["structs"]["ImGuiContext"][211] = {} -defs["structs"]["ImGuiContext"][211]["name"] = "SettingsDirtyTimer" -defs["structs"]["ImGuiContext"][211]["type"] = "float" +defs["structs"]["ImGuiContext"][211]["name"] = "HoverItemDelayId" +defs["structs"]["ImGuiContext"][211]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][212] = {} -defs["structs"]["ImGuiContext"][212]["name"] = "SettingsIniData" -defs["structs"]["ImGuiContext"][212]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][212]["name"] = "HoverItemDelayIdPreviousFrame" +defs["structs"]["ImGuiContext"][212]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][213] = {} -defs["structs"]["ImGuiContext"][213]["name"] = "SettingsHandlers" -defs["structs"]["ImGuiContext"][213]["template_type"] = "ImGuiSettingsHandler" -defs["structs"]["ImGuiContext"][213]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][213]["name"] = "HoverItemDelayTimer" +defs["structs"]["ImGuiContext"][213]["type"] = "float" defs["structs"]["ImGuiContext"][214] = {} -defs["structs"]["ImGuiContext"][214]["name"] = "SettingsWindows" -defs["structs"]["ImGuiContext"][214]["template_type"] = "ImGuiWindowSettings" -defs["structs"]["ImGuiContext"][214]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][214]["name"] = "HoverItemDelayClearTimer" +defs["structs"]["ImGuiContext"][214]["type"] = "float" defs["structs"]["ImGuiContext"][215] = {} -defs["structs"]["ImGuiContext"][215]["name"] = "SettingsTables" -defs["structs"]["ImGuiContext"][215]["template_type"] = "ImGuiTableSettings" -defs["structs"]["ImGuiContext"][215]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][215]["name"] = "HoverItemUnlockedStationaryId" +defs["structs"]["ImGuiContext"][215]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][216] = {} -defs["structs"]["ImGuiContext"][216]["name"] = "Hooks" -defs["structs"]["ImGuiContext"][216]["template_type"] = "ImGuiContextHook" -defs["structs"]["ImGuiContext"][216]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][216]["name"] = "HoverWindowUnlockedStationaryId" +defs["structs"]["ImGuiContext"][216]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][217] = {} -defs["structs"]["ImGuiContext"][217]["name"] = "HookIdNext" -defs["structs"]["ImGuiContext"][217]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][217]["name"] = "MouseCursor" +defs["structs"]["ImGuiContext"][217]["type"] = "ImGuiMouseCursor" defs["structs"]["ImGuiContext"][218] = {} -defs["structs"]["ImGuiContext"][218]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" -defs["structs"]["ImGuiContext"][218]["size"] = 8 -defs["structs"]["ImGuiContext"][218]["type"] = "const char*" +defs["structs"]["ImGuiContext"][218]["name"] = "MouseStationaryTimer" +defs["structs"]["ImGuiContext"][218]["type"] = "float" defs["structs"]["ImGuiContext"][219] = {} -defs["structs"]["ImGuiContext"][219]["name"] = "LogEnabled" -defs["structs"]["ImGuiContext"][219]["type"] = "bool" +defs["structs"]["ImGuiContext"][219]["name"] = "MouseLastValidPos" +defs["structs"]["ImGuiContext"][219]["type"] = "ImVec2" defs["structs"]["ImGuiContext"][220] = {} -defs["structs"]["ImGuiContext"][220]["name"] = "LogType" -defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][220]["name"] = "InputTextState" +defs["structs"]["ImGuiContext"][220]["type"] = "ImGuiInputTextState" defs["structs"]["ImGuiContext"][221] = {} -defs["structs"]["ImGuiContext"][221]["name"] = "LogFile" -defs["structs"]["ImGuiContext"][221]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][221]["name"] = "InputTextDeactivatedState" +defs["structs"]["ImGuiContext"][221]["type"] = "ImGuiInputTextDeactivatedState" defs["structs"]["ImGuiContext"][222] = {} -defs["structs"]["ImGuiContext"][222]["name"] = "LogBuffer" -defs["structs"]["ImGuiContext"][222]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][222]["name"] = "InputTextPasswordFont" +defs["structs"]["ImGuiContext"][222]["type"] = "ImFont" defs["structs"]["ImGuiContext"][223] = {} -defs["structs"]["ImGuiContext"][223]["name"] = "LogNextPrefix" -defs["structs"]["ImGuiContext"][223]["type"] = "const char*" +defs["structs"]["ImGuiContext"][223]["name"] = "TempInputId" +defs["structs"]["ImGuiContext"][223]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][224] = {} -defs["structs"]["ImGuiContext"][224]["name"] = "LogNextSuffix" -defs["structs"]["ImGuiContext"][224]["type"] = "const char*" +defs["structs"]["ImGuiContext"][224]["name"] = "DataTypeZeroValue" +defs["structs"]["ImGuiContext"][224]["type"] = "ImGuiDataTypeStorage" defs["structs"]["ImGuiContext"][225] = {} -defs["structs"]["ImGuiContext"][225]["name"] = "LogLinePosY" -defs["structs"]["ImGuiContext"][225]["type"] = "float" +defs["structs"]["ImGuiContext"][225]["name"] = "BeginMenuDepth" +defs["structs"]["ImGuiContext"][225]["type"] = "int" defs["structs"]["ImGuiContext"][226] = {} -defs["structs"]["ImGuiContext"][226]["name"] = "LogLineFirstItem" -defs["structs"]["ImGuiContext"][226]["type"] = "bool" +defs["structs"]["ImGuiContext"][226]["name"] = "BeginComboDepth" +defs["structs"]["ImGuiContext"][226]["type"] = "int" defs["structs"]["ImGuiContext"][227] = {} -defs["structs"]["ImGuiContext"][227]["name"] = "LogDepthRef" -defs["structs"]["ImGuiContext"][227]["type"] = "int" +defs["structs"]["ImGuiContext"][227]["name"] = "ColorEditOptions" +defs["structs"]["ImGuiContext"][227]["type"] = "ImGuiColorEditFlags" defs["structs"]["ImGuiContext"][228] = {} -defs["structs"]["ImGuiContext"][228]["name"] = "LogDepthToExpand" -defs["structs"]["ImGuiContext"][228]["type"] = "int" +defs["structs"]["ImGuiContext"][228]["name"] = "ColorEditCurrentID" +defs["structs"]["ImGuiContext"][228]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][229] = {} -defs["structs"]["ImGuiContext"][229]["name"] = "LogDepthToExpandDefault" -defs["structs"]["ImGuiContext"][229]["type"] = "int" +defs["structs"]["ImGuiContext"][229]["name"] = "ColorEditSavedID" +defs["structs"]["ImGuiContext"][229]["type"] = "ImGuiID" defs["structs"]["ImGuiContext"][230] = {} -defs["structs"]["ImGuiContext"][230]["name"] = "DebugLogFlags" -defs["structs"]["ImGuiContext"][230]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][230]["name"] = "ColorEditSavedHue" +defs["structs"]["ImGuiContext"][230]["type"] = "float" defs["structs"]["ImGuiContext"][231] = {} -defs["structs"]["ImGuiContext"][231]["name"] = "DebugLogBuf" -defs["structs"]["ImGuiContext"][231]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][231]["name"] = "ColorEditSavedSat" +defs["structs"]["ImGuiContext"][231]["type"] = "float" defs["structs"]["ImGuiContext"][232] = {} -defs["structs"]["ImGuiContext"][232]["name"] = "DebugLogIndex" -defs["structs"]["ImGuiContext"][232]["type"] = "ImGuiTextIndex" +defs["structs"]["ImGuiContext"][232]["name"] = "ColorEditSavedColor" +defs["structs"]["ImGuiContext"][232]["type"] = "ImU32" defs["structs"]["ImGuiContext"][233] = {} -defs["structs"]["ImGuiContext"][233]["name"] = "DebugLocateFrames" -defs["structs"]["ImGuiContext"][233]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][233]["name"] = "ColorPickerRef" +defs["structs"]["ImGuiContext"][233]["type"] = "ImVec4" defs["structs"]["ImGuiContext"][234] = {} -defs["structs"]["ImGuiContext"][234]["name"] = "DebugItemPickerActive" -defs["structs"]["ImGuiContext"][234]["type"] = "bool" +defs["structs"]["ImGuiContext"][234]["name"] = "ComboPreviewData" +defs["structs"]["ImGuiContext"][234]["type"] = "ImGuiComboPreviewData" defs["structs"]["ImGuiContext"][235] = {} -defs["structs"]["ImGuiContext"][235]["name"] = "DebugItemPickerMouseButton" -defs["structs"]["ImGuiContext"][235]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][235]["name"] = "WindowResizeBorderExpectedRect" +defs["structs"]["ImGuiContext"][235]["type"] = "ImRect" defs["structs"]["ImGuiContext"][236] = {} -defs["structs"]["ImGuiContext"][236]["name"] = "DebugItemPickerBreakId" -defs["structs"]["ImGuiContext"][236]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][236]["name"] = "WindowResizeRelativeMode" +defs["structs"]["ImGuiContext"][236]["type"] = "bool" defs["structs"]["ImGuiContext"][237] = {} -defs["structs"]["ImGuiContext"][237]["name"] = "DebugMetricsConfig" -defs["structs"]["ImGuiContext"][237]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][237]["name"] = "ScrollbarSeekMode" +defs["structs"]["ImGuiContext"][237]["type"] = "short" defs["structs"]["ImGuiContext"][238] = {} -defs["structs"]["ImGuiContext"][238]["name"] = "DebugStackTool" -defs["structs"]["ImGuiContext"][238]["type"] = "ImGuiStackTool" +defs["structs"]["ImGuiContext"][238]["name"] = "ScrollbarClickDeltaToGrabCenter" +defs["structs"]["ImGuiContext"][238]["type"] = "float" defs["structs"]["ImGuiContext"][239] = {} -defs["structs"]["ImGuiContext"][239]["name"] = "DebugHoveredDockNode" -defs["structs"]["ImGuiContext"][239]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][239]["name"] = "SliderGrabClickOffset" +defs["structs"]["ImGuiContext"][239]["type"] = "float" defs["structs"]["ImGuiContext"][240] = {} -defs["structs"]["ImGuiContext"][240]["name"] = "FramerateSecPerFrame[60]" -defs["structs"]["ImGuiContext"][240]["size"] = 60 +defs["structs"]["ImGuiContext"][240]["name"] = "SliderCurrentAccum" defs["structs"]["ImGuiContext"][240]["type"] = "float" defs["structs"]["ImGuiContext"][241] = {} -defs["structs"]["ImGuiContext"][241]["name"] = "FramerateSecPerFrameIdx" -defs["structs"]["ImGuiContext"][241]["type"] = "int" +defs["structs"]["ImGuiContext"][241]["name"] = "SliderCurrentAccumDirty" +defs["structs"]["ImGuiContext"][241]["type"] = "bool" defs["structs"]["ImGuiContext"][242] = {} -defs["structs"]["ImGuiContext"][242]["name"] = "FramerateSecPerFrameCount" -defs["structs"]["ImGuiContext"][242]["type"] = "int" +defs["structs"]["ImGuiContext"][242]["name"] = "DragCurrentAccumDirty" +defs["structs"]["ImGuiContext"][242]["type"] = "bool" defs["structs"]["ImGuiContext"][243] = {} -defs["structs"]["ImGuiContext"][243]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][243]["name"] = "DragCurrentAccum" defs["structs"]["ImGuiContext"][243]["type"] = "float" defs["structs"]["ImGuiContext"][244] = {} -defs["structs"]["ImGuiContext"][244]["name"] = "WantCaptureMouseNextFrame" -defs["structs"]["ImGuiContext"][244]["type"] = "int" +defs["structs"]["ImGuiContext"][244]["name"] = "DragSpeedDefaultRatio" +defs["structs"]["ImGuiContext"][244]["type"] = "float" defs["structs"]["ImGuiContext"][245] = {} -defs["structs"]["ImGuiContext"][245]["name"] = "WantCaptureKeyboardNextFrame" -defs["structs"]["ImGuiContext"][245]["type"] = "int" +defs["structs"]["ImGuiContext"][245]["name"] = "DisabledAlphaBackup" +defs["structs"]["ImGuiContext"][245]["type"] = "float" defs["structs"]["ImGuiContext"][246] = {} -defs["structs"]["ImGuiContext"][246]["name"] = "WantTextInputNextFrame" -defs["structs"]["ImGuiContext"][246]["type"] = "int" +defs["structs"]["ImGuiContext"][246]["name"] = "DisabledStackSize" +defs["structs"]["ImGuiContext"][246]["type"] = "short" defs["structs"]["ImGuiContext"][247] = {} -defs["structs"]["ImGuiContext"][247]["name"] = "TempBuffer" -defs["structs"]["ImGuiContext"][247]["template_type"] = "char" -defs["structs"]["ImGuiContext"][247]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][247]["name"] = "LockMarkEdited" +defs["structs"]["ImGuiContext"][247]["type"] = "short" +defs["structs"]["ImGuiContext"][248] = {} +defs["structs"]["ImGuiContext"][248]["name"] = "TooltipOverrideCount" +defs["structs"]["ImGuiContext"][248]["type"] = "short" +defs["structs"]["ImGuiContext"][249] = {} +defs["structs"]["ImGuiContext"][249]["name"] = "ClipboardHandlerData" +defs["structs"]["ImGuiContext"][249]["template_type"] = "char" +defs["structs"]["ImGuiContext"][249]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][250] = {} +defs["structs"]["ImGuiContext"][250]["name"] = "MenusIdSubmittedThisFrame" +defs["structs"]["ImGuiContext"][250]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][250]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiContext"][251] = {} +defs["structs"]["ImGuiContext"][251]["name"] = "TypingSelectState" +defs["structs"]["ImGuiContext"][251]["type"] = "ImGuiTypingSelectState" +defs["structs"]["ImGuiContext"][252] = {} +defs["structs"]["ImGuiContext"][252]["name"] = "PlatformImeData" +defs["structs"]["ImGuiContext"][252]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][253] = {} +defs["structs"]["ImGuiContext"][253]["name"] = "PlatformImeDataPrev" +defs["structs"]["ImGuiContext"][253]["type"] = "ImGuiPlatformImeData" +defs["structs"]["ImGuiContext"][254] = {} +defs["structs"]["ImGuiContext"][254]["name"] = "PlatformImeViewport" +defs["structs"]["ImGuiContext"][254]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][255] = {} +defs["structs"]["ImGuiContext"][255]["name"] = "DockContext" +defs["structs"]["ImGuiContext"][255]["type"] = "ImGuiDockContext" +defs["structs"]["ImGuiContext"][256] = {} +defs["structs"]["ImGuiContext"][256]["name"] = "DockNodeWindowMenuHandler" +defs["structs"]["ImGuiContext"][256]["type"] = "void(*)(ImGuiContext* ctx,ImGuiDockNode* node,ImGuiTabBar* tab_bar)" +defs["structs"]["ImGuiContext"][257] = {} +defs["structs"]["ImGuiContext"][257]["name"] = "SettingsLoaded" +defs["structs"]["ImGuiContext"][257]["type"] = "bool" +defs["structs"]["ImGuiContext"][258] = {} +defs["structs"]["ImGuiContext"][258]["name"] = "SettingsDirtyTimer" +defs["structs"]["ImGuiContext"][258]["type"] = "float" +defs["structs"]["ImGuiContext"][259] = {} +defs["structs"]["ImGuiContext"][259]["name"] = "SettingsIniData" +defs["structs"]["ImGuiContext"][259]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][260] = {} +defs["structs"]["ImGuiContext"][260]["name"] = "SettingsHandlers" +defs["structs"]["ImGuiContext"][260]["template_type"] = "ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][260]["type"] = "ImVector_ImGuiSettingsHandler" +defs["structs"]["ImGuiContext"][261] = {} +defs["structs"]["ImGuiContext"][261]["name"] = "SettingsWindows" +defs["structs"]["ImGuiContext"][261]["template_type"] = "ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][261]["type"] = "ImChunkStream_ImGuiWindowSettings" +defs["structs"]["ImGuiContext"][262] = {} +defs["structs"]["ImGuiContext"][262]["name"] = "SettingsTables" +defs["structs"]["ImGuiContext"][262]["template_type"] = "ImGuiTableSettings" +defs["structs"]["ImGuiContext"][262]["type"] = "ImChunkStream_ImGuiTableSettings" +defs["structs"]["ImGuiContext"][263] = {} +defs["structs"]["ImGuiContext"][263]["name"] = "Hooks" +defs["structs"]["ImGuiContext"][263]["template_type"] = "ImGuiContextHook" +defs["structs"]["ImGuiContext"][263]["type"] = "ImVector_ImGuiContextHook" +defs["structs"]["ImGuiContext"][264] = {} +defs["structs"]["ImGuiContext"][264]["name"] = "HookIdNext" +defs["structs"]["ImGuiContext"][264]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][265] = {} +defs["structs"]["ImGuiContext"][265]["name"] = "LocalizationTable[ImGuiLocKey_COUNT]" +defs["structs"]["ImGuiContext"][265]["size"] = 13 +defs["structs"]["ImGuiContext"][265]["type"] = "const char*" +defs["structs"]["ImGuiContext"][266] = {} +defs["structs"]["ImGuiContext"][266]["name"] = "LogEnabled" +defs["structs"]["ImGuiContext"][266]["type"] = "bool" +defs["structs"]["ImGuiContext"][267] = {} +defs["structs"]["ImGuiContext"][267]["name"] = "LogType" +defs["structs"]["ImGuiContext"][267]["type"] = "ImGuiLogType" +defs["structs"]["ImGuiContext"][268] = {} +defs["structs"]["ImGuiContext"][268]["name"] = "LogFile" +defs["structs"]["ImGuiContext"][268]["type"] = "ImFileHandle" +defs["structs"]["ImGuiContext"][269] = {} +defs["structs"]["ImGuiContext"][269]["name"] = "LogBuffer" +defs["structs"]["ImGuiContext"][269]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][270] = {} +defs["structs"]["ImGuiContext"][270]["name"] = "LogNextPrefix" +defs["structs"]["ImGuiContext"][270]["type"] = "const char*" +defs["structs"]["ImGuiContext"][271] = {} +defs["structs"]["ImGuiContext"][271]["name"] = "LogNextSuffix" +defs["structs"]["ImGuiContext"][271]["type"] = "const char*" +defs["structs"]["ImGuiContext"][272] = {} +defs["structs"]["ImGuiContext"][272]["name"] = "LogLinePosY" +defs["structs"]["ImGuiContext"][272]["type"] = "float" +defs["structs"]["ImGuiContext"][273] = {} +defs["structs"]["ImGuiContext"][273]["name"] = "LogLineFirstItem" +defs["structs"]["ImGuiContext"][273]["type"] = "bool" +defs["structs"]["ImGuiContext"][274] = {} +defs["structs"]["ImGuiContext"][274]["name"] = "LogDepthRef" +defs["structs"]["ImGuiContext"][274]["type"] = "int" +defs["structs"]["ImGuiContext"][275] = {} +defs["structs"]["ImGuiContext"][275]["name"] = "LogDepthToExpand" +defs["structs"]["ImGuiContext"][275]["type"] = "int" +defs["structs"]["ImGuiContext"][276] = {} +defs["structs"]["ImGuiContext"][276]["name"] = "LogDepthToExpandDefault" +defs["structs"]["ImGuiContext"][276]["type"] = "int" +defs["structs"]["ImGuiContext"][277] = {} +defs["structs"]["ImGuiContext"][277]["name"] = "DebugLogFlags" +defs["structs"]["ImGuiContext"][277]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][278] = {} +defs["structs"]["ImGuiContext"][278]["name"] = "DebugLogBuf" +defs["structs"]["ImGuiContext"][278]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiContext"][279] = {} +defs["structs"]["ImGuiContext"][279]["name"] = "DebugLogIndex" +defs["structs"]["ImGuiContext"][279]["type"] = "ImGuiTextIndex" +defs["structs"]["ImGuiContext"][280] = {} +defs["structs"]["ImGuiContext"][280]["name"] = "DebugLogAutoDisableFlags" +defs["structs"]["ImGuiContext"][280]["type"] = "ImGuiDebugLogFlags" +defs["structs"]["ImGuiContext"][281] = {} +defs["structs"]["ImGuiContext"][281]["name"] = "DebugLogAutoDisableFrames" +defs["structs"]["ImGuiContext"][281]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][282] = {} +defs["structs"]["ImGuiContext"][282]["name"] = "DebugLocateFrames" +defs["structs"]["ImGuiContext"][282]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][283] = {} +defs["structs"]["ImGuiContext"][283]["name"] = "DebugBreakInLocateId" +defs["structs"]["ImGuiContext"][283]["type"] = "bool" +defs["structs"]["ImGuiContext"][284] = {} +defs["structs"]["ImGuiContext"][284]["name"] = "DebugBreakKeyChord" +defs["structs"]["ImGuiContext"][284]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiContext"][285] = {} +defs["structs"]["ImGuiContext"][285]["name"] = "DebugBeginReturnValueCullDepth" +defs["structs"]["ImGuiContext"][285]["type"] = "ImS8" +defs["structs"]["ImGuiContext"][286] = {} +defs["structs"]["ImGuiContext"][286]["name"] = "DebugItemPickerActive" +defs["structs"]["ImGuiContext"][286]["type"] = "bool" +defs["structs"]["ImGuiContext"][287] = {} +defs["structs"]["ImGuiContext"][287]["name"] = "DebugItemPickerMouseButton" +defs["structs"]["ImGuiContext"][287]["type"] = "ImU8" +defs["structs"]["ImGuiContext"][288] = {} +defs["structs"]["ImGuiContext"][288]["name"] = "DebugItemPickerBreakId" +defs["structs"]["ImGuiContext"][288]["type"] = "ImGuiID" +defs["structs"]["ImGuiContext"][289] = {} +defs["structs"]["ImGuiContext"][289]["name"] = "DebugFlashStyleColorTime" +defs["structs"]["ImGuiContext"][289]["type"] = "float" +defs["structs"]["ImGuiContext"][290] = {} +defs["structs"]["ImGuiContext"][290]["name"] = "DebugFlashStyleColorBackup" +defs["structs"]["ImGuiContext"][290]["type"] = "ImVec4" +defs["structs"]["ImGuiContext"][291] = {} +defs["structs"]["ImGuiContext"][291]["name"] = "DebugMetricsConfig" +defs["structs"]["ImGuiContext"][291]["type"] = "ImGuiMetricsConfig" +defs["structs"]["ImGuiContext"][292] = {} +defs["structs"]["ImGuiContext"][292]["name"] = "DebugIDStackTool" +defs["structs"]["ImGuiContext"][292]["type"] = "ImGuiIDStackTool" +defs["structs"]["ImGuiContext"][293] = {} +defs["structs"]["ImGuiContext"][293]["name"] = "DebugAllocInfo" +defs["structs"]["ImGuiContext"][293]["type"] = "ImGuiDebugAllocInfo" +defs["structs"]["ImGuiContext"][294] = {} +defs["structs"]["ImGuiContext"][294]["name"] = "DebugHoveredDockNode" +defs["structs"]["ImGuiContext"][294]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiContext"][295] = {} +defs["structs"]["ImGuiContext"][295]["name"] = "FramerateSecPerFrame[60]" +defs["structs"]["ImGuiContext"][295]["size"] = 60 +defs["structs"]["ImGuiContext"][295]["type"] = "float" +defs["structs"]["ImGuiContext"][296] = {} +defs["structs"]["ImGuiContext"][296]["name"] = "FramerateSecPerFrameIdx" +defs["structs"]["ImGuiContext"][296]["type"] = "int" +defs["structs"]["ImGuiContext"][297] = {} +defs["structs"]["ImGuiContext"][297]["name"] = "FramerateSecPerFrameCount" +defs["structs"]["ImGuiContext"][297]["type"] = "int" +defs["structs"]["ImGuiContext"][298] = {} +defs["structs"]["ImGuiContext"][298]["name"] = "FramerateSecPerFrameAccum" +defs["structs"]["ImGuiContext"][298]["type"] = "float" +defs["structs"]["ImGuiContext"][299] = {} +defs["structs"]["ImGuiContext"][299]["name"] = "WantCaptureMouseNextFrame" +defs["structs"]["ImGuiContext"][299]["type"] = "int" +defs["structs"]["ImGuiContext"][300] = {} +defs["structs"]["ImGuiContext"][300]["name"] = "WantCaptureKeyboardNextFrame" +defs["structs"]["ImGuiContext"][300]["type"] = "int" +defs["structs"]["ImGuiContext"][301] = {} +defs["structs"]["ImGuiContext"][301]["name"] = "WantTextInputNextFrame" +defs["structs"]["ImGuiContext"][301]["type"] = "int" +defs["structs"]["ImGuiContext"][302] = {} +defs["structs"]["ImGuiContext"][302]["name"] = "TempBuffer" +defs["structs"]["ImGuiContext"][302]["template_type"] = "char" +defs["structs"]["ImGuiContext"][302]["type"] = "ImVector_char" +defs["structs"]["ImGuiContext"][303] = {} +defs["structs"]["ImGuiContext"][303]["name"] = "TempKeychordName[64]" +defs["structs"]["ImGuiContext"][303]["size"] = 64 +defs["structs"]["ImGuiContext"][303]["type"] = "char" defs["structs"]["ImGuiContextHook"] = {} defs["structs"]["ImGuiContextHook"][1] = {} defs["structs"]["ImGuiContextHook"][1]["name"] = "HookId" @@ -5008,11 +5724,45 @@ defs["structs"]["ImGuiDataTypeInfo"][3]["type"] = "const char*" defs["structs"]["ImGuiDataTypeInfo"][4] = {} defs["structs"]["ImGuiDataTypeInfo"][4]["name"] = "ScanFmt" defs["structs"]["ImGuiDataTypeInfo"][4]["type"] = "const char*" -defs["structs"]["ImGuiDataTypeTempStorage"] = {} -defs["structs"]["ImGuiDataTypeTempStorage"][1] = {} -defs["structs"]["ImGuiDataTypeTempStorage"][1]["name"] = "Data[8]" -defs["structs"]["ImGuiDataTypeTempStorage"][1]["size"] = 8 -defs["structs"]["ImGuiDataTypeTempStorage"][1]["type"] = "ImU8" +defs["structs"]["ImGuiDataTypeStorage"] = {} +defs["structs"]["ImGuiDataTypeStorage"][1] = {} +defs["structs"]["ImGuiDataTypeStorage"][1]["name"] = "Data[8]" +defs["structs"]["ImGuiDataTypeStorage"][1]["size"] = 8 +defs["structs"]["ImGuiDataTypeStorage"][1]["type"] = "ImU8" +defs["structs"]["ImGuiDataVarInfo"] = {} +defs["structs"]["ImGuiDataVarInfo"][1] = {} +defs["structs"]["ImGuiDataVarInfo"][1]["name"] = "Type" +defs["structs"]["ImGuiDataVarInfo"][1]["type"] = "ImGuiDataType" +defs["structs"]["ImGuiDataVarInfo"][2] = {} +defs["structs"]["ImGuiDataVarInfo"][2]["name"] = "Count" +defs["structs"]["ImGuiDataVarInfo"][2]["type"] = "ImU32" +defs["structs"]["ImGuiDataVarInfo"][3] = {} +defs["structs"]["ImGuiDataVarInfo"][3]["name"] = "Offset" +defs["structs"]["ImGuiDataVarInfo"][3]["type"] = "ImU32" +defs["structs"]["ImGuiDebugAllocEntry"] = {} +defs["structs"]["ImGuiDebugAllocEntry"][1] = {} +defs["structs"]["ImGuiDebugAllocEntry"][1]["name"] = "FrameCount" +defs["structs"]["ImGuiDebugAllocEntry"][1]["type"] = "int" +defs["structs"]["ImGuiDebugAllocEntry"][2] = {} +defs["structs"]["ImGuiDebugAllocEntry"][2]["name"] = "AllocCount" +defs["structs"]["ImGuiDebugAllocEntry"][2]["type"] = "ImS16" +defs["structs"]["ImGuiDebugAllocEntry"][3] = {} +defs["structs"]["ImGuiDebugAllocEntry"][3]["name"] = "FreeCount" +defs["structs"]["ImGuiDebugAllocEntry"][3]["type"] = "ImS16" +defs["structs"]["ImGuiDebugAllocInfo"] = {} +defs["structs"]["ImGuiDebugAllocInfo"][1] = {} +defs["structs"]["ImGuiDebugAllocInfo"][1]["name"] = "TotalAllocCount" +defs["structs"]["ImGuiDebugAllocInfo"][1]["type"] = "int" +defs["structs"]["ImGuiDebugAllocInfo"][2] = {} +defs["structs"]["ImGuiDebugAllocInfo"][2]["name"] = "TotalFreeCount" +defs["structs"]["ImGuiDebugAllocInfo"][2]["type"] = "int" +defs["structs"]["ImGuiDebugAllocInfo"][3] = {} +defs["structs"]["ImGuiDebugAllocInfo"][3]["name"] = "LastEntriesIdx" +defs["structs"]["ImGuiDebugAllocInfo"][3]["type"] = "ImS16" +defs["structs"]["ImGuiDebugAllocInfo"][4] = {} +defs["structs"]["ImGuiDebugAllocInfo"][4]["name"] = "LastEntriesBuf[6]" +defs["structs"]["ImGuiDebugAllocInfo"][4]["size"] = 6 +defs["structs"]["ImGuiDebugAllocInfo"][4]["type"] = "ImGuiDebugAllocEntry" defs["structs"]["ImGuiDockContext"] = {} defs["structs"]["ImGuiDockContext"][1] = {} defs["structs"]["ImGuiDockContext"][1]["name"] = "Nodes" @@ -5113,61 +5863,71 @@ defs["structs"]["ImGuiDockNode"][27] = {} defs["structs"]["ImGuiDockNode"][27]["name"] = "WantCloseTabId" defs["structs"]["ImGuiDockNode"][27]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][28] = {} -defs["structs"]["ImGuiDockNode"][28]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][28]["name"] = "AuthorityForPos" -defs["structs"]["ImGuiDockNode"][28]["type"] = "ImGuiDataAuthority" +defs["structs"]["ImGuiDockNode"][28]["name"] = "RefViewportId" +defs["structs"]["ImGuiDockNode"][28]["type"] = "ImGuiID" defs["structs"]["ImGuiDockNode"][29] = {} defs["structs"]["ImGuiDockNode"][29]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][29]["name"] = "AuthorityForSize" +defs["structs"]["ImGuiDockNode"][29]["name"] = "AuthorityForPos" defs["structs"]["ImGuiDockNode"][29]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][30] = {} defs["structs"]["ImGuiDockNode"][30]["bitfield"] = "3" -defs["structs"]["ImGuiDockNode"][30]["name"] = "AuthorityForViewport" +defs["structs"]["ImGuiDockNode"][30]["name"] = "AuthorityForSize" defs["structs"]["ImGuiDockNode"][30]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][31] = {} -defs["structs"]["ImGuiDockNode"][31]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][31]["name"] = "IsVisible" -defs["structs"]["ImGuiDockNode"][31]["type"] = "bool" +defs["structs"]["ImGuiDockNode"][31]["bitfield"] = "3" +defs["structs"]["ImGuiDockNode"][31]["name"] = "AuthorityForViewport" +defs["structs"]["ImGuiDockNode"][31]["type"] = "ImGuiDataAuthority" defs["structs"]["ImGuiDockNode"][32] = {} defs["structs"]["ImGuiDockNode"][32]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][32]["name"] = "IsFocused" +defs["structs"]["ImGuiDockNode"][32]["name"] = "IsVisible" defs["structs"]["ImGuiDockNode"][32]["type"] = "bool" defs["structs"]["ImGuiDockNode"][33] = {} defs["structs"]["ImGuiDockNode"][33]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][33]["name"] = "IsBgDrawnThisFrame" +defs["structs"]["ImGuiDockNode"][33]["name"] = "IsFocused" defs["structs"]["ImGuiDockNode"][33]["type"] = "bool" defs["structs"]["ImGuiDockNode"][34] = {} defs["structs"]["ImGuiDockNode"][34]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][34]["name"] = "HasCloseButton" +defs["structs"]["ImGuiDockNode"][34]["name"] = "IsBgDrawnThisFrame" defs["structs"]["ImGuiDockNode"][34]["type"] = "bool" defs["structs"]["ImGuiDockNode"][35] = {} defs["structs"]["ImGuiDockNode"][35]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][35]["name"] = "HasWindowMenuButton" +defs["structs"]["ImGuiDockNode"][35]["name"] = "HasCloseButton" defs["structs"]["ImGuiDockNode"][35]["type"] = "bool" defs["structs"]["ImGuiDockNode"][36] = {} defs["structs"]["ImGuiDockNode"][36]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][36]["name"] = "HasCentralNodeChild" +defs["structs"]["ImGuiDockNode"][36]["name"] = "HasWindowMenuButton" defs["structs"]["ImGuiDockNode"][36]["type"] = "bool" defs["structs"]["ImGuiDockNode"][37] = {} defs["structs"]["ImGuiDockNode"][37]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][37]["name"] = "WantCloseAll" +defs["structs"]["ImGuiDockNode"][37]["name"] = "HasCentralNodeChild" defs["structs"]["ImGuiDockNode"][37]["type"] = "bool" defs["structs"]["ImGuiDockNode"][38] = {} defs["structs"]["ImGuiDockNode"][38]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][38]["name"] = "WantLockSizeOnce" +defs["structs"]["ImGuiDockNode"][38]["name"] = "WantCloseAll" defs["structs"]["ImGuiDockNode"][38]["type"] = "bool" defs["structs"]["ImGuiDockNode"][39] = {} defs["structs"]["ImGuiDockNode"][39]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][39]["name"] = "WantMouseMove" +defs["structs"]["ImGuiDockNode"][39]["name"] = "WantLockSizeOnce" defs["structs"]["ImGuiDockNode"][39]["type"] = "bool" defs["structs"]["ImGuiDockNode"][40] = {} defs["structs"]["ImGuiDockNode"][40]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][40]["name"] = "WantHiddenTabBarUpdate" +defs["structs"]["ImGuiDockNode"][40]["name"] = "WantMouseMove" defs["structs"]["ImGuiDockNode"][40]["type"] = "bool" defs["structs"]["ImGuiDockNode"][41] = {} defs["structs"]["ImGuiDockNode"][41]["bitfield"] = "1" -defs["structs"]["ImGuiDockNode"][41]["name"] = "WantHiddenTabBarToggle" +defs["structs"]["ImGuiDockNode"][41]["name"] = "WantHiddenTabBarUpdate" defs["structs"]["ImGuiDockNode"][41]["type"] = "bool" +defs["structs"]["ImGuiDockNode"][42] = {} +defs["structs"]["ImGuiDockNode"][42]["bitfield"] = "1" +defs["structs"]["ImGuiDockNode"][42]["name"] = "WantHiddenTabBarToggle" +defs["structs"]["ImGuiDockNode"][42]["type"] = "bool" +defs["structs"]["ImGuiFocusScopeData"] = {} +defs["structs"]["ImGuiFocusScopeData"][1] = {} +defs["structs"]["ImGuiFocusScopeData"][1]["name"] = "ID" +defs["structs"]["ImGuiFocusScopeData"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiFocusScopeData"][2] = {} +defs["structs"]["ImGuiFocusScopeData"][2]["name"] = "WindowID" +defs["structs"]["ImGuiFocusScopeData"][2]["type"] = "ImGuiID" defs["structs"]["ImGuiGroupData"] = {} defs["structs"]["ImGuiGroupData"][1] = {} defs["structs"]["ImGuiGroupData"][1]["name"] = "WindowID" @@ -5179,29 +5939,55 @@ defs["structs"]["ImGuiGroupData"][3] = {} defs["structs"]["ImGuiGroupData"][3]["name"] = "BackupCursorMaxPos" defs["structs"]["ImGuiGroupData"][3]["type"] = "ImVec2" defs["structs"]["ImGuiGroupData"][4] = {} -defs["structs"]["ImGuiGroupData"][4]["name"] = "BackupIndent" -defs["structs"]["ImGuiGroupData"][4]["type"] = "ImVec1" +defs["structs"]["ImGuiGroupData"][4]["name"] = "BackupCursorPosPrevLine" +defs["structs"]["ImGuiGroupData"][4]["type"] = "ImVec2" defs["structs"]["ImGuiGroupData"][5] = {} -defs["structs"]["ImGuiGroupData"][5]["name"] = "BackupGroupOffset" +defs["structs"]["ImGuiGroupData"][5]["name"] = "BackupIndent" defs["structs"]["ImGuiGroupData"][5]["type"] = "ImVec1" defs["structs"]["ImGuiGroupData"][6] = {} -defs["structs"]["ImGuiGroupData"][6]["name"] = "BackupCurrLineSize" -defs["structs"]["ImGuiGroupData"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiGroupData"][6]["name"] = "BackupGroupOffset" +defs["structs"]["ImGuiGroupData"][6]["type"] = "ImVec1" defs["structs"]["ImGuiGroupData"][7] = {} -defs["structs"]["ImGuiGroupData"][7]["name"] = "BackupCurrLineTextBaseOffset" -defs["structs"]["ImGuiGroupData"][7]["type"] = "float" +defs["structs"]["ImGuiGroupData"][7]["name"] = "BackupCurrLineSize" +defs["structs"]["ImGuiGroupData"][7]["type"] = "ImVec2" defs["structs"]["ImGuiGroupData"][8] = {} -defs["structs"]["ImGuiGroupData"][8]["name"] = "BackupActiveIdIsAlive" -defs["structs"]["ImGuiGroupData"][8]["type"] = "ImGuiID" +defs["structs"]["ImGuiGroupData"][8]["name"] = "BackupCurrLineTextBaseOffset" +defs["structs"]["ImGuiGroupData"][8]["type"] = "float" defs["structs"]["ImGuiGroupData"][9] = {} -defs["structs"]["ImGuiGroupData"][9]["name"] = "BackupActiveIdPreviousFrameIsAlive" -defs["structs"]["ImGuiGroupData"][9]["type"] = "bool" +defs["structs"]["ImGuiGroupData"][9]["name"] = "BackupActiveIdIsAlive" +defs["structs"]["ImGuiGroupData"][9]["type"] = "ImGuiID" defs["structs"]["ImGuiGroupData"][10] = {} -defs["structs"]["ImGuiGroupData"][10]["name"] = "BackupHoveredIdIsAlive" +defs["structs"]["ImGuiGroupData"][10]["name"] = "BackupActiveIdPreviousFrameIsAlive" defs["structs"]["ImGuiGroupData"][10]["type"] = "bool" defs["structs"]["ImGuiGroupData"][11] = {} -defs["structs"]["ImGuiGroupData"][11]["name"] = "EmitItem" +defs["structs"]["ImGuiGroupData"][11]["name"] = "BackupHoveredIdIsAlive" defs["structs"]["ImGuiGroupData"][11]["type"] = "bool" +defs["structs"]["ImGuiGroupData"][12] = {} +defs["structs"]["ImGuiGroupData"][12]["name"] = "BackupIsSameLine" +defs["structs"]["ImGuiGroupData"][12]["type"] = "bool" +defs["structs"]["ImGuiGroupData"][13] = {} +defs["structs"]["ImGuiGroupData"][13]["name"] = "EmitItem" +defs["structs"]["ImGuiGroupData"][13]["type"] = "bool" +defs["structs"]["ImGuiIDStackTool"] = {} +defs["structs"]["ImGuiIDStackTool"][1] = {} +defs["structs"]["ImGuiIDStackTool"][1]["name"] = "LastActiveFrame" +defs["structs"]["ImGuiIDStackTool"][1]["type"] = "int" +defs["structs"]["ImGuiIDStackTool"][2] = {} +defs["structs"]["ImGuiIDStackTool"][2]["name"] = "StackLevel" +defs["structs"]["ImGuiIDStackTool"][2]["type"] = "int" +defs["structs"]["ImGuiIDStackTool"][3] = {} +defs["structs"]["ImGuiIDStackTool"][3]["name"] = "QueryId" +defs["structs"]["ImGuiIDStackTool"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiIDStackTool"][4] = {} +defs["structs"]["ImGuiIDStackTool"][4]["name"] = "Results" +defs["structs"]["ImGuiIDStackTool"][4]["template_type"] = "ImGuiStackLevelInfo" +defs["structs"]["ImGuiIDStackTool"][4]["type"] = "ImVector_ImGuiStackLevelInfo" +defs["structs"]["ImGuiIDStackTool"][5] = {} +defs["structs"]["ImGuiIDStackTool"][5]["name"] = "CopyToClipboardOnCtrlC" +defs["structs"]["ImGuiIDStackTool"][5]["type"] = "bool" +defs["structs"]["ImGuiIDStackTool"][6] = {} +defs["structs"]["ImGuiIDStackTool"][6]["name"] = "CopyToClipboardLastTime" +defs["structs"]["ImGuiIDStackTool"][6]["type"] = "float" defs["structs"]["ImGuiIO"] = {} defs["structs"]["ImGuiIO"][1] = {} defs["structs"]["ImGuiIO"][1]["name"] = "ConfigFlags" @@ -5225,124 +6011,124 @@ defs["structs"]["ImGuiIO"][7] = {} defs["structs"]["ImGuiIO"][7]["name"] = "LogFilename" defs["structs"]["ImGuiIO"][7]["type"] = "const char*" defs["structs"]["ImGuiIO"][8] = {} -defs["structs"]["ImGuiIO"][8]["name"] = "MouseDoubleClickTime" -defs["structs"]["ImGuiIO"][8]["type"] = "float" +defs["structs"]["ImGuiIO"][8]["name"] = "UserData" +defs["structs"]["ImGuiIO"][8]["type"] = "void*" defs["structs"]["ImGuiIO"][9] = {} -defs["structs"]["ImGuiIO"][9]["name"] = "MouseDoubleClickMaxDist" -defs["structs"]["ImGuiIO"][9]["type"] = "float" +defs["structs"]["ImGuiIO"][9]["name"] = "Fonts" +defs["structs"]["ImGuiIO"][9]["type"] = "ImFontAtlas*" defs["structs"]["ImGuiIO"][10] = {} -defs["structs"]["ImGuiIO"][10]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][10]["name"] = "FontGlobalScale" defs["structs"]["ImGuiIO"][10]["type"] = "float" defs["structs"]["ImGuiIO"][11] = {} -defs["structs"]["ImGuiIO"][11]["name"] = "KeyRepeatDelay" -defs["structs"]["ImGuiIO"][11]["type"] = "float" +defs["structs"]["ImGuiIO"][11]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][11]["type"] = "bool" defs["structs"]["ImGuiIO"][12] = {} -defs["structs"]["ImGuiIO"][12]["name"] = "KeyRepeatRate" -defs["structs"]["ImGuiIO"][12]["type"] = "float" +defs["structs"]["ImGuiIO"][12]["name"] = "FontDefault" +defs["structs"]["ImGuiIO"][12]["type"] = "ImFont*" defs["structs"]["ImGuiIO"][13] = {} -defs["structs"]["ImGuiIO"][13]["name"] = "HoverDelayNormal" -defs["structs"]["ImGuiIO"][13]["type"] = "float" +defs["structs"]["ImGuiIO"][13]["name"] = "DisplayFramebufferScale" +defs["structs"]["ImGuiIO"][13]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][14] = {} -defs["structs"]["ImGuiIO"][14]["name"] = "HoverDelayShort" -defs["structs"]["ImGuiIO"][14]["type"] = "float" +defs["structs"]["ImGuiIO"][14]["name"] = "ConfigDockingNoSplit" +defs["structs"]["ImGuiIO"][14]["type"] = "bool" defs["structs"]["ImGuiIO"][15] = {} -defs["structs"]["ImGuiIO"][15]["name"] = "UserData" -defs["structs"]["ImGuiIO"][15]["type"] = "void*" +defs["structs"]["ImGuiIO"][15]["name"] = "ConfigDockingWithShift" +defs["structs"]["ImGuiIO"][15]["type"] = "bool" defs["structs"]["ImGuiIO"][16] = {} -defs["structs"]["ImGuiIO"][16]["name"] = "Fonts" -defs["structs"]["ImGuiIO"][16]["type"] = "ImFontAtlas*" +defs["structs"]["ImGuiIO"][16]["name"] = "ConfigDockingAlwaysTabBar" +defs["structs"]["ImGuiIO"][16]["type"] = "bool" defs["structs"]["ImGuiIO"][17] = {} -defs["structs"]["ImGuiIO"][17]["name"] = "FontGlobalScale" -defs["structs"]["ImGuiIO"][17]["type"] = "float" +defs["structs"]["ImGuiIO"][17]["name"] = "ConfigDockingTransparentPayload" +defs["structs"]["ImGuiIO"][17]["type"] = "bool" defs["structs"]["ImGuiIO"][18] = {} -defs["structs"]["ImGuiIO"][18]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][18]["name"] = "ConfigViewportsNoAutoMerge" defs["structs"]["ImGuiIO"][18]["type"] = "bool" defs["structs"]["ImGuiIO"][19] = {} -defs["structs"]["ImGuiIO"][19]["name"] = "FontDefault" -defs["structs"]["ImGuiIO"][19]["type"] = "ImFont*" +defs["structs"]["ImGuiIO"][19]["name"] = "ConfigViewportsNoTaskBarIcon" +defs["structs"]["ImGuiIO"][19]["type"] = "bool" defs["structs"]["ImGuiIO"][20] = {} -defs["structs"]["ImGuiIO"][20]["name"] = "DisplayFramebufferScale" -defs["structs"]["ImGuiIO"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][20]["name"] = "ConfigViewportsNoDecoration" +defs["structs"]["ImGuiIO"][20]["type"] = "bool" defs["structs"]["ImGuiIO"][21] = {} -defs["structs"]["ImGuiIO"][21]["name"] = "ConfigDockingNoSplit" +defs["structs"]["ImGuiIO"][21]["name"] = "ConfigViewportsNoDefaultParent" defs["structs"]["ImGuiIO"][21]["type"] = "bool" defs["structs"]["ImGuiIO"][22] = {} -defs["structs"]["ImGuiIO"][22]["name"] = "ConfigDockingWithShift" +defs["structs"]["ImGuiIO"][22]["name"] = "MouseDrawCursor" defs["structs"]["ImGuiIO"][22]["type"] = "bool" defs["structs"]["ImGuiIO"][23] = {} -defs["structs"]["ImGuiIO"][23]["name"] = "ConfigDockingAlwaysTabBar" +defs["structs"]["ImGuiIO"][23]["name"] = "ConfigMacOSXBehaviors" defs["structs"]["ImGuiIO"][23]["type"] = "bool" defs["structs"]["ImGuiIO"][24] = {} -defs["structs"]["ImGuiIO"][24]["name"] = "ConfigDockingTransparentPayload" +defs["structs"]["ImGuiIO"][24]["name"] = "ConfigNavSwapGamepadButtons" defs["structs"]["ImGuiIO"][24]["type"] = "bool" defs["structs"]["ImGuiIO"][25] = {} -defs["structs"]["ImGuiIO"][25]["name"] = "ConfigViewportsNoAutoMerge" +defs["structs"]["ImGuiIO"][25]["name"] = "ConfigInputTrickleEventQueue" defs["structs"]["ImGuiIO"][25]["type"] = "bool" defs["structs"]["ImGuiIO"][26] = {} -defs["structs"]["ImGuiIO"][26]["name"] = "ConfigViewportsNoTaskBarIcon" +defs["structs"]["ImGuiIO"][26]["name"] = "ConfigInputTextCursorBlink" defs["structs"]["ImGuiIO"][26]["type"] = "bool" defs["structs"]["ImGuiIO"][27] = {} -defs["structs"]["ImGuiIO"][27]["name"] = "ConfigViewportsNoDecoration" +defs["structs"]["ImGuiIO"][27]["name"] = "ConfigInputTextEnterKeepActive" defs["structs"]["ImGuiIO"][27]["type"] = "bool" defs["structs"]["ImGuiIO"][28] = {} -defs["structs"]["ImGuiIO"][28]["name"] = "ConfigViewportsNoDefaultParent" +defs["structs"]["ImGuiIO"][28]["name"] = "ConfigDragClickToInputText" defs["structs"]["ImGuiIO"][28]["type"] = "bool" defs["structs"]["ImGuiIO"][29] = {} -defs["structs"]["ImGuiIO"][29]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][29]["name"] = "ConfigWindowsResizeFromEdges" defs["structs"]["ImGuiIO"][29]["type"] = "bool" defs["structs"]["ImGuiIO"][30] = {} -defs["structs"]["ImGuiIO"][30]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][30]["name"] = "ConfigWindowsMoveFromTitleBarOnly" defs["structs"]["ImGuiIO"][30]["type"] = "bool" defs["structs"]["ImGuiIO"][31] = {} -defs["structs"]["ImGuiIO"][31]["name"] = "ConfigInputTrickleEventQueue" -defs["structs"]["ImGuiIO"][31]["type"] = "bool" +defs["structs"]["ImGuiIO"][31]["name"] = "ConfigMemoryCompactTimer" +defs["structs"]["ImGuiIO"][31]["type"] = "float" defs["structs"]["ImGuiIO"][32] = {} -defs["structs"]["ImGuiIO"][32]["name"] = "ConfigInputTextCursorBlink" -defs["structs"]["ImGuiIO"][32]["type"] = "bool" +defs["structs"]["ImGuiIO"][32]["name"] = "MouseDoubleClickTime" +defs["structs"]["ImGuiIO"][32]["type"] = "float" defs["structs"]["ImGuiIO"][33] = {} -defs["structs"]["ImGuiIO"][33]["name"] = "ConfigInputTextEnterKeepActive" -defs["structs"]["ImGuiIO"][33]["type"] = "bool" +defs["structs"]["ImGuiIO"][33]["name"] = "MouseDoubleClickMaxDist" +defs["structs"]["ImGuiIO"][33]["type"] = "float" defs["structs"]["ImGuiIO"][34] = {} -defs["structs"]["ImGuiIO"][34]["name"] = "ConfigDragClickToInputText" -defs["structs"]["ImGuiIO"][34]["type"] = "bool" +defs["structs"]["ImGuiIO"][34]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][34]["type"] = "float" defs["structs"]["ImGuiIO"][35] = {} -defs["structs"]["ImGuiIO"][35]["name"] = "ConfigWindowsResizeFromEdges" -defs["structs"]["ImGuiIO"][35]["type"] = "bool" +defs["structs"]["ImGuiIO"][35]["name"] = "KeyRepeatDelay" +defs["structs"]["ImGuiIO"][35]["type"] = "float" defs["structs"]["ImGuiIO"][36] = {} -defs["structs"]["ImGuiIO"][36]["name"] = "ConfigWindowsMoveFromTitleBarOnly" -defs["structs"]["ImGuiIO"][36]["type"] = "bool" +defs["structs"]["ImGuiIO"][36]["name"] = "KeyRepeatRate" +defs["structs"]["ImGuiIO"][36]["type"] = "float" defs["structs"]["ImGuiIO"][37] = {} -defs["structs"]["ImGuiIO"][37]["name"] = "ConfigMemoryCompactTimer" -defs["structs"]["ImGuiIO"][37]["type"] = "float" +defs["structs"]["ImGuiIO"][37]["name"] = "ConfigDebugIsDebuggerPresent" +defs["structs"]["ImGuiIO"][37]["type"] = "bool" defs["structs"]["ImGuiIO"][38] = {} -defs["structs"]["ImGuiIO"][38]["name"] = "BackendPlatformName" -defs["structs"]["ImGuiIO"][38]["type"] = "const char*" +defs["structs"]["ImGuiIO"][38]["name"] = "ConfigDebugHighlightIdConflicts" +defs["structs"]["ImGuiIO"][38]["type"] = "bool" defs["structs"]["ImGuiIO"][39] = {} -defs["structs"]["ImGuiIO"][39]["name"] = "BackendRendererName" -defs["structs"]["ImGuiIO"][39]["type"] = "const char*" +defs["structs"]["ImGuiIO"][39]["name"] = "ConfigDebugBeginReturnValueOnce" +defs["structs"]["ImGuiIO"][39]["type"] = "bool" defs["structs"]["ImGuiIO"][40] = {} -defs["structs"]["ImGuiIO"][40]["name"] = "BackendPlatformUserData" -defs["structs"]["ImGuiIO"][40]["type"] = "void*" +defs["structs"]["ImGuiIO"][40]["name"] = "ConfigDebugBeginReturnValueLoop" +defs["structs"]["ImGuiIO"][40]["type"] = "bool" defs["structs"]["ImGuiIO"][41] = {} -defs["structs"]["ImGuiIO"][41]["name"] = "BackendRendererUserData" -defs["structs"]["ImGuiIO"][41]["type"] = "void*" +defs["structs"]["ImGuiIO"][41]["name"] = "ConfigDebugIgnoreFocusLoss" +defs["structs"]["ImGuiIO"][41]["type"] = "bool" defs["structs"]["ImGuiIO"][42] = {} -defs["structs"]["ImGuiIO"][42]["name"] = "BackendLanguageUserData" -defs["structs"]["ImGuiIO"][42]["type"] = "void*" +defs["structs"]["ImGuiIO"][42]["name"] = "ConfigDebugIniSettings" +defs["structs"]["ImGuiIO"][42]["type"] = "bool" defs["structs"]["ImGuiIO"][43] = {} -defs["structs"]["ImGuiIO"][43]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][43]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][43]["name"] = "BackendPlatformName" +defs["structs"]["ImGuiIO"][43]["type"] = "const char*" defs["structs"]["ImGuiIO"][44] = {} -defs["structs"]["ImGuiIO"][44]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][44]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][44]["name"] = "BackendRendererName" +defs["structs"]["ImGuiIO"][44]["type"] = "const char*" defs["structs"]["ImGuiIO"][45] = {} -defs["structs"]["ImGuiIO"][45]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][45]["name"] = "BackendPlatformUserData" defs["structs"]["ImGuiIO"][45]["type"] = "void*" defs["structs"]["ImGuiIO"][46] = {} -defs["structs"]["ImGuiIO"][46]["name"] = "SetPlatformImeDataFn" -defs["structs"]["ImGuiIO"][46]["type"] = "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiIO"][46]["name"] = "BackendRendererUserData" +defs["structs"]["ImGuiIO"][46]["type"] = "void*" defs["structs"]["ImGuiIO"][47] = {} -defs["structs"]["ImGuiIO"][47]["name"] = "_UnusedPadding" +defs["structs"]["ImGuiIO"][47]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][47]["type"] = "void*" defs["structs"]["ImGuiIO"][48] = {} defs["structs"]["ImGuiIO"][48]["name"] = "WantCaptureMouse" @@ -5381,99 +6167,96 @@ defs["structs"]["ImGuiIO"][59] = {} defs["structs"]["ImGuiIO"][59]["name"] = "MetricsActiveWindows" defs["structs"]["ImGuiIO"][59]["type"] = "int" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "MetricsActiveAllocations" -defs["structs"]["ImGuiIO"][60]["type"] = "int" +defs["structs"]["ImGuiIO"][60]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][60]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "MouseDelta" -defs["structs"]["ImGuiIO"][61]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][61]["name"] = "Ctx" +defs["structs"]["ImGuiIO"][61]["type"] = "ImGuiContext*" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "KeyMap[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][62]["size"] = 652 -defs["structs"]["ImGuiIO"][62]["type"] = "int" +defs["structs"]["ImGuiIO"][62]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][62]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "KeysDown[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][63]["size"] = 652 +defs["structs"]["ImGuiIO"][63]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][63]["size"] = 5 defs["structs"]["ImGuiIO"][63]["type"] = "bool" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "NavInputs[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][64]["size"] = 16 +defs["structs"]["ImGuiIO"][64]["name"] = "MouseWheel" defs["structs"]["ImGuiIO"][64]["type"] = "float" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][65]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][65]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][65]["type"] = "float" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][66]["size"] = 5 -defs["structs"]["ImGuiIO"][66]["type"] = "bool" +defs["structs"]["ImGuiIO"][66]["name"] = "MouseSource" +defs["structs"]["ImGuiIO"][66]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][67]["type"] = "float" +defs["structs"]["ImGuiIO"][67]["name"] = "MouseHoveredViewport" +defs["structs"]["ImGuiIO"][67]["type"] = "ImGuiID" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][68]["type"] = "float" +defs["structs"]["ImGuiIO"][68]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][68]["type"] = "bool" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "MouseHoveredViewport" -defs["structs"]["ImGuiIO"][69]["type"] = "ImGuiID" +defs["structs"]["ImGuiIO"][69]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][69]["type"] = "bool" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][70]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][70]["type"] = "bool" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][71]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][71]["type"] = "bool" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "KeyAlt" -defs["structs"]["ImGuiIO"][72]["type"] = "bool" +defs["structs"]["ImGuiIO"][72]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][72]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][73]["type"] = "bool" +defs["structs"]["ImGuiIO"][73]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][73]["size"] = 154 +defs["structs"]["ImGuiIO"][73]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][74]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiIO"][74]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][74]["type"] = "bool" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][75]["size"] = 652 -defs["structs"]["ImGuiIO"][75]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][75]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][75]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "WantCaptureMouseUnlessPopupClose" -defs["structs"]["ImGuiIO"][76]["type"] = "bool" +defs["structs"]["ImGuiIO"][76]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][76]["size"] = 5 +defs["structs"]["ImGuiIO"][76]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][77]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][77]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][77]["size"] = 5 +defs["structs"]["ImGuiIO"][77]["type"] = "double" defs["structs"]["ImGuiIO"][78] = {} -defs["structs"]["ImGuiIO"][78]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][78]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][78]["size"] = 5 -defs["structs"]["ImGuiIO"][78]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][78]["type"] = "bool" defs["structs"]["ImGuiIO"][79] = {} -defs["structs"]["ImGuiIO"][79]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][79]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][79]["size"] = 5 -defs["structs"]["ImGuiIO"][79]["type"] = "double" +defs["structs"]["ImGuiIO"][79]["type"] = "bool" defs["structs"]["ImGuiIO"][80] = {} -defs["structs"]["ImGuiIO"][80]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][80]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][80]["size"] = 5 -defs["structs"]["ImGuiIO"][80]["type"] = "bool" +defs["structs"]["ImGuiIO"][80]["type"] = "ImU16" defs["structs"]["ImGuiIO"][81] = {} -defs["structs"]["ImGuiIO"][81]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][81]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][81]["size"] = 5 -defs["structs"]["ImGuiIO"][81]["type"] = "bool" +defs["structs"]["ImGuiIO"][81]["type"] = "ImU16" defs["structs"]["ImGuiIO"][82] = {} -defs["structs"]["ImGuiIO"][82]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][82]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][82]["size"] = 5 -defs["structs"]["ImGuiIO"][82]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][82]["type"] = "bool" defs["structs"]["ImGuiIO"][83] = {} -defs["structs"]["ImGuiIO"][83]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][83]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][83]["size"] = 5 -defs["structs"]["ImGuiIO"][83]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][83]["type"] = "bool" defs["structs"]["ImGuiIO"][84] = {} -defs["structs"]["ImGuiIO"][84]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][84]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][84]["size"] = 5 defs["structs"]["ImGuiIO"][84]["type"] = "bool" defs["structs"]["ImGuiIO"][85] = {} -defs["structs"]["ImGuiIO"][85]["name"] = "MouseDownOwned[5]" -defs["structs"]["ImGuiIO"][85]["size"] = 5 +defs["structs"]["ImGuiIO"][85]["name"] = "MouseWheelRequestAxisSwap" defs["structs"]["ImGuiIO"][85]["type"] = "bool" defs["structs"]["ImGuiIO"][86] = {} -defs["structs"]["ImGuiIO"][86]["name"] = "MouseDownOwnedUnlessPopupClose[5]" -defs["structs"]["ImGuiIO"][86]["size"] = 5 +defs["structs"]["ImGuiIO"][86]["name"] = "MouseCtrlLeftAsRightClick" defs["structs"]["ImGuiIO"][86]["type"] = "bool" defs["structs"]["ImGuiIO"][87] = {} defs["structs"]["ImGuiIO"][87]["name"] = "MouseDownDuration[5]" @@ -5521,11 +6304,14 @@ defs["structs"]["ImGuiInputEvent"][2] = {} defs["structs"]["ImGuiInputEvent"][2]["name"] = "Source" defs["structs"]["ImGuiInputEvent"][2]["type"] = "ImGuiInputSource" defs["structs"]["ImGuiInputEvent"][3] = {} -defs["structs"]["ImGuiInputEvent"][3]["name"] = "" -defs["structs"]["ImGuiInputEvent"][3]["type"] = "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventMouseViewport MouseViewport; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}" +defs["structs"]["ImGuiInputEvent"][3]["name"] = "EventId" +defs["structs"]["ImGuiInputEvent"][3]["type"] = "ImU32" defs["structs"]["ImGuiInputEvent"][4] = {} -defs["structs"]["ImGuiInputEvent"][4]["name"] = "AddedByTestEngine" -defs["structs"]["ImGuiInputEvent"][4]["type"] = "bool" +defs["structs"]["ImGuiInputEvent"][4]["name"] = "" +defs["structs"]["ImGuiInputEvent"][4]["type"] = "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventMouseViewport MouseViewport; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}" +defs["structs"]["ImGuiInputEvent"][5] = {} +defs["structs"]["ImGuiInputEvent"][5]["name"] = "AddedByTestEngine" +defs["structs"]["ImGuiInputEvent"][5]["type"] = "bool" defs["structs"]["ImGuiInputEventAppFocused"] = {} defs["structs"]["ImGuiInputEventAppFocused"][1] = {} defs["structs"]["ImGuiInputEventAppFocused"][1]["name"] = "Focused" @@ -5547,6 +6333,9 @@ defs["structs"]["ImGuiInputEventMouseButton"][1]["type"] = "int" defs["structs"]["ImGuiInputEventMouseButton"][2] = {} defs["structs"]["ImGuiInputEventMouseButton"][2]["name"] = "Down" defs["structs"]["ImGuiInputEventMouseButton"][2]["type"] = "bool" +defs["structs"]["ImGuiInputEventMouseButton"][3] = {} +defs["structs"]["ImGuiInputEventMouseButton"][3]["name"] = "MouseSource" +defs["structs"]["ImGuiInputEventMouseButton"][3]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiInputEventMousePos"] = {} defs["structs"]["ImGuiInputEventMousePos"][1] = {} defs["structs"]["ImGuiInputEventMousePos"][1]["name"] = "PosX" @@ -5554,6 +6343,9 @@ defs["structs"]["ImGuiInputEventMousePos"][1]["type"] = "float" defs["structs"]["ImGuiInputEventMousePos"][2] = {} defs["structs"]["ImGuiInputEventMousePos"][2]["name"] = "PosY" defs["structs"]["ImGuiInputEventMousePos"][2]["type"] = "float" +defs["structs"]["ImGuiInputEventMousePos"][3] = {} +defs["structs"]["ImGuiInputEventMousePos"][3]["name"] = "MouseSource" +defs["structs"]["ImGuiInputEventMousePos"][3]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiInputEventMouseViewport"] = {} defs["structs"]["ImGuiInputEventMouseViewport"][1] = {} defs["structs"]["ImGuiInputEventMouseViewport"][1]["name"] = "HoveredViewportID" @@ -5565,99 +6357,116 @@ defs["structs"]["ImGuiInputEventMouseWheel"][1]["type"] = "float" defs["structs"]["ImGuiInputEventMouseWheel"][2] = {} defs["structs"]["ImGuiInputEventMouseWheel"][2]["name"] = "WheelY" defs["structs"]["ImGuiInputEventMouseWheel"][2]["type"] = "float" +defs["structs"]["ImGuiInputEventMouseWheel"][3] = {} +defs["structs"]["ImGuiInputEventMouseWheel"][3]["name"] = "MouseSource" +defs["structs"]["ImGuiInputEventMouseWheel"][3]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiInputEventText"] = {} defs["structs"]["ImGuiInputEventText"][1] = {} defs["structs"]["ImGuiInputEventText"][1]["name"] = "Char" defs["structs"]["ImGuiInputEventText"][1]["type"] = "unsigned int" defs["structs"]["ImGuiInputTextCallbackData"] = {} defs["structs"]["ImGuiInputTextCallbackData"][1] = {} -defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "EventFlag" -defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "Ctx" +defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiInputTextCallbackData"][2] = {} -defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "EventFlag" defs["structs"]["ImGuiInputTextCallbackData"][2]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][3] = {} -defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "UserData" -defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "void*" +defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][4] = {} -defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "EventChar" -defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "ImWchar" +defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "UserData" +defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "void*" defs["structs"]["ImGuiInputTextCallbackData"][5] = {} -defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventKey" -defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImGuiKey" +defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventChar" +defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImWchar" defs["structs"]["ImGuiInputTextCallbackData"][6] = {} -defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "Buf" -defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "char*" +defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "EventKey" +defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "ImGuiKey" defs["structs"]["ImGuiInputTextCallbackData"][7] = {} -defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "BufTextLen" -defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "Buf" +defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "char*" defs["structs"]["ImGuiInputTextCallbackData"][8] = {} -defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufTextLen" defs["structs"]["ImGuiInputTextCallbackData"][8]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][9] = {} -defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufDirty" -defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "bool" +defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][10] = {} -defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "CursorPos" -defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "BufDirty" +defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "bool" defs["structs"]["ImGuiInputTextCallbackData"][11] = {} -defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "SelectionStart" +defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "CursorPos" defs["structs"]["ImGuiInputTextCallbackData"][11]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][12] = {} -defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionStart" defs["structs"]["ImGuiInputTextCallbackData"][12]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][13] = {} +defs["structs"]["ImGuiInputTextCallbackData"][13]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][13]["type"] = "int" +defs["structs"]["ImGuiInputTextDeactivatedState"] = {} +defs["structs"]["ImGuiInputTextDeactivatedState"][1] = {} +defs["structs"]["ImGuiInputTextDeactivatedState"][1]["name"] = "ID" +defs["structs"]["ImGuiInputTextDeactivatedState"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiInputTextDeactivatedState"][2] = {} +defs["structs"]["ImGuiInputTextDeactivatedState"][2]["name"] = "TextA" +defs["structs"]["ImGuiInputTextDeactivatedState"][2]["template_type"] = "char" +defs["structs"]["ImGuiInputTextDeactivatedState"][2]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"] = {} defs["structs"]["ImGuiInputTextState"][1] = {} defs["structs"]["ImGuiInputTextState"][1]["name"] = "Ctx" defs["structs"]["ImGuiInputTextState"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiInputTextState"][2] = {} -defs["structs"]["ImGuiInputTextState"][2]["name"] = "ID" -defs["structs"]["ImGuiInputTextState"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiInputTextState"][2]["name"] = "Stb" +defs["structs"]["ImGuiInputTextState"][2]["type"] = "ImStbTexteditState*" defs["structs"]["ImGuiInputTextState"][3] = {} -defs["structs"]["ImGuiInputTextState"][3]["name"] = "CurLenW" -defs["structs"]["ImGuiInputTextState"][3]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][3]["name"] = "ID" +defs["structs"]["ImGuiInputTextState"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiInputTextState"][4] = {} defs["structs"]["ImGuiInputTextState"][4]["name"] = "CurLenA" defs["structs"]["ImGuiInputTextState"][4]["type"] = "int" defs["structs"]["ImGuiInputTextState"][5] = {} -defs["structs"]["ImGuiInputTextState"][5]["name"] = "TextW" -defs["structs"]["ImGuiInputTextState"][5]["template_type"] = "ImWchar" -defs["structs"]["ImGuiInputTextState"][5]["type"] = "ImVector_ImWchar" +defs["structs"]["ImGuiInputTextState"][5]["name"] = "TextA" +defs["structs"]["ImGuiInputTextState"][5]["template_type"] = "char" +defs["structs"]["ImGuiInputTextState"][5]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"][6] = {} -defs["structs"]["ImGuiInputTextState"][6]["name"] = "TextA" +defs["structs"]["ImGuiInputTextState"][6]["name"] = "InitialTextA" defs["structs"]["ImGuiInputTextState"][6]["template_type"] = "char" defs["structs"]["ImGuiInputTextState"][6]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"][7] = {} -defs["structs"]["ImGuiInputTextState"][7]["name"] = "InitialTextA" +defs["structs"]["ImGuiInputTextState"][7]["name"] = "CallbackTextBackup" defs["structs"]["ImGuiInputTextState"][7]["template_type"] = "char" defs["structs"]["ImGuiInputTextState"][7]["type"] = "ImVector_char" defs["structs"]["ImGuiInputTextState"][8] = {} -defs["structs"]["ImGuiInputTextState"][8]["name"] = "TextAIsValid" -defs["structs"]["ImGuiInputTextState"][8]["type"] = "bool" +defs["structs"]["ImGuiInputTextState"][8]["name"] = "BufCapacityA" +defs["structs"]["ImGuiInputTextState"][8]["type"] = "int" defs["structs"]["ImGuiInputTextState"][9] = {} -defs["structs"]["ImGuiInputTextState"][9]["name"] = "BufCapacityA" -defs["structs"]["ImGuiInputTextState"][9]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][9]["name"] = "Scroll" +defs["structs"]["ImGuiInputTextState"][9]["type"] = "ImVec2" defs["structs"]["ImGuiInputTextState"][10] = {} -defs["structs"]["ImGuiInputTextState"][10]["name"] = "ScrollX" +defs["structs"]["ImGuiInputTextState"][10]["name"] = "CursorAnim" defs["structs"]["ImGuiInputTextState"][10]["type"] = "float" defs["structs"]["ImGuiInputTextState"][11] = {} -defs["structs"]["ImGuiInputTextState"][11]["name"] = "Stb" -defs["structs"]["ImGuiInputTextState"][11]["type"] = "STB_TexteditState" +defs["structs"]["ImGuiInputTextState"][11]["name"] = "CursorFollow" +defs["structs"]["ImGuiInputTextState"][11]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][12] = {} -defs["structs"]["ImGuiInputTextState"][12]["name"] = "CursorAnim" -defs["structs"]["ImGuiInputTextState"][12]["type"] = "float" +defs["structs"]["ImGuiInputTextState"][12]["name"] = "SelectedAllMouseLock" +defs["structs"]["ImGuiInputTextState"][12]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][13] = {} -defs["structs"]["ImGuiInputTextState"][13]["name"] = "CursorFollow" +defs["structs"]["ImGuiInputTextState"][13]["name"] = "Edited" defs["structs"]["ImGuiInputTextState"][13]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][14] = {} -defs["structs"]["ImGuiInputTextState"][14]["name"] = "SelectedAllMouseLock" -defs["structs"]["ImGuiInputTextState"][14]["type"] = "bool" +defs["structs"]["ImGuiInputTextState"][14]["name"] = "Flags" +defs["structs"]["ImGuiInputTextState"][14]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextState"][15] = {} -defs["structs"]["ImGuiInputTextState"][15]["name"] = "Edited" +defs["structs"]["ImGuiInputTextState"][15]["name"] = "ReloadUserBuf" defs["structs"]["ImGuiInputTextState"][15]["type"] = "bool" defs["structs"]["ImGuiInputTextState"][16] = {} -defs["structs"]["ImGuiInputTextState"][16]["name"] = "Flags" -defs["structs"]["ImGuiInputTextState"][16]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextState"][16]["name"] = "ReloadSelectionStart" +defs["structs"]["ImGuiInputTextState"][16]["type"] = "int" +defs["structs"]["ImGuiInputTextState"][17] = {} +defs["structs"]["ImGuiInputTextState"][17]["name"] = "ReloadSelectionEnd" +defs["structs"]["ImGuiInputTextState"][17]["type"] = "int" defs["structs"]["ImGuiKeyData"] = {} defs["structs"]["ImGuiKeyData"][1] = {} defs["structs"]["ImGuiKeyData"][1]["name"] = "Down" @@ -5692,18 +6501,21 @@ defs["structs"]["ImGuiKeyRoutingData"][2] = {} defs["structs"]["ImGuiKeyRoutingData"][2]["name"] = "Mods" defs["structs"]["ImGuiKeyRoutingData"][2]["type"] = "ImU16" defs["structs"]["ImGuiKeyRoutingData"][3] = {} -defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][3]["name"] = "RoutingCurrScore" defs["structs"]["ImGuiKeyRoutingData"][3]["type"] = "ImU8" defs["structs"]["ImGuiKeyRoutingData"][4] = {} -defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingCurr" -defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][4]["name"] = "RoutingNextScore" +defs["structs"]["ImGuiKeyRoutingData"][4]["type"] = "ImU8" defs["structs"]["ImGuiKeyRoutingData"][5] = {} -defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][5]["name"] = "RoutingCurr" defs["structs"]["ImGuiKeyRoutingData"][5]["type"] = "ImGuiID" +defs["structs"]["ImGuiKeyRoutingData"][6] = {} +defs["structs"]["ImGuiKeyRoutingData"][6]["name"] = "RoutingNext" +defs["structs"]["ImGuiKeyRoutingData"][6]["type"] = "ImGuiID" defs["structs"]["ImGuiKeyRoutingTable"] = {} defs["structs"]["ImGuiKeyRoutingTable"][1] = {} defs["structs"]["ImGuiKeyRoutingTable"][1]["name"] = "Index[ImGuiKey_NamedKey_COUNT]" -defs["structs"]["ImGuiKeyRoutingTable"][1]["size"] = 140 +defs["structs"]["ImGuiKeyRoutingTable"][1]["size"] = 154 defs["structs"]["ImGuiKeyRoutingTable"][1]["type"] = "ImGuiKeyRoutingIndex" defs["structs"]["ImGuiKeyRoutingTable"][2] = {} defs["structs"]["ImGuiKeyRoutingTable"][2]["name"] = "Entries" @@ -5732,25 +6544,37 @@ defs["structs"]["ImGuiLastItemData"][5]["type"] = "ImRect" defs["structs"]["ImGuiLastItemData"][6] = {} defs["structs"]["ImGuiLastItemData"][6]["name"] = "DisplayRect" defs["structs"]["ImGuiLastItemData"][6]["type"] = "ImRect" +defs["structs"]["ImGuiLastItemData"][7] = {} +defs["structs"]["ImGuiLastItemData"][7]["name"] = "ClipRect" +defs["structs"]["ImGuiLastItemData"][7]["type"] = "ImRect" +defs["structs"]["ImGuiLastItemData"][8] = {} +defs["structs"]["ImGuiLastItemData"][8]["name"] = "Shortcut" +defs["structs"]["ImGuiLastItemData"][8]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiListClipper"] = {} defs["structs"]["ImGuiListClipper"][1] = {} -defs["structs"]["ImGuiListClipper"][1]["name"] = "DisplayStart" -defs["structs"]["ImGuiListClipper"][1]["type"] = "int" +defs["structs"]["ImGuiListClipper"][1]["name"] = "Ctx" +defs["structs"]["ImGuiListClipper"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiListClipper"][2] = {} -defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayEnd" +defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayStart" defs["structs"]["ImGuiListClipper"][2]["type"] = "int" defs["structs"]["ImGuiListClipper"][3] = {} -defs["structs"]["ImGuiListClipper"][3]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][3]["name"] = "DisplayEnd" defs["structs"]["ImGuiListClipper"][3]["type"] = "int" defs["structs"]["ImGuiListClipper"][4] = {} -defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsHeight" -defs["structs"]["ImGuiListClipper"][4]["type"] = "float" +defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][4]["type"] = "int" defs["structs"]["ImGuiListClipper"][5] = {} -defs["structs"]["ImGuiListClipper"][5]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][5]["name"] = "ItemsHeight" defs["structs"]["ImGuiListClipper"][5]["type"] = "float" defs["structs"]["ImGuiListClipper"][6] = {} -defs["structs"]["ImGuiListClipper"][6]["name"] = "TempData" -defs["structs"]["ImGuiListClipper"][6]["type"] = "void*" +defs["structs"]["ImGuiListClipper"][6]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][6]["type"] = "float" +defs["structs"]["ImGuiListClipper"][7] = {} +defs["structs"]["ImGuiListClipper"][7]["name"] = "StartSeekOffsetY" +defs["structs"]["ImGuiListClipper"][7]["type"] = "double" +defs["structs"]["ImGuiListClipper"][8] = {} +defs["structs"]["ImGuiListClipper"][8]["name"] = "TempData" +defs["structs"]["ImGuiListClipper"][8]["type"] = "void*" defs["structs"]["ImGuiListClipperData"] = {} defs["structs"]["ImGuiListClipperData"][1] = {} defs["structs"]["ImGuiListClipperData"][1]["name"] = "ListClipper" @@ -5822,7 +6646,7 @@ defs["structs"]["ImGuiMetricsConfig"][1] = {} defs["structs"]["ImGuiMetricsConfig"][1]["name"] = "ShowDebugLog" defs["structs"]["ImGuiMetricsConfig"][1]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][2] = {} -defs["structs"]["ImGuiMetricsConfig"][2]["name"] = "ShowStackTool" +defs["structs"]["ImGuiMetricsConfig"][2]["name"] = "ShowIDStackTool" defs["structs"]["ImGuiMetricsConfig"][2]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][3] = {} defs["structs"]["ImGuiMetricsConfig"][3]["name"] = "ShowWindowsRects" @@ -5840,14 +6664,120 @@ defs["structs"]["ImGuiMetricsConfig"][7] = {} defs["structs"]["ImGuiMetricsConfig"][7]["name"] = "ShowDrawCmdBoundingBoxes" defs["structs"]["ImGuiMetricsConfig"][7]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][8] = {} -defs["structs"]["ImGuiMetricsConfig"][8]["name"] = "ShowDockingNodes" +defs["structs"]["ImGuiMetricsConfig"][8]["name"] = "ShowTextEncodingViewer" defs["structs"]["ImGuiMetricsConfig"][8]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][9] = {} -defs["structs"]["ImGuiMetricsConfig"][9]["name"] = "ShowWindowsRectsType" -defs["structs"]["ImGuiMetricsConfig"][9]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][9]["name"] = "ShowAtlasTintedWithTextColor" +defs["structs"]["ImGuiMetricsConfig"][9]["type"] = "bool" defs["structs"]["ImGuiMetricsConfig"][10] = {} -defs["structs"]["ImGuiMetricsConfig"][10]["name"] = "ShowTablesRectsType" -defs["structs"]["ImGuiMetricsConfig"][10]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][10]["name"] = "ShowDockingNodes" +defs["structs"]["ImGuiMetricsConfig"][10]["type"] = "bool" +defs["structs"]["ImGuiMetricsConfig"][11] = {} +defs["structs"]["ImGuiMetricsConfig"][11]["name"] = "ShowWindowsRectsType" +defs["structs"]["ImGuiMetricsConfig"][11]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][12] = {} +defs["structs"]["ImGuiMetricsConfig"][12]["name"] = "ShowTablesRectsType" +defs["structs"]["ImGuiMetricsConfig"][12]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][13] = {} +defs["structs"]["ImGuiMetricsConfig"][13]["name"] = "HighlightMonitorIdx" +defs["structs"]["ImGuiMetricsConfig"][13]["type"] = "int" +defs["structs"]["ImGuiMetricsConfig"][14] = {} +defs["structs"]["ImGuiMetricsConfig"][14]["name"] = "HighlightViewportID" +defs["structs"]["ImGuiMetricsConfig"][14]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectIO"] = {} +defs["structs"]["ImGuiMultiSelectIO"][1] = {} +defs["structs"]["ImGuiMultiSelectIO"][1]["name"] = "Requests" +defs["structs"]["ImGuiMultiSelectIO"][1]["template_type"] = "ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][1]["type"] = "ImVector_ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][2] = {} +defs["structs"]["ImGuiMultiSelectIO"][2]["name"] = "RangeSrcItem" +defs["structs"]["ImGuiMultiSelectIO"][2]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][3] = {} +defs["structs"]["ImGuiMultiSelectIO"][3]["name"] = "NavIdItem" +defs["structs"]["ImGuiMultiSelectIO"][3]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][4] = {} +defs["structs"]["ImGuiMultiSelectIO"][4]["name"] = "NavIdSelected" +defs["structs"]["ImGuiMultiSelectIO"][4]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][5] = {} +defs["structs"]["ImGuiMultiSelectIO"][5]["name"] = "RangeSrcReset" +defs["structs"]["ImGuiMultiSelectIO"][5]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][6] = {} +defs["structs"]["ImGuiMultiSelectIO"][6]["name"] = "ItemsCount" +defs["structs"]["ImGuiMultiSelectIO"][6]["type"] = "int" +defs["structs"]["ImGuiMultiSelectState"] = {} +defs["structs"]["ImGuiMultiSelectState"][1] = {} +defs["structs"]["ImGuiMultiSelectState"][1]["name"] = "Window" +defs["structs"]["ImGuiMultiSelectState"][1]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiMultiSelectState"][2] = {} +defs["structs"]["ImGuiMultiSelectState"][2]["name"] = "ID" +defs["structs"]["ImGuiMultiSelectState"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectState"][3] = {} +defs["structs"]["ImGuiMultiSelectState"][3]["name"] = "LastFrameActive" +defs["structs"]["ImGuiMultiSelectState"][3]["type"] = "int" +defs["structs"]["ImGuiMultiSelectState"][4] = {} +defs["structs"]["ImGuiMultiSelectState"][4]["name"] = "LastSelectionSize" +defs["structs"]["ImGuiMultiSelectState"][4]["type"] = "int" +defs["structs"]["ImGuiMultiSelectState"][5] = {} +defs["structs"]["ImGuiMultiSelectState"][5]["name"] = "RangeSelected" +defs["structs"]["ImGuiMultiSelectState"][5]["type"] = "ImS8" +defs["structs"]["ImGuiMultiSelectState"][6] = {} +defs["structs"]["ImGuiMultiSelectState"][6]["name"] = "NavIdSelected" +defs["structs"]["ImGuiMultiSelectState"][6]["type"] = "ImS8" +defs["structs"]["ImGuiMultiSelectState"][7] = {} +defs["structs"]["ImGuiMultiSelectState"][7]["name"] = "RangeSrcItem" +defs["structs"]["ImGuiMultiSelectState"][7]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectState"][8] = {} +defs["structs"]["ImGuiMultiSelectState"][8]["name"] = "NavIdItem" +defs["structs"]["ImGuiMultiSelectState"][8]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectTempData"] = {} +defs["structs"]["ImGuiMultiSelectTempData"][1] = {} +defs["structs"]["ImGuiMultiSelectTempData"][1]["name"] = "IO" +defs["structs"]["ImGuiMultiSelectTempData"][1]["type"] = "ImGuiMultiSelectIO" +defs["structs"]["ImGuiMultiSelectTempData"][2] = {} +defs["structs"]["ImGuiMultiSelectTempData"][2]["name"] = "Storage" +defs["structs"]["ImGuiMultiSelectTempData"][2]["type"] = "ImGuiMultiSelectState*" +defs["structs"]["ImGuiMultiSelectTempData"][3] = {} +defs["structs"]["ImGuiMultiSelectTempData"][3]["name"] = "FocusScopeId" +defs["structs"]["ImGuiMultiSelectTempData"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectTempData"][4] = {} +defs["structs"]["ImGuiMultiSelectTempData"][4]["name"] = "Flags" +defs["structs"]["ImGuiMultiSelectTempData"][4]["type"] = "ImGuiMultiSelectFlags" +defs["structs"]["ImGuiMultiSelectTempData"][5] = {} +defs["structs"]["ImGuiMultiSelectTempData"][5]["name"] = "ScopeRectMin" +defs["structs"]["ImGuiMultiSelectTempData"][5]["type"] = "ImVec2" +defs["structs"]["ImGuiMultiSelectTempData"][6] = {} +defs["structs"]["ImGuiMultiSelectTempData"][6]["name"] = "BackupCursorMaxPos" +defs["structs"]["ImGuiMultiSelectTempData"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiMultiSelectTempData"][7] = {} +defs["structs"]["ImGuiMultiSelectTempData"][7]["name"] = "LastSubmittedItem" +defs["structs"]["ImGuiMultiSelectTempData"][7]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectTempData"][8] = {} +defs["structs"]["ImGuiMultiSelectTempData"][8]["name"] = "BoxSelectId" +defs["structs"]["ImGuiMultiSelectTempData"][8]["type"] = "ImGuiID" +defs["structs"]["ImGuiMultiSelectTempData"][9] = {} +defs["structs"]["ImGuiMultiSelectTempData"][9]["name"] = "KeyMods" +defs["structs"]["ImGuiMultiSelectTempData"][9]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiMultiSelectTempData"][10] = {} +defs["structs"]["ImGuiMultiSelectTempData"][10]["name"] = "LoopRequestSetAll" +defs["structs"]["ImGuiMultiSelectTempData"][10]["type"] = "ImS8" +defs["structs"]["ImGuiMultiSelectTempData"][11] = {} +defs["structs"]["ImGuiMultiSelectTempData"][11]["name"] = "IsEndIO" +defs["structs"]["ImGuiMultiSelectTempData"][11]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][12] = {} +defs["structs"]["ImGuiMultiSelectTempData"][12]["name"] = "IsFocused" +defs["structs"]["ImGuiMultiSelectTempData"][12]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][13] = {} +defs["structs"]["ImGuiMultiSelectTempData"][13]["name"] = "IsKeyboardSetRange" +defs["structs"]["ImGuiMultiSelectTempData"][13]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][14] = {} +defs["structs"]["ImGuiMultiSelectTempData"][14]["name"] = "NavIdPassedBy" +defs["structs"]["ImGuiMultiSelectTempData"][14]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][15] = {} +defs["structs"]["ImGuiMultiSelectTempData"][15]["name"] = "RangeSrcPassedBy" +defs["structs"]["ImGuiMultiSelectTempData"][15]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectTempData"][16] = {} +defs["structs"]["ImGuiMultiSelectTempData"][16]["name"] = "RangeDstPassedBy" +defs["structs"]["ImGuiMultiSelectTempData"][16]["type"] = "bool" defs["structs"]["ImGuiNavItemData"] = {} defs["structs"]["ImGuiNavItemData"][1] = {} defs["structs"]["ImGuiNavItemData"][1]["name"] = "Window" @@ -5873,22 +6803,43 @@ defs["structs"]["ImGuiNavItemData"][7]["type"] = "float" defs["structs"]["ImGuiNavItemData"][8] = {} defs["structs"]["ImGuiNavItemData"][8]["name"] = "DistAxial" defs["structs"]["ImGuiNavItemData"][8]["type"] = "float" +defs["structs"]["ImGuiNavItemData"][9] = {} +defs["structs"]["ImGuiNavItemData"][9]["name"] = "SelectionUserData" +defs["structs"]["ImGuiNavItemData"][9]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiNextItemData"] = {} defs["structs"]["ImGuiNextItemData"][1] = {} defs["structs"]["ImGuiNextItemData"][1]["name"] = "Flags" defs["structs"]["ImGuiNextItemData"][1]["type"] = "ImGuiNextItemDataFlags" defs["structs"]["ImGuiNextItemData"][2] = {} -defs["structs"]["ImGuiNextItemData"][2]["name"] = "Width" -defs["structs"]["ImGuiNextItemData"][2]["type"] = "float" +defs["structs"]["ImGuiNextItemData"][2]["name"] = "ItemFlags" +defs["structs"]["ImGuiNextItemData"][2]["type"] = "ImGuiItemFlags" defs["structs"]["ImGuiNextItemData"][3] = {} defs["structs"]["ImGuiNextItemData"][3]["name"] = "FocusScopeId" defs["structs"]["ImGuiNextItemData"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiNextItemData"][4] = {} -defs["structs"]["ImGuiNextItemData"][4]["name"] = "OpenCond" -defs["structs"]["ImGuiNextItemData"][4]["type"] = "ImGuiCond" +defs["structs"]["ImGuiNextItemData"][4]["name"] = "SelectionUserData" +defs["structs"]["ImGuiNextItemData"][4]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiNextItemData"][5] = {} -defs["structs"]["ImGuiNextItemData"][5]["name"] = "OpenVal" -defs["structs"]["ImGuiNextItemData"][5]["type"] = "bool" +defs["structs"]["ImGuiNextItemData"][5]["name"] = "Width" +defs["structs"]["ImGuiNextItemData"][5]["type"] = "float" +defs["structs"]["ImGuiNextItemData"][6] = {} +defs["structs"]["ImGuiNextItemData"][6]["name"] = "Shortcut" +defs["structs"]["ImGuiNextItemData"][6]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiNextItemData"][7] = {} +defs["structs"]["ImGuiNextItemData"][7]["name"] = "ShortcutFlags" +defs["structs"]["ImGuiNextItemData"][7]["type"] = "ImGuiInputFlags" +defs["structs"]["ImGuiNextItemData"][8] = {} +defs["structs"]["ImGuiNextItemData"][8]["name"] = "OpenVal" +defs["structs"]["ImGuiNextItemData"][8]["type"] = "bool" +defs["structs"]["ImGuiNextItemData"][9] = {} +defs["structs"]["ImGuiNextItemData"][9]["name"] = "OpenCond" +defs["structs"]["ImGuiNextItemData"][9]["type"] = "ImU8" +defs["structs"]["ImGuiNextItemData"][10] = {} +defs["structs"]["ImGuiNextItemData"][10]["name"] = "RefVal" +defs["structs"]["ImGuiNextItemData"][10]["type"] = "ImGuiDataTypeStorage" +defs["structs"]["ImGuiNextItemData"][11] = {} +defs["structs"]["ImGuiNextItemData"][11]["name"] = "StorageId" +defs["structs"]["ImGuiNextItemData"][11]["type"] = "ImGuiID" defs["structs"]["ImGuiNextWindowData"] = {} defs["structs"]["ImGuiNextWindowData"][1] = {} defs["structs"]["ImGuiNextWindowData"][1]["name"] = "Flags" @@ -5921,35 +6872,41 @@ defs["structs"]["ImGuiNextWindowData"][10] = {} defs["structs"]["ImGuiNextWindowData"][10]["name"] = "ScrollVal" defs["structs"]["ImGuiNextWindowData"][10]["type"] = "ImVec2" defs["structs"]["ImGuiNextWindowData"][11] = {} -defs["structs"]["ImGuiNextWindowData"][11]["name"] = "PosUndock" -defs["structs"]["ImGuiNextWindowData"][11]["type"] = "bool" +defs["structs"]["ImGuiNextWindowData"][11]["name"] = "ChildFlags" +defs["structs"]["ImGuiNextWindowData"][11]["type"] = "ImGuiChildFlags" defs["structs"]["ImGuiNextWindowData"][12] = {} -defs["structs"]["ImGuiNextWindowData"][12]["name"] = "CollapsedVal" +defs["structs"]["ImGuiNextWindowData"][12]["name"] = "PosUndock" defs["structs"]["ImGuiNextWindowData"][12]["type"] = "bool" defs["structs"]["ImGuiNextWindowData"][13] = {} -defs["structs"]["ImGuiNextWindowData"][13]["name"] = "SizeConstraintRect" -defs["structs"]["ImGuiNextWindowData"][13]["type"] = "ImRect" +defs["structs"]["ImGuiNextWindowData"][13]["name"] = "CollapsedVal" +defs["structs"]["ImGuiNextWindowData"][13]["type"] = "bool" defs["structs"]["ImGuiNextWindowData"][14] = {} -defs["structs"]["ImGuiNextWindowData"][14]["name"] = "SizeCallback" -defs["structs"]["ImGuiNextWindowData"][14]["type"] = "ImGuiSizeCallback" +defs["structs"]["ImGuiNextWindowData"][14]["name"] = "SizeConstraintRect" +defs["structs"]["ImGuiNextWindowData"][14]["type"] = "ImRect" defs["structs"]["ImGuiNextWindowData"][15] = {} -defs["structs"]["ImGuiNextWindowData"][15]["name"] = "SizeCallbackUserData" -defs["structs"]["ImGuiNextWindowData"][15]["type"] = "void*" +defs["structs"]["ImGuiNextWindowData"][15]["name"] = "SizeCallback" +defs["structs"]["ImGuiNextWindowData"][15]["type"] = "ImGuiSizeCallback" defs["structs"]["ImGuiNextWindowData"][16] = {} -defs["structs"]["ImGuiNextWindowData"][16]["name"] = "BgAlphaVal" -defs["structs"]["ImGuiNextWindowData"][16]["type"] = "float" +defs["structs"]["ImGuiNextWindowData"][16]["name"] = "SizeCallbackUserData" +defs["structs"]["ImGuiNextWindowData"][16]["type"] = "void*" defs["structs"]["ImGuiNextWindowData"][17] = {} -defs["structs"]["ImGuiNextWindowData"][17]["name"] = "ViewportId" -defs["structs"]["ImGuiNextWindowData"][17]["type"] = "ImGuiID" +defs["structs"]["ImGuiNextWindowData"][17]["name"] = "BgAlphaVal" +defs["structs"]["ImGuiNextWindowData"][17]["type"] = "float" defs["structs"]["ImGuiNextWindowData"][18] = {} -defs["structs"]["ImGuiNextWindowData"][18]["name"] = "DockId" +defs["structs"]["ImGuiNextWindowData"][18]["name"] = "ViewportId" defs["structs"]["ImGuiNextWindowData"][18]["type"] = "ImGuiID" defs["structs"]["ImGuiNextWindowData"][19] = {} -defs["structs"]["ImGuiNextWindowData"][19]["name"] = "WindowClass" -defs["structs"]["ImGuiNextWindowData"][19]["type"] = "ImGuiWindowClass" +defs["structs"]["ImGuiNextWindowData"][19]["name"] = "DockId" +defs["structs"]["ImGuiNextWindowData"][19]["type"] = "ImGuiID" defs["structs"]["ImGuiNextWindowData"][20] = {} -defs["structs"]["ImGuiNextWindowData"][20]["name"] = "MenuBarOffsetMinVal" -defs["structs"]["ImGuiNextWindowData"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiNextWindowData"][20]["name"] = "WindowClass" +defs["structs"]["ImGuiNextWindowData"][20]["type"] = "ImGuiWindowClass" +defs["structs"]["ImGuiNextWindowData"][21] = {} +defs["structs"]["ImGuiNextWindowData"][21]["name"] = "MenuBarOffsetMinVal" +defs["structs"]["ImGuiNextWindowData"][21]["type"] = "ImVec2" +defs["structs"]["ImGuiNextWindowData"][22] = {} +defs["structs"]["ImGuiNextWindowData"][22]["name"] = "RefreshFlagsVal" +defs["structs"]["ImGuiNextWindowData"][22]["type"] = "ImGuiWindowRefreshFlags" defs["structs"]["ImGuiOldColumnData"] = {} defs["structs"]["ImGuiOldColumnData"][1] = {} defs["structs"]["ImGuiOldColumnData"][1]["name"] = "OffsetNorm" @@ -6048,82 +7005,109 @@ defs["structs"]["ImGuiPayload"][8]["name"] = "Delivery" defs["structs"]["ImGuiPayload"][8]["type"] = "bool" defs["structs"]["ImGuiPlatformIO"] = {} defs["structs"]["ImGuiPlatformIO"][1] = {} -defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_CreateWindow" -defs["structs"]["ImGuiPlatformIO"][1]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_GetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][1]["type"] = "const char*(*)(ImGuiContext* ctx)" defs["structs"]["ImGuiPlatformIO"][2] = {} -defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_DestroyWindow" -defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_SetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiContext* ctx,const char* text)" defs["structs"]["ImGuiPlatformIO"][3] = {} -defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ShowWindow" -defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ClipboardUserData" +defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][4] = {} -defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_SetWindowPos" -defs["structs"]["ImGuiPlatformIO"][4]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 pos)" +defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_OpenInShellFn" +defs["structs"]["ImGuiPlatformIO"][4]["type"] = "bool(*)(ImGuiContext* ctx,const char* path)" defs["structs"]["ImGuiPlatformIO"][5] = {} -defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_GetWindowPos" -defs["structs"]["ImGuiPlatformIO"][5]["type"] = "ImVec2(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_OpenInShellUserData" +defs["structs"]["ImGuiPlatformIO"][5]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][6] = {} -defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetWindowSize" -defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetImeDataFn" +defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" defs["structs"]["ImGuiPlatformIO"][7] = {} -defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_GetWindowSize" -defs["structs"]["ImGuiPlatformIO"][7]["type"] = "ImVec2(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_ImeUserData" +defs["structs"]["ImGuiPlatformIO"][7]["type"] = "void*" defs["structs"]["ImGuiPlatformIO"][8] = {} -defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_SetWindowFocus" -defs["structs"]["ImGuiPlatformIO"][8]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_LocaleDecimalPoint" +defs["structs"]["ImGuiPlatformIO"][8]["type"] = "ImWchar" defs["structs"]["ImGuiPlatformIO"][9] = {} -defs["structs"]["ImGuiPlatformIO"][9]["name"] = "Platform_GetWindowFocus" -defs["structs"]["ImGuiPlatformIO"][9]["type"] = "bool(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][9]["name"] = "Platform_CreateWindow" +defs["structs"]["ImGuiPlatformIO"][9]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][10] = {} -defs["structs"]["ImGuiPlatformIO"][10]["name"] = "Platform_GetWindowMinimized" -defs["structs"]["ImGuiPlatformIO"][10]["type"] = "bool(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][10]["name"] = "Platform_DestroyWindow" +defs["structs"]["ImGuiPlatformIO"][10]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][11] = {} -defs["structs"]["ImGuiPlatformIO"][11]["name"] = "Platform_SetWindowTitle" -defs["structs"]["ImGuiPlatformIO"][11]["type"] = "void(*)(ImGuiViewport* vp,const char* str)" +defs["structs"]["ImGuiPlatformIO"][11]["name"] = "Platform_ShowWindow" +defs["structs"]["ImGuiPlatformIO"][11]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][12] = {} -defs["structs"]["ImGuiPlatformIO"][12]["name"] = "Platform_SetWindowAlpha" -defs["structs"]["ImGuiPlatformIO"][12]["type"] = "void(*)(ImGuiViewport* vp,float alpha)" +defs["structs"]["ImGuiPlatformIO"][12]["name"] = "Platform_SetWindowPos" +defs["structs"]["ImGuiPlatformIO"][12]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 pos)" defs["structs"]["ImGuiPlatformIO"][13] = {} -defs["structs"]["ImGuiPlatformIO"][13]["name"] = "Platform_UpdateWindow" -defs["structs"]["ImGuiPlatformIO"][13]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][13]["name"] = "Platform_GetWindowPos" +defs["structs"]["ImGuiPlatformIO"][13]["type"] = "ImVec2(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][14] = {} -defs["structs"]["ImGuiPlatformIO"][14]["name"] = "Platform_RenderWindow" -defs["structs"]["ImGuiPlatformIO"][14]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][14]["name"] = "Platform_SetWindowSize" +defs["structs"]["ImGuiPlatformIO"][14]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" defs["structs"]["ImGuiPlatformIO"][15] = {} -defs["structs"]["ImGuiPlatformIO"][15]["name"] = "Platform_SwapBuffers" -defs["structs"]["ImGuiPlatformIO"][15]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][15]["name"] = "Platform_GetWindowSize" +defs["structs"]["ImGuiPlatformIO"][15]["type"] = "ImVec2(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][16] = {} -defs["structs"]["ImGuiPlatformIO"][16]["name"] = "Platform_GetWindowDpiScale" -defs["structs"]["ImGuiPlatformIO"][16]["type"] = "float(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][16]["name"] = "Platform_SetWindowFocus" +defs["structs"]["ImGuiPlatformIO"][16]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][17] = {} -defs["structs"]["ImGuiPlatformIO"][17]["name"] = "Platform_OnChangedViewport" -defs["structs"]["ImGuiPlatformIO"][17]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][17]["name"] = "Platform_GetWindowFocus" +defs["structs"]["ImGuiPlatformIO"][17]["type"] = "bool(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][18] = {} -defs["structs"]["ImGuiPlatformIO"][18]["name"] = "Platform_CreateVkSurface" -defs["structs"]["ImGuiPlatformIO"][18]["type"] = "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" +defs["structs"]["ImGuiPlatformIO"][18]["name"] = "Platform_GetWindowMinimized" +defs["structs"]["ImGuiPlatformIO"][18]["type"] = "bool(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][19] = {} -defs["structs"]["ImGuiPlatformIO"][19]["name"] = "Renderer_CreateWindow" -defs["structs"]["ImGuiPlatformIO"][19]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][19]["name"] = "Platform_SetWindowTitle" +defs["structs"]["ImGuiPlatformIO"][19]["type"] = "void(*)(ImGuiViewport* vp,const char* str)" defs["structs"]["ImGuiPlatformIO"][20] = {} -defs["structs"]["ImGuiPlatformIO"][20]["name"] = "Renderer_DestroyWindow" -defs["structs"]["ImGuiPlatformIO"][20]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][20]["name"] = "Platform_SetWindowAlpha" +defs["structs"]["ImGuiPlatformIO"][20]["type"] = "void(*)(ImGuiViewport* vp,float alpha)" defs["structs"]["ImGuiPlatformIO"][21] = {} -defs["structs"]["ImGuiPlatformIO"][21]["name"] = "Renderer_SetWindowSize" -defs["structs"]["ImGuiPlatformIO"][21]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][21]["name"] = "Platform_UpdateWindow" +defs["structs"]["ImGuiPlatformIO"][21]["type"] = "void(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][22] = {} -defs["structs"]["ImGuiPlatformIO"][22]["name"] = "Renderer_RenderWindow" +defs["structs"]["ImGuiPlatformIO"][22]["name"] = "Platform_RenderWindow" defs["structs"]["ImGuiPlatformIO"][22]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" defs["structs"]["ImGuiPlatformIO"][23] = {} -defs["structs"]["ImGuiPlatformIO"][23]["name"] = "Renderer_SwapBuffers" +defs["structs"]["ImGuiPlatformIO"][23]["name"] = "Platform_SwapBuffers" defs["structs"]["ImGuiPlatformIO"][23]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" defs["structs"]["ImGuiPlatformIO"][24] = {} -defs["structs"]["ImGuiPlatformIO"][24]["name"] = "Monitors" -defs["structs"]["ImGuiPlatformIO"][24]["template_type"] = "ImGuiPlatformMonitor" -defs["structs"]["ImGuiPlatformIO"][24]["type"] = "ImVector_ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][24]["name"] = "Platform_GetWindowDpiScale" +defs["structs"]["ImGuiPlatformIO"][24]["type"] = "float(*)(ImGuiViewport* vp)" defs["structs"]["ImGuiPlatformIO"][25] = {} -defs["structs"]["ImGuiPlatformIO"][25]["name"] = "Viewports" -defs["structs"]["ImGuiPlatformIO"][25]["template_type"] = "ImGuiViewport*" -defs["structs"]["ImGuiPlatformIO"][25]["type"] = "ImVector_ImGuiViewportPtr" +defs["structs"]["ImGuiPlatformIO"][25]["name"] = "Platform_OnChangedViewport" +defs["structs"]["ImGuiPlatformIO"][25]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][26] = {} +defs["structs"]["ImGuiPlatformIO"][26]["name"] = "Platform_GetWindowWorkAreaInsets" +defs["structs"]["ImGuiPlatformIO"][26]["type"] = "ImVec4(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][27] = {} +defs["structs"]["ImGuiPlatformIO"][27]["name"] = "Platform_CreateVkSurface" +defs["structs"]["ImGuiPlatformIO"][27]["type"] = "int(*)(ImGuiViewport* vp,ImU64 vk_inst,const void* vk_allocators,ImU64* out_vk_surface)" +defs["structs"]["ImGuiPlatformIO"][28] = {} +defs["structs"]["ImGuiPlatformIO"][28]["name"] = "Renderer_CreateWindow" +defs["structs"]["ImGuiPlatformIO"][28]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][29] = {} +defs["structs"]["ImGuiPlatformIO"][29]["name"] = "Renderer_DestroyWindow" +defs["structs"]["ImGuiPlatformIO"][29]["type"] = "void(*)(ImGuiViewport* vp)" +defs["structs"]["ImGuiPlatformIO"][30] = {} +defs["structs"]["ImGuiPlatformIO"][30]["name"] = "Renderer_SetWindowSize" +defs["structs"]["ImGuiPlatformIO"][30]["type"] = "void(*)(ImGuiViewport* vp,ImVec2 size)" +defs["structs"]["ImGuiPlatformIO"][31] = {} +defs["structs"]["ImGuiPlatformIO"][31]["name"] = "Renderer_RenderWindow" +defs["structs"]["ImGuiPlatformIO"][31]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][32] = {} +defs["structs"]["ImGuiPlatformIO"][32]["name"] = "Renderer_SwapBuffers" +defs["structs"]["ImGuiPlatformIO"][32]["type"] = "void(*)(ImGuiViewport* vp,void* render_arg)" +defs["structs"]["ImGuiPlatformIO"][33] = {} +defs["structs"]["ImGuiPlatformIO"][33]["name"] = "Monitors" +defs["structs"]["ImGuiPlatformIO"][33]["template_type"] = "ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][33]["type"] = "ImVector_ImGuiPlatformMonitor" +defs["structs"]["ImGuiPlatformIO"][34] = {} +defs["structs"]["ImGuiPlatformIO"][34]["name"] = "Viewports" +defs["structs"]["ImGuiPlatformIO"][34]["template_type"] = "ImGuiViewport*" +defs["structs"]["ImGuiPlatformIO"][34]["type"] = "ImVector_ImGuiViewportPtr" defs["structs"]["ImGuiPlatformImeData"] = {} defs["structs"]["ImGuiPlatformImeData"][1] = {} defs["structs"]["ImGuiPlatformImeData"][1]["name"] = "WantVisible" @@ -6150,6 +7134,9 @@ defs["structs"]["ImGuiPlatformMonitor"][4]["type"] = "ImVec2" defs["structs"]["ImGuiPlatformMonitor"][5] = {} defs["structs"]["ImGuiPlatformMonitor"][5]["name"] = "DpiScale" defs["structs"]["ImGuiPlatformMonitor"][5]["type"] = "float" +defs["structs"]["ImGuiPlatformMonitor"][6] = {} +defs["structs"]["ImGuiPlatformMonitor"][6]["name"] = "PlatformHandle" +defs["structs"]["ImGuiPlatformMonitor"][6]["type"] = "void*" defs["structs"]["ImGuiPopupData"] = {} defs["structs"]["ImGuiPopupData"][1] = {} defs["structs"]["ImGuiPopupData"][1]["name"] = "PopupId" @@ -6158,7 +7145,7 @@ defs["structs"]["ImGuiPopupData"][2] = {} defs["structs"]["ImGuiPopupData"][2]["name"] = "Window" defs["structs"]["ImGuiPopupData"][2]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiPopupData"][3] = {} -defs["structs"]["ImGuiPopupData"][3]["name"] = "BackupNavWindow" +defs["structs"]["ImGuiPopupData"][3]["name"] = "RestoreNavWindow" defs["structs"]["ImGuiPopupData"][3]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiPopupData"][4] = {} defs["structs"]["ImGuiPopupData"][4]["name"] = "ParentNavLayer" @@ -6182,6 +7169,48 @@ defs["structs"]["ImGuiPtrOrIndex"][1]["type"] = "void*" defs["structs"]["ImGuiPtrOrIndex"][2] = {} defs["structs"]["ImGuiPtrOrIndex"][2]["name"] = "Index" defs["structs"]["ImGuiPtrOrIndex"][2]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1]["name"] = "Size" +defs["structs"]["ImGuiSelectionBasicStorage"][1]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][2] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][2]["name"] = "PreserveOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionBasicStorage"][3] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][3]["name"] = "UserData" +defs["structs"]["ImGuiSelectionBasicStorage"][3]["type"] = "void*" +defs["structs"]["ImGuiSelectionBasicStorage"][4] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][4]["name"] = "AdapterIndexToStorageId" +defs["structs"]["ImGuiSelectionBasicStorage"][4]["type"] = "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" +defs["structs"]["ImGuiSelectionBasicStorage"][5] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][5]["name"] = "_SelectionOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][5]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][6] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][6]["name"] = "_Storage" +defs["structs"]["ImGuiSelectionBasicStorage"][6]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiSelectionExternalStorage"] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1]["name"] = "UserData" +defs["structs"]["ImGuiSelectionExternalStorage"][1]["type"] = "void*" +defs["structs"]["ImGuiSelectionExternalStorage"][2] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][2]["name"] = "AdapterSetItemSelected" +defs["structs"]["ImGuiSelectionExternalStorage"][2]["type"] = "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" +defs["structs"]["ImGuiSelectionRequest"] = {} +defs["structs"]["ImGuiSelectionRequest"][1] = {} +defs["structs"]["ImGuiSelectionRequest"][1]["name"] = "Type" +defs["structs"]["ImGuiSelectionRequest"][1]["type"] = "ImGuiSelectionRequestType" +defs["structs"]["ImGuiSelectionRequest"][2] = {} +defs["structs"]["ImGuiSelectionRequest"][2]["name"] = "Selected" +defs["structs"]["ImGuiSelectionRequest"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionRequest"][3] = {} +defs["structs"]["ImGuiSelectionRequest"][3]["name"] = "RangeDirection" +defs["structs"]["ImGuiSelectionRequest"][3]["type"] = "ImS8" +defs["structs"]["ImGuiSelectionRequest"][4] = {} +defs["structs"]["ImGuiSelectionRequest"][4]["name"] = "RangeFirstItem" +defs["structs"]["ImGuiSelectionRequest"][4]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiSelectionRequest"][5] = {} +defs["structs"]["ImGuiSelectionRequest"][5]["name"] = "RangeLastItem" +defs["structs"]["ImGuiSelectionRequest"][5]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiSettingsHandler"] = {} defs["structs"]["ImGuiSettingsHandler"][1] = {} defs["structs"]["ImGuiSettingsHandler"][1]["name"] = "TypeName" @@ -6279,26 +7308,6 @@ defs["structs"]["ImGuiStackSizes"][8]["type"] = "short" defs["structs"]["ImGuiStackSizes"][9] = {} defs["structs"]["ImGuiStackSizes"][9]["name"] = "SizeOfDisabledStack" defs["structs"]["ImGuiStackSizes"][9]["type"] = "short" -defs["structs"]["ImGuiStackTool"] = {} -defs["structs"]["ImGuiStackTool"][1] = {} -defs["structs"]["ImGuiStackTool"][1]["name"] = "LastActiveFrame" -defs["structs"]["ImGuiStackTool"][1]["type"] = "int" -defs["structs"]["ImGuiStackTool"][2] = {} -defs["structs"]["ImGuiStackTool"][2]["name"] = "StackLevel" -defs["structs"]["ImGuiStackTool"][2]["type"] = "int" -defs["structs"]["ImGuiStackTool"][3] = {} -defs["structs"]["ImGuiStackTool"][3]["name"] = "QueryId" -defs["structs"]["ImGuiStackTool"][3]["type"] = "ImGuiID" -defs["structs"]["ImGuiStackTool"][4] = {} -defs["structs"]["ImGuiStackTool"][4]["name"] = "Results" -defs["structs"]["ImGuiStackTool"][4]["template_type"] = "ImGuiStackLevelInfo" -defs["structs"]["ImGuiStackTool"][4]["type"] = "ImVector_ImGuiStackLevelInfo" -defs["structs"]["ImGuiStackTool"][5] = {} -defs["structs"]["ImGuiStackTool"][5]["name"] = "CopyToClipboardOnCtrlC" -defs["structs"]["ImGuiStackTool"][5]["type"] = "bool" -defs["structs"]["ImGuiStackTool"][6] = {} -defs["structs"]["ImGuiStackTool"][6]["name"] = "CopyToClipboardLastTime" -defs["structs"]["ImGuiStackTool"][6]["type"] = "float" defs["structs"]["ImGuiStorage"] = {} defs["structs"]["ImGuiStorage"][1] = {} defs["structs"]["ImGuiStorage"][1]["name"] = "Data" @@ -6400,42 +7409,81 @@ defs["structs"]["ImGuiStyle"][29] = {} defs["structs"]["ImGuiStyle"][29]["name"] = "TabMinWidthForCloseButton" defs["structs"]["ImGuiStyle"][29]["type"] = "float" defs["structs"]["ImGuiStyle"][30] = {} -defs["structs"]["ImGuiStyle"][30]["name"] = "ColorButtonPosition" -defs["structs"]["ImGuiStyle"][30]["type"] = "ImGuiDir" +defs["structs"]["ImGuiStyle"][30]["name"] = "TabBarBorderSize" +defs["structs"]["ImGuiStyle"][30]["type"] = "float" defs["structs"]["ImGuiStyle"][31] = {} -defs["structs"]["ImGuiStyle"][31]["name"] = "ButtonTextAlign" -defs["structs"]["ImGuiStyle"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][31]["name"] = "TabBarOverlineSize" +defs["structs"]["ImGuiStyle"][31]["type"] = "float" defs["structs"]["ImGuiStyle"][32] = {} -defs["structs"]["ImGuiStyle"][32]["name"] = "SelectableTextAlign" -defs["structs"]["ImGuiStyle"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][32]["name"] = "TableAngledHeadersAngle" +defs["structs"]["ImGuiStyle"][32]["type"] = "float" defs["structs"]["ImGuiStyle"][33] = {} -defs["structs"]["ImGuiStyle"][33]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][33]["name"] = "TableAngledHeadersTextAlign" defs["structs"]["ImGuiStyle"][33]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][34] = {} -defs["structs"]["ImGuiStyle"][34]["name"] = "DisplaySafeAreaPadding" -defs["structs"]["ImGuiStyle"][34]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][34]["name"] = "ColorButtonPosition" +defs["structs"]["ImGuiStyle"][34]["type"] = "ImGuiDir" defs["structs"]["ImGuiStyle"][35] = {} -defs["structs"]["ImGuiStyle"][35]["name"] = "MouseCursorScale" -defs["structs"]["ImGuiStyle"][35]["type"] = "float" +defs["structs"]["ImGuiStyle"][35]["name"] = "ButtonTextAlign" +defs["structs"]["ImGuiStyle"][35]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][36] = {} -defs["structs"]["ImGuiStyle"][36]["name"] = "AntiAliasedLines" -defs["structs"]["ImGuiStyle"][36]["type"] = "bool" +defs["structs"]["ImGuiStyle"][36]["name"] = "SelectableTextAlign" +defs["structs"]["ImGuiStyle"][36]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][37] = {} -defs["structs"]["ImGuiStyle"][37]["name"] = "AntiAliasedLinesUseTex" -defs["structs"]["ImGuiStyle"][37]["type"] = "bool" +defs["structs"]["ImGuiStyle"][37]["name"] = "SeparatorTextBorderSize" +defs["structs"]["ImGuiStyle"][37]["type"] = "float" defs["structs"]["ImGuiStyle"][38] = {} -defs["structs"]["ImGuiStyle"][38]["name"] = "AntiAliasedFill" -defs["structs"]["ImGuiStyle"][38]["type"] = "bool" +defs["structs"]["ImGuiStyle"][38]["name"] = "SeparatorTextAlign" +defs["structs"]["ImGuiStyle"][38]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][39] = {} -defs["structs"]["ImGuiStyle"][39]["name"] = "CurveTessellationTol" -defs["structs"]["ImGuiStyle"][39]["type"] = "float" +defs["structs"]["ImGuiStyle"][39]["name"] = "SeparatorTextPadding" +defs["structs"]["ImGuiStyle"][39]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][40] = {} -defs["structs"]["ImGuiStyle"][40]["name"] = "CircleTessellationMaxError" -defs["structs"]["ImGuiStyle"][40]["type"] = "float" +defs["structs"]["ImGuiStyle"][40]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][40]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][41] = {} -defs["structs"]["ImGuiStyle"][41]["name"] = "Colors[ImGuiCol_COUNT]" -defs["structs"]["ImGuiStyle"][41]["size"] = 55 -defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][41]["name"] = "DisplaySafeAreaPadding" +defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][42] = {} +defs["structs"]["ImGuiStyle"][42]["name"] = "DockingSeparatorSize" +defs["structs"]["ImGuiStyle"][42]["type"] = "float" +defs["structs"]["ImGuiStyle"][43] = {} +defs["structs"]["ImGuiStyle"][43]["name"] = "MouseCursorScale" +defs["structs"]["ImGuiStyle"][43]["type"] = "float" +defs["structs"]["ImGuiStyle"][44] = {} +defs["structs"]["ImGuiStyle"][44]["name"] = "AntiAliasedLines" +defs["structs"]["ImGuiStyle"][44]["type"] = "bool" +defs["structs"]["ImGuiStyle"][45] = {} +defs["structs"]["ImGuiStyle"][45]["name"] = "AntiAliasedLinesUseTex" +defs["structs"]["ImGuiStyle"][45]["type"] = "bool" +defs["structs"]["ImGuiStyle"][46] = {} +defs["structs"]["ImGuiStyle"][46]["name"] = "AntiAliasedFill" +defs["structs"]["ImGuiStyle"][46]["type"] = "bool" +defs["structs"]["ImGuiStyle"][47] = {} +defs["structs"]["ImGuiStyle"][47]["name"] = "CurveTessellationTol" +defs["structs"]["ImGuiStyle"][47]["type"] = "float" +defs["structs"]["ImGuiStyle"][48] = {} +defs["structs"]["ImGuiStyle"][48]["name"] = "CircleTessellationMaxError" +defs["structs"]["ImGuiStyle"][48]["type"] = "float" +defs["structs"]["ImGuiStyle"][49] = {} +defs["structs"]["ImGuiStyle"][49]["name"] = "Colors[ImGuiCol_COUNT]" +defs["structs"]["ImGuiStyle"][49]["size"] = 58 +defs["structs"]["ImGuiStyle"][49]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][50] = {} +defs["structs"]["ImGuiStyle"][50]["name"] = "HoverStationaryDelay" +defs["structs"]["ImGuiStyle"][50]["type"] = "float" +defs["structs"]["ImGuiStyle"][51] = {} +defs["structs"]["ImGuiStyle"][51]["name"] = "HoverDelayShort" +defs["structs"]["ImGuiStyle"][51]["type"] = "float" +defs["structs"]["ImGuiStyle"][52] = {} +defs["structs"]["ImGuiStyle"][52]["name"] = "HoverDelayNormal" +defs["structs"]["ImGuiStyle"][52]["type"] = "float" +defs["structs"]["ImGuiStyle"][53] = {} +defs["structs"]["ImGuiStyle"][53]["name"] = "HoverFlagsForTooltipMouse" +defs["structs"]["ImGuiStyle"][53]["type"] = "ImGuiHoveredFlags" +defs["structs"]["ImGuiStyle"][54] = {} +defs["structs"]["ImGuiStyle"][54]["name"] = "HoverFlagsForTooltipNav" +defs["structs"]["ImGuiStyle"][54]["type"] = "ImGuiHoveredFlags" defs["structs"]["ImGuiStyleMod"] = {} defs["structs"]["ImGuiStyleMod"][1] = {} defs["structs"]["ImGuiStyleMod"][1]["name"] = "VarIdx" @@ -6503,41 +7551,47 @@ defs["structs"]["ImGuiTabBar"][19] = {} defs["structs"]["ImGuiTabBar"][19]["name"] = "ScrollingRectMaxX" defs["structs"]["ImGuiTabBar"][19]["type"] = "float" defs["structs"]["ImGuiTabBar"][20] = {} -defs["structs"]["ImGuiTabBar"][20]["name"] = "ReorderRequestTabId" -defs["structs"]["ImGuiTabBar"][20]["type"] = "ImGuiID" +defs["structs"]["ImGuiTabBar"][20]["name"] = "SeparatorMinX" +defs["structs"]["ImGuiTabBar"][20]["type"] = "float" defs["structs"]["ImGuiTabBar"][21] = {} -defs["structs"]["ImGuiTabBar"][21]["name"] = "ReorderRequestOffset" -defs["structs"]["ImGuiTabBar"][21]["type"] = "ImS16" +defs["structs"]["ImGuiTabBar"][21]["name"] = "SeparatorMaxX" +defs["structs"]["ImGuiTabBar"][21]["type"] = "float" defs["structs"]["ImGuiTabBar"][22] = {} -defs["structs"]["ImGuiTabBar"][22]["name"] = "BeginCount" -defs["structs"]["ImGuiTabBar"][22]["type"] = "ImS8" +defs["structs"]["ImGuiTabBar"][22]["name"] = "ReorderRequestTabId" +defs["structs"]["ImGuiTabBar"][22]["type"] = "ImGuiID" defs["structs"]["ImGuiTabBar"][23] = {} -defs["structs"]["ImGuiTabBar"][23]["name"] = "WantLayout" -defs["structs"]["ImGuiTabBar"][23]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][23]["name"] = "ReorderRequestOffset" +defs["structs"]["ImGuiTabBar"][23]["type"] = "ImS16" defs["structs"]["ImGuiTabBar"][24] = {} -defs["structs"]["ImGuiTabBar"][24]["name"] = "VisibleTabWasSubmitted" -defs["structs"]["ImGuiTabBar"][24]["type"] = "bool" +defs["structs"]["ImGuiTabBar"][24]["name"] = "BeginCount" +defs["structs"]["ImGuiTabBar"][24]["type"] = "ImS8" defs["structs"]["ImGuiTabBar"][25] = {} -defs["structs"]["ImGuiTabBar"][25]["name"] = "TabsAddedNew" +defs["structs"]["ImGuiTabBar"][25]["name"] = "WantLayout" defs["structs"]["ImGuiTabBar"][25]["type"] = "bool" defs["structs"]["ImGuiTabBar"][26] = {} -defs["structs"]["ImGuiTabBar"][26]["name"] = "TabsActiveCount" -defs["structs"]["ImGuiTabBar"][26]["type"] = "ImS16" +defs["structs"]["ImGuiTabBar"][26]["name"] = "VisibleTabWasSubmitted" +defs["structs"]["ImGuiTabBar"][26]["type"] = "bool" defs["structs"]["ImGuiTabBar"][27] = {} -defs["structs"]["ImGuiTabBar"][27]["name"] = "LastTabItemIdx" -defs["structs"]["ImGuiTabBar"][27]["type"] = "ImS16" +defs["structs"]["ImGuiTabBar"][27]["name"] = "TabsAddedNew" +defs["structs"]["ImGuiTabBar"][27]["type"] = "bool" defs["structs"]["ImGuiTabBar"][28] = {} -defs["structs"]["ImGuiTabBar"][28]["name"] = "ItemSpacingY" -defs["structs"]["ImGuiTabBar"][28]["type"] = "float" +defs["structs"]["ImGuiTabBar"][28]["name"] = "TabsActiveCount" +defs["structs"]["ImGuiTabBar"][28]["type"] = "ImS16" defs["structs"]["ImGuiTabBar"][29] = {} -defs["structs"]["ImGuiTabBar"][29]["name"] = "FramePadding" -defs["structs"]["ImGuiTabBar"][29]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][29]["name"] = "LastTabItemIdx" +defs["structs"]["ImGuiTabBar"][29]["type"] = "ImS16" defs["structs"]["ImGuiTabBar"][30] = {} -defs["structs"]["ImGuiTabBar"][30]["name"] = "BackupCursorPos" -defs["structs"]["ImGuiTabBar"][30]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][30]["name"] = "ItemSpacingY" +defs["structs"]["ImGuiTabBar"][30]["type"] = "float" defs["structs"]["ImGuiTabBar"][31] = {} -defs["structs"]["ImGuiTabBar"][31]["name"] = "TabsNames" -defs["structs"]["ImGuiTabBar"][31]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiTabBar"][31]["name"] = "FramePadding" +defs["structs"]["ImGuiTabBar"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][32] = {} +defs["structs"]["ImGuiTabBar"][32]["name"] = "BackupCursorPos" +defs["structs"]["ImGuiTabBar"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiTabBar"][33] = {} +defs["structs"]["ImGuiTabBar"][33]["name"] = "TabsNames" +defs["structs"]["ImGuiTabBar"][33]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiTabItem"] = {} defs["structs"]["ImGuiTabItem"][1] = {} defs["structs"]["ImGuiTabItem"][1]["name"] = "ID" @@ -6605,48 +7659,48 @@ defs["structs"]["ImGuiTable"][7]["template_type"] = "ImGuiTableCellData" defs["structs"]["ImGuiTable"][7]["type"] = "ImSpan_ImGuiTableCellData" defs["structs"]["ImGuiTable"][8] = {} defs["structs"]["ImGuiTable"][8]["name"] = "EnabledMaskByDisplayOrder" -defs["structs"]["ImGuiTable"][8]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][8]["type"] = "ImBitArrayPtr" defs["structs"]["ImGuiTable"][9] = {} defs["structs"]["ImGuiTable"][9]["name"] = "EnabledMaskByIndex" -defs["structs"]["ImGuiTable"][9]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][9]["type"] = "ImBitArrayPtr" defs["structs"]["ImGuiTable"][10] = {} defs["structs"]["ImGuiTable"][10]["name"] = "VisibleMaskByIndex" -defs["structs"]["ImGuiTable"][10]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][10]["type"] = "ImBitArrayPtr" defs["structs"]["ImGuiTable"][11] = {} -defs["structs"]["ImGuiTable"][11]["name"] = "RequestOutputMaskByIndex" -defs["structs"]["ImGuiTable"][11]["type"] = "ImU64" +defs["structs"]["ImGuiTable"][11]["name"] = "SettingsLoadedFlags" +defs["structs"]["ImGuiTable"][11]["type"] = "ImGuiTableFlags" defs["structs"]["ImGuiTable"][12] = {} -defs["structs"]["ImGuiTable"][12]["name"] = "SettingsLoadedFlags" -defs["structs"]["ImGuiTable"][12]["type"] = "ImGuiTableFlags" +defs["structs"]["ImGuiTable"][12]["name"] = "SettingsOffset" +defs["structs"]["ImGuiTable"][12]["type"] = "int" defs["structs"]["ImGuiTable"][13] = {} -defs["structs"]["ImGuiTable"][13]["name"] = "SettingsOffset" +defs["structs"]["ImGuiTable"][13]["name"] = "LastFrameActive" defs["structs"]["ImGuiTable"][13]["type"] = "int" defs["structs"]["ImGuiTable"][14] = {} -defs["structs"]["ImGuiTable"][14]["name"] = "LastFrameActive" +defs["structs"]["ImGuiTable"][14]["name"] = "ColumnsCount" defs["structs"]["ImGuiTable"][14]["type"] = "int" defs["structs"]["ImGuiTable"][15] = {} -defs["structs"]["ImGuiTable"][15]["name"] = "ColumnsCount" +defs["structs"]["ImGuiTable"][15]["name"] = "CurrentRow" defs["structs"]["ImGuiTable"][15]["type"] = "int" defs["structs"]["ImGuiTable"][16] = {} -defs["structs"]["ImGuiTable"][16]["name"] = "CurrentRow" +defs["structs"]["ImGuiTable"][16]["name"] = "CurrentColumn" defs["structs"]["ImGuiTable"][16]["type"] = "int" defs["structs"]["ImGuiTable"][17] = {} -defs["structs"]["ImGuiTable"][17]["name"] = "CurrentColumn" -defs["structs"]["ImGuiTable"][17]["type"] = "int" +defs["structs"]["ImGuiTable"][17]["name"] = "InstanceCurrent" +defs["structs"]["ImGuiTable"][17]["type"] = "ImS16" defs["structs"]["ImGuiTable"][18] = {} -defs["structs"]["ImGuiTable"][18]["name"] = "InstanceCurrent" +defs["structs"]["ImGuiTable"][18]["name"] = "InstanceInteracted" defs["structs"]["ImGuiTable"][18]["type"] = "ImS16" defs["structs"]["ImGuiTable"][19] = {} -defs["structs"]["ImGuiTable"][19]["name"] = "InstanceInteracted" -defs["structs"]["ImGuiTable"][19]["type"] = "ImS16" +defs["structs"]["ImGuiTable"][19]["name"] = "RowPosY1" +defs["structs"]["ImGuiTable"][19]["type"] = "float" defs["structs"]["ImGuiTable"][20] = {} -defs["structs"]["ImGuiTable"][20]["name"] = "RowPosY1" +defs["structs"]["ImGuiTable"][20]["name"] = "RowPosY2" defs["structs"]["ImGuiTable"][20]["type"] = "float" defs["structs"]["ImGuiTable"][21] = {} -defs["structs"]["ImGuiTable"][21]["name"] = "RowPosY2" +defs["structs"]["ImGuiTable"][21]["name"] = "RowMinHeight" defs["structs"]["ImGuiTable"][21]["type"] = "float" defs["structs"]["ImGuiTable"][22] = {} -defs["structs"]["ImGuiTable"][22]["name"] = "RowMinHeight" +defs["structs"]["ImGuiTable"][22]["name"] = "RowCellPaddingY" defs["structs"]["ImGuiTable"][22]["type"] = "float" defs["structs"]["ImGuiTable"][23] = {} defs["structs"]["ImGuiTable"][23]["name"] = "RowTextBaseline" @@ -6694,217 +7748,235 @@ defs["structs"]["ImGuiTable"][36] = {} defs["structs"]["ImGuiTable"][36]["name"] = "CellPaddingX" defs["structs"]["ImGuiTable"][36]["type"] = "float" defs["structs"]["ImGuiTable"][37] = {} -defs["structs"]["ImGuiTable"][37]["name"] = "CellPaddingY" +defs["structs"]["ImGuiTable"][37]["name"] = "CellSpacingX1" defs["structs"]["ImGuiTable"][37]["type"] = "float" defs["structs"]["ImGuiTable"][38] = {} -defs["structs"]["ImGuiTable"][38]["name"] = "CellSpacingX1" +defs["structs"]["ImGuiTable"][38]["name"] = "CellSpacingX2" defs["structs"]["ImGuiTable"][38]["type"] = "float" defs["structs"]["ImGuiTable"][39] = {} -defs["structs"]["ImGuiTable"][39]["name"] = "CellSpacingX2" +defs["structs"]["ImGuiTable"][39]["name"] = "InnerWidth" defs["structs"]["ImGuiTable"][39]["type"] = "float" defs["structs"]["ImGuiTable"][40] = {} -defs["structs"]["ImGuiTable"][40]["name"] = "InnerWidth" +defs["structs"]["ImGuiTable"][40]["name"] = "ColumnsGivenWidth" defs["structs"]["ImGuiTable"][40]["type"] = "float" defs["structs"]["ImGuiTable"][41] = {} -defs["structs"]["ImGuiTable"][41]["name"] = "ColumnsGivenWidth" +defs["structs"]["ImGuiTable"][41]["name"] = "ColumnsAutoFitWidth" defs["structs"]["ImGuiTable"][41]["type"] = "float" defs["structs"]["ImGuiTable"][42] = {} -defs["structs"]["ImGuiTable"][42]["name"] = "ColumnsAutoFitWidth" +defs["structs"]["ImGuiTable"][42]["name"] = "ColumnsStretchSumWeights" defs["structs"]["ImGuiTable"][42]["type"] = "float" defs["structs"]["ImGuiTable"][43] = {} -defs["structs"]["ImGuiTable"][43]["name"] = "ColumnsStretchSumWeights" +defs["structs"]["ImGuiTable"][43]["name"] = "ResizedColumnNextWidth" defs["structs"]["ImGuiTable"][43]["type"] = "float" defs["structs"]["ImGuiTable"][44] = {} -defs["structs"]["ImGuiTable"][44]["name"] = "ResizedColumnNextWidth" +defs["structs"]["ImGuiTable"][44]["name"] = "ResizeLockMinContentsX2" defs["structs"]["ImGuiTable"][44]["type"] = "float" defs["structs"]["ImGuiTable"][45] = {} -defs["structs"]["ImGuiTable"][45]["name"] = "ResizeLockMinContentsX2" +defs["structs"]["ImGuiTable"][45]["name"] = "RefScale" defs["structs"]["ImGuiTable"][45]["type"] = "float" defs["structs"]["ImGuiTable"][46] = {} -defs["structs"]["ImGuiTable"][46]["name"] = "RefScale" +defs["structs"]["ImGuiTable"][46]["name"] = "AngledHeadersHeight" defs["structs"]["ImGuiTable"][46]["type"] = "float" defs["structs"]["ImGuiTable"][47] = {} -defs["structs"]["ImGuiTable"][47]["name"] = "OuterRect" -defs["structs"]["ImGuiTable"][47]["type"] = "ImRect" +defs["structs"]["ImGuiTable"][47]["name"] = "AngledHeadersSlope" +defs["structs"]["ImGuiTable"][47]["type"] = "float" defs["structs"]["ImGuiTable"][48] = {} -defs["structs"]["ImGuiTable"][48]["name"] = "InnerRect" +defs["structs"]["ImGuiTable"][48]["name"] = "OuterRect" defs["structs"]["ImGuiTable"][48]["type"] = "ImRect" defs["structs"]["ImGuiTable"][49] = {} -defs["structs"]["ImGuiTable"][49]["name"] = "WorkRect" +defs["structs"]["ImGuiTable"][49]["name"] = "InnerRect" defs["structs"]["ImGuiTable"][49]["type"] = "ImRect" defs["structs"]["ImGuiTable"][50] = {} -defs["structs"]["ImGuiTable"][50]["name"] = "InnerClipRect" +defs["structs"]["ImGuiTable"][50]["name"] = "WorkRect" defs["structs"]["ImGuiTable"][50]["type"] = "ImRect" defs["structs"]["ImGuiTable"][51] = {} -defs["structs"]["ImGuiTable"][51]["name"] = "BgClipRect" +defs["structs"]["ImGuiTable"][51]["name"] = "InnerClipRect" defs["structs"]["ImGuiTable"][51]["type"] = "ImRect" defs["structs"]["ImGuiTable"][52] = {} -defs["structs"]["ImGuiTable"][52]["name"] = "Bg0ClipRectForDrawCmd" +defs["structs"]["ImGuiTable"][52]["name"] = "BgClipRect" defs["structs"]["ImGuiTable"][52]["type"] = "ImRect" defs["structs"]["ImGuiTable"][53] = {} -defs["structs"]["ImGuiTable"][53]["name"] = "Bg2ClipRectForDrawCmd" +defs["structs"]["ImGuiTable"][53]["name"] = "Bg0ClipRectForDrawCmd" defs["structs"]["ImGuiTable"][53]["type"] = "ImRect" defs["structs"]["ImGuiTable"][54] = {} -defs["structs"]["ImGuiTable"][54]["name"] = "HostClipRect" +defs["structs"]["ImGuiTable"][54]["name"] = "Bg2ClipRectForDrawCmd" defs["structs"]["ImGuiTable"][54]["type"] = "ImRect" defs["structs"]["ImGuiTable"][55] = {} -defs["structs"]["ImGuiTable"][55]["name"] = "HostBackupInnerClipRect" +defs["structs"]["ImGuiTable"][55]["name"] = "HostClipRect" defs["structs"]["ImGuiTable"][55]["type"] = "ImRect" defs["structs"]["ImGuiTable"][56] = {} -defs["structs"]["ImGuiTable"][56]["name"] = "OuterWindow" -defs["structs"]["ImGuiTable"][56]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiTable"][56]["name"] = "HostBackupInnerClipRect" +defs["structs"]["ImGuiTable"][56]["type"] = "ImRect" defs["structs"]["ImGuiTable"][57] = {} -defs["structs"]["ImGuiTable"][57]["name"] = "InnerWindow" +defs["structs"]["ImGuiTable"][57]["name"] = "OuterWindow" defs["structs"]["ImGuiTable"][57]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiTable"][58] = {} -defs["structs"]["ImGuiTable"][58]["name"] = "ColumnsNames" -defs["structs"]["ImGuiTable"][58]["type"] = "ImGuiTextBuffer" +defs["structs"]["ImGuiTable"][58]["name"] = "InnerWindow" +defs["structs"]["ImGuiTable"][58]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiTable"][59] = {} -defs["structs"]["ImGuiTable"][59]["name"] = "DrawSplitter" -defs["structs"]["ImGuiTable"][59]["type"] = "ImDrawListSplitter*" +defs["structs"]["ImGuiTable"][59]["name"] = "ColumnsNames" +defs["structs"]["ImGuiTable"][59]["type"] = "ImGuiTextBuffer" defs["structs"]["ImGuiTable"][60] = {} -defs["structs"]["ImGuiTable"][60]["name"] = "InstanceDataFirst" -defs["structs"]["ImGuiTable"][60]["type"] = "ImGuiTableInstanceData" +defs["structs"]["ImGuiTable"][60]["name"] = "DrawSplitter" +defs["structs"]["ImGuiTable"][60]["type"] = "ImDrawListSplitter*" defs["structs"]["ImGuiTable"][61] = {} -defs["structs"]["ImGuiTable"][61]["name"] = "InstanceDataExtra" -defs["structs"]["ImGuiTable"][61]["template_type"] = "ImGuiTableInstanceData" -defs["structs"]["ImGuiTable"][61]["type"] = "ImVector_ImGuiTableInstanceData" +defs["structs"]["ImGuiTable"][61]["name"] = "InstanceDataFirst" +defs["structs"]["ImGuiTable"][61]["type"] = "ImGuiTableInstanceData" defs["structs"]["ImGuiTable"][62] = {} -defs["structs"]["ImGuiTable"][62]["name"] = "SortSpecsSingle" -defs["structs"]["ImGuiTable"][62]["type"] = "ImGuiTableColumnSortSpecs" +defs["structs"]["ImGuiTable"][62]["name"] = "InstanceDataExtra" +defs["structs"]["ImGuiTable"][62]["template_type"] = "ImGuiTableInstanceData" +defs["structs"]["ImGuiTable"][62]["type"] = "ImVector_ImGuiTableInstanceData" defs["structs"]["ImGuiTable"][63] = {} -defs["structs"]["ImGuiTable"][63]["name"] = "SortSpecsMulti" -defs["structs"]["ImGuiTable"][63]["template_type"] = "ImGuiTableColumnSortSpecs" -defs["structs"]["ImGuiTable"][63]["type"] = "ImVector_ImGuiTableColumnSortSpecs" +defs["structs"]["ImGuiTable"][63]["name"] = "SortSpecsSingle" +defs["structs"]["ImGuiTable"][63]["type"] = "ImGuiTableColumnSortSpecs" defs["structs"]["ImGuiTable"][64] = {} -defs["structs"]["ImGuiTable"][64]["name"] = "SortSpecs" -defs["structs"]["ImGuiTable"][64]["type"] = "ImGuiTableSortSpecs" +defs["structs"]["ImGuiTable"][64]["name"] = "SortSpecsMulti" +defs["structs"]["ImGuiTable"][64]["template_type"] = "ImGuiTableColumnSortSpecs" +defs["structs"]["ImGuiTable"][64]["type"] = "ImVector_ImGuiTableColumnSortSpecs" defs["structs"]["ImGuiTable"][65] = {} -defs["structs"]["ImGuiTable"][65]["name"] = "SortSpecsCount" -defs["structs"]["ImGuiTable"][65]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTable"][65]["name"] = "SortSpecs" +defs["structs"]["ImGuiTable"][65]["type"] = "ImGuiTableSortSpecs" defs["structs"]["ImGuiTable"][66] = {} -defs["structs"]["ImGuiTable"][66]["name"] = "ColumnsEnabledCount" +defs["structs"]["ImGuiTable"][66]["name"] = "SortSpecsCount" defs["structs"]["ImGuiTable"][66]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][67] = {} -defs["structs"]["ImGuiTable"][67]["name"] = "ColumnsEnabledFixedCount" +defs["structs"]["ImGuiTable"][67]["name"] = "ColumnsEnabledCount" defs["structs"]["ImGuiTable"][67]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][68] = {} -defs["structs"]["ImGuiTable"][68]["name"] = "DeclColumnsCount" +defs["structs"]["ImGuiTable"][68]["name"] = "ColumnsEnabledFixedCount" defs["structs"]["ImGuiTable"][68]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][69] = {} -defs["structs"]["ImGuiTable"][69]["name"] = "HoveredColumnBody" +defs["structs"]["ImGuiTable"][69]["name"] = "DeclColumnsCount" defs["structs"]["ImGuiTable"][69]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][70] = {} -defs["structs"]["ImGuiTable"][70]["name"] = "HoveredColumnBorder" +defs["structs"]["ImGuiTable"][70]["name"] = "AngledHeadersCount" defs["structs"]["ImGuiTable"][70]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][71] = {} -defs["structs"]["ImGuiTable"][71]["name"] = "AutoFitSingleColumn" +defs["structs"]["ImGuiTable"][71]["name"] = "HoveredColumnBody" defs["structs"]["ImGuiTable"][71]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][72] = {} -defs["structs"]["ImGuiTable"][72]["name"] = "ResizedColumn" +defs["structs"]["ImGuiTable"][72]["name"] = "HoveredColumnBorder" defs["structs"]["ImGuiTable"][72]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][73] = {} -defs["structs"]["ImGuiTable"][73]["name"] = "LastResizedColumn" +defs["structs"]["ImGuiTable"][73]["name"] = "HighlightColumnHeader" defs["structs"]["ImGuiTable"][73]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][74] = {} -defs["structs"]["ImGuiTable"][74]["name"] = "HeldHeaderColumn" +defs["structs"]["ImGuiTable"][74]["name"] = "AutoFitSingleColumn" defs["structs"]["ImGuiTable"][74]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][75] = {} -defs["structs"]["ImGuiTable"][75]["name"] = "ReorderColumn" +defs["structs"]["ImGuiTable"][75]["name"] = "ResizedColumn" defs["structs"]["ImGuiTable"][75]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][76] = {} -defs["structs"]["ImGuiTable"][76]["name"] = "ReorderColumnDir" +defs["structs"]["ImGuiTable"][76]["name"] = "LastResizedColumn" defs["structs"]["ImGuiTable"][76]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][77] = {} -defs["structs"]["ImGuiTable"][77]["name"] = "LeftMostEnabledColumn" +defs["structs"]["ImGuiTable"][77]["name"] = "HeldHeaderColumn" defs["structs"]["ImGuiTable"][77]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][78] = {} -defs["structs"]["ImGuiTable"][78]["name"] = "RightMostEnabledColumn" +defs["structs"]["ImGuiTable"][78]["name"] = "ReorderColumn" defs["structs"]["ImGuiTable"][78]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][79] = {} -defs["structs"]["ImGuiTable"][79]["name"] = "LeftMostStretchedColumn" +defs["structs"]["ImGuiTable"][79]["name"] = "ReorderColumnDir" defs["structs"]["ImGuiTable"][79]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][80] = {} -defs["structs"]["ImGuiTable"][80]["name"] = "RightMostStretchedColumn" +defs["structs"]["ImGuiTable"][80]["name"] = "LeftMostEnabledColumn" defs["structs"]["ImGuiTable"][80]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][81] = {} -defs["structs"]["ImGuiTable"][81]["name"] = "ContextPopupColumn" +defs["structs"]["ImGuiTable"][81]["name"] = "RightMostEnabledColumn" defs["structs"]["ImGuiTable"][81]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][82] = {} -defs["structs"]["ImGuiTable"][82]["name"] = "FreezeRowsRequest" +defs["structs"]["ImGuiTable"][82]["name"] = "LeftMostStretchedColumn" defs["structs"]["ImGuiTable"][82]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][83] = {} -defs["structs"]["ImGuiTable"][83]["name"] = "FreezeRowsCount" +defs["structs"]["ImGuiTable"][83]["name"] = "RightMostStretchedColumn" defs["structs"]["ImGuiTable"][83]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][84] = {} -defs["structs"]["ImGuiTable"][84]["name"] = "FreezeColumnsRequest" +defs["structs"]["ImGuiTable"][84]["name"] = "ContextPopupColumn" defs["structs"]["ImGuiTable"][84]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][85] = {} -defs["structs"]["ImGuiTable"][85]["name"] = "FreezeColumnsCount" +defs["structs"]["ImGuiTable"][85]["name"] = "FreezeRowsRequest" defs["structs"]["ImGuiTable"][85]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][86] = {} -defs["structs"]["ImGuiTable"][86]["name"] = "RowCellDataCurrent" +defs["structs"]["ImGuiTable"][86]["name"] = "FreezeRowsCount" defs["structs"]["ImGuiTable"][86]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][87] = {} -defs["structs"]["ImGuiTable"][87]["name"] = "DummyDrawChannel" -defs["structs"]["ImGuiTable"][87]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTable"][87]["name"] = "FreezeColumnsRequest" +defs["structs"]["ImGuiTable"][87]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][88] = {} -defs["structs"]["ImGuiTable"][88]["name"] = "Bg2DrawChannelCurrent" -defs["structs"]["ImGuiTable"][88]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTable"][88]["name"] = "FreezeColumnsCount" +defs["structs"]["ImGuiTable"][88]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][89] = {} -defs["structs"]["ImGuiTable"][89]["name"] = "Bg2DrawChannelUnfrozen" -defs["structs"]["ImGuiTable"][89]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTable"][89]["name"] = "RowCellDataCurrent" +defs["structs"]["ImGuiTable"][89]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTable"][90] = {} -defs["structs"]["ImGuiTable"][90]["name"] = "IsLayoutLocked" -defs["structs"]["ImGuiTable"][90]["type"] = "bool" +defs["structs"]["ImGuiTable"][90]["name"] = "DummyDrawChannel" +defs["structs"]["ImGuiTable"][90]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTable"][91] = {} -defs["structs"]["ImGuiTable"][91]["name"] = "IsInsideRow" -defs["structs"]["ImGuiTable"][91]["type"] = "bool" +defs["structs"]["ImGuiTable"][91]["name"] = "Bg2DrawChannelCurrent" +defs["structs"]["ImGuiTable"][91]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTable"][92] = {} -defs["structs"]["ImGuiTable"][92]["name"] = "IsInitializing" -defs["structs"]["ImGuiTable"][92]["type"] = "bool" +defs["structs"]["ImGuiTable"][92]["name"] = "Bg2DrawChannelUnfrozen" +defs["structs"]["ImGuiTable"][92]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTable"][93] = {} -defs["structs"]["ImGuiTable"][93]["name"] = "IsSortSpecsDirty" +defs["structs"]["ImGuiTable"][93]["name"] = "IsLayoutLocked" defs["structs"]["ImGuiTable"][93]["type"] = "bool" defs["structs"]["ImGuiTable"][94] = {} -defs["structs"]["ImGuiTable"][94]["name"] = "IsUsingHeaders" +defs["structs"]["ImGuiTable"][94]["name"] = "IsInsideRow" defs["structs"]["ImGuiTable"][94]["type"] = "bool" defs["structs"]["ImGuiTable"][95] = {} -defs["structs"]["ImGuiTable"][95]["name"] = "IsContextPopupOpen" +defs["structs"]["ImGuiTable"][95]["name"] = "IsInitializing" defs["structs"]["ImGuiTable"][95]["type"] = "bool" defs["structs"]["ImGuiTable"][96] = {} -defs["structs"]["ImGuiTable"][96]["name"] = "IsSettingsRequestLoad" +defs["structs"]["ImGuiTable"][96]["name"] = "IsSortSpecsDirty" defs["structs"]["ImGuiTable"][96]["type"] = "bool" defs["structs"]["ImGuiTable"][97] = {} -defs["structs"]["ImGuiTable"][97]["name"] = "IsSettingsDirty" +defs["structs"]["ImGuiTable"][97]["name"] = "IsUsingHeaders" defs["structs"]["ImGuiTable"][97]["type"] = "bool" defs["structs"]["ImGuiTable"][98] = {} -defs["structs"]["ImGuiTable"][98]["name"] = "IsDefaultDisplayOrder" +defs["structs"]["ImGuiTable"][98]["name"] = "IsContextPopupOpen" defs["structs"]["ImGuiTable"][98]["type"] = "bool" defs["structs"]["ImGuiTable"][99] = {} -defs["structs"]["ImGuiTable"][99]["name"] = "IsResetAllRequest" +defs["structs"]["ImGuiTable"][99]["name"] = "DisableDefaultContextMenu" defs["structs"]["ImGuiTable"][99]["type"] = "bool" defs["structs"]["ImGuiTable"][100] = {} -defs["structs"]["ImGuiTable"][100]["name"] = "IsResetDisplayOrderRequest" +defs["structs"]["ImGuiTable"][100]["name"] = "IsSettingsRequestLoad" defs["structs"]["ImGuiTable"][100]["type"] = "bool" defs["structs"]["ImGuiTable"][101] = {} -defs["structs"]["ImGuiTable"][101]["name"] = "IsUnfrozenRows" +defs["structs"]["ImGuiTable"][101]["name"] = "IsSettingsDirty" defs["structs"]["ImGuiTable"][101]["type"] = "bool" defs["structs"]["ImGuiTable"][102] = {} -defs["structs"]["ImGuiTable"][102]["name"] = "IsDefaultSizingPolicy" +defs["structs"]["ImGuiTable"][102]["name"] = "IsDefaultDisplayOrder" defs["structs"]["ImGuiTable"][102]["type"] = "bool" defs["structs"]["ImGuiTable"][103] = {} -defs["structs"]["ImGuiTable"][103]["name"] = "HasScrollbarYCurr" +defs["structs"]["ImGuiTable"][103]["name"] = "IsResetAllRequest" defs["structs"]["ImGuiTable"][103]["type"] = "bool" defs["structs"]["ImGuiTable"][104] = {} -defs["structs"]["ImGuiTable"][104]["name"] = "HasScrollbarYPrev" +defs["structs"]["ImGuiTable"][104]["name"] = "IsResetDisplayOrderRequest" defs["structs"]["ImGuiTable"][104]["type"] = "bool" defs["structs"]["ImGuiTable"][105] = {} -defs["structs"]["ImGuiTable"][105]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiTable"][105]["name"] = "IsUnfrozenRows" defs["structs"]["ImGuiTable"][105]["type"] = "bool" defs["structs"]["ImGuiTable"][106] = {} -defs["structs"]["ImGuiTable"][106]["name"] = "HostSkipItems" +defs["structs"]["ImGuiTable"][106]["name"] = "IsDefaultSizingPolicy" defs["structs"]["ImGuiTable"][106]["type"] = "bool" +defs["structs"]["ImGuiTable"][107] = {} +defs["structs"]["ImGuiTable"][107]["name"] = "IsActiveIdAliveBeforeTable" +defs["structs"]["ImGuiTable"][107]["type"] = "bool" +defs["structs"]["ImGuiTable"][108] = {} +defs["structs"]["ImGuiTable"][108]["name"] = "IsActiveIdInTable" +defs["structs"]["ImGuiTable"][108]["type"] = "bool" +defs["structs"]["ImGuiTable"][109] = {} +defs["structs"]["ImGuiTable"][109]["name"] = "HasScrollbarYCurr" +defs["structs"]["ImGuiTable"][109]["type"] = "bool" +defs["structs"]["ImGuiTable"][110] = {} +defs["structs"]["ImGuiTable"][110]["name"] = "HasScrollbarYPrev" +defs["structs"]["ImGuiTable"][110]["type"] = "bool" +defs["structs"]["ImGuiTable"][111] = {} +defs["structs"]["ImGuiTable"][111]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiTable"][111]["type"] = "bool" +defs["structs"]["ImGuiTable"][112] = {} +defs["structs"]["ImGuiTable"][112]["name"] = "HostSkipItems" +defs["structs"]["ImGuiTable"][112]["type"] = "bool" defs["structs"]["ImGuiTableCellData"] = {} defs["structs"]["ImGuiTableCellData"][1] = {} defs["structs"]["ImGuiTableCellData"][1]["name"] = "BgColor" @@ -6932,113 +8004,116 @@ defs["structs"]["ImGuiTableColumn"][6] = {} defs["structs"]["ImGuiTableColumn"][6]["name"] = "WidthAuto" defs["structs"]["ImGuiTableColumn"][6]["type"] = "float" defs["structs"]["ImGuiTableColumn"][7] = {} -defs["structs"]["ImGuiTableColumn"][7]["name"] = "StretchWeight" +defs["structs"]["ImGuiTableColumn"][7]["name"] = "WidthMax" defs["structs"]["ImGuiTableColumn"][7]["type"] = "float" defs["structs"]["ImGuiTableColumn"][8] = {} -defs["structs"]["ImGuiTableColumn"][8]["name"] = "InitStretchWeightOrWidth" +defs["structs"]["ImGuiTableColumn"][8]["name"] = "StretchWeight" defs["structs"]["ImGuiTableColumn"][8]["type"] = "float" defs["structs"]["ImGuiTableColumn"][9] = {} -defs["structs"]["ImGuiTableColumn"][9]["name"] = "ClipRect" -defs["structs"]["ImGuiTableColumn"][9]["type"] = "ImRect" +defs["structs"]["ImGuiTableColumn"][9]["name"] = "InitStretchWeightOrWidth" +defs["structs"]["ImGuiTableColumn"][9]["type"] = "float" defs["structs"]["ImGuiTableColumn"][10] = {} -defs["structs"]["ImGuiTableColumn"][10]["name"] = "UserID" -defs["structs"]["ImGuiTableColumn"][10]["type"] = "ImGuiID" +defs["structs"]["ImGuiTableColumn"][10]["name"] = "ClipRect" +defs["structs"]["ImGuiTableColumn"][10]["type"] = "ImRect" defs["structs"]["ImGuiTableColumn"][11] = {} -defs["structs"]["ImGuiTableColumn"][11]["name"] = "WorkMinX" -defs["structs"]["ImGuiTableColumn"][11]["type"] = "float" +defs["structs"]["ImGuiTableColumn"][11]["name"] = "UserID" +defs["structs"]["ImGuiTableColumn"][11]["type"] = "ImGuiID" defs["structs"]["ImGuiTableColumn"][12] = {} -defs["structs"]["ImGuiTableColumn"][12]["name"] = "WorkMaxX" +defs["structs"]["ImGuiTableColumn"][12]["name"] = "WorkMinX" defs["structs"]["ImGuiTableColumn"][12]["type"] = "float" defs["structs"]["ImGuiTableColumn"][13] = {} -defs["structs"]["ImGuiTableColumn"][13]["name"] = "ItemWidth" +defs["structs"]["ImGuiTableColumn"][13]["name"] = "WorkMaxX" defs["structs"]["ImGuiTableColumn"][13]["type"] = "float" defs["structs"]["ImGuiTableColumn"][14] = {} -defs["structs"]["ImGuiTableColumn"][14]["name"] = "ContentMaxXFrozen" +defs["structs"]["ImGuiTableColumn"][14]["name"] = "ItemWidth" defs["structs"]["ImGuiTableColumn"][14]["type"] = "float" defs["structs"]["ImGuiTableColumn"][15] = {} -defs["structs"]["ImGuiTableColumn"][15]["name"] = "ContentMaxXUnfrozen" +defs["structs"]["ImGuiTableColumn"][15]["name"] = "ContentMaxXFrozen" defs["structs"]["ImGuiTableColumn"][15]["type"] = "float" defs["structs"]["ImGuiTableColumn"][16] = {} -defs["structs"]["ImGuiTableColumn"][16]["name"] = "ContentMaxXHeadersUsed" +defs["structs"]["ImGuiTableColumn"][16]["name"] = "ContentMaxXUnfrozen" defs["structs"]["ImGuiTableColumn"][16]["type"] = "float" defs["structs"]["ImGuiTableColumn"][17] = {} -defs["structs"]["ImGuiTableColumn"][17]["name"] = "ContentMaxXHeadersIdeal" +defs["structs"]["ImGuiTableColumn"][17]["name"] = "ContentMaxXHeadersUsed" defs["structs"]["ImGuiTableColumn"][17]["type"] = "float" defs["structs"]["ImGuiTableColumn"][18] = {} -defs["structs"]["ImGuiTableColumn"][18]["name"] = "NameOffset" -defs["structs"]["ImGuiTableColumn"][18]["type"] = "ImS16" +defs["structs"]["ImGuiTableColumn"][18]["name"] = "ContentMaxXHeadersIdeal" +defs["structs"]["ImGuiTableColumn"][18]["type"] = "float" defs["structs"]["ImGuiTableColumn"][19] = {} -defs["structs"]["ImGuiTableColumn"][19]["name"] = "DisplayOrder" -defs["structs"]["ImGuiTableColumn"][19]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTableColumn"][19]["name"] = "NameOffset" +defs["structs"]["ImGuiTableColumn"][19]["type"] = "ImS16" defs["structs"]["ImGuiTableColumn"][20] = {} -defs["structs"]["ImGuiTableColumn"][20]["name"] = "IndexWithinEnabledSet" +defs["structs"]["ImGuiTableColumn"][20]["name"] = "DisplayOrder" defs["structs"]["ImGuiTableColumn"][20]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][21] = {} -defs["structs"]["ImGuiTableColumn"][21]["name"] = "PrevEnabledColumn" +defs["structs"]["ImGuiTableColumn"][21]["name"] = "IndexWithinEnabledSet" defs["structs"]["ImGuiTableColumn"][21]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][22] = {} -defs["structs"]["ImGuiTableColumn"][22]["name"] = "NextEnabledColumn" +defs["structs"]["ImGuiTableColumn"][22]["name"] = "PrevEnabledColumn" defs["structs"]["ImGuiTableColumn"][22]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][23] = {} -defs["structs"]["ImGuiTableColumn"][23]["name"] = "SortOrder" +defs["structs"]["ImGuiTableColumn"][23]["name"] = "NextEnabledColumn" defs["structs"]["ImGuiTableColumn"][23]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][24] = {} -defs["structs"]["ImGuiTableColumn"][24]["name"] = "DrawChannelCurrent" -defs["structs"]["ImGuiTableColumn"][24]["type"] = "ImGuiTableDrawChannelIdx" +defs["structs"]["ImGuiTableColumn"][24]["name"] = "SortOrder" +defs["structs"]["ImGuiTableColumn"][24]["type"] = "ImGuiTableColumnIdx" defs["structs"]["ImGuiTableColumn"][25] = {} -defs["structs"]["ImGuiTableColumn"][25]["name"] = "DrawChannelFrozen" +defs["structs"]["ImGuiTableColumn"][25]["name"] = "DrawChannelCurrent" defs["structs"]["ImGuiTableColumn"][25]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][26] = {} -defs["structs"]["ImGuiTableColumn"][26]["name"] = "DrawChannelUnfrozen" +defs["structs"]["ImGuiTableColumn"][26]["name"] = "DrawChannelFrozen" defs["structs"]["ImGuiTableColumn"][26]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][27] = {} -defs["structs"]["ImGuiTableColumn"][27]["name"] = "IsEnabled" -defs["structs"]["ImGuiTableColumn"][27]["type"] = "bool" +defs["structs"]["ImGuiTableColumn"][27]["name"] = "DrawChannelUnfrozen" +defs["structs"]["ImGuiTableColumn"][27]["type"] = "ImGuiTableDrawChannelIdx" defs["structs"]["ImGuiTableColumn"][28] = {} -defs["structs"]["ImGuiTableColumn"][28]["name"] = "IsUserEnabled" +defs["structs"]["ImGuiTableColumn"][28]["name"] = "IsEnabled" defs["structs"]["ImGuiTableColumn"][28]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][29] = {} -defs["structs"]["ImGuiTableColumn"][29]["name"] = "IsUserEnabledNextFrame" +defs["structs"]["ImGuiTableColumn"][29]["name"] = "IsUserEnabled" defs["structs"]["ImGuiTableColumn"][29]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][30] = {} -defs["structs"]["ImGuiTableColumn"][30]["name"] = "IsVisibleX" +defs["structs"]["ImGuiTableColumn"][30]["name"] = "IsUserEnabledNextFrame" defs["structs"]["ImGuiTableColumn"][30]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][31] = {} -defs["structs"]["ImGuiTableColumn"][31]["name"] = "IsVisibleY" +defs["structs"]["ImGuiTableColumn"][31]["name"] = "IsVisibleX" defs["structs"]["ImGuiTableColumn"][31]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][32] = {} -defs["structs"]["ImGuiTableColumn"][32]["name"] = "IsRequestOutput" +defs["structs"]["ImGuiTableColumn"][32]["name"] = "IsVisibleY" defs["structs"]["ImGuiTableColumn"][32]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][33] = {} -defs["structs"]["ImGuiTableColumn"][33]["name"] = "IsSkipItems" +defs["structs"]["ImGuiTableColumn"][33]["name"] = "IsRequestOutput" defs["structs"]["ImGuiTableColumn"][33]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][34] = {} -defs["structs"]["ImGuiTableColumn"][34]["name"] = "IsPreserveWidthAuto" +defs["structs"]["ImGuiTableColumn"][34]["name"] = "IsSkipItems" defs["structs"]["ImGuiTableColumn"][34]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][35] = {} -defs["structs"]["ImGuiTableColumn"][35]["name"] = "NavLayerCurrent" -defs["structs"]["ImGuiTableColumn"][35]["type"] = "ImS8" +defs["structs"]["ImGuiTableColumn"][35]["name"] = "IsPreserveWidthAuto" +defs["structs"]["ImGuiTableColumn"][35]["type"] = "bool" defs["structs"]["ImGuiTableColumn"][36] = {} -defs["structs"]["ImGuiTableColumn"][36]["name"] = "AutoFitQueue" -defs["structs"]["ImGuiTableColumn"][36]["type"] = "ImU8" +defs["structs"]["ImGuiTableColumn"][36]["name"] = "NavLayerCurrent" +defs["structs"]["ImGuiTableColumn"][36]["type"] = "ImS8" defs["structs"]["ImGuiTableColumn"][37] = {} -defs["structs"]["ImGuiTableColumn"][37]["name"] = "CannotSkipItemsQueue" +defs["structs"]["ImGuiTableColumn"][37]["name"] = "AutoFitQueue" defs["structs"]["ImGuiTableColumn"][37]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][38] = {} -defs["structs"]["ImGuiTableColumn"][38]["bitfield"] = "2" -defs["structs"]["ImGuiTableColumn"][38]["name"] = "SortDirection" +defs["structs"]["ImGuiTableColumn"][38]["name"] = "CannotSkipItemsQueue" defs["structs"]["ImGuiTableColumn"][38]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][39] = {} defs["structs"]["ImGuiTableColumn"][39]["bitfield"] = "2" -defs["structs"]["ImGuiTableColumn"][39]["name"] = "SortDirectionsAvailCount" +defs["structs"]["ImGuiTableColumn"][39]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumn"][39]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][40] = {} -defs["structs"]["ImGuiTableColumn"][40]["bitfield"] = "4" -defs["structs"]["ImGuiTableColumn"][40]["name"] = "SortDirectionsAvailMask" +defs["structs"]["ImGuiTableColumn"][40]["bitfield"] = "2" +defs["structs"]["ImGuiTableColumn"][40]["name"] = "SortDirectionsAvailCount" defs["structs"]["ImGuiTableColumn"][40]["type"] = "ImU8" defs["structs"]["ImGuiTableColumn"][41] = {} -defs["structs"]["ImGuiTableColumn"][41]["name"] = "SortDirectionsAvailList" +defs["structs"]["ImGuiTableColumn"][41]["bitfield"] = "4" +defs["structs"]["ImGuiTableColumn"][41]["name"] = "SortDirectionsAvailMask" defs["structs"]["ImGuiTableColumn"][41]["type"] = "ImU8" +defs["structs"]["ImGuiTableColumn"][42] = {} +defs["structs"]["ImGuiTableColumn"][42]["name"] = "SortDirectionsAvailList" +defs["structs"]["ImGuiTableColumn"][42]["type"] = "ImU8" defs["structs"]["ImGuiTableColumnSettings"] = {} defs["structs"]["ImGuiTableColumnSettings"][1] = {} defs["structs"]["ImGuiTableColumnSettings"][1]["name"] = "WidthOrWeight" @@ -7078,19 +8153,40 @@ defs["structs"]["ImGuiTableColumnSortSpecs"][3] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][3]["name"] = "SortOrder" defs["structs"]["ImGuiTableColumnSortSpecs"][3]["type"] = "ImS16" defs["structs"]["ImGuiTableColumnSortSpecs"][4] = {} -defs["structs"]["ImGuiTableColumnSortSpecs"][4]["bitfield"] = "8" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["type"] = "ImGuiSortDirection" +defs["structs"]["ImGuiTableHeaderData"] = {} +defs["structs"]["ImGuiTableHeaderData"][1] = {} +defs["structs"]["ImGuiTableHeaderData"][1]["name"] = "Index" +defs["structs"]["ImGuiTableHeaderData"][1]["type"] = "ImGuiTableColumnIdx" +defs["structs"]["ImGuiTableHeaderData"][2] = {} +defs["structs"]["ImGuiTableHeaderData"][2]["name"] = "TextColor" +defs["structs"]["ImGuiTableHeaderData"][2]["type"] = "ImU32" +defs["structs"]["ImGuiTableHeaderData"][3] = {} +defs["structs"]["ImGuiTableHeaderData"][3]["name"] = "BgColor0" +defs["structs"]["ImGuiTableHeaderData"][3]["type"] = "ImU32" +defs["structs"]["ImGuiTableHeaderData"][4] = {} +defs["structs"]["ImGuiTableHeaderData"][4]["name"] = "BgColor1" +defs["structs"]["ImGuiTableHeaderData"][4]["type"] = "ImU32" defs["structs"]["ImGuiTableInstanceData"] = {} defs["structs"]["ImGuiTableInstanceData"][1] = {} -defs["structs"]["ImGuiTableInstanceData"][1]["name"] = "LastOuterHeight" -defs["structs"]["ImGuiTableInstanceData"][1]["type"] = "float" +defs["structs"]["ImGuiTableInstanceData"][1]["name"] = "TableInstanceID" +defs["structs"]["ImGuiTableInstanceData"][1]["type"] = "ImGuiID" defs["structs"]["ImGuiTableInstanceData"][2] = {} -defs["structs"]["ImGuiTableInstanceData"][2]["name"] = "LastFirstRowHeight" +defs["structs"]["ImGuiTableInstanceData"][2]["name"] = "LastOuterHeight" defs["structs"]["ImGuiTableInstanceData"][2]["type"] = "float" defs["structs"]["ImGuiTableInstanceData"][3] = {} -defs["structs"]["ImGuiTableInstanceData"][3]["name"] = "LastFrozenHeight" +defs["structs"]["ImGuiTableInstanceData"][3]["name"] = "LastTopHeadersRowHeight" defs["structs"]["ImGuiTableInstanceData"][3]["type"] = "float" +defs["structs"]["ImGuiTableInstanceData"][4] = {} +defs["structs"]["ImGuiTableInstanceData"][4]["name"] = "LastFrozenHeight" +defs["structs"]["ImGuiTableInstanceData"][4]["type"] = "float" +defs["structs"]["ImGuiTableInstanceData"][5] = {} +defs["structs"]["ImGuiTableInstanceData"][5]["name"] = "HoveredRowLast" +defs["structs"]["ImGuiTableInstanceData"][5]["type"] = "int" +defs["structs"]["ImGuiTableInstanceData"][6] = {} +defs["structs"]["ImGuiTableInstanceData"][6]["name"] = "HoveredRowNext" +defs["structs"]["ImGuiTableInstanceData"][6]["type"] = "int" defs["structs"]["ImGuiTableSettings"] = {} defs["structs"]["ImGuiTableSettings"][1] = {} defs["structs"]["ImGuiTableSettings"][1]["name"] = "ID" @@ -7128,35 +8224,42 @@ defs["structs"]["ImGuiTableTempData"][2] = {} defs["structs"]["ImGuiTableTempData"][2]["name"] = "LastTimeActive" defs["structs"]["ImGuiTableTempData"][2]["type"] = "float" defs["structs"]["ImGuiTableTempData"][3] = {} -defs["structs"]["ImGuiTableTempData"][3]["name"] = "UserOuterSize" -defs["structs"]["ImGuiTableTempData"][3]["type"] = "ImVec2" +defs["structs"]["ImGuiTableTempData"][3]["name"] = "AngledHeadersExtraWidth" +defs["structs"]["ImGuiTableTempData"][3]["type"] = "float" defs["structs"]["ImGuiTableTempData"][4] = {} -defs["structs"]["ImGuiTableTempData"][4]["name"] = "DrawSplitter" -defs["structs"]["ImGuiTableTempData"][4]["type"] = "ImDrawListSplitter" +defs["structs"]["ImGuiTableTempData"][4]["name"] = "AngledHeadersRequests" +defs["structs"]["ImGuiTableTempData"][4]["template_type"] = "ImGuiTableHeaderData" +defs["structs"]["ImGuiTableTempData"][4]["type"] = "ImVector_ImGuiTableHeaderData" defs["structs"]["ImGuiTableTempData"][5] = {} -defs["structs"]["ImGuiTableTempData"][5]["name"] = "HostBackupWorkRect" -defs["structs"]["ImGuiTableTempData"][5]["type"] = "ImRect" +defs["structs"]["ImGuiTableTempData"][5]["name"] = "UserOuterSize" +defs["structs"]["ImGuiTableTempData"][5]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][6] = {} -defs["structs"]["ImGuiTableTempData"][6]["name"] = "HostBackupParentWorkRect" -defs["structs"]["ImGuiTableTempData"][6]["type"] = "ImRect" +defs["structs"]["ImGuiTableTempData"][6]["name"] = "DrawSplitter" +defs["structs"]["ImGuiTableTempData"][6]["type"] = "ImDrawListSplitter" defs["structs"]["ImGuiTableTempData"][7] = {} -defs["structs"]["ImGuiTableTempData"][7]["name"] = "HostBackupPrevLineSize" -defs["structs"]["ImGuiTableTempData"][7]["type"] = "ImVec2" +defs["structs"]["ImGuiTableTempData"][7]["name"] = "HostBackupWorkRect" +defs["structs"]["ImGuiTableTempData"][7]["type"] = "ImRect" defs["structs"]["ImGuiTableTempData"][8] = {} -defs["structs"]["ImGuiTableTempData"][8]["name"] = "HostBackupCurrLineSize" -defs["structs"]["ImGuiTableTempData"][8]["type"] = "ImVec2" +defs["structs"]["ImGuiTableTempData"][8]["name"] = "HostBackupParentWorkRect" +defs["structs"]["ImGuiTableTempData"][8]["type"] = "ImRect" defs["structs"]["ImGuiTableTempData"][9] = {} -defs["structs"]["ImGuiTableTempData"][9]["name"] = "HostBackupCursorMaxPos" +defs["structs"]["ImGuiTableTempData"][9]["name"] = "HostBackupPrevLineSize" defs["structs"]["ImGuiTableTempData"][9]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][10] = {} -defs["structs"]["ImGuiTableTempData"][10]["name"] = "HostBackupColumnsOffset" -defs["structs"]["ImGuiTableTempData"][10]["type"] = "ImVec1" +defs["structs"]["ImGuiTableTempData"][10]["name"] = "HostBackupCurrLineSize" +defs["structs"]["ImGuiTableTempData"][10]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][11] = {} -defs["structs"]["ImGuiTableTempData"][11]["name"] = "HostBackupItemWidth" -defs["structs"]["ImGuiTableTempData"][11]["type"] = "float" +defs["structs"]["ImGuiTableTempData"][11]["name"] = "HostBackupCursorMaxPos" +defs["structs"]["ImGuiTableTempData"][11]["type"] = "ImVec2" defs["structs"]["ImGuiTableTempData"][12] = {} -defs["structs"]["ImGuiTableTempData"][12]["name"] = "HostBackupItemWidthStackSize" -defs["structs"]["ImGuiTableTempData"][12]["type"] = "int" +defs["structs"]["ImGuiTableTempData"][12]["name"] = "HostBackupColumnsOffset" +defs["structs"]["ImGuiTableTempData"][12]["type"] = "ImVec1" +defs["structs"]["ImGuiTableTempData"][13] = {} +defs["structs"]["ImGuiTableTempData"][13]["name"] = "HostBackupItemWidth" +defs["structs"]["ImGuiTableTempData"][13]["type"] = "float" +defs["structs"]["ImGuiTableTempData"][14] = {} +defs["structs"]["ImGuiTableTempData"][14]["name"] = "HostBackupItemWidthStackSize" +defs["structs"]["ImGuiTableTempData"][14]["type"] = "int" defs["structs"]["ImGuiTextBuffer"] = {} defs["structs"]["ImGuiTextBuffer"][1] = {} defs["structs"]["ImGuiTextBuffer"][1]["name"] = "Buf" @@ -7189,6 +8292,58 @@ defs["structs"]["ImGuiTextRange"][1]["type"] = "const char*" defs["structs"]["ImGuiTextRange"][2] = {} defs["structs"]["ImGuiTextRange"][2]["name"] = "e" defs["structs"]["ImGuiTextRange"][2]["type"] = "const char*" +defs["structs"]["ImGuiTreeNodeStackData"] = {} +defs["structs"]["ImGuiTreeNodeStackData"][1] = {} +defs["structs"]["ImGuiTreeNodeStackData"][1]["name"] = "ID" +defs["structs"]["ImGuiTreeNodeStackData"][1]["type"] = "ImGuiID" +defs["structs"]["ImGuiTreeNodeStackData"][2] = {} +defs["structs"]["ImGuiTreeNodeStackData"][2]["name"] = "TreeFlags" +defs["structs"]["ImGuiTreeNodeStackData"][2]["type"] = "ImGuiTreeNodeFlags" +defs["structs"]["ImGuiTreeNodeStackData"][3] = {} +defs["structs"]["ImGuiTreeNodeStackData"][3]["name"] = "InFlags" +defs["structs"]["ImGuiTreeNodeStackData"][3]["type"] = "ImGuiItemFlags" +defs["structs"]["ImGuiTreeNodeStackData"][4] = {} +defs["structs"]["ImGuiTreeNodeStackData"][4]["name"] = "NavRect" +defs["structs"]["ImGuiTreeNodeStackData"][4]["type"] = "ImRect" +defs["structs"]["ImGuiTypingSelectRequest"] = {} +defs["structs"]["ImGuiTypingSelectRequest"][1] = {} +defs["structs"]["ImGuiTypingSelectRequest"][1]["name"] = "Flags" +defs["structs"]["ImGuiTypingSelectRequest"][1]["type"] = "ImGuiTypingSelectFlags" +defs["structs"]["ImGuiTypingSelectRequest"][2] = {} +defs["structs"]["ImGuiTypingSelectRequest"][2]["name"] = "SearchBufferLen" +defs["structs"]["ImGuiTypingSelectRequest"][2]["type"] = "int" +defs["structs"]["ImGuiTypingSelectRequest"][3] = {} +defs["structs"]["ImGuiTypingSelectRequest"][3]["name"] = "SearchBuffer" +defs["structs"]["ImGuiTypingSelectRequest"][3]["type"] = "const char*" +defs["structs"]["ImGuiTypingSelectRequest"][4] = {} +defs["structs"]["ImGuiTypingSelectRequest"][4]["name"] = "SelectRequest" +defs["structs"]["ImGuiTypingSelectRequest"][4]["type"] = "bool" +defs["structs"]["ImGuiTypingSelectRequest"][5] = {} +defs["structs"]["ImGuiTypingSelectRequest"][5]["name"] = "SingleCharMode" +defs["structs"]["ImGuiTypingSelectRequest"][5]["type"] = "bool" +defs["structs"]["ImGuiTypingSelectRequest"][6] = {} +defs["structs"]["ImGuiTypingSelectRequest"][6]["name"] = "SingleCharSize" +defs["structs"]["ImGuiTypingSelectRequest"][6]["type"] = "ImS8" +defs["structs"]["ImGuiTypingSelectState"] = {} +defs["structs"]["ImGuiTypingSelectState"][1] = {} +defs["structs"]["ImGuiTypingSelectState"][1]["name"] = "Request" +defs["structs"]["ImGuiTypingSelectState"][1]["type"] = "ImGuiTypingSelectRequest" +defs["structs"]["ImGuiTypingSelectState"][2] = {} +defs["structs"]["ImGuiTypingSelectState"][2]["name"] = "SearchBuffer[64]" +defs["structs"]["ImGuiTypingSelectState"][2]["size"] = 64 +defs["structs"]["ImGuiTypingSelectState"][2]["type"] = "char" +defs["structs"]["ImGuiTypingSelectState"][3] = {} +defs["structs"]["ImGuiTypingSelectState"][3]["name"] = "FocusScope" +defs["structs"]["ImGuiTypingSelectState"][3]["type"] = "ImGuiID" +defs["structs"]["ImGuiTypingSelectState"][4] = {} +defs["structs"]["ImGuiTypingSelectState"][4]["name"] = "LastRequestFrame" +defs["structs"]["ImGuiTypingSelectState"][4]["type"] = "int" +defs["structs"]["ImGuiTypingSelectState"][5] = {} +defs["structs"]["ImGuiTypingSelectState"][5]["name"] = "LastRequestTime" +defs["structs"]["ImGuiTypingSelectState"][5]["type"] = "float" +defs["structs"]["ImGuiTypingSelectState"][6] = {} +defs["structs"]["ImGuiTypingSelectState"][6]["name"] = "SingleCharModeLock" +defs["structs"]["ImGuiTypingSelectState"][6]["type"] = "bool" defs["structs"]["ImGuiViewport"] = {} defs["structs"]["ImGuiViewport"][1] = {} defs["structs"]["ImGuiViewport"][1]["name"] = "ID" @@ -7246,431 +8401,459 @@ defs["structs"]["ImGuiViewportP"][1] = {} defs["structs"]["ImGuiViewportP"][1]["name"] = "_ImGuiViewport" defs["structs"]["ImGuiViewportP"][1]["type"] = "ImGuiViewport" defs["structs"]["ImGuiViewportP"][2] = {} -defs["structs"]["ImGuiViewportP"][2]["name"] = "Idx" -defs["structs"]["ImGuiViewportP"][2]["type"] = "int" +defs["structs"]["ImGuiViewportP"][2]["name"] = "Window" +defs["structs"]["ImGuiViewportP"][2]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiViewportP"][3] = {} -defs["structs"]["ImGuiViewportP"][3]["name"] = "LastFrameActive" +defs["structs"]["ImGuiViewportP"][3]["name"] = "Idx" defs["structs"]["ImGuiViewportP"][3]["type"] = "int" defs["structs"]["ImGuiViewportP"][4] = {} -defs["structs"]["ImGuiViewportP"][4]["name"] = "LastFrontMostStampCount" +defs["structs"]["ImGuiViewportP"][4]["name"] = "LastFrameActive" defs["structs"]["ImGuiViewportP"][4]["type"] = "int" defs["structs"]["ImGuiViewportP"][5] = {} -defs["structs"]["ImGuiViewportP"][5]["name"] = "LastNameHash" -defs["structs"]["ImGuiViewportP"][5]["type"] = "ImGuiID" +defs["structs"]["ImGuiViewportP"][5]["name"] = "LastFocusedStampCount" +defs["structs"]["ImGuiViewportP"][5]["type"] = "int" defs["structs"]["ImGuiViewportP"][6] = {} -defs["structs"]["ImGuiViewportP"][6]["name"] = "LastPos" -defs["structs"]["ImGuiViewportP"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][6]["name"] = "LastNameHash" +defs["structs"]["ImGuiViewportP"][6]["type"] = "ImGuiID" defs["structs"]["ImGuiViewportP"][7] = {} -defs["structs"]["ImGuiViewportP"][7]["name"] = "Alpha" -defs["structs"]["ImGuiViewportP"][7]["type"] = "float" +defs["structs"]["ImGuiViewportP"][7]["name"] = "LastPos" +defs["structs"]["ImGuiViewportP"][7]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][8] = {} -defs["structs"]["ImGuiViewportP"][8]["name"] = "LastAlpha" -defs["structs"]["ImGuiViewportP"][8]["type"] = "float" +defs["structs"]["ImGuiViewportP"][8]["name"] = "LastSize" +defs["structs"]["ImGuiViewportP"][8]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][9] = {} -defs["structs"]["ImGuiViewportP"][9]["name"] = "PlatformMonitor" -defs["structs"]["ImGuiViewportP"][9]["type"] = "short" +defs["structs"]["ImGuiViewportP"][9]["name"] = "Alpha" +defs["structs"]["ImGuiViewportP"][9]["type"] = "float" defs["structs"]["ImGuiViewportP"][10] = {} -defs["structs"]["ImGuiViewportP"][10]["name"] = "Window" -defs["structs"]["ImGuiViewportP"][10]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiViewportP"][10]["name"] = "LastAlpha" +defs["structs"]["ImGuiViewportP"][10]["type"] = "float" defs["structs"]["ImGuiViewportP"][11] = {} -defs["structs"]["ImGuiViewportP"][11]["name"] = "DrawListsLastFrame[2]" -defs["structs"]["ImGuiViewportP"][11]["size"] = 2 -defs["structs"]["ImGuiViewportP"][11]["type"] = "int" +defs["structs"]["ImGuiViewportP"][11]["name"] = "LastFocusedHadNavWindow" +defs["structs"]["ImGuiViewportP"][11]["type"] = "bool" defs["structs"]["ImGuiViewportP"][12] = {} -defs["structs"]["ImGuiViewportP"][12]["name"] = "DrawLists[2]" -defs["structs"]["ImGuiViewportP"][12]["size"] = 2 -defs["structs"]["ImGuiViewportP"][12]["type"] = "ImDrawList*" +defs["structs"]["ImGuiViewportP"][12]["name"] = "PlatformMonitor" +defs["structs"]["ImGuiViewportP"][12]["type"] = "short" defs["structs"]["ImGuiViewportP"][13] = {} -defs["structs"]["ImGuiViewportP"][13]["name"] = "DrawDataP" -defs["structs"]["ImGuiViewportP"][13]["type"] = "ImDrawData" +defs["structs"]["ImGuiViewportP"][13]["name"] = "BgFgDrawListsLastFrame[2]" +defs["structs"]["ImGuiViewportP"][13]["size"] = 2 +defs["structs"]["ImGuiViewportP"][13]["type"] = "int" defs["structs"]["ImGuiViewportP"][14] = {} -defs["structs"]["ImGuiViewportP"][14]["name"] = "DrawDataBuilder" -defs["structs"]["ImGuiViewportP"][14]["type"] = "ImDrawDataBuilder" +defs["structs"]["ImGuiViewportP"][14]["name"] = "BgFgDrawLists[2]" +defs["structs"]["ImGuiViewportP"][14]["size"] = 2 +defs["structs"]["ImGuiViewportP"][14]["type"] = "ImDrawList*" defs["structs"]["ImGuiViewportP"][15] = {} -defs["structs"]["ImGuiViewportP"][15]["name"] = "LastPlatformPos" -defs["structs"]["ImGuiViewportP"][15]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][15]["name"] = "DrawDataP" +defs["structs"]["ImGuiViewportP"][15]["type"] = "ImDrawData" defs["structs"]["ImGuiViewportP"][16] = {} -defs["structs"]["ImGuiViewportP"][16]["name"] = "LastPlatformSize" -defs["structs"]["ImGuiViewportP"][16]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][16]["name"] = "DrawDataBuilder" +defs["structs"]["ImGuiViewportP"][16]["type"] = "ImDrawDataBuilder" defs["structs"]["ImGuiViewportP"][17] = {} -defs["structs"]["ImGuiViewportP"][17]["name"] = "LastRendererSize" +defs["structs"]["ImGuiViewportP"][17]["name"] = "LastPlatformPos" defs["structs"]["ImGuiViewportP"][17]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][18] = {} -defs["structs"]["ImGuiViewportP"][18]["name"] = "WorkOffsetMin" +defs["structs"]["ImGuiViewportP"][18]["name"] = "LastPlatformSize" defs["structs"]["ImGuiViewportP"][18]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][19] = {} -defs["structs"]["ImGuiViewportP"][19]["name"] = "WorkOffsetMax" +defs["structs"]["ImGuiViewportP"][19]["name"] = "LastRendererSize" defs["structs"]["ImGuiViewportP"][19]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][20] = {} -defs["structs"]["ImGuiViewportP"][20]["name"] = "BuildWorkOffsetMin" +defs["structs"]["ImGuiViewportP"][20]["name"] = "WorkInsetMin" defs["structs"]["ImGuiViewportP"][20]["type"] = "ImVec2" defs["structs"]["ImGuiViewportP"][21] = {} -defs["structs"]["ImGuiViewportP"][21]["name"] = "BuildWorkOffsetMax" +defs["structs"]["ImGuiViewportP"][21]["name"] = "WorkInsetMax" defs["structs"]["ImGuiViewportP"][21]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][22] = {} +defs["structs"]["ImGuiViewportP"][22]["name"] = "BuildWorkInsetMin" +defs["structs"]["ImGuiViewportP"][22]["type"] = "ImVec2" +defs["structs"]["ImGuiViewportP"][23] = {} +defs["structs"]["ImGuiViewportP"][23]["name"] = "BuildWorkInsetMax" +defs["structs"]["ImGuiViewportP"][23]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"] = {} defs["structs"]["ImGuiWindow"][1] = {} -defs["structs"]["ImGuiWindow"][1]["name"] = "Name" -defs["structs"]["ImGuiWindow"][1]["type"] = "char*" +defs["structs"]["ImGuiWindow"][1]["name"] = "Ctx" +defs["structs"]["ImGuiWindow"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiWindow"][2] = {} -defs["structs"]["ImGuiWindow"][2]["name"] = "ID" -defs["structs"]["ImGuiWindow"][2]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][2]["name"] = "Name" +defs["structs"]["ImGuiWindow"][2]["type"] = "char*" defs["structs"]["ImGuiWindow"][3] = {} -defs["structs"]["ImGuiWindow"][3]["name"] = "Flags" -defs["structs"]["ImGuiWindow"][3]["type"] = "ImGuiWindowFlags" +defs["structs"]["ImGuiWindow"][3]["name"] = "ID" +defs["structs"]["ImGuiWindow"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][4] = {} -defs["structs"]["ImGuiWindow"][4]["name"] = "FlagsPreviousFrame" +defs["structs"]["ImGuiWindow"][4]["name"] = "Flags" defs["structs"]["ImGuiWindow"][4]["type"] = "ImGuiWindowFlags" defs["structs"]["ImGuiWindow"][5] = {} -defs["structs"]["ImGuiWindow"][5]["name"] = "WindowClass" -defs["structs"]["ImGuiWindow"][5]["type"] = "ImGuiWindowClass" +defs["structs"]["ImGuiWindow"][5]["name"] = "FlagsPreviousFrame" +defs["structs"]["ImGuiWindow"][5]["type"] = "ImGuiWindowFlags" defs["structs"]["ImGuiWindow"][6] = {} -defs["structs"]["ImGuiWindow"][6]["name"] = "Viewport" -defs["structs"]["ImGuiWindow"][6]["type"] = "ImGuiViewportP*" +defs["structs"]["ImGuiWindow"][6]["name"] = "ChildFlags" +defs["structs"]["ImGuiWindow"][6]["type"] = "ImGuiChildFlags" defs["structs"]["ImGuiWindow"][7] = {} -defs["structs"]["ImGuiWindow"][7]["name"] = "ViewportId" -defs["structs"]["ImGuiWindow"][7]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][7]["name"] = "WindowClass" +defs["structs"]["ImGuiWindow"][7]["type"] = "ImGuiWindowClass" defs["structs"]["ImGuiWindow"][8] = {} -defs["structs"]["ImGuiWindow"][8]["name"] = "ViewportPos" -defs["structs"]["ImGuiWindow"][8]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][8]["name"] = "Viewport" +defs["structs"]["ImGuiWindow"][8]["type"] = "ImGuiViewportP*" defs["structs"]["ImGuiWindow"][9] = {} -defs["structs"]["ImGuiWindow"][9]["name"] = "ViewportAllowPlatformMonitorExtend" -defs["structs"]["ImGuiWindow"][9]["type"] = "int" +defs["structs"]["ImGuiWindow"][9]["name"] = "ViewportId" +defs["structs"]["ImGuiWindow"][9]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][10] = {} -defs["structs"]["ImGuiWindow"][10]["name"] = "Pos" +defs["structs"]["ImGuiWindow"][10]["name"] = "ViewportPos" defs["structs"]["ImGuiWindow"][10]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][11] = {} -defs["structs"]["ImGuiWindow"][11]["name"] = "Size" -defs["structs"]["ImGuiWindow"][11]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][11]["name"] = "ViewportAllowPlatformMonitorExtend" +defs["structs"]["ImGuiWindow"][11]["type"] = "int" defs["structs"]["ImGuiWindow"][12] = {} -defs["structs"]["ImGuiWindow"][12]["name"] = "SizeFull" +defs["structs"]["ImGuiWindow"][12]["name"] = "Pos" defs["structs"]["ImGuiWindow"][12]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][13] = {} -defs["structs"]["ImGuiWindow"][13]["name"] = "ContentSize" +defs["structs"]["ImGuiWindow"][13]["name"] = "Size" defs["structs"]["ImGuiWindow"][13]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][14] = {} -defs["structs"]["ImGuiWindow"][14]["name"] = "ContentSizeIdeal" +defs["structs"]["ImGuiWindow"][14]["name"] = "SizeFull" defs["structs"]["ImGuiWindow"][14]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][15] = {} -defs["structs"]["ImGuiWindow"][15]["name"] = "ContentSizeExplicit" +defs["structs"]["ImGuiWindow"][15]["name"] = "ContentSize" defs["structs"]["ImGuiWindow"][15]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][16] = {} -defs["structs"]["ImGuiWindow"][16]["name"] = "WindowPadding" +defs["structs"]["ImGuiWindow"][16]["name"] = "ContentSizeIdeal" defs["structs"]["ImGuiWindow"][16]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][17] = {} -defs["structs"]["ImGuiWindow"][17]["name"] = "WindowRounding" -defs["structs"]["ImGuiWindow"][17]["type"] = "float" +defs["structs"]["ImGuiWindow"][17]["name"] = "ContentSizeExplicit" +defs["structs"]["ImGuiWindow"][17]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][18] = {} -defs["structs"]["ImGuiWindow"][18]["name"] = "WindowBorderSize" -defs["structs"]["ImGuiWindow"][18]["type"] = "float" +defs["structs"]["ImGuiWindow"][18]["name"] = "WindowPadding" +defs["structs"]["ImGuiWindow"][18]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][19] = {} -defs["structs"]["ImGuiWindow"][19]["name"] = "DecoOuterSizeX1" +defs["structs"]["ImGuiWindow"][19]["name"] = "WindowRounding" defs["structs"]["ImGuiWindow"][19]["type"] = "float" defs["structs"]["ImGuiWindow"][20] = {} -defs["structs"]["ImGuiWindow"][20]["name"] = "DecoOuterSizeY1" +defs["structs"]["ImGuiWindow"][20]["name"] = "WindowBorderSize" defs["structs"]["ImGuiWindow"][20]["type"] = "float" defs["structs"]["ImGuiWindow"][21] = {} -defs["structs"]["ImGuiWindow"][21]["name"] = "DecoOuterSizeX2" +defs["structs"]["ImGuiWindow"][21]["name"] = "TitleBarHeight" defs["structs"]["ImGuiWindow"][21]["type"] = "float" defs["structs"]["ImGuiWindow"][22] = {} -defs["structs"]["ImGuiWindow"][22]["name"] = "DecoOuterSizeY2" +defs["structs"]["ImGuiWindow"][22]["name"] = "MenuBarHeight" defs["structs"]["ImGuiWindow"][22]["type"] = "float" defs["structs"]["ImGuiWindow"][23] = {} -defs["structs"]["ImGuiWindow"][23]["name"] = "DecoInnerSizeX1" +defs["structs"]["ImGuiWindow"][23]["name"] = "DecoOuterSizeX1" defs["structs"]["ImGuiWindow"][23]["type"] = "float" defs["structs"]["ImGuiWindow"][24] = {} -defs["structs"]["ImGuiWindow"][24]["name"] = "DecoInnerSizeY1" +defs["structs"]["ImGuiWindow"][24]["name"] = "DecoOuterSizeY1" defs["structs"]["ImGuiWindow"][24]["type"] = "float" defs["structs"]["ImGuiWindow"][25] = {} -defs["structs"]["ImGuiWindow"][25]["name"] = "NameBufLen" -defs["structs"]["ImGuiWindow"][25]["type"] = "int" +defs["structs"]["ImGuiWindow"][25]["name"] = "DecoOuterSizeX2" +defs["structs"]["ImGuiWindow"][25]["type"] = "float" defs["structs"]["ImGuiWindow"][26] = {} -defs["structs"]["ImGuiWindow"][26]["name"] = "MoveId" -defs["structs"]["ImGuiWindow"][26]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][26]["name"] = "DecoOuterSizeY2" +defs["structs"]["ImGuiWindow"][26]["type"] = "float" defs["structs"]["ImGuiWindow"][27] = {} -defs["structs"]["ImGuiWindow"][27]["name"] = "TabId" -defs["structs"]["ImGuiWindow"][27]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][27]["name"] = "DecoInnerSizeX1" +defs["structs"]["ImGuiWindow"][27]["type"] = "float" defs["structs"]["ImGuiWindow"][28] = {} -defs["structs"]["ImGuiWindow"][28]["name"] = "ChildId" -defs["structs"]["ImGuiWindow"][28]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][28]["name"] = "DecoInnerSizeY1" +defs["structs"]["ImGuiWindow"][28]["type"] = "float" defs["structs"]["ImGuiWindow"][29] = {} -defs["structs"]["ImGuiWindow"][29]["name"] = "Scroll" -defs["structs"]["ImGuiWindow"][29]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][29]["name"] = "NameBufLen" +defs["structs"]["ImGuiWindow"][29]["type"] = "int" defs["structs"]["ImGuiWindow"][30] = {} -defs["structs"]["ImGuiWindow"][30]["name"] = "ScrollMax" -defs["structs"]["ImGuiWindow"][30]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][30]["name"] = "MoveId" +defs["structs"]["ImGuiWindow"][30]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][31] = {} -defs["structs"]["ImGuiWindow"][31]["name"] = "ScrollTarget" -defs["structs"]["ImGuiWindow"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][31]["name"] = "TabId" +defs["structs"]["ImGuiWindow"][31]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][32] = {} -defs["structs"]["ImGuiWindow"][32]["name"] = "ScrollTargetCenterRatio" -defs["structs"]["ImGuiWindow"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][32]["name"] = "ChildId" +defs["structs"]["ImGuiWindow"][32]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][33] = {} -defs["structs"]["ImGuiWindow"][33]["name"] = "ScrollTargetEdgeSnapDist" -defs["structs"]["ImGuiWindow"][33]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][33]["name"] = "PopupId" +defs["structs"]["ImGuiWindow"][33]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][34] = {} -defs["structs"]["ImGuiWindow"][34]["name"] = "ScrollbarSizes" +defs["structs"]["ImGuiWindow"][34]["name"] = "Scroll" defs["structs"]["ImGuiWindow"][34]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][35] = {} -defs["structs"]["ImGuiWindow"][35]["name"] = "ScrollbarX" -defs["structs"]["ImGuiWindow"][35]["type"] = "bool" +defs["structs"]["ImGuiWindow"][35]["name"] = "ScrollMax" +defs["structs"]["ImGuiWindow"][35]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][36] = {} -defs["structs"]["ImGuiWindow"][36]["name"] = "ScrollbarY" -defs["structs"]["ImGuiWindow"][36]["type"] = "bool" +defs["structs"]["ImGuiWindow"][36]["name"] = "ScrollTarget" +defs["structs"]["ImGuiWindow"][36]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][37] = {} -defs["structs"]["ImGuiWindow"][37]["name"] = "ViewportOwned" -defs["structs"]["ImGuiWindow"][37]["type"] = "bool" +defs["structs"]["ImGuiWindow"][37]["name"] = "ScrollTargetCenterRatio" +defs["structs"]["ImGuiWindow"][37]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][38] = {} -defs["structs"]["ImGuiWindow"][38]["name"] = "Active" -defs["structs"]["ImGuiWindow"][38]["type"] = "bool" +defs["structs"]["ImGuiWindow"][38]["name"] = "ScrollTargetEdgeSnapDist" +defs["structs"]["ImGuiWindow"][38]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][39] = {} -defs["structs"]["ImGuiWindow"][39]["name"] = "WasActive" -defs["structs"]["ImGuiWindow"][39]["type"] = "bool" +defs["structs"]["ImGuiWindow"][39]["name"] = "ScrollbarSizes" +defs["structs"]["ImGuiWindow"][39]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][40] = {} -defs["structs"]["ImGuiWindow"][40]["name"] = "WriteAccessed" +defs["structs"]["ImGuiWindow"][40]["name"] = "ScrollbarX" defs["structs"]["ImGuiWindow"][40]["type"] = "bool" defs["structs"]["ImGuiWindow"][41] = {} -defs["structs"]["ImGuiWindow"][41]["name"] = "Collapsed" +defs["structs"]["ImGuiWindow"][41]["name"] = "ScrollbarY" defs["structs"]["ImGuiWindow"][41]["type"] = "bool" defs["structs"]["ImGuiWindow"][42] = {} -defs["structs"]["ImGuiWindow"][42]["name"] = "WantCollapseToggle" +defs["structs"]["ImGuiWindow"][42]["name"] = "ViewportOwned" defs["structs"]["ImGuiWindow"][42]["type"] = "bool" defs["structs"]["ImGuiWindow"][43] = {} -defs["structs"]["ImGuiWindow"][43]["name"] = "SkipItems" +defs["structs"]["ImGuiWindow"][43]["name"] = "Active" defs["structs"]["ImGuiWindow"][43]["type"] = "bool" defs["structs"]["ImGuiWindow"][44] = {} -defs["structs"]["ImGuiWindow"][44]["name"] = "Appearing" +defs["structs"]["ImGuiWindow"][44]["name"] = "WasActive" defs["structs"]["ImGuiWindow"][44]["type"] = "bool" defs["structs"]["ImGuiWindow"][45] = {} -defs["structs"]["ImGuiWindow"][45]["name"] = "Hidden" +defs["structs"]["ImGuiWindow"][45]["name"] = "WriteAccessed" defs["structs"]["ImGuiWindow"][45]["type"] = "bool" defs["structs"]["ImGuiWindow"][46] = {} -defs["structs"]["ImGuiWindow"][46]["name"] = "IsFallbackWindow" +defs["structs"]["ImGuiWindow"][46]["name"] = "Collapsed" defs["structs"]["ImGuiWindow"][46]["type"] = "bool" defs["structs"]["ImGuiWindow"][47] = {} -defs["structs"]["ImGuiWindow"][47]["name"] = "IsExplicitChild" +defs["structs"]["ImGuiWindow"][47]["name"] = "WantCollapseToggle" defs["structs"]["ImGuiWindow"][47]["type"] = "bool" defs["structs"]["ImGuiWindow"][48] = {} -defs["structs"]["ImGuiWindow"][48]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][48]["name"] = "SkipItems" defs["structs"]["ImGuiWindow"][48]["type"] = "bool" defs["structs"]["ImGuiWindow"][49] = {} -defs["structs"]["ImGuiWindow"][49]["name"] = "ResizeBorderHeld" -defs["structs"]["ImGuiWindow"][49]["type"] = "signed char" +defs["structs"]["ImGuiWindow"][49]["name"] = "SkipRefresh" +defs["structs"]["ImGuiWindow"][49]["type"] = "bool" defs["structs"]["ImGuiWindow"][50] = {} -defs["structs"]["ImGuiWindow"][50]["name"] = "BeginCount" -defs["structs"]["ImGuiWindow"][50]["type"] = "short" +defs["structs"]["ImGuiWindow"][50]["name"] = "Appearing" +defs["structs"]["ImGuiWindow"][50]["type"] = "bool" defs["structs"]["ImGuiWindow"][51] = {} -defs["structs"]["ImGuiWindow"][51]["name"] = "BeginCountPreviousFrame" -defs["structs"]["ImGuiWindow"][51]["type"] = "short" +defs["structs"]["ImGuiWindow"][51]["name"] = "Hidden" +defs["structs"]["ImGuiWindow"][51]["type"] = "bool" defs["structs"]["ImGuiWindow"][52] = {} -defs["structs"]["ImGuiWindow"][52]["name"] = "BeginOrderWithinParent" -defs["structs"]["ImGuiWindow"][52]["type"] = "short" +defs["structs"]["ImGuiWindow"][52]["name"] = "IsFallbackWindow" +defs["structs"]["ImGuiWindow"][52]["type"] = "bool" defs["structs"]["ImGuiWindow"][53] = {} -defs["structs"]["ImGuiWindow"][53]["name"] = "BeginOrderWithinContext" -defs["structs"]["ImGuiWindow"][53]["type"] = "short" +defs["structs"]["ImGuiWindow"][53]["name"] = "IsExplicitChild" +defs["structs"]["ImGuiWindow"][53]["type"] = "bool" defs["structs"]["ImGuiWindow"][54] = {} -defs["structs"]["ImGuiWindow"][54]["name"] = "FocusOrder" -defs["structs"]["ImGuiWindow"][54]["type"] = "short" +defs["structs"]["ImGuiWindow"][54]["name"] = "HasCloseButton" +defs["structs"]["ImGuiWindow"][54]["type"] = "bool" defs["structs"]["ImGuiWindow"][55] = {} -defs["structs"]["ImGuiWindow"][55]["name"] = "PopupId" -defs["structs"]["ImGuiWindow"][55]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][55]["name"] = "ResizeBorderHovered" +defs["structs"]["ImGuiWindow"][55]["type"] = "signed char" defs["structs"]["ImGuiWindow"][56] = {} -defs["structs"]["ImGuiWindow"][56]["name"] = "AutoFitFramesX" -defs["structs"]["ImGuiWindow"][56]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][56]["name"] = "ResizeBorderHeld" +defs["structs"]["ImGuiWindow"][56]["type"] = "signed char" defs["structs"]["ImGuiWindow"][57] = {} -defs["structs"]["ImGuiWindow"][57]["name"] = "AutoFitFramesY" -defs["structs"]["ImGuiWindow"][57]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][57]["name"] = "BeginCount" +defs["structs"]["ImGuiWindow"][57]["type"] = "short" defs["structs"]["ImGuiWindow"][58] = {} -defs["structs"]["ImGuiWindow"][58]["name"] = "AutoFitChildAxises" -defs["structs"]["ImGuiWindow"][58]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][58]["name"] = "BeginCountPreviousFrame" +defs["structs"]["ImGuiWindow"][58]["type"] = "short" defs["structs"]["ImGuiWindow"][59] = {} -defs["structs"]["ImGuiWindow"][59]["name"] = "AutoFitOnlyGrows" -defs["structs"]["ImGuiWindow"][59]["type"] = "bool" +defs["structs"]["ImGuiWindow"][59]["name"] = "BeginOrderWithinParent" +defs["structs"]["ImGuiWindow"][59]["type"] = "short" defs["structs"]["ImGuiWindow"][60] = {} -defs["structs"]["ImGuiWindow"][60]["name"] = "AutoPosLastDirection" -defs["structs"]["ImGuiWindow"][60]["type"] = "ImGuiDir" +defs["structs"]["ImGuiWindow"][60]["name"] = "BeginOrderWithinContext" +defs["structs"]["ImGuiWindow"][60]["type"] = "short" defs["structs"]["ImGuiWindow"][61] = {} -defs["structs"]["ImGuiWindow"][61]["name"] = "HiddenFramesCanSkipItems" -defs["structs"]["ImGuiWindow"][61]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][61]["name"] = "FocusOrder" +defs["structs"]["ImGuiWindow"][61]["type"] = "short" defs["structs"]["ImGuiWindow"][62] = {} -defs["structs"]["ImGuiWindow"][62]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][62]["name"] = "AutoFitFramesX" defs["structs"]["ImGuiWindow"][62]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][63] = {} -defs["structs"]["ImGuiWindow"][63]["name"] = "HiddenFramesForRenderOnly" +defs["structs"]["ImGuiWindow"][63]["name"] = "AutoFitFramesY" defs["structs"]["ImGuiWindow"][63]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][64] = {} -defs["structs"]["ImGuiWindow"][64]["name"] = "DisableInputsFrames" -defs["structs"]["ImGuiWindow"][64]["type"] = "ImS8" +defs["structs"]["ImGuiWindow"][64]["name"] = "AutoFitOnlyGrows" +defs["structs"]["ImGuiWindow"][64]["type"] = "bool" defs["structs"]["ImGuiWindow"][65] = {} -defs["structs"]["ImGuiWindow"][65]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][65]["name"] = "SetWindowPosAllowFlags" -defs["structs"]["ImGuiWindow"][65]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][65]["name"] = "AutoPosLastDirection" +defs["structs"]["ImGuiWindow"][65]["type"] = "ImGuiDir" defs["structs"]["ImGuiWindow"][66] = {} -defs["structs"]["ImGuiWindow"][66]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][66]["name"] = "SetWindowSizeAllowFlags" -defs["structs"]["ImGuiWindow"][66]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][66]["name"] = "HiddenFramesCanSkipItems" +defs["structs"]["ImGuiWindow"][66]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][67] = {} -defs["structs"]["ImGuiWindow"][67]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][67]["name"] = "SetWindowCollapsedAllowFlags" -defs["structs"]["ImGuiWindow"][67]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][67]["name"] = "HiddenFramesCannotSkipItems" +defs["structs"]["ImGuiWindow"][67]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][68] = {} -defs["structs"]["ImGuiWindow"][68]["bitfield"] = "8" -defs["structs"]["ImGuiWindow"][68]["name"] = "SetWindowDockAllowFlags" -defs["structs"]["ImGuiWindow"][68]["type"] = "ImGuiCond" +defs["structs"]["ImGuiWindow"][68]["name"] = "HiddenFramesForRenderOnly" +defs["structs"]["ImGuiWindow"][68]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][69] = {} -defs["structs"]["ImGuiWindow"][69]["name"] = "SetWindowPosVal" -defs["structs"]["ImGuiWindow"][69]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][69]["name"] = "DisableInputsFrames" +defs["structs"]["ImGuiWindow"][69]["type"] = "ImS8" defs["structs"]["ImGuiWindow"][70] = {} -defs["structs"]["ImGuiWindow"][70]["name"] = "SetWindowPosPivot" -defs["structs"]["ImGuiWindow"][70]["type"] = "ImVec2" +defs["structs"]["ImGuiWindow"][70]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][70]["name"] = "SetWindowPosAllowFlags" +defs["structs"]["ImGuiWindow"][70]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][71] = {} -defs["structs"]["ImGuiWindow"][71]["name"] = "IDStack" -defs["structs"]["ImGuiWindow"][71]["template_type"] = "ImGuiID" -defs["structs"]["ImGuiWindow"][71]["type"] = "ImVector_ImGuiID" +defs["structs"]["ImGuiWindow"][71]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][71]["name"] = "SetWindowSizeAllowFlags" +defs["structs"]["ImGuiWindow"][71]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][72] = {} -defs["structs"]["ImGuiWindow"][72]["name"] = "DC" -defs["structs"]["ImGuiWindow"][72]["type"] = "ImGuiWindowTempData" +defs["structs"]["ImGuiWindow"][72]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][72]["name"] = "SetWindowCollapsedAllowFlags" +defs["structs"]["ImGuiWindow"][72]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][73] = {} -defs["structs"]["ImGuiWindow"][73]["name"] = "OuterRectClipped" -defs["structs"]["ImGuiWindow"][73]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][73]["bitfield"] = "8" +defs["structs"]["ImGuiWindow"][73]["name"] = "SetWindowDockAllowFlags" +defs["structs"]["ImGuiWindow"][73]["type"] = "ImGuiCond" defs["structs"]["ImGuiWindow"][74] = {} -defs["structs"]["ImGuiWindow"][74]["name"] = "InnerRect" -defs["structs"]["ImGuiWindow"][74]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][74]["name"] = "SetWindowPosVal" +defs["structs"]["ImGuiWindow"][74]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][75] = {} -defs["structs"]["ImGuiWindow"][75]["name"] = "InnerClipRect" -defs["structs"]["ImGuiWindow"][75]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][75]["name"] = "SetWindowPosPivot" +defs["structs"]["ImGuiWindow"][75]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][76] = {} -defs["structs"]["ImGuiWindow"][76]["name"] = "WorkRect" -defs["structs"]["ImGuiWindow"][76]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][76]["name"] = "IDStack" +defs["structs"]["ImGuiWindow"][76]["template_type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][76]["type"] = "ImVector_ImGuiID" defs["structs"]["ImGuiWindow"][77] = {} -defs["structs"]["ImGuiWindow"][77]["name"] = "ParentWorkRect" -defs["structs"]["ImGuiWindow"][77]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][77]["name"] = "DC" +defs["structs"]["ImGuiWindow"][77]["type"] = "ImGuiWindowTempData" defs["structs"]["ImGuiWindow"][78] = {} -defs["structs"]["ImGuiWindow"][78]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][78]["name"] = "OuterRectClipped" defs["structs"]["ImGuiWindow"][78]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][79] = {} -defs["structs"]["ImGuiWindow"][79]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][79]["name"] = "InnerRect" defs["structs"]["ImGuiWindow"][79]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][80] = {} -defs["structs"]["ImGuiWindow"][80]["name"] = "HitTestHoleSize" -defs["structs"]["ImGuiWindow"][80]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][80]["name"] = "InnerClipRect" +defs["structs"]["ImGuiWindow"][80]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][81] = {} -defs["structs"]["ImGuiWindow"][81]["name"] = "HitTestHoleOffset" -defs["structs"]["ImGuiWindow"][81]["type"] = "ImVec2ih" +defs["structs"]["ImGuiWindow"][81]["name"] = "WorkRect" +defs["structs"]["ImGuiWindow"][81]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][82] = {} -defs["structs"]["ImGuiWindow"][82]["name"] = "LastFrameActive" -defs["structs"]["ImGuiWindow"][82]["type"] = "int" +defs["structs"]["ImGuiWindow"][82]["name"] = "ParentWorkRect" +defs["structs"]["ImGuiWindow"][82]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][83] = {} -defs["structs"]["ImGuiWindow"][83]["name"] = "LastFrameJustFocused" -defs["structs"]["ImGuiWindow"][83]["type"] = "int" +defs["structs"]["ImGuiWindow"][83]["name"] = "ClipRect" +defs["structs"]["ImGuiWindow"][83]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][84] = {} -defs["structs"]["ImGuiWindow"][84]["name"] = "LastTimeActive" -defs["structs"]["ImGuiWindow"][84]["type"] = "float" +defs["structs"]["ImGuiWindow"][84]["name"] = "ContentRegionRect" +defs["structs"]["ImGuiWindow"][84]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][85] = {} -defs["structs"]["ImGuiWindow"][85]["name"] = "ItemWidthDefault" -defs["structs"]["ImGuiWindow"][85]["type"] = "float" +defs["structs"]["ImGuiWindow"][85]["name"] = "HitTestHoleSize" +defs["structs"]["ImGuiWindow"][85]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][86] = {} -defs["structs"]["ImGuiWindow"][86]["name"] = "StateStorage" -defs["structs"]["ImGuiWindow"][86]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiWindow"][86]["name"] = "HitTestHoleOffset" +defs["structs"]["ImGuiWindow"][86]["type"] = "ImVec2ih" defs["structs"]["ImGuiWindow"][87] = {} -defs["structs"]["ImGuiWindow"][87]["name"] = "ColumnsStorage" -defs["structs"]["ImGuiWindow"][87]["template_type"] = "ImGuiOldColumns" -defs["structs"]["ImGuiWindow"][87]["type"] = "ImVector_ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][87]["name"] = "LastFrameActive" +defs["structs"]["ImGuiWindow"][87]["type"] = "int" defs["structs"]["ImGuiWindow"][88] = {} -defs["structs"]["ImGuiWindow"][88]["name"] = "FontWindowScale" -defs["structs"]["ImGuiWindow"][88]["type"] = "float" +defs["structs"]["ImGuiWindow"][88]["name"] = "LastFrameJustFocused" +defs["structs"]["ImGuiWindow"][88]["type"] = "int" defs["structs"]["ImGuiWindow"][89] = {} -defs["structs"]["ImGuiWindow"][89]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][89]["name"] = "LastTimeActive" defs["structs"]["ImGuiWindow"][89]["type"] = "float" defs["structs"]["ImGuiWindow"][90] = {} -defs["structs"]["ImGuiWindow"][90]["name"] = "SettingsOffset" -defs["structs"]["ImGuiWindow"][90]["type"] = "int" +defs["structs"]["ImGuiWindow"][90]["name"] = "ItemWidthDefault" +defs["structs"]["ImGuiWindow"][90]["type"] = "float" defs["structs"]["ImGuiWindow"][91] = {} -defs["structs"]["ImGuiWindow"][91]["name"] = "DrawList" -defs["structs"]["ImGuiWindow"][91]["type"] = "ImDrawList*" +defs["structs"]["ImGuiWindow"][91]["name"] = "StateStorage" +defs["structs"]["ImGuiWindow"][91]["type"] = "ImGuiStorage" defs["structs"]["ImGuiWindow"][92] = {} -defs["structs"]["ImGuiWindow"][92]["name"] = "DrawListInst" -defs["structs"]["ImGuiWindow"][92]["type"] = "ImDrawList" +defs["structs"]["ImGuiWindow"][92]["name"] = "ColumnsStorage" +defs["structs"]["ImGuiWindow"][92]["template_type"] = "ImGuiOldColumns" +defs["structs"]["ImGuiWindow"][92]["type"] = "ImVector_ImGuiOldColumns" defs["structs"]["ImGuiWindow"][93] = {} -defs["structs"]["ImGuiWindow"][93]["name"] = "ParentWindow" -defs["structs"]["ImGuiWindow"][93]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][93]["name"] = "FontWindowScale" +defs["structs"]["ImGuiWindow"][93]["type"] = "float" defs["structs"]["ImGuiWindow"][94] = {} -defs["structs"]["ImGuiWindow"][94]["name"] = "ParentWindowInBeginStack" -defs["structs"]["ImGuiWindow"][94]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][94]["name"] = "FontDpiScale" +defs["structs"]["ImGuiWindow"][94]["type"] = "float" defs["structs"]["ImGuiWindow"][95] = {} -defs["structs"]["ImGuiWindow"][95]["name"] = "RootWindow" -defs["structs"]["ImGuiWindow"][95]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][95]["name"] = "SettingsOffset" +defs["structs"]["ImGuiWindow"][95]["type"] = "int" defs["structs"]["ImGuiWindow"][96] = {} -defs["structs"]["ImGuiWindow"][96]["name"] = "RootWindowPopupTree" -defs["structs"]["ImGuiWindow"][96]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][96]["name"] = "DrawList" +defs["structs"]["ImGuiWindow"][96]["type"] = "ImDrawList*" defs["structs"]["ImGuiWindow"][97] = {} -defs["structs"]["ImGuiWindow"][97]["name"] = "RootWindowDockTree" -defs["structs"]["ImGuiWindow"][97]["type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindow"][97]["name"] = "DrawListInst" +defs["structs"]["ImGuiWindow"][97]["type"] = "ImDrawList" defs["structs"]["ImGuiWindow"][98] = {} -defs["structs"]["ImGuiWindow"][98]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][98]["name"] = "ParentWindow" defs["structs"]["ImGuiWindow"][98]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][99] = {} -defs["structs"]["ImGuiWindow"][99]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][99]["name"] = "ParentWindowInBeginStack" defs["structs"]["ImGuiWindow"][99]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][100] = {} -defs["structs"]["ImGuiWindow"][100]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][100]["name"] = "RootWindow" defs["structs"]["ImGuiWindow"][100]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][101] = {} -defs["structs"]["ImGuiWindow"][101]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][101]["size"] = 2 -defs["structs"]["ImGuiWindow"][101]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][101]["name"] = "RootWindowPopupTree" +defs["structs"]["ImGuiWindow"][101]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][102] = {} -defs["structs"]["ImGuiWindow"][102]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" -defs["structs"]["ImGuiWindow"][102]["size"] = 2 -defs["structs"]["ImGuiWindow"][102]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][102]["name"] = "RootWindowDockTree" +defs["structs"]["ImGuiWindow"][102]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][103] = {} -defs["structs"]["ImGuiWindow"][103]["name"] = "NavRootFocusScopeId" -defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][103]["name"] = "RootWindowForTitleBarHighlight" +defs["structs"]["ImGuiWindow"][103]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][104] = {} -defs["structs"]["ImGuiWindow"][104]["name"] = "MemoryDrawListIdxCapacity" -defs["structs"]["ImGuiWindow"][104]["type"] = "int" +defs["structs"]["ImGuiWindow"][104]["name"] = "RootWindowForNav" +defs["structs"]["ImGuiWindow"][104]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][105] = {} -defs["structs"]["ImGuiWindow"][105]["name"] = "MemoryDrawListVtxCapacity" -defs["structs"]["ImGuiWindow"][105]["type"] = "int" +defs["structs"]["ImGuiWindow"][105]["name"] = "ParentWindowForFocusRoute" +defs["structs"]["ImGuiWindow"][105]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][106] = {} -defs["structs"]["ImGuiWindow"][106]["name"] = "MemoryCompacted" -defs["structs"]["ImGuiWindow"][106]["type"] = "bool" +defs["structs"]["ImGuiWindow"][106]["name"] = "NavLastChildNavWindow" +defs["structs"]["ImGuiWindow"][106]["type"] = "ImGuiWindow*" defs["structs"]["ImGuiWindow"][107] = {} -defs["structs"]["ImGuiWindow"][107]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][107]["name"] = "DockIsActive" -defs["structs"]["ImGuiWindow"][107]["type"] = "bool" +defs["structs"]["ImGuiWindow"][107]["name"] = "NavLastIds[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][107]["size"] = 2 +defs["structs"]["ImGuiWindow"][107]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][108] = {} -defs["structs"]["ImGuiWindow"][108]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][108]["name"] = "DockNodeIsVisible" -defs["structs"]["ImGuiWindow"][108]["type"] = "bool" +defs["structs"]["ImGuiWindow"][108]["name"] = "NavRectRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][108]["size"] = 2 +defs["structs"]["ImGuiWindow"][108]["type"] = "ImRect" defs["structs"]["ImGuiWindow"][109] = {} -defs["structs"]["ImGuiWindow"][109]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][109]["name"] = "DockTabIsVisible" -defs["structs"]["ImGuiWindow"][109]["type"] = "bool" +defs["structs"]["ImGuiWindow"][109]["name"] = "NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]" +defs["structs"]["ImGuiWindow"][109]["size"] = 2 +defs["structs"]["ImGuiWindow"][109]["type"] = "ImVec2" defs["structs"]["ImGuiWindow"][110] = {} -defs["structs"]["ImGuiWindow"][110]["bitfield"] = "1" -defs["structs"]["ImGuiWindow"][110]["name"] = "DockTabWantClose" -defs["structs"]["ImGuiWindow"][110]["type"] = "bool" +defs["structs"]["ImGuiWindow"][110]["name"] = "NavRootFocusScopeId" +defs["structs"]["ImGuiWindow"][110]["type"] = "ImGuiID" defs["structs"]["ImGuiWindow"][111] = {} -defs["structs"]["ImGuiWindow"][111]["name"] = "DockOrder" -defs["structs"]["ImGuiWindow"][111]["type"] = "short" +defs["structs"]["ImGuiWindow"][111]["name"] = "MemoryDrawListIdxCapacity" +defs["structs"]["ImGuiWindow"][111]["type"] = "int" defs["structs"]["ImGuiWindow"][112] = {} -defs["structs"]["ImGuiWindow"][112]["name"] = "DockStyle" -defs["structs"]["ImGuiWindow"][112]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][112]["name"] = "MemoryDrawListVtxCapacity" +defs["structs"]["ImGuiWindow"][112]["type"] = "int" defs["structs"]["ImGuiWindow"][113] = {} -defs["structs"]["ImGuiWindow"][113]["name"] = "DockNode" -defs["structs"]["ImGuiWindow"][113]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][113]["name"] = "MemoryCompacted" +defs["structs"]["ImGuiWindow"][113]["type"] = "bool" defs["structs"]["ImGuiWindow"][114] = {} -defs["structs"]["ImGuiWindow"][114]["name"] = "DockNodeAsHost" -defs["structs"]["ImGuiWindow"][114]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][114]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][114]["name"] = "DockIsActive" +defs["structs"]["ImGuiWindow"][114]["type"] = "bool" defs["structs"]["ImGuiWindow"][115] = {} -defs["structs"]["ImGuiWindow"][115]["name"] = "DockId" -defs["structs"]["ImGuiWindow"][115]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][115]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][115]["name"] = "DockNodeIsVisible" +defs["structs"]["ImGuiWindow"][115]["type"] = "bool" defs["structs"]["ImGuiWindow"][116] = {} -defs["structs"]["ImGuiWindow"][116]["name"] = "DockTabItemStatusFlags" -defs["structs"]["ImGuiWindow"][116]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][116]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][116]["name"] = "DockTabIsVisible" +defs["structs"]["ImGuiWindow"][116]["type"] = "bool" defs["structs"]["ImGuiWindow"][117] = {} -defs["structs"]["ImGuiWindow"][117]["name"] = "DockTabItemRect" -defs["structs"]["ImGuiWindow"][117]["type"] = "ImRect" +defs["structs"]["ImGuiWindow"][117]["bitfield"] = "1" +defs["structs"]["ImGuiWindow"][117]["name"] = "DockTabWantClose" +defs["structs"]["ImGuiWindow"][117]["type"] = "bool" +defs["structs"]["ImGuiWindow"][118] = {} +defs["structs"]["ImGuiWindow"][118]["name"] = "DockOrder" +defs["structs"]["ImGuiWindow"][118]["type"] = "short" +defs["structs"]["ImGuiWindow"][119] = {} +defs["structs"]["ImGuiWindow"][119]["name"] = "DockStyle" +defs["structs"]["ImGuiWindow"][119]["type"] = "ImGuiWindowDockStyle" +defs["structs"]["ImGuiWindow"][120] = {} +defs["structs"]["ImGuiWindow"][120]["name"] = "DockNode" +defs["structs"]["ImGuiWindow"][120]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][121] = {} +defs["structs"]["ImGuiWindow"][121]["name"] = "DockNodeAsHost" +defs["structs"]["ImGuiWindow"][121]["type"] = "ImGuiDockNode*" +defs["structs"]["ImGuiWindow"][122] = {} +defs["structs"]["ImGuiWindow"][122]["name"] = "DockId" +defs["structs"]["ImGuiWindow"][122]["type"] = "ImGuiID" +defs["structs"]["ImGuiWindow"][123] = {} +defs["structs"]["ImGuiWindow"][123]["name"] = "DockTabItemStatusFlags" +defs["structs"]["ImGuiWindow"][123]["type"] = "ImGuiItemStatusFlags" +defs["structs"]["ImGuiWindow"][124] = {} +defs["structs"]["ImGuiWindow"][124]["name"] = "DockTabItemRect" +defs["structs"]["ImGuiWindow"][124]["type"] = "ImRect" defs["structs"]["ImGuiWindowClass"] = {} defs["structs"]["ImGuiWindowClass"][1] = {} defs["structs"]["ImGuiWindowClass"][1]["name"] = "ClassId" @@ -7679,27 +8862,30 @@ defs["structs"]["ImGuiWindowClass"][2] = {} defs["structs"]["ImGuiWindowClass"][2]["name"] = "ParentViewportId" defs["structs"]["ImGuiWindowClass"][2]["type"] = "ImGuiID" defs["structs"]["ImGuiWindowClass"][3] = {} -defs["structs"]["ImGuiWindowClass"][3]["name"] = "ViewportFlagsOverrideSet" -defs["structs"]["ImGuiWindowClass"][3]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiWindowClass"][3]["name"] = "FocusRouteParentWindowId" +defs["structs"]["ImGuiWindowClass"][3]["type"] = "ImGuiID" defs["structs"]["ImGuiWindowClass"][4] = {} -defs["structs"]["ImGuiWindowClass"][4]["name"] = "ViewportFlagsOverrideClear" +defs["structs"]["ImGuiWindowClass"][4]["name"] = "ViewportFlagsOverrideSet" defs["structs"]["ImGuiWindowClass"][4]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiWindowClass"][5] = {} -defs["structs"]["ImGuiWindowClass"][5]["name"] = "TabItemFlagsOverrideSet" -defs["structs"]["ImGuiWindowClass"][5]["type"] = "ImGuiTabItemFlags" +defs["structs"]["ImGuiWindowClass"][5]["name"] = "ViewportFlagsOverrideClear" +defs["structs"]["ImGuiWindowClass"][5]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiWindowClass"][6] = {} -defs["structs"]["ImGuiWindowClass"][6]["name"] = "DockNodeFlagsOverrideSet" -defs["structs"]["ImGuiWindowClass"][6]["type"] = "ImGuiDockNodeFlags" +defs["structs"]["ImGuiWindowClass"][6]["name"] = "TabItemFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][6]["type"] = "ImGuiTabItemFlags" defs["structs"]["ImGuiWindowClass"][7] = {} -defs["structs"]["ImGuiWindowClass"][7]["name"] = "DockingAlwaysTabBar" -defs["structs"]["ImGuiWindowClass"][7]["type"] = "bool" +defs["structs"]["ImGuiWindowClass"][7]["name"] = "DockNodeFlagsOverrideSet" +defs["structs"]["ImGuiWindowClass"][7]["type"] = "ImGuiDockNodeFlags" defs["structs"]["ImGuiWindowClass"][8] = {} -defs["structs"]["ImGuiWindowClass"][8]["name"] = "DockingAllowUnclassed" +defs["structs"]["ImGuiWindowClass"][8]["name"] = "DockingAlwaysTabBar" defs["structs"]["ImGuiWindowClass"][8]["type"] = "bool" +defs["structs"]["ImGuiWindowClass"][9] = {} +defs["structs"]["ImGuiWindowClass"][9]["name"] = "DockingAllowUnclassed" +defs["structs"]["ImGuiWindowClass"][9]["type"] = "bool" defs["structs"]["ImGuiWindowDockStyle"] = {} defs["structs"]["ImGuiWindowDockStyle"][1] = {} defs["structs"]["ImGuiWindowDockStyle"][1]["name"] = "Colors[ImGuiWindowDockStyleCol_COUNT]" -defs["structs"]["ImGuiWindowDockStyle"][1]["size"] = 6 +defs["structs"]["ImGuiWindowDockStyle"][1]["size"] = 8 defs["structs"]["ImGuiWindowDockStyle"][1]["type"] = "ImU32" defs["structs"]["ImGuiWindowSettings"] = {} defs["structs"]["ImGuiWindowSettings"][1] = {} @@ -7730,8 +8916,14 @@ defs["structs"]["ImGuiWindowSettings"][9] = {} defs["structs"]["ImGuiWindowSettings"][9]["name"] = "Collapsed" defs["structs"]["ImGuiWindowSettings"][9]["type"] = "bool" defs["structs"]["ImGuiWindowSettings"][10] = {} -defs["structs"]["ImGuiWindowSettings"][10]["name"] = "WantApply" +defs["structs"]["ImGuiWindowSettings"][10]["name"] = "IsChild" defs["structs"]["ImGuiWindowSettings"][10]["type"] = "bool" +defs["structs"]["ImGuiWindowSettings"][11] = {} +defs["structs"]["ImGuiWindowSettings"][11]["name"] = "WantApply" +defs["structs"]["ImGuiWindowSettings"][11]["type"] = "bool" +defs["structs"]["ImGuiWindowSettings"][12] = {} +defs["structs"]["ImGuiWindowSettings"][12]["name"] = "WantDelete" +defs["structs"]["ImGuiWindowSettings"][12]["type"] = "bool" defs["structs"]["ImGuiWindowStackData"] = {} defs["structs"]["ImGuiWindowStackData"][1] = {} defs["structs"]["ImGuiWindowStackData"][1]["name"] = "Window" @@ -7742,6 +8934,9 @@ defs["structs"]["ImGuiWindowStackData"][2]["type"] = "ImGuiLastItemData" defs["structs"]["ImGuiWindowStackData"][3] = {} defs["structs"]["ImGuiWindowStackData"][3]["name"] = "StackSizesOnBegin" defs["structs"]["ImGuiWindowStackData"][3]["type"] = "ImGuiStackSizes" +defs["structs"]["ImGuiWindowStackData"][4] = {} +defs["structs"]["ImGuiWindowStackData"][4]["name"] = "DisabledOverrideReenable" +defs["structs"]["ImGuiWindowStackData"][4]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"] = {} defs["structs"]["ImGuiWindowTempData"][1] = {} defs["structs"]["ImGuiWindowTempData"][1]["name"] = "CursorPos" @@ -7798,59 +8993,65 @@ defs["structs"]["ImGuiWindowTempData"][18] = {} defs["structs"]["ImGuiWindowTempData"][18]["name"] = "NavLayersActiveMaskNext" defs["structs"]["ImGuiWindowTempData"][18]["type"] = "short" defs["structs"]["ImGuiWindowTempData"][19] = {} -defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavHideHighlightOneFrame" +defs["structs"]["ImGuiWindowTempData"][19]["name"] = "NavIsScrollPushableX" defs["structs"]["ImGuiWindowTempData"][19]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][20] = {} -defs["structs"]["ImGuiWindowTempData"][20]["name"] = "NavHasScroll" +defs["structs"]["ImGuiWindowTempData"][20]["name"] = "NavHideHighlightOneFrame" defs["structs"]["ImGuiWindowTempData"][20]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][21] = {} -defs["structs"]["ImGuiWindowTempData"][21]["name"] = "MenuBarAppending" +defs["structs"]["ImGuiWindowTempData"][21]["name"] = "NavWindowHasScrollY" defs["structs"]["ImGuiWindowTempData"][21]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][22] = {} -defs["structs"]["ImGuiWindowTempData"][22]["name"] = "MenuBarOffset" -defs["structs"]["ImGuiWindowTempData"][22]["type"] = "ImVec2" +defs["structs"]["ImGuiWindowTempData"][22]["name"] = "MenuBarAppending" +defs["structs"]["ImGuiWindowTempData"][22]["type"] = "bool" defs["structs"]["ImGuiWindowTempData"][23] = {} -defs["structs"]["ImGuiWindowTempData"][23]["name"] = "MenuColumns" -defs["structs"]["ImGuiWindowTempData"][23]["type"] = "ImGuiMenuColumns" +defs["structs"]["ImGuiWindowTempData"][23]["name"] = "MenuBarOffset" +defs["structs"]["ImGuiWindowTempData"][23]["type"] = "ImVec2" defs["structs"]["ImGuiWindowTempData"][24] = {} -defs["structs"]["ImGuiWindowTempData"][24]["name"] = "TreeDepth" -defs["structs"]["ImGuiWindowTempData"][24]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][24]["name"] = "MenuColumns" +defs["structs"]["ImGuiWindowTempData"][24]["type"] = "ImGuiMenuColumns" defs["structs"]["ImGuiWindowTempData"][25] = {} -defs["structs"]["ImGuiWindowTempData"][25]["name"] = "TreeJumpToParentOnPopMask" -defs["structs"]["ImGuiWindowTempData"][25]["type"] = "ImU32" +defs["structs"]["ImGuiWindowTempData"][25]["name"] = "TreeDepth" +defs["structs"]["ImGuiWindowTempData"][25]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][26] = {} -defs["structs"]["ImGuiWindowTempData"][26]["name"] = "ChildWindows" -defs["structs"]["ImGuiWindowTempData"][26]["template_type"] = "ImGuiWindow*" -defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImVector_ImGuiWindowPtr" +defs["structs"]["ImGuiWindowTempData"][26]["name"] = "TreeHasStackDataDepthMask" +defs["structs"]["ImGuiWindowTempData"][26]["type"] = "ImU32" defs["structs"]["ImGuiWindowTempData"][27] = {} -defs["structs"]["ImGuiWindowTempData"][27]["name"] = "StateStorage" -defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImGuiStorage*" +defs["structs"]["ImGuiWindowTempData"][27]["name"] = "ChildWindows" +defs["structs"]["ImGuiWindowTempData"][27]["template_type"] = "ImGuiWindow*" +defs["structs"]["ImGuiWindowTempData"][27]["type"] = "ImVector_ImGuiWindowPtr" defs["structs"]["ImGuiWindowTempData"][28] = {} -defs["structs"]["ImGuiWindowTempData"][28]["name"] = "CurrentColumns" -defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImGuiOldColumns*" +defs["structs"]["ImGuiWindowTempData"][28]["name"] = "StateStorage" +defs["structs"]["ImGuiWindowTempData"][28]["type"] = "ImGuiStorage*" defs["structs"]["ImGuiWindowTempData"][29] = {} -defs["structs"]["ImGuiWindowTempData"][29]["name"] = "CurrentTableIdx" -defs["structs"]["ImGuiWindowTempData"][29]["type"] = "int" +defs["structs"]["ImGuiWindowTempData"][29]["name"] = "CurrentColumns" +defs["structs"]["ImGuiWindowTempData"][29]["type"] = "ImGuiOldColumns*" defs["structs"]["ImGuiWindowTempData"][30] = {} -defs["structs"]["ImGuiWindowTempData"][30]["name"] = "LayoutType" -defs["structs"]["ImGuiWindowTempData"][30]["type"] = "ImGuiLayoutType" +defs["structs"]["ImGuiWindowTempData"][30]["name"] = "CurrentTableIdx" +defs["structs"]["ImGuiWindowTempData"][30]["type"] = "int" defs["structs"]["ImGuiWindowTempData"][31] = {} -defs["structs"]["ImGuiWindowTempData"][31]["name"] = "ParentLayoutType" +defs["structs"]["ImGuiWindowTempData"][31]["name"] = "LayoutType" defs["structs"]["ImGuiWindowTempData"][31]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][32] = {} -defs["structs"]["ImGuiWindowTempData"][32]["name"] = "ItemWidth" -defs["structs"]["ImGuiWindowTempData"][32]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][32]["name"] = "ParentLayoutType" +defs["structs"]["ImGuiWindowTempData"][32]["type"] = "ImGuiLayoutType" defs["structs"]["ImGuiWindowTempData"][33] = {} -defs["structs"]["ImGuiWindowTempData"][33]["name"] = "TextWrapPos" -defs["structs"]["ImGuiWindowTempData"][33]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][33]["name"] = "ModalDimBgColor" +defs["structs"]["ImGuiWindowTempData"][33]["type"] = "ImU32" defs["structs"]["ImGuiWindowTempData"][34] = {} -defs["structs"]["ImGuiWindowTempData"][34]["name"] = "ItemWidthStack" -defs["structs"]["ImGuiWindowTempData"][34]["template_type"] = "float" -defs["structs"]["ImGuiWindowTempData"][34]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][34]["name"] = "ItemWidth" +defs["structs"]["ImGuiWindowTempData"][34]["type"] = "float" defs["structs"]["ImGuiWindowTempData"][35] = {} -defs["structs"]["ImGuiWindowTempData"][35]["name"] = "TextWrapPosStack" -defs["structs"]["ImGuiWindowTempData"][35]["template_type"] = "float" -defs["structs"]["ImGuiWindowTempData"][35]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][35]["name"] = "TextWrapPos" +defs["structs"]["ImGuiWindowTempData"][35]["type"] = "float" +defs["structs"]["ImGuiWindowTempData"][36] = {} +defs["structs"]["ImGuiWindowTempData"][36]["name"] = "ItemWidthStack" +defs["structs"]["ImGuiWindowTempData"][36]["template_type"] = "float" +defs["structs"]["ImGuiWindowTempData"][36]["type"] = "ImVector_float" +defs["structs"]["ImGuiWindowTempData"][37] = {} +defs["structs"]["ImGuiWindowTempData"][37]["name"] = "TextWrapPosStack" +defs["structs"]["ImGuiWindowTempData"][37]["template_type"] = "float" +defs["structs"]["ImGuiWindowTempData"][37]["type"] = "ImVector_float" defs["structs"]["ImRect"] = {} defs["structs"]["ImRect"][1] = {} defs["structs"]["ImRect"][1]["name"] = "Min" @@ -7889,102 +9090,6 @@ defs["structs"]["ImVec4"][3]["type"] = "float" defs["structs"]["ImVec4"][4] = {} defs["structs"]["ImVec4"][4]["name"] = "w" defs["structs"]["ImVec4"][4]["type"] = "float" -defs["structs"]["STB_TexteditState"] = {} -defs["structs"]["STB_TexteditState"][1] = {} -defs["structs"]["STB_TexteditState"][1]["name"] = "cursor" -defs["structs"]["STB_TexteditState"][1]["type"] = "int" -defs["structs"]["STB_TexteditState"][2] = {} -defs["structs"]["STB_TexteditState"][2]["name"] = "select_start" -defs["structs"]["STB_TexteditState"][2]["type"] = "int" -defs["structs"]["STB_TexteditState"][3] = {} -defs["structs"]["STB_TexteditState"][3]["name"] = "select_end" -defs["structs"]["STB_TexteditState"][3]["type"] = "int" -defs["structs"]["STB_TexteditState"][4] = {} -defs["structs"]["STB_TexteditState"][4]["name"] = "insert_mode" -defs["structs"]["STB_TexteditState"][4]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][5] = {} -defs["structs"]["STB_TexteditState"][5]["name"] = "row_count_per_page" -defs["structs"]["STB_TexteditState"][5]["type"] = "int" -defs["structs"]["STB_TexteditState"][6] = {} -defs["structs"]["STB_TexteditState"][6]["name"] = "cursor_at_end_of_line" -defs["structs"]["STB_TexteditState"][6]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][7] = {} -defs["structs"]["STB_TexteditState"][7]["name"] = "initialized" -defs["structs"]["STB_TexteditState"][7]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][8] = {} -defs["structs"]["STB_TexteditState"][8]["name"] = "has_preferred_x" -defs["structs"]["STB_TexteditState"][8]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][9] = {} -defs["structs"]["STB_TexteditState"][9]["name"] = "single_line" -defs["structs"]["STB_TexteditState"][9]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][10] = {} -defs["structs"]["STB_TexteditState"][10]["name"] = "padding1" -defs["structs"]["STB_TexteditState"][10]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][11] = {} -defs["structs"]["STB_TexteditState"][11]["name"] = "padding2" -defs["structs"]["STB_TexteditState"][11]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][12] = {} -defs["structs"]["STB_TexteditState"][12]["name"] = "padding3" -defs["structs"]["STB_TexteditState"][12]["type"] = "unsigned char" -defs["structs"]["STB_TexteditState"][13] = {} -defs["structs"]["STB_TexteditState"][13]["name"] = "preferred_x" -defs["structs"]["STB_TexteditState"][13]["type"] = "float" -defs["structs"]["STB_TexteditState"][14] = {} -defs["structs"]["STB_TexteditState"][14]["name"] = "undostate" -defs["structs"]["STB_TexteditState"][14]["type"] = "StbUndoState" -defs["structs"]["StbTexteditRow"] = {} -defs["structs"]["StbTexteditRow"][1] = {} -defs["structs"]["StbTexteditRow"][1]["name"] = "x0" -defs["structs"]["StbTexteditRow"][1]["type"] = "float" -defs["structs"]["StbTexteditRow"][2] = {} -defs["structs"]["StbTexteditRow"][2]["name"] = "x1" -defs["structs"]["StbTexteditRow"][2]["type"] = "float" -defs["structs"]["StbTexteditRow"][3] = {} -defs["structs"]["StbTexteditRow"][3]["name"] = "baseline_y_delta" -defs["structs"]["StbTexteditRow"][3]["type"] = "float" -defs["structs"]["StbTexteditRow"][4] = {} -defs["structs"]["StbTexteditRow"][4]["name"] = "ymin" -defs["structs"]["StbTexteditRow"][4]["type"] = "float" -defs["structs"]["StbTexteditRow"][5] = {} -defs["structs"]["StbTexteditRow"][5]["name"] = "ymax" -defs["structs"]["StbTexteditRow"][5]["type"] = "float" -defs["structs"]["StbTexteditRow"][6] = {} -defs["structs"]["StbTexteditRow"][6]["name"] = "num_chars" -defs["structs"]["StbTexteditRow"][6]["type"] = "int" -defs["structs"]["StbUndoRecord"] = {} -defs["structs"]["StbUndoRecord"][1] = {} -defs["structs"]["StbUndoRecord"][1]["name"] = "where" -defs["structs"]["StbUndoRecord"][1]["type"] = "int" -defs["structs"]["StbUndoRecord"][2] = {} -defs["structs"]["StbUndoRecord"][2]["name"] = "insert_length" -defs["structs"]["StbUndoRecord"][2]["type"] = "int" -defs["structs"]["StbUndoRecord"][3] = {} -defs["structs"]["StbUndoRecord"][3]["name"] = "delete_length" -defs["structs"]["StbUndoRecord"][3]["type"] = "int" -defs["structs"]["StbUndoRecord"][4] = {} -defs["structs"]["StbUndoRecord"][4]["name"] = "char_storage" -defs["structs"]["StbUndoRecord"][4]["type"] = "int" -defs["structs"]["StbUndoState"] = {} -defs["structs"]["StbUndoState"][1] = {} -defs["structs"]["StbUndoState"][1]["name"] = "undo_rec[99]" -defs["structs"]["StbUndoState"][1]["size"] = 99 -defs["structs"]["StbUndoState"][1]["type"] = "StbUndoRecord" -defs["structs"]["StbUndoState"][2] = {} -defs["structs"]["StbUndoState"][2]["name"] = "undo_char[999]" -defs["structs"]["StbUndoState"][2]["size"] = 999 -defs["structs"]["StbUndoState"][2]["type"] = "ImWchar" -defs["structs"]["StbUndoState"][3] = {} -defs["structs"]["StbUndoState"][3]["name"] = "undo_point" -defs["structs"]["StbUndoState"][3]["type"] = "short" -defs["structs"]["StbUndoState"][4] = {} -defs["structs"]["StbUndoState"][4]["name"] = "redo_point" -defs["structs"]["StbUndoState"][4]["type"] = "short" -defs["structs"]["StbUndoState"][5] = {} -defs["structs"]["StbUndoState"][5]["name"] = "undo_char_point" -defs["structs"]["StbUndoState"][5]["type"] = "int" -defs["structs"]["StbUndoState"][6] = {} -defs["structs"]["StbUndoState"][6]["name"] = "redo_char_point" -defs["structs"]["StbUndoState"][6]["type"] = "int" defs["templated_structs"] = {} defs["templated_structs"]["ImBitArray"] = {} defs["templated_structs"]["ImBitArray"][1] = {} @@ -8048,6 +9153,7 @@ defs["templates_done"]["ImChunkStream"] = {} defs["templates_done"]["ImChunkStream"]["ImGuiTableSettings"] = true defs["templates_done"]["ImChunkStream"]["ImGuiWindowSettings"] = true defs["templates_done"]["ImPool"] = {} +defs["templates_done"]["ImPool"]["ImGuiMultiSelectState"] = true defs["templates_done"]["ImPool"]["ImGuiTabBar"] = true defs["templates_done"]["ImPool"]["ImGuiTable"] = true defs["templates_done"]["ImSpan"] = {} @@ -8068,6 +9174,7 @@ defs["templates_done"]["ImVector"]["ImGuiColorMod"] = true defs["templates_done"]["ImVector"]["ImGuiContextHook"] = true defs["templates_done"]["ImVector"]["ImGuiDockNodeSettings"] = true defs["templates_done"]["ImVector"]["ImGuiDockRequest"] = true +defs["templates_done"]["ImVector"]["ImGuiFocusScopeData"] = true defs["templates_done"]["ImVector"]["ImGuiGroupData"] = true defs["templates_done"]["ImVector"]["ImGuiID"] = true defs["templates_done"]["ImVector"]["ImGuiInputEvent"] = true @@ -8075,11 +9182,14 @@ defs["templates_done"]["ImVector"]["ImGuiItemFlags"] = true defs["templates_done"]["ImVector"]["ImGuiKeyRoutingData"] = true defs["templates_done"]["ImVector"]["ImGuiListClipperData"] = true defs["templates_done"]["ImVector"]["ImGuiListClipperRange"] = true +defs["templates_done"]["ImVector"]["ImGuiMultiSelectState"] = true +defs["templates_done"]["ImVector"]["ImGuiMultiSelectTempData"] = true defs["templates_done"]["ImVector"]["ImGuiOldColumnData"] = true defs["templates_done"]["ImVector"]["ImGuiOldColumns"] = true defs["templates_done"]["ImVector"]["ImGuiPlatformMonitor"] = true defs["templates_done"]["ImVector"]["ImGuiPopupData"] = true defs["templates_done"]["ImVector"]["ImGuiPtrOrIndex"] = true +defs["templates_done"]["ImVector"]["ImGuiSelectionRequest"] = true defs["templates_done"]["ImVector"]["ImGuiSettingsHandler"] = true defs["templates_done"]["ImVector"]["ImGuiShrinkWidthItem"] = true defs["templates_done"]["ImVector"]["ImGuiStackLevelInfo"] = true @@ -8089,9 +9199,11 @@ defs["templates_done"]["ImVector"]["ImGuiTabBar"] = true defs["templates_done"]["ImVector"]["ImGuiTabItem"] = true defs["templates_done"]["ImVector"]["ImGuiTable"] = true defs["templates_done"]["ImVector"]["ImGuiTableColumnSortSpecs"] = true +defs["templates_done"]["ImVector"]["ImGuiTableHeaderData"] = true defs["templates_done"]["ImVector"]["ImGuiTableInstanceData"] = true defs["templates_done"]["ImVector"]["ImGuiTableTempData"] = true defs["templates_done"]["ImVector"]["ImGuiTextRange"] = true +defs["templates_done"]["ImVector"]["ImGuiTreeNodeStackData"] = true defs["templates_done"]["ImVector"]["ImGuiViewport*"] = true defs["templates_done"]["ImVector"]["ImGuiViewportP*"] = true defs["templates_done"]["ImVector"]["ImGuiWindow*"] = true diff --git a/imgui-sys/third-party/imgui-docking/typedefs_dict.json b/imgui-sys/third-party/imgui-docking/typedefs_dict.json index 3cb480f..fdb2826 100644 --- a/imgui-sys/third-party/imgui-docking/typedefs_dict.json +++ b/imgui-sys/third-party/imgui-docking/typedefs_dict.json @@ -1,5 +1,6 @@ { "ImBitArrayForNamedKeys": "ImBitArray", + "ImBitArrayPtr": "ImU32*", "ImBitVector": "struct ImBitVector", "ImColor": "struct ImColor", "ImDrawCallback": "void(*)(const ImDrawList* parent_list,const ImDrawCmd* cmd);", @@ -26,7 +27,9 @@ "ImFontGlyphRangesBuilder": "struct ImFontGlyphRangesBuilder", "ImGuiActivateFlags": "int", "ImGuiBackendFlags": "int", + "ImGuiBoxSelectState": "struct ImGuiBoxSelectState", "ImGuiButtonFlags": "int", + "ImGuiChildFlags": "int", "ImGuiCol": "int", "ImGuiColorEditFlags": "int", "ImGuiColorMod": "struct ImGuiColorMod", @@ -40,9 +43,11 @@ "ImGuiDataAuthority": "int", "ImGuiDataType": "int", "ImGuiDataTypeInfo": "struct ImGuiDataTypeInfo", - "ImGuiDataTypeTempStorage": "struct ImGuiDataTypeTempStorage", + "ImGuiDataTypeStorage": "struct ImGuiDataTypeStorage", + "ImGuiDataVarInfo": "struct ImGuiDataVarInfo", + "ImGuiDebugAllocEntry": "struct ImGuiDebugAllocEntry", + "ImGuiDebugAllocInfo": "struct ImGuiDebugAllocInfo", "ImGuiDebugLogFlags": "int", - "ImGuiDir": "int", "ImGuiDockContext": "struct ImGuiDockContext", "ImGuiDockNode": "struct ImGuiDockNode", "ImGuiDockNodeFlags": "int", @@ -50,10 +55,13 @@ "ImGuiDockRequest": "struct ImGuiDockRequest", "ImGuiDragDropFlags": "int", "ImGuiErrorLogCallback": "void(*)(void* user_data,const char* fmt,...);", + "ImGuiFocusRequestFlags": "int", + "ImGuiFocusScopeData": "struct ImGuiFocusScopeData", "ImGuiFocusedFlags": "int", "ImGuiGroupData": "struct ImGuiGroupData", "ImGuiHoveredFlags": "int", "ImGuiID": "unsigned int", + "ImGuiIDStackTool": "struct ImGuiIDStackTool", "ImGuiIO": "struct ImGuiIO", "ImGuiInputEvent": "struct ImGuiInputEvent", "ImGuiInputEventAppFocused": "struct ImGuiInputEventAppFocused", @@ -66,6 +74,8 @@ "ImGuiInputFlags": "int", "ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);", "ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData", + "ImGuiInputTextDeactivateData": "struct ImGuiInputTextDeactivateData", + "ImGuiInputTextDeactivatedState": "struct ImGuiInputTextDeactivatedState", "ImGuiInputTextFlags": "int", "ImGuiInputTextState": "struct ImGuiInputTextState", "ImGuiItemFlags": "int", @@ -88,6 +98,10 @@ "ImGuiMetricsConfig": "struct ImGuiMetricsConfig", "ImGuiMouseButton": "int", "ImGuiMouseCursor": "int", + "ImGuiMultiSelectFlags": "int", + "ImGuiMultiSelectIO": "struct ImGuiMultiSelectIO", + "ImGuiMultiSelectState": "struct ImGuiMultiSelectState", + "ImGuiMultiSelectTempData": "struct ImGuiMultiSelectTempData", "ImGuiNavHighlightFlags": "int", "ImGuiNavItemData": "struct ImGuiNavItemData", "ImGuiNavMoveFlags": "int", @@ -108,16 +122,18 @@ "ImGuiPtrOrIndex": "struct ImGuiPtrOrIndex", "ImGuiScrollFlags": "int", "ImGuiSelectableFlags": "int", + "ImGuiSelectionBasicStorage": "struct ImGuiSelectionBasicStorage", + "ImGuiSelectionExternalStorage": "struct ImGuiSelectionExternalStorage", + "ImGuiSelectionRequest": "struct ImGuiSelectionRequest", + "ImGuiSelectionUserData": "ImS64", "ImGuiSeparatorFlags": "int", "ImGuiSettingsHandler": "struct ImGuiSettingsHandler", "ImGuiShrinkWidthItem": "struct ImGuiShrinkWidthItem", "ImGuiSizeCallback": "void(*)(ImGuiSizeCallbackData* data);", "ImGuiSizeCallbackData": "struct ImGuiSizeCallbackData", "ImGuiSliderFlags": "int", - "ImGuiSortDirection": "int", "ImGuiStackLevelInfo": "struct ImGuiStackLevelInfo", "ImGuiStackSizes": "struct ImGuiStackSizes", - "ImGuiStackTool": "struct ImGuiStackTool", "ImGuiStorage": "struct ImGuiStorage", "ImGuiStoragePair": "struct ImGuiStoragePair", "ImGuiStyle": "struct ImGuiStyle", @@ -132,12 +148,13 @@ "ImGuiTableCellData": "struct ImGuiTableCellData", "ImGuiTableColumn": "struct ImGuiTableColumn", "ImGuiTableColumnFlags": "int", - "ImGuiTableColumnIdx": "ImS8", + "ImGuiTableColumnIdx": "ImS16", "ImGuiTableColumnSettings": "struct ImGuiTableColumnSettings", "ImGuiTableColumnSortSpecs": "struct ImGuiTableColumnSortSpecs", "ImGuiTableColumnsSettings": "struct ImGuiTableColumnsSettings", - "ImGuiTableDrawChannelIdx": "ImU8", + "ImGuiTableDrawChannelIdx": "ImU16", "ImGuiTableFlags": "int", + "ImGuiTableHeaderData": "struct ImGuiTableHeaderData", "ImGuiTableInstanceData": "struct ImGuiTableInstanceData", "ImGuiTableRowFlags": "int", "ImGuiTableSettings": "struct ImGuiTableSettings", @@ -150,6 +167,10 @@ "ImGuiTextRange": "struct ImGuiTextRange", "ImGuiTooltipFlags": "int", "ImGuiTreeNodeFlags": "int", + "ImGuiTreeNodeStackData": "struct ImGuiTreeNodeStackData", + "ImGuiTypingSelectFlags": "int", + "ImGuiTypingSelectRequest": "struct ImGuiTypingSelectRequest", + "ImGuiTypingSelectState": "struct ImGuiTypingSelectState", "ImGuiViewport": "struct ImGuiViewport", "ImGuiViewportFlags": "int", "ImGuiViewportP": "struct ImGuiViewportP", @@ -157,6 +178,7 @@ "ImGuiWindowClass": "struct ImGuiWindowClass", "ImGuiWindowDockStyle": "struct ImGuiWindowDockStyle", "ImGuiWindowFlags": "int", + "ImGuiWindowRefreshFlags": "int", "ImGuiWindowSettings": "struct ImGuiWindowSettings", "ImGuiWindowStackData": "struct ImGuiWindowStackData", "ImGuiWindowTempData": "struct ImGuiWindowTempData", @@ -166,6 +188,7 @@ "ImS32": "signed int", "ImS64": "signed long long", "ImS8": "signed char", + "ImStbTexteditState": "ImStb::STB_TexteditState", "ImTextureID": "void*", "ImU16": "unsigned short", "ImU32": "unsigned int", @@ -179,9 +202,6 @@ "ImWchar16": "unsigned short", "ImWchar32": "unsigned int", "STB_TexteditState": "struct STB_TexteditState", - "StbTexteditRow": "struct StbTexteditRow", - "StbUndoRecord": "struct StbUndoRecord", - "StbUndoState": "struct StbUndoState", "const_iterator": "const value_type*", "iterator": "value_type*", "value_type": "T" diff --git a/imgui-sys/third-party/imgui-docking/typedefs_dict.lua b/imgui-sys/third-party/imgui-docking/typedefs_dict.lua index eba4c86..489253d 100644 --- a/imgui-sys/third-party/imgui-docking/typedefs_dict.lua +++ b/imgui-sys/third-party/imgui-docking/typedefs_dict.lua @@ -1,5 +1,6 @@ local defs = {} defs["ImBitArrayForNamedKeys"] = "ImBitArray" +defs["ImBitArrayPtr"] = "ImU32*" defs["ImBitVector"] = "struct ImBitVector" defs["ImColor"] = "struct ImColor" defs["ImDrawCallback"] = "void(*)(const ImDrawList* parent_list,const ImDrawCmd* cmd);" @@ -26,7 +27,9 @@ defs["ImFontGlyph"] = "struct ImFontGlyph" defs["ImFontGlyphRangesBuilder"] = "struct ImFontGlyphRangesBuilder" defs["ImGuiActivateFlags"] = "int" defs["ImGuiBackendFlags"] = "int" +defs["ImGuiBoxSelectState"] = "struct ImGuiBoxSelectState" defs["ImGuiButtonFlags"] = "int" +defs["ImGuiChildFlags"] = "int" defs["ImGuiCol"] = "int" defs["ImGuiColorEditFlags"] = "int" defs["ImGuiColorMod"] = "struct ImGuiColorMod" @@ -40,9 +43,11 @@ defs["ImGuiContextHookCallback"] = "void(*)(ImGuiContext* ctx,ImGuiContextHook* defs["ImGuiDataAuthority"] = "int" defs["ImGuiDataType"] = "int" defs["ImGuiDataTypeInfo"] = "struct ImGuiDataTypeInfo" -defs["ImGuiDataTypeTempStorage"] = "struct ImGuiDataTypeTempStorage" +defs["ImGuiDataTypeStorage"] = "struct ImGuiDataTypeStorage" +defs["ImGuiDataVarInfo"] = "struct ImGuiDataVarInfo" +defs["ImGuiDebugAllocEntry"] = "struct ImGuiDebugAllocEntry" +defs["ImGuiDebugAllocInfo"] = "struct ImGuiDebugAllocInfo" defs["ImGuiDebugLogFlags"] = "int" -defs["ImGuiDir"] = "int" defs["ImGuiDockContext"] = "struct ImGuiDockContext" defs["ImGuiDockNode"] = "struct ImGuiDockNode" defs["ImGuiDockNodeFlags"] = "int" @@ -50,10 +55,13 @@ defs["ImGuiDockNodeSettings"] = "struct ImGuiDockNodeSettings" defs["ImGuiDockRequest"] = "struct ImGuiDockRequest" defs["ImGuiDragDropFlags"] = "int" defs["ImGuiErrorLogCallback"] = "void(*)(void* user_data,const char* fmt,...);" +defs["ImGuiFocusRequestFlags"] = "int" +defs["ImGuiFocusScopeData"] = "struct ImGuiFocusScopeData" defs["ImGuiFocusedFlags"] = "int" defs["ImGuiGroupData"] = "struct ImGuiGroupData" defs["ImGuiHoveredFlags"] = "int" defs["ImGuiID"] = "unsigned int" +defs["ImGuiIDStackTool"] = "struct ImGuiIDStackTool" defs["ImGuiIO"] = "struct ImGuiIO" defs["ImGuiInputEvent"] = "struct ImGuiInputEvent" defs["ImGuiInputEventAppFocused"] = "struct ImGuiInputEventAppFocused" @@ -66,6 +74,8 @@ defs["ImGuiInputEventText"] = "struct ImGuiInputEventText" defs["ImGuiInputFlags"] = "int" defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);" defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData" +defs["ImGuiInputTextDeactivateData"] = "struct ImGuiInputTextDeactivateData" +defs["ImGuiInputTextDeactivatedState"] = "struct ImGuiInputTextDeactivatedState" defs["ImGuiInputTextFlags"] = "int" defs["ImGuiInputTextState"] = "struct ImGuiInputTextState" defs["ImGuiItemFlags"] = "int" @@ -88,6 +98,10 @@ defs["ImGuiMenuColumns"] = "struct ImGuiMenuColumns" defs["ImGuiMetricsConfig"] = "struct ImGuiMetricsConfig" defs["ImGuiMouseButton"] = "int" defs["ImGuiMouseCursor"] = "int" +defs["ImGuiMultiSelectFlags"] = "int" +defs["ImGuiMultiSelectIO"] = "struct ImGuiMultiSelectIO" +defs["ImGuiMultiSelectState"] = "struct ImGuiMultiSelectState" +defs["ImGuiMultiSelectTempData"] = "struct ImGuiMultiSelectTempData" defs["ImGuiNavHighlightFlags"] = "int" defs["ImGuiNavItemData"] = "struct ImGuiNavItemData" defs["ImGuiNavMoveFlags"] = "int" @@ -108,16 +122,18 @@ defs["ImGuiPopupFlags"] = "int" defs["ImGuiPtrOrIndex"] = "struct ImGuiPtrOrIndex" defs["ImGuiScrollFlags"] = "int" defs["ImGuiSelectableFlags"] = "int" +defs["ImGuiSelectionBasicStorage"] = "struct ImGuiSelectionBasicStorage" +defs["ImGuiSelectionExternalStorage"] = "struct ImGuiSelectionExternalStorage" +defs["ImGuiSelectionRequest"] = "struct ImGuiSelectionRequest" +defs["ImGuiSelectionUserData"] = "ImS64" defs["ImGuiSeparatorFlags"] = "int" defs["ImGuiSettingsHandler"] = "struct ImGuiSettingsHandler" defs["ImGuiShrinkWidthItem"] = "struct ImGuiShrinkWidthItem" defs["ImGuiSizeCallback"] = "void(*)(ImGuiSizeCallbackData* data);" defs["ImGuiSizeCallbackData"] = "struct ImGuiSizeCallbackData" defs["ImGuiSliderFlags"] = "int" -defs["ImGuiSortDirection"] = "int" defs["ImGuiStackLevelInfo"] = "struct ImGuiStackLevelInfo" defs["ImGuiStackSizes"] = "struct ImGuiStackSizes" -defs["ImGuiStackTool"] = "struct ImGuiStackTool" defs["ImGuiStorage"] = "struct ImGuiStorage" defs["ImGuiStoragePair"] = "struct ImGuiStoragePair" defs["ImGuiStyle"] = "struct ImGuiStyle" @@ -132,12 +148,13 @@ defs["ImGuiTableBgTarget"] = "int" defs["ImGuiTableCellData"] = "struct ImGuiTableCellData" defs["ImGuiTableColumn"] = "struct ImGuiTableColumn" defs["ImGuiTableColumnFlags"] = "int" -defs["ImGuiTableColumnIdx"] = "ImS8" +defs["ImGuiTableColumnIdx"] = "ImS16" defs["ImGuiTableColumnSettings"] = "struct ImGuiTableColumnSettings" defs["ImGuiTableColumnSortSpecs"] = "struct ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnsSettings"] = "struct ImGuiTableColumnsSettings" -defs["ImGuiTableDrawChannelIdx"] = "ImU8" +defs["ImGuiTableDrawChannelIdx"] = "ImU16" defs["ImGuiTableFlags"] = "int" +defs["ImGuiTableHeaderData"] = "struct ImGuiTableHeaderData" defs["ImGuiTableInstanceData"] = "struct ImGuiTableInstanceData" defs["ImGuiTableRowFlags"] = "int" defs["ImGuiTableSettings"] = "struct ImGuiTableSettings" @@ -150,6 +167,10 @@ defs["ImGuiTextIndex"] = "struct ImGuiTextIndex" defs["ImGuiTextRange"] = "struct ImGuiTextRange" defs["ImGuiTooltipFlags"] = "int" defs["ImGuiTreeNodeFlags"] = "int" +defs["ImGuiTreeNodeStackData"] = "struct ImGuiTreeNodeStackData" +defs["ImGuiTypingSelectFlags"] = "int" +defs["ImGuiTypingSelectRequest"] = "struct ImGuiTypingSelectRequest" +defs["ImGuiTypingSelectState"] = "struct ImGuiTypingSelectState" defs["ImGuiViewport"] = "struct ImGuiViewport" defs["ImGuiViewportFlags"] = "int" defs["ImGuiViewportP"] = "struct ImGuiViewportP" @@ -157,6 +178,7 @@ defs["ImGuiWindow"] = "struct ImGuiWindow" defs["ImGuiWindowClass"] = "struct ImGuiWindowClass" defs["ImGuiWindowDockStyle"] = "struct ImGuiWindowDockStyle" defs["ImGuiWindowFlags"] = "int" +defs["ImGuiWindowRefreshFlags"] = "int" defs["ImGuiWindowSettings"] = "struct ImGuiWindowSettings" defs["ImGuiWindowStackData"] = "struct ImGuiWindowStackData" defs["ImGuiWindowTempData"] = "struct ImGuiWindowTempData" @@ -166,6 +188,7 @@ defs["ImS16"] = "signed short" defs["ImS32"] = "signed int" defs["ImS64"] = "signed long long" defs["ImS8"] = "signed char" +defs["ImStbTexteditState"] = "ImStb::STB_TexteditState" defs["ImTextureID"] = "void*" defs["ImU16"] = "unsigned short" defs["ImU32"] = "unsigned int" @@ -179,9 +202,6 @@ defs["ImWchar"] = "ImWchar32" defs["ImWchar16"] = "unsigned short" defs["ImWchar32"] = "unsigned int" defs["STB_TexteditState"] = "struct STB_TexteditState" -defs["StbTexteditRow"] = "struct StbTexteditRow" -defs["StbUndoRecord"] = "struct StbUndoRecord" -defs["StbUndoState"] = "struct StbUndoState" defs["const_iterator"] = "const value_type*" defs["iterator"] = "value_type*" defs["value_type"] = "T" diff --git a/imgui-sys/third-party/imgui-master-freetype/cimgui.cpp b/imgui-sys/third-party/imgui-master-freetype/cimgui.cpp index 8103ad3..b4a7fdc 100644 --- a/imgui-sys/third-party/imgui-master-freetype/cimgui.cpp +++ b/imgui-sys/third-party/imgui-master-freetype/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui //with imgui_freetype.h api #define IMGUI_ENABLE_FREETYPE #ifdef IMGUI_ENABLE_FREETYPE @@ -64,6 +64,10 @@ CIMGUI_API ImGuiIO* igGetIO() { return &ImGui::GetIO(); } +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() +{ + return &ImGui::GetPlatformIO(); +} CIMGUI_API ImGuiStyle* igGetStyle() { return &ImGui::GetStyle(); @@ -96,9 +100,9 @@ CIMGUI_API void igShowDebugLogWindow(bool* p_open) { return ImGui::ShowDebugLogWindow(p_open); } -CIMGUI_API void igShowStackToolWindow(bool* p_open) +CIMGUI_API void igShowIDStackToolWindow(bool* p_open) { - return ImGui::ShowStackToolWindow(p_open); + return ImGui::ShowIDStackToolWindow(p_open); } CIMGUI_API void igShowAboutWindow(bool* p_open) { @@ -144,13 +148,13 @@ CIMGUI_API void igEnd() { return ImGui::End(); } -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(str_id,size,border,flags); + return ImGui::BeginChild(str_id,size,child_flags,window_flags); } -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(id,size,border,flags); + return ImGui::BeginChild(id,size,child_flags,window_flags); } CIMGUI_API void igEndChild() { @@ -260,22 +264,6 @@ CIMGUI_API void igSetWindowFocus_Str(const char* name) { return ImGui::SetWindowFocus(name); } -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionAvail(); -} -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionMax(); -} -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMin(); -} -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMax(); -} CIMGUI_API float igGetScrollX() { return ImGui::GetScrollX(); @@ -344,25 +332,25 @@ CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val) { return ImGui::PushStyleVar(idx,val); } +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x) +{ + return ImGui::PushStyleVarX(idx,val_x); +} +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y) +{ + return ImGui::PushStyleVarY(idx,val_y); +} CIMGUI_API void igPopStyleVar(int count) { return ImGui::PopStyleVar(count); } -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus) +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled) { - return ImGui::PushAllowKeyboardFocus(allow_keyboard_focus); + return ImGui::PushItemFlag(option,enabled); } -CIMGUI_API void igPopAllowKeyboardFocus() +CIMGUI_API void igPopItemFlag() { - return ImGui::PopAllowKeyboardFocus(); -} -CIMGUI_API void igPushButtonRepeat(bool repeat) -{ - return ImGui::PushButtonRepeat(repeat); -} -CIMGUI_API void igPopButtonRepeat() -{ - return ImGui::PopButtonRepeat(); + return ImGui::PopItemFlag(); } CIMGUI_API void igPushItemWidth(float item_width) { @@ -408,14 +396,54 @@ CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col) { return ImGui::GetColorU32(col); } -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col) +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul) { - return ImGui::GetColorU32(col); + return ImGui::GetColorU32(col,alpha_mul); } CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx) { return &ImGui::GetStyleColorVec4(idx); } +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorScreenPos(); +} +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) +{ + return ImGui::SetCursorScreenPos(pos); +} +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) +{ + *pOut = ImGui::GetContentRegionAvail(); +} +CIMGUI_API void igGetCursorPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorPos(); +} +CIMGUI_API float igGetCursorPosX() +{ + return ImGui::GetCursorPosX(); +} +CIMGUI_API float igGetCursorPosY() +{ + return ImGui::GetCursorPosY(); +} +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) +{ + return ImGui::SetCursorPos(local_pos); +} +CIMGUI_API void igSetCursorPosX(float local_x) +{ + return ImGui::SetCursorPosX(local_x); +} +CIMGUI_API void igSetCursorPosY(float local_y) +{ + return ImGui::SetCursorPosY(local_y); +} +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorStartPos(); +} CIMGUI_API void igSeparator() { return ImGui::Separator(); @@ -452,42 +480,6 @@ CIMGUI_API void igEndGroup() { return ImGui::EndGroup(); } -CIMGUI_API void igGetCursorPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorPos(); -} -CIMGUI_API float igGetCursorPosX() -{ - return ImGui::GetCursorPosX(); -} -CIMGUI_API float igGetCursorPosY() -{ - return ImGui::GetCursorPosY(); -} -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) -{ - return ImGui::SetCursorPos(local_pos); -} -CIMGUI_API void igSetCursorPosX(float local_x) -{ - return ImGui::SetCursorPosX(local_x); -} -CIMGUI_API void igSetCursorPosY(float local_y) -{ - return ImGui::SetCursorPosY(local_y); -} -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorStartPos(); -} -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorScreenPos(); -} -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) -{ - return ImGui::SetCursorScreenPos(pos); -} CIMGUI_API void igAlignTextToFramePadding() { return ImGui::AlignTextToFramePadding(); @@ -540,6 +532,10 @@ CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id) { return ImGui::GetID(ptr_id); } +CIMGUI_API ImGuiID igGetID_Int(int int_id) +{ + return ImGui::GetID(int_id); +} CIMGUI_API void igTextUnformatted(const char* text,const char* text_end) { return ImGui::TextUnformatted(text,text_end); @@ -610,6 +606,10 @@ CIMGUI_API void igBulletTextV(const char* fmt,va_list args) { return ImGui::BulletTextV(fmt,args); } +CIMGUI_API void igSeparatorText(const char* label) +{ + return ImGui::SeparatorText(label); +} CIMGUI_API bool igButton(const char* label,const ImVec2 size) { return ImGui::Button(label,size); @@ -654,13 +654,21 @@ CIMGUI_API void igBullet() { return ImGui::Bullet(); } -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +CIMGUI_API bool igTextLink(const char* label) { - return ImGui::Image(user_texture_id,size,uv0,uv1,tint_col,border_col); + return ImGui::TextLink(label); } -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url) { - return ImGui::ImageButton(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col); + return ImGui::TextLinkOpenURL(label,url); +} +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +{ + return ImGui::Image(user_texture_id,image_size,uv0,uv1,tint_col,border_col); +} +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +{ + return ImGui::ImageButton(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col); } CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags) { @@ -678,9 +686,9 @@ CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* item { return ImGui::Combo(label,current_item,items_separated_by_zeros,popup_max_height_in_items); } -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items) +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items) { - return ImGui::Combo(label,current_item,items_getter,data,items_count,popup_max_height_in_items); + return ImGui::Combo(label,current_item,getter,user_data,items_count,popup_max_height_in_items); } CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags) { @@ -950,6 +958,10 @@ CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond) { return ImGui::SetNextItemOpen(is_open,cond); } +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id) +{ + return ImGui::SetNextItemStorageID(storage_id); +} CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size) { return ImGui::Selectable(label,selected,flags,size); @@ -958,6 +970,22 @@ CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSel { return ImGui::Selectable(label,p_selected,flags,size); } +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count) +{ + return ImGui::BeginMultiSelect(flags,selection_size,items_count); +} +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect() +{ + return ImGui::EndMultiSelect(); +} +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data) +{ + return ImGui::SetNextItemSelectionUserData(selection_user_data); +} +CIMGUI_API bool igIsItemToggledSelection() +{ + return ImGui::IsItemToggledSelection(); +} CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size) { return ImGui::BeginListBox(label,size); @@ -970,9 +998,9 @@ CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char { return ImGui::ListBox(label,current_item,items,items_count,height_in_items); } -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items) +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items) { - return ImGui::ListBox(label,current_item,items_getter,data,items_count,height_in_items); + return ImGui::ListBox(label,current_item,getter,user_data,items_count,height_in_items); } CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride) { @@ -1038,7 +1066,7 @@ CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* { return ImGui::MenuItem(label,shortcut,p_selected,enabled); } -CIMGUI_API void igBeginTooltip() +CIMGUI_API bool igBeginTooltip() { return ImGui::BeginTooltip(); } @@ -1057,6 +1085,21 @@ CIMGUI_API void igSetTooltipV(const char* fmt,va_list args) { return ImGui::SetTooltipV(fmt,args); } +CIMGUI_API bool igBeginItemTooltip() +{ + return ImGui::BeginItemTooltip(); +} +CIMGUI_API void igSetItemTooltip(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::SetItemTooltipV(fmt,args); + va_end(args); +} +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args) +{ + return ImGui::SetItemTooltipV(fmt,args); +} CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags) { return ImGui::BeginPopup(str_id,flags); @@ -1101,9 +1144,9 @@ CIMGUI_API bool igIsPopupOpen(const char* str_id,ImGuiPopupFlags flags) { return ImGui::IsPopupOpen(str_id,flags); } -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) { - return ImGui::BeginTable(str_id,column,flags,outer_size,inner_width); + return ImGui::BeginTable(str_id,columns,flags,outer_size,inner_width); } CIMGUI_API void igEndTable() { @@ -1129,13 +1172,17 @@ CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows) { return ImGui::TableSetupScrollFreeze(cols,rows); } +CIMGUI_API void igTableHeader(const char* label) +{ + return ImGui::TableHeader(label); +} CIMGUI_API void igTableHeadersRow() { return ImGui::TableHeadersRow(); } -CIMGUI_API void igTableHeader(const char* label) +CIMGUI_API void igTableAngledHeadersRow() { - return ImGui::TableHeader(label); + return ImGui::TableAngledHeadersRow(); } CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs() { @@ -1165,13 +1212,17 @@ CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v) { return ImGui::TableSetColumnEnabled(column_n,v); } +CIMGUI_API int igTableGetHoveredColumn() +{ + return ImGui::TableGetHoveredColumn(); +} CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n) { return ImGui::TableSetBgColor(target,color,column_n); } -CIMGUI_API void igColumns(int count,const char* id,bool border) +CIMGUI_API void igColumns(int count,const char* id,bool borders) { - return ImGui::Columns(count,id,border); + return ImGui::Columns(count,id,borders); } CIMGUI_API void igNextColumn() { @@ -1301,6 +1352,10 @@ CIMGUI_API void igSetKeyboardFocusHere(int offset) { return ImGui::SetKeyboardFocusHere(offset); } +CIMGUI_API void igSetNextItemAllowOverlap() +{ + return ImGui::SetNextItemAllowOverlap(); +} CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags) { return ImGui::IsItemHovered(flags); @@ -1369,10 +1424,6 @@ CIMGUI_API void igGetItemRectSize(ImVec2 *pOut) { *pOut = ImGui::GetItemRectSize(); } -CIMGUI_API void igSetItemAllowOverlap() -{ - return ImGui::SetItemAllowOverlap(); -} CIMGUI_API ImGuiViewport* igGetMainViewport() { return ImGui::GetMainViewport(); @@ -1417,14 +1468,6 @@ CIMGUI_API ImGuiStorage* igGetStateStorage() { return ImGui::GetStateStorage(); } -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags) -{ - return ImGui::BeginChildFrame(id,size,flags); -} -CIMGUI_API void igEndChildFrame() -{ - return ImGui::EndChildFrame(); -} CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width) { *pOut = ImGui::CalcTextSize(text,text_end,hide_text_after_double_hash,wrap_width); @@ -1457,6 +1500,10 @@ CIMGUI_API bool igIsKeyReleased(ImGuiKey key) { return ImGui::IsKeyReleased(key); } +CIMGUI_API bool igIsKeyChordPressed(ImGuiKeyChord key_chord) +{ + return ImGui::IsKeyChordPressed(key_chord); +} CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate) { return ImGui::GetKeyPressedAmount(key,repeat_delay,rate); @@ -1469,6 +1516,18 @@ CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) { return ImGui::SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } +CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::Shortcut(key_chord,flags); +} +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::SetNextItemShortcut(key_chord,flags); +} +CIMGUI_API void igSetItemKeyOwner(ImGuiKey key) +{ + return ImGui::SetItemKeyOwner(key); +} CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button) { return ImGui::IsMouseDown(button); @@ -1561,10 +1620,29 @@ CIMGUI_API void igDebugTextEncoding(const char* text) { return ImGui::DebugTextEncoding(text); } +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx) +{ + return ImGui::DebugFlashStyleColor(idx); +} +CIMGUI_API void igDebugStartItemPicker() +{ + return ImGui::DebugStartItemPicker(); +} CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx) { return ImGui::DebugCheckVersionAndDataLayout(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx); } +CIMGUI_API void igDebugLog(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::DebugLogV(fmt,args); + va_end(args); +} +CIMGUI_API void igDebugLogV(const char* fmt,va_list args) +{ + return ImGui::DebugLogV(fmt,args); +} CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data) { return ImGui::SetAllocatorFunctions(alloc_func,free_func,user_data); @@ -1581,6 +1659,22 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) +{ + return IM_NEW(ImGuiTableSortSpecs)(); +} +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) +{ + return IM_NEW(ImGuiTableColumnSortSpecs)(); +} +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); @@ -1609,9 +1703,13 @@ CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down) { return self->AddMouseButtonEvent(button,down); } -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y) +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y) { - return self->AddMouseWheelEvent(wh_x,wh_y); + return self->AddMouseWheelEvent(wheel_x,wheel_y); +} +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source) +{ + return self->AddMouseSourceEvent(source); } CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused) { @@ -1637,14 +1735,18 @@ CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_event { return self->SetAppAcceptingEvents(accepting_events); } -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self) +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self) { - return self->ClearInputCharacters(); + return self->ClearEventsQueue(); } CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self) { return self->ClearInputKeys(); } +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self) +{ + return self->ClearInputMouse(); +} CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void) { return IM_NEW(ImGuiIO)(); @@ -1705,22 +1807,6 @@ CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self) { return self->IsDelivery(); } -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) -{ - return IM_NEW(ImGuiTableColumnSortSpecs)(); -} -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) -{ - IM_DELETE(self); -} -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) -{ - return IM_NEW(ImGuiTableSortSpecs)(); -} -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) -{ - IM_DELETE(self); -} CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void) { return IM_NEW(ImGuiOnceUponAFrame)(); @@ -1821,21 +1907,21 @@ CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,v { return self->appendfv(fmt,args); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_i); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self) { IM_DELETE(self); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_f); + return IM_NEW(ImGuiStoragePair)(_key,_val); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_p); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self) { @@ -1889,14 +1975,14 @@ CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void { return self->GetVoidPtrRef(key,default_val); } -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) -{ - return self->SetAllInt(val); -} CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self) { return self->BuildSortByKey(); } +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) +{ + return self->SetAllInt(val); +} CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void) { return IM_NEW(ImGuiListClipper)(); @@ -1917,9 +2003,17 @@ CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) { return self->Step(); } -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max) +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index) { - return self->ForceDisplayRangeByIndices(item_min,item_max); + return self->IncludeItemByIndex(item_index); +} +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end) +{ + return self->IncludeItemsByIndex(item_begin,item_end); +} +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index) +{ + return self->SeekCursorForItem(item_index); } CIMGUI_API ImColor* ImColor_ImColor_Nil(void) { @@ -1953,6 +2047,54 @@ CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a) { *pOut = ImColor::HSV(h,s,v,a); } +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void) +{ + return IM_NEW(ImGuiSelectionBasicStorage)(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id) +{ + return self->Contains(id); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self) +{ + return self->Clear(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r) +{ + return self->Swap(*r); +} +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected) +{ + return self->SetItemSelected(id,selected); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id) +{ + return self->GetNextSelectedItem(opaque_it,out_id); +} +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx) +{ + return self->GetStorageIdFromIndex(idx); +} +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void) +{ + return IM_NEW(ImGuiSelectionExternalStorage)(); +} +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void) { return IM_NEW(ImDrawCmd)(); @@ -2077,6 +2219,14 @@ CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,fl { return self->AddNgonFilled(center,radius,col,num_segments); } +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness) +{ + return self->AddEllipse(center,radius,col,rot,num_segments,thickness); +} +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments) +{ + return self->AddEllipseFilled(center,radius,col,rot,num_segments); +} CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end) { return self->AddText(pos,col,text_begin,text_end); @@ -2085,6 +2235,14 @@ CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,f { return self->AddText(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect); } +CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); +} +CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); +} CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness) { return self->AddPolyline(points,num_points,col,flags,thickness); @@ -2093,13 +2251,9 @@ CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* po { return self->AddConvexPolyFilled(points,num_points,col); } -CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col) { - return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); -} -CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) -{ - return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); + return self->AddConcavePolyFilled(points,num_points,col); } CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col) { @@ -2129,6 +2283,10 @@ CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col) { return self->PathFillConvex(col); } +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col) +{ + return self->PathFillConcave(col); +} CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness) { return self->PathStroke(col,flags,thickness); @@ -2141,6 +2299,10 @@ CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,fl { return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12); } +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments) +{ + return self->PathEllipticalArcTo(center,radius,rot,a_min,a_max,num_segments); +} CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments) { return self->PathBezierCubicCurveTo(p2,p3,p4,num_segments); @@ -2237,6 +2399,10 @@ CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self) { return self->_OnChangedVtxOffset(); } +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id) +{ + return self->_SetTextureID(texture_id); +} CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius) { return self->_CalcCircleAutoSegmentCount(radius); @@ -2261,6 +2427,10 @@ CIMGUI_API void ImDrawData_Clear(ImDrawData* self) { return self->Clear(); } +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list) +{ + return self->AddDrawList(draw_list); +} CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self) { return self->DeIndexAllBuffers(); @@ -2345,13 +2515,13 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* { return self->AddFontFromFileTTF(filename,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryTTF(font_data,font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryTTF(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges); } CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { @@ -2537,6 +2707,14 @@ CIMGUI_API void ImGuiViewport_GetWorkCenter(ImVec2 *pOut,ImGuiViewport* self) { *pOut = self->GetWorkCenter(); } +CIMGUI_API ImGuiPlatformIO* ImGuiPlatformIO_ImGuiPlatformIO(void) +{ + return IM_NEW(ImGuiPlatformIO)(); +} +CIMGUI_API void ImGuiPlatformIO_destroy(ImGuiPlatformIO* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void) { return IM_NEW(ImGuiPlatformImeData)(); @@ -2545,10 +2723,6 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self) { IM_DELETE(self); } -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key) -{ - return ImGui::GetKeyIndex(key); -} CIMGUI_API const ImFontBuilderIO* ImGuiFreeType_GetBuilderForFreeType() { return ImGuiFreeType::GetBuilderForFreeType(); @@ -2630,7 +2804,7 @@ CimguiStorage& GetCimguiStorage() ImGuiIO& io = ImGui::GetIO(); if (io.BackendLanguageUserData == NULL) { - io.BackendLanguageUserData = new CimguiStorage(); + io.BackendLanguageUserData = IM_NEW(CimguiStorage)(); } return *(CimguiStorage*)io.BackendLanguageUserData; diff --git a/imgui-sys/third-party/imgui-master-freetype/cimgui.h b/imgui-sys/third-party/imgui-master-freetype/cimgui.h index 0d736de..bc9104a 100644 --- a/imgui-sys/third-party/imgui-master-freetype/cimgui.h +++ b/imgui-sys/third-party/imgui-master-freetype/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui //with imgui_freetype.h api #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED @@ -59,17 +59,32 @@ typedef struct ImGuiIO ImGuiIO; typedef struct ImGuiInputTextCallbackData ImGuiInputTextCallbackData; typedef struct ImGuiKeyData ImGuiKeyData; typedef struct ImGuiListClipper ImGuiListClipper; +typedef struct ImGuiMultiSelectIO ImGuiMultiSelectIO; typedef struct ImGuiOnceUponAFrame ImGuiOnceUponAFrame; typedef struct ImGuiPayload ImGuiPayload; +typedef struct ImGuiPlatformIO ImGuiPlatformIO; typedef struct ImGuiPlatformImeData ImGuiPlatformImeData; +typedef struct ImGuiSelectionBasicStorage ImGuiSelectionBasicStorage; +typedef struct ImGuiSelectionExternalStorage ImGuiSelectionExternalStorage; +typedef struct ImGuiSelectionRequest ImGuiSelectionRequest; typedef struct ImGuiSizeCallbackData ImGuiSizeCallbackData; typedef struct ImGuiStorage ImGuiStorage; +typedef struct ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiStyle ImGuiStyle; typedef struct ImGuiTableSortSpecs ImGuiTableSortSpecs; typedef struct ImGuiTableColumnSortSpecs ImGuiTableColumnSortSpecs; typedef struct ImGuiTextBuffer ImGuiTextBuffer; typedef struct ImGuiTextFilter ImGuiTextFilter; typedef struct ImGuiViewport ImGuiViewport; +typedef unsigned int ImGuiID; +typedef signed char ImS8; +typedef unsigned char ImU8; +typedef signed short ImS16; +typedef unsigned short ImU16; +typedef signed int ImS32; +typedef unsigned int ImU32; +typedef signed long long ImS64; +typedef unsigned long long ImU64; struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -89,11 +104,17 @@ struct ImGuiIO; struct ImGuiInputTextCallbackData; struct ImGuiKeyData; struct ImGuiListClipper; +struct ImGuiMultiSelectIO; struct ImGuiOnceUponAFrame; struct ImGuiPayload; +struct ImGuiPlatformIO; struct ImGuiPlatformImeData; +struct ImGuiSelectionBasicStorage; +struct ImGuiSelectionExternalStorage; +struct ImGuiSelectionRequest; struct ImGuiSizeCallbackData; struct ImGuiStorage; +struct ImGuiStoragePair; struct ImGuiStyle; struct ImGuiTableSortSpecs; struct ImGuiTableColumnSortSpecs; @@ -103,10 +124,8 @@ struct ImGuiViewport; typedef int ImGuiCol; typedef int ImGuiCond; typedef int ImGuiDataType; -typedef int ImGuiDir; typedef int ImGuiMouseButton; typedef int ImGuiMouseCursor; -typedef int ImGuiSortDirection; typedef int ImGuiStyleVar; typedef int ImGuiTableBgTarget; typedef int ImDrawFlags; @@ -114,15 +133,19 @@ typedef int ImDrawListFlags; typedef int ImFontAtlasFlags; typedef int ImGuiBackendFlags; typedef int ImGuiButtonFlags; +typedef int ImGuiChildFlags; typedef int ImGuiColorEditFlags; typedef int ImGuiConfigFlags; typedef int ImGuiComboFlags; typedef int ImGuiDragDropFlags; typedef int ImGuiFocusedFlags; typedef int ImGuiHoveredFlags; +typedef int ImGuiInputFlags; typedef int ImGuiInputTextFlags; +typedef int ImGuiItemFlags; typedef int ImGuiKeyChord; typedef int ImGuiPopupFlags; +typedef int ImGuiMultiSelectFlags; typedef int ImGuiSelectableFlags; typedef int ImGuiSliderFlags; typedef int ImGuiTabBarFlags; @@ -135,18 +158,10 @@ typedef int ImGuiViewportFlags; typedef int ImGuiWindowFlags; typedef void* ImTextureID; typedef unsigned short ImDrawIdx; -typedef unsigned int ImGuiID; -typedef signed char ImS8; -typedef unsigned char ImU8; -typedef signed short ImS16; -typedef unsigned short ImU16; -typedef signed int ImS32; -typedef unsigned int ImU32; -typedef signed long long ImS64; -typedef unsigned long long ImU64; -typedef unsigned short ImWchar16; typedef unsigned int ImWchar32; +typedef unsigned short ImWchar16; typedef ImWchar32 ImWchar; +typedef ImS64 ImGuiSelectionUserData; typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData* data); typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data); typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); @@ -179,49 +194,70 @@ typedef enum { ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, - ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 16, - ImGuiWindowFlags_NoNavInputs = 1 << 18, - ImGuiWindowFlags_NoNavFocus = 1 << 19, - ImGuiWindowFlags_UnsavedDocument = 1 << 20, + ImGuiWindowFlags_NoNavInputs = 1 << 16, + ImGuiWindowFlags_NoNavFocus = 1 << 17, + ImGuiWindowFlags_UnsavedDocument = 1 << 18, ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, - ImGuiWindowFlags_NavFlattened = 1 << 23, ImGuiWindowFlags_ChildWindow = 1 << 24, ImGuiWindowFlags_Tooltip = 1 << 25, ImGuiWindowFlags_Popup = 1 << 26, ImGuiWindowFlags_Modal = 1 << 27, ImGuiWindowFlags_ChildMenu = 1 << 28, }ImGuiWindowFlags_; +typedef enum { + ImGuiChildFlags_None = 0, + ImGuiChildFlags_Borders = 1 << 0, + ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, + ImGuiChildFlags_ResizeX = 1 << 2, + ImGuiChildFlags_ResizeY = 1 << 3, + ImGuiChildFlags_AutoResizeX = 1 << 4, + ImGuiChildFlags_AutoResizeY = 1 << 5, + ImGuiChildFlags_AlwaysAutoResize = 1 << 6, + ImGuiChildFlags_FrameStyle = 1 << 7, + ImGuiChildFlags_NavFlattened = 1 << 8, +}ImGuiChildFlags_; +typedef enum { + ImGuiItemFlags_None = 0, + ImGuiItemFlags_NoTabStop = 1 << 0, + ImGuiItemFlags_NoNav = 1 << 1, + ImGuiItemFlags_NoNavDefaultFocus = 1 << 2, + ImGuiItemFlags_ButtonRepeat = 1 << 3, + ImGuiItemFlags_AutoClosePopups = 1 << 4, + ImGuiItemFlags_AllowDuplicateId = 1 << 5, +}ImGuiItemFlags_; typedef enum { ImGuiInputTextFlags_None = 0, ImGuiInputTextFlags_CharsDecimal = 1 << 0, ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, - ImGuiInputTextFlags_CharsUppercase = 1 << 2, - ImGuiInputTextFlags_CharsNoBlank = 1 << 3, - ImGuiInputTextFlags_AutoSelectAll = 1 << 4, - ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, - ImGuiInputTextFlags_CallbackCompletion = 1 << 6, - ImGuiInputTextFlags_CallbackHistory = 1 << 7, - ImGuiInputTextFlags_CallbackAlways = 1 << 8, - ImGuiInputTextFlags_CallbackCharFilter = 1 << 9, - ImGuiInputTextFlags_AllowTabInput = 1 << 10, - ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 11, - ImGuiInputTextFlags_NoHorizontalScroll = 1 << 12, - ImGuiInputTextFlags_AlwaysOverwrite = 1 << 13, - ImGuiInputTextFlags_ReadOnly = 1 << 14, - ImGuiInputTextFlags_Password = 1 << 15, + ImGuiInputTextFlags_CharsScientific = 1 << 2, + ImGuiInputTextFlags_CharsUppercase = 1 << 3, + ImGuiInputTextFlags_CharsNoBlank = 1 << 4, + ImGuiInputTextFlags_AllowTabInput = 1 << 5, + ImGuiInputTextFlags_EnterReturnsTrue = 1 << 6, + ImGuiInputTextFlags_EscapeClearsAll = 1 << 7, + ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 8, + ImGuiInputTextFlags_ReadOnly = 1 << 9, + ImGuiInputTextFlags_Password = 1 << 10, + ImGuiInputTextFlags_AlwaysOverwrite = 1 << 11, + ImGuiInputTextFlags_AutoSelectAll = 1 << 12, + ImGuiInputTextFlags_ParseEmptyRefVal = 1 << 13, + ImGuiInputTextFlags_DisplayEmptyRefVal = 1 << 14, + ImGuiInputTextFlags_NoHorizontalScroll = 1 << 15, ImGuiInputTextFlags_NoUndoRedo = 1 << 16, - ImGuiInputTextFlags_CharsScientific = 1 << 17, - ImGuiInputTextFlags_CallbackResize = 1 << 18, - ImGuiInputTextFlags_CallbackEdit = 1 << 19, - ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, + ImGuiInputTextFlags_CallbackCompletion = 1 << 17, + ImGuiInputTextFlags_CallbackHistory = 1 << 18, + ImGuiInputTextFlags_CallbackAlways = 1 << 19, + ImGuiInputTextFlags_CallbackCharFilter = 1 << 20, + ImGuiInputTextFlags_CallbackResize = 1 << 21, + ImGuiInputTextFlags_CallbackEdit = 1 << 22, }ImGuiInputTextFlags_; typedef enum { ImGuiTreeNodeFlags_None = 0, ImGuiTreeNodeFlags_Selected = 1 << 0, ImGuiTreeNodeFlags_Framed = 1 << 1, - ImGuiTreeNodeFlags_AllowItemOverlap = 1 << 2, + ImGuiTreeNodeFlags_AllowOverlap = 1 << 2, ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, @@ -232,7 +268,9 @@ typedef enum { ImGuiTreeNodeFlags_FramePadding = 1 << 10, ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, - ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, + ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13, + ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, + ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15, ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, }ImGuiTreeNodeFlags_; typedef enum { @@ -242,19 +280,21 @@ typedef enum { ImGuiPopupFlags_MouseButtonMiddle = 2, ImGuiPopupFlags_MouseButtonMask_ = 0x1F, ImGuiPopupFlags_MouseButtonDefault_ = 1, - ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5, - ImGuiPopupFlags_NoOpenOverItems = 1 << 6, - ImGuiPopupFlags_AnyPopupId = 1 << 7, - ImGuiPopupFlags_AnyPopupLevel = 1 << 8, + ImGuiPopupFlags_NoReopen = 1 << 5, + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7, + ImGuiPopupFlags_NoOpenOverItems = 1 << 8, + ImGuiPopupFlags_AnyPopupId = 1 << 10, + ImGuiPopupFlags_AnyPopupLevel = 1 << 11, ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, }ImGuiPopupFlags_; typedef enum { ImGuiSelectableFlags_None = 0, - ImGuiSelectableFlags_DontClosePopups = 1 << 0, + ImGuiSelectableFlags_NoAutoClosePopups = 1 << 0, ImGuiSelectableFlags_SpanAllColumns = 1 << 1, ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, ImGuiSelectableFlags_Disabled = 1 << 3, - ImGuiSelectableFlags_AllowItemOverlap = 1 << 4, + ImGuiSelectableFlags_AllowOverlap = 1 << 4, + ImGuiSelectableFlags_Highlight = 1 << 5, }ImGuiSelectableFlags_; typedef enum { ImGuiComboFlags_None = 0, @@ -265,6 +305,7 @@ typedef enum { ImGuiComboFlags_HeightLargest = 1 << 4, ImGuiComboFlags_NoArrowButton = 1 << 5, ImGuiComboFlags_NoPreview = 1 << 6, + ImGuiComboFlags_WidthFitPreview = 1 << 7, ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, }ImGuiComboFlags_; typedef enum { @@ -275,8 +316,9 @@ typedef enum { ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, - ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, - ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, + ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6, + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7, + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8, ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, }ImGuiTabBarFlags_; @@ -290,84 +332,8 @@ typedef enum { ImGuiTabItemFlags_NoReorder = 1 << 5, ImGuiTabItemFlags_Leading = 1 << 6, ImGuiTabItemFlags_Trailing = 1 << 7, + ImGuiTabItemFlags_NoAssumedClosure = 1 << 8, }ImGuiTabItemFlags_; -typedef enum { - ImGuiTableFlags_None = 0, - ImGuiTableFlags_Resizable = 1 << 0, - ImGuiTableFlags_Reorderable = 1 << 1, - ImGuiTableFlags_Hideable = 1 << 2, - ImGuiTableFlags_Sortable = 1 << 3, - ImGuiTableFlags_NoSavedSettings = 1 << 4, - ImGuiTableFlags_ContextMenuInBody = 1 << 5, - ImGuiTableFlags_RowBg = 1 << 6, - ImGuiTableFlags_BordersInnerH = 1 << 7, - ImGuiTableFlags_BordersOuterH = 1 << 8, - ImGuiTableFlags_BordersInnerV = 1 << 9, - ImGuiTableFlags_BordersOuterV = 1 << 10, - ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, - ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, - ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, - ImGuiTableFlags_NoBordersInBody = 1 << 11, - ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, - ImGuiTableFlags_SizingFixedFit = 1 << 13, - ImGuiTableFlags_SizingFixedSame = 2 << 13, - ImGuiTableFlags_SizingStretchProp = 3 << 13, - ImGuiTableFlags_SizingStretchSame = 4 << 13, - ImGuiTableFlags_NoHostExtendX = 1 << 16, - ImGuiTableFlags_NoHostExtendY = 1 << 17, - ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, - ImGuiTableFlags_PreciseWidths = 1 << 19, - ImGuiTableFlags_NoClip = 1 << 20, - ImGuiTableFlags_PadOuterX = 1 << 21, - ImGuiTableFlags_NoPadOuterX = 1 << 22, - ImGuiTableFlags_NoPadInnerX = 1 << 23, - ImGuiTableFlags_ScrollX = 1 << 24, - ImGuiTableFlags_ScrollY = 1 << 25, - ImGuiTableFlags_SortMulti = 1 << 26, - ImGuiTableFlags_SortTristate = 1 << 27, - ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, -}ImGuiTableFlags_; -typedef enum { - ImGuiTableColumnFlags_None = 0, - ImGuiTableColumnFlags_Disabled = 1 << 0, - ImGuiTableColumnFlags_DefaultHide = 1 << 1, - ImGuiTableColumnFlags_DefaultSort = 1 << 2, - ImGuiTableColumnFlags_WidthStretch = 1 << 3, - ImGuiTableColumnFlags_WidthFixed = 1 << 4, - ImGuiTableColumnFlags_NoResize = 1 << 5, - ImGuiTableColumnFlags_NoReorder = 1 << 6, - ImGuiTableColumnFlags_NoHide = 1 << 7, - ImGuiTableColumnFlags_NoClip = 1 << 8, - ImGuiTableColumnFlags_NoSort = 1 << 9, - ImGuiTableColumnFlags_NoSortAscending = 1 << 10, - ImGuiTableColumnFlags_NoSortDescending = 1 << 11, - ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, - ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, - ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, - ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, - ImGuiTableColumnFlags_IndentEnable = 1 << 16, - ImGuiTableColumnFlags_IndentDisable = 1 << 17, - ImGuiTableColumnFlags_IsEnabled = 1 << 24, - ImGuiTableColumnFlags_IsVisible = 1 << 25, - ImGuiTableColumnFlags_IsSorted = 1 << 26, - ImGuiTableColumnFlags_IsHovered = 1 << 27, - ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, - ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, - ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, - ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, -}ImGuiTableColumnFlags_; -typedef enum { - ImGuiTableRowFlags_None = 0, - ImGuiTableRowFlags_Headers = 1 << 0, -}ImGuiTableRowFlags_; -typedef enum { - ImGuiTableBgTarget_None = 0, - ImGuiTableBgTarget_RowBg0 = 1, - ImGuiTableBgTarget_RowBg1 = 2, - ImGuiTableBgTarget_CellBg = 3, -}ImGuiTableBgTarget_; typedef enum { ImGuiFocusedFlags_None = 0, ImGuiFocusedFlags_ChildWindows = 1 << 0, @@ -384,14 +350,19 @@ typedef enum { ImGuiHoveredFlags_NoPopupHierarchy = 1 << 3, ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 5, ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 7, - ImGuiHoveredFlags_AllowWhenOverlapped = 1 << 8, - ImGuiHoveredFlags_AllowWhenDisabled = 1 << 9, - ImGuiHoveredFlags_NoNavOverride = 1 << 10, + ImGuiHoveredFlags_AllowWhenOverlappedByItem = 1 << 8, + ImGuiHoveredFlags_AllowWhenOverlappedByWindow = 1 << 9, + ImGuiHoveredFlags_AllowWhenDisabled = 1 << 10, + ImGuiHoveredFlags_NoNavOverride = 1 << 11, + ImGuiHoveredFlags_AllowWhenOverlapped = ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow, ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, - ImGuiHoveredFlags_DelayNormal = 1 << 11, - ImGuiHoveredFlags_DelayShort = 1 << 12, - ImGuiHoveredFlags_NoSharedDelay = 1 << 13, + ImGuiHoveredFlags_ForTooltip = 1 << 12, + ImGuiHoveredFlags_Stationary = 1 << 13, + ImGuiHoveredFlags_DelayNone = 1 << 14, + ImGuiHoveredFlags_DelayShort = 1 << 15, + ImGuiHoveredFlags_DelayNormal = 1 << 16, + ImGuiHoveredFlags_NoSharedDelay = 1 << 17, }ImGuiHoveredFlags_; typedef enum { ImGuiDragDropFlags_None = 0, @@ -400,7 +371,9 @@ typedef enum { ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, ImGuiDragDropFlags_SourceExtern = 1 << 4, - ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, + ImGuiDragDropFlags_PayloadAutoExpire = 1 << 5, + ImGuiDragDropFlags_PayloadNoCrossContext = 1 << 6, + ImGuiDragDropFlags_PayloadNoCrossProcess = 1 << 7, ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, @@ -417,21 +390,22 @@ typedef enum { ImGuiDataType_U64, ImGuiDataType_Float, ImGuiDataType_Double, + ImGuiDataType_Bool, ImGuiDataType_COUNT }ImGuiDataType_; typedef enum { - ImGuiDir_None = -1, - ImGuiDir_Left = 0, - ImGuiDir_Right = 1, - ImGuiDir_Up = 2, - ImGuiDir_Down = 3, - ImGuiDir_COUNT -}ImGuiDir_; +ImGuiDir_None=-1, +ImGuiDir_Left=0, +ImGuiDir_Right=1, +ImGuiDir_Up=2, +ImGuiDir_Down=3, +ImGuiDir_COUNT=4, +}ImGuiDir; typedef enum { - ImGuiSortDirection_None = 0, - ImGuiSortDirection_Ascending = 1, - ImGuiSortDirection_Descending = 2 -}ImGuiSortDirection_; +ImGuiSortDirection_None=0, +ImGuiSortDirection_Ascending=1, +ImGuiSortDirection_Descending=2, +}ImGuiSortDirection; typedef enum { ImGuiKey_None=0, ImGuiKey_Tab=512, @@ -506,93 +480,114 @@ ImGuiKey_F9=580, ImGuiKey_F10=581, ImGuiKey_F11=582, ImGuiKey_F12=583, -ImGuiKey_Apostrophe=584, -ImGuiKey_Comma=585, -ImGuiKey_Minus=586, -ImGuiKey_Period=587, -ImGuiKey_Slash=588, -ImGuiKey_Semicolon=589, -ImGuiKey_Equal=590, -ImGuiKey_LeftBracket=591, -ImGuiKey_Backslash=592, -ImGuiKey_RightBracket=593, -ImGuiKey_GraveAccent=594, -ImGuiKey_CapsLock=595, -ImGuiKey_ScrollLock=596, -ImGuiKey_NumLock=597, -ImGuiKey_PrintScreen=598, -ImGuiKey_Pause=599, -ImGuiKey_Keypad0=600, -ImGuiKey_Keypad1=601, -ImGuiKey_Keypad2=602, -ImGuiKey_Keypad3=603, -ImGuiKey_Keypad4=604, -ImGuiKey_Keypad5=605, -ImGuiKey_Keypad6=606, -ImGuiKey_Keypad7=607, -ImGuiKey_Keypad8=608, -ImGuiKey_Keypad9=609, -ImGuiKey_KeypadDecimal=610, -ImGuiKey_KeypadDivide=611, -ImGuiKey_KeypadMultiply=612, -ImGuiKey_KeypadSubtract=613, -ImGuiKey_KeypadAdd=614, -ImGuiKey_KeypadEnter=615, -ImGuiKey_KeypadEqual=616, -ImGuiKey_GamepadStart=617, -ImGuiKey_GamepadBack=618, -ImGuiKey_GamepadFaceLeft=619, -ImGuiKey_GamepadFaceRight=620, -ImGuiKey_GamepadFaceUp=621, -ImGuiKey_GamepadFaceDown=622, -ImGuiKey_GamepadDpadLeft=623, -ImGuiKey_GamepadDpadRight=624, -ImGuiKey_GamepadDpadUp=625, -ImGuiKey_GamepadDpadDown=626, -ImGuiKey_GamepadL1=627, -ImGuiKey_GamepadR1=628, -ImGuiKey_GamepadL2=629, -ImGuiKey_GamepadR2=630, -ImGuiKey_GamepadL3=631, -ImGuiKey_GamepadR3=632, -ImGuiKey_GamepadLStickLeft=633, -ImGuiKey_GamepadLStickRight=634, -ImGuiKey_GamepadLStickUp=635, -ImGuiKey_GamepadLStickDown=636, -ImGuiKey_GamepadRStickLeft=637, -ImGuiKey_GamepadRStickRight=638, -ImGuiKey_GamepadRStickUp=639, -ImGuiKey_GamepadRStickDown=640, -ImGuiKey_MouseLeft=641, -ImGuiKey_MouseRight=642, -ImGuiKey_MouseMiddle=643, -ImGuiKey_MouseX1=644, -ImGuiKey_MouseX2=645, -ImGuiKey_MouseWheelX=646, -ImGuiKey_MouseWheelY=647, -ImGuiKey_ReservedForModCtrl=648, -ImGuiKey_ReservedForModShift=649, -ImGuiKey_ReservedForModAlt=650, -ImGuiKey_ReservedForModSuper=651, -ImGuiKey_COUNT=652, +ImGuiKey_F13=584, +ImGuiKey_F14=585, +ImGuiKey_F15=586, +ImGuiKey_F16=587, +ImGuiKey_F17=588, +ImGuiKey_F18=589, +ImGuiKey_F19=590, +ImGuiKey_F20=591, +ImGuiKey_F21=592, +ImGuiKey_F22=593, +ImGuiKey_F23=594, +ImGuiKey_F24=595, +ImGuiKey_Apostrophe=596, +ImGuiKey_Comma=597, +ImGuiKey_Minus=598, +ImGuiKey_Period=599, +ImGuiKey_Slash=600, +ImGuiKey_Semicolon=601, +ImGuiKey_Equal=602, +ImGuiKey_LeftBracket=603, +ImGuiKey_Backslash=604, +ImGuiKey_RightBracket=605, +ImGuiKey_GraveAccent=606, +ImGuiKey_CapsLock=607, +ImGuiKey_ScrollLock=608, +ImGuiKey_NumLock=609, +ImGuiKey_PrintScreen=610, +ImGuiKey_Pause=611, +ImGuiKey_Keypad0=612, +ImGuiKey_Keypad1=613, +ImGuiKey_Keypad2=614, +ImGuiKey_Keypad3=615, +ImGuiKey_Keypad4=616, +ImGuiKey_Keypad5=617, +ImGuiKey_Keypad6=618, +ImGuiKey_Keypad7=619, +ImGuiKey_Keypad8=620, +ImGuiKey_Keypad9=621, +ImGuiKey_KeypadDecimal=622, +ImGuiKey_KeypadDivide=623, +ImGuiKey_KeypadMultiply=624, +ImGuiKey_KeypadSubtract=625, +ImGuiKey_KeypadAdd=626, +ImGuiKey_KeypadEnter=627, +ImGuiKey_KeypadEqual=628, +ImGuiKey_AppBack=629, +ImGuiKey_AppForward=630, +ImGuiKey_GamepadStart=631, +ImGuiKey_GamepadBack=632, +ImGuiKey_GamepadFaceLeft=633, +ImGuiKey_GamepadFaceRight=634, +ImGuiKey_GamepadFaceUp=635, +ImGuiKey_GamepadFaceDown=636, +ImGuiKey_GamepadDpadLeft=637, +ImGuiKey_GamepadDpadRight=638, +ImGuiKey_GamepadDpadUp=639, +ImGuiKey_GamepadDpadDown=640, +ImGuiKey_GamepadL1=641, +ImGuiKey_GamepadR1=642, +ImGuiKey_GamepadL2=643, +ImGuiKey_GamepadR2=644, +ImGuiKey_GamepadL3=645, +ImGuiKey_GamepadR3=646, +ImGuiKey_GamepadLStickLeft=647, +ImGuiKey_GamepadLStickRight=648, +ImGuiKey_GamepadLStickUp=649, +ImGuiKey_GamepadLStickDown=650, +ImGuiKey_GamepadRStickLeft=651, +ImGuiKey_GamepadRStickRight=652, +ImGuiKey_GamepadRStickUp=653, +ImGuiKey_GamepadRStickDown=654, +ImGuiKey_MouseLeft=655, +ImGuiKey_MouseRight=656, +ImGuiKey_MouseMiddle=657, +ImGuiKey_MouseX1=658, +ImGuiKey_MouseX2=659, +ImGuiKey_MouseWheelX=660, +ImGuiKey_MouseWheelY=661, +ImGuiKey_ReservedForModCtrl=662, +ImGuiKey_ReservedForModShift=663, +ImGuiKey_ReservedForModAlt=664, +ImGuiKey_ReservedForModSuper=665, +ImGuiKey_COUNT=666, ImGuiMod_None=0, ImGuiMod_Ctrl=1 << 12, ImGuiMod_Shift=1 << 13, ImGuiMod_Alt=1 << 14, ImGuiMod_Super=1 << 15, -ImGuiMod_Shortcut=1 << 11, -ImGuiMod_Mask_=0xF800, +ImGuiMod_Mask_=0xF000, ImGuiKey_NamedKey_BEGIN=512, ImGuiKey_NamedKey_END=ImGuiKey_COUNT, ImGuiKey_NamedKey_COUNT=ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, -ImGuiKey_KeysData_SIZE=ImGuiKey_COUNT, -ImGuiKey_KeysData_OFFSET=0, +ImGuiKey_KeysData_SIZE=ImGuiKey_NamedKey_COUNT, +ImGuiKey_KeysData_OFFSET=ImGuiKey_NamedKey_BEGIN, }ImGuiKey; typedef enum { - ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, - ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, - ImGuiNavInput_COUNT, -}ImGuiNavInput; + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, + ImGuiInputFlags_RouteActive = 1 << 10, + ImGuiInputFlags_RouteFocused = 1 << 11, + ImGuiInputFlags_RouteGlobal = 1 << 12, + ImGuiInputFlags_RouteAlways = 1 << 13, + ImGuiInputFlags_RouteOverFocused = 1 << 14, + ImGuiInputFlags_RouteOverActive = 1 << 15, + ImGuiInputFlags_RouteUnlessBgFocused = 1 << 16, + ImGuiInputFlags_RouteFromRootWindow = 1 << 17, + ImGuiInputFlags_Tooltip = 1 << 18, +}ImGuiInputFlags_; typedef enum { ImGuiConfigFlags_None = 0, ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, @@ -601,6 +596,7 @@ typedef enum { ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, ImGuiConfigFlags_NoMouse = 1 << 4, ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, + ImGuiConfigFlags_NoKeyboard = 1 << 6, ImGuiConfigFlags_IsSRGB = 1 << 20, ImGuiConfigFlags_IsTouchScreen = 1 << 21, }ImGuiConfigFlags_; @@ -645,11 +641,13 @@ typedef enum { ImGuiCol_ResizeGrip, ImGuiCol_ResizeGripHovered, ImGuiCol_ResizeGripActive, - ImGuiCol_Tab, ImGuiCol_TabHovered, - ImGuiCol_TabActive, - ImGuiCol_TabUnfocused, - ImGuiCol_TabUnfocusedActive, + ImGuiCol_Tab, + ImGuiCol_TabSelected, + ImGuiCol_TabSelectedOverline, + ImGuiCol_TabDimmed, + ImGuiCol_TabDimmedSelected, + ImGuiCol_TabDimmedSelectedOverline, ImGuiCol_PlotLines, ImGuiCol_PlotLinesHovered, ImGuiCol_PlotHistogram, @@ -659,13 +657,14 @@ typedef enum { ImGuiCol_TableBorderLight, ImGuiCol_TableRowBg, ImGuiCol_TableRowBgAlt, + ImGuiCol_TextLink, ImGuiCol_TextSelectedBg, ImGuiCol_DragDropTarget, ImGuiCol_NavHighlight, ImGuiCol_NavWindowingHighlight, ImGuiCol_NavWindowingDimBg, ImGuiCol_ModalWindowDimBg, - ImGuiCol_COUNT + ImGuiCol_COUNT, }ImGuiCol_; typedef enum { ImGuiStyleVar_Alpha, @@ -691,8 +690,16 @@ typedef enum { ImGuiStyleVar_GrabMinSize, ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, + ImGuiStyleVar_TabBorderSize, + ImGuiStyleVar_TabBarBorderSize, + ImGuiStyleVar_TabBarOverlineSize, + ImGuiStyleVar_TableAngledHeadersAngle, + ImGuiStyleVar_TableAngledHeadersTextAlign, ImGuiStyleVar_ButtonTextAlign, ImGuiStyleVar_SelectableTextAlign, + ImGuiStyleVar_SeparatorTextBorderSize, + ImGuiStyleVar_SeparatorTextAlign, + ImGuiStyleVar_SeparatorTextPadding, ImGuiStyleVar_COUNT }ImGuiStyleVar_; typedef enum { @@ -701,7 +708,6 @@ typedef enum { ImGuiButtonFlags_MouseButtonRight = 1 << 1, ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, - ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, }ImGuiButtonFlags_; typedef enum { ImGuiColorEditFlags_None = 0, @@ -740,6 +746,7 @@ typedef enum { ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, + ImGuiSliderFlags_WrapAround = 1 << 8, ImGuiSliderFlags_InvalidMask_ = 0x7000000F, }ImGuiSliderFlags_; typedef enum { @@ -761,6 +768,12 @@ typedef enum { ImGuiMouseCursor_NotAllowed, ImGuiMouseCursor_COUNT }ImGuiMouseCursor_; +typedef enum { +ImGuiMouseSource_Mouse=0, +ImGuiMouseSource_TouchScreen=1, +ImGuiMouseSource_Pen=2, +ImGuiMouseSource_COUNT=3, +}ImGuiMouseSource; typedef enum { ImGuiCond_None = 0, ImGuiCond_Always = 1 << 0, @@ -768,6 +781,98 @@ typedef enum { ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3, }ImGuiCond_; +typedef enum { + ImGuiTableFlags_None = 0, + ImGuiTableFlags_Resizable = 1 << 0, + ImGuiTableFlags_Reorderable = 1 << 1, + ImGuiTableFlags_Hideable = 1 << 2, + ImGuiTableFlags_Sortable = 1 << 3, + ImGuiTableFlags_NoSavedSettings = 1 << 4, + ImGuiTableFlags_ContextMenuInBody = 1 << 5, + ImGuiTableFlags_RowBg = 1 << 6, + ImGuiTableFlags_BordersInnerH = 1 << 7, + ImGuiTableFlags_BordersOuterH = 1 << 8, + ImGuiTableFlags_BordersInnerV = 1 << 9, + ImGuiTableFlags_BordersOuterV = 1 << 10, + ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, + ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, + ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, + ImGuiTableFlags_NoBordersInBody = 1 << 11, + ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, + ImGuiTableFlags_SizingFixedFit = 1 << 13, + ImGuiTableFlags_SizingFixedSame = 2 << 13, + ImGuiTableFlags_SizingStretchProp = 3 << 13, + ImGuiTableFlags_SizingStretchSame = 4 << 13, + ImGuiTableFlags_NoHostExtendX = 1 << 16, + ImGuiTableFlags_NoHostExtendY = 1 << 17, + ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, + ImGuiTableFlags_PreciseWidths = 1 << 19, + ImGuiTableFlags_NoClip = 1 << 20, + ImGuiTableFlags_PadOuterX = 1 << 21, + ImGuiTableFlags_NoPadOuterX = 1 << 22, + ImGuiTableFlags_NoPadInnerX = 1 << 23, + ImGuiTableFlags_ScrollX = 1 << 24, + ImGuiTableFlags_ScrollY = 1 << 25, + ImGuiTableFlags_SortMulti = 1 << 26, + ImGuiTableFlags_SortTristate = 1 << 27, + ImGuiTableFlags_HighlightHoveredColumn = 1 << 28, + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, +}ImGuiTableFlags_; +typedef enum { + ImGuiTableColumnFlags_None = 0, + ImGuiTableColumnFlags_Disabled = 1 << 0, + ImGuiTableColumnFlags_DefaultHide = 1 << 1, + ImGuiTableColumnFlags_DefaultSort = 1 << 2, + ImGuiTableColumnFlags_WidthStretch = 1 << 3, + ImGuiTableColumnFlags_WidthFixed = 1 << 4, + ImGuiTableColumnFlags_NoResize = 1 << 5, + ImGuiTableColumnFlags_NoReorder = 1 << 6, + ImGuiTableColumnFlags_NoHide = 1 << 7, + ImGuiTableColumnFlags_NoClip = 1 << 8, + ImGuiTableColumnFlags_NoSort = 1 << 9, + ImGuiTableColumnFlags_NoSortAscending = 1 << 10, + ImGuiTableColumnFlags_NoSortDescending = 1 << 11, + ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, + ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, + ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, + ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, + ImGuiTableColumnFlags_IndentEnable = 1 << 16, + ImGuiTableColumnFlags_IndentDisable = 1 << 17, + ImGuiTableColumnFlags_AngledHeader = 1 << 18, + ImGuiTableColumnFlags_IsEnabled = 1 << 24, + ImGuiTableColumnFlags_IsVisible = 1 << 25, + ImGuiTableColumnFlags_IsSorted = 1 << 26, + ImGuiTableColumnFlags_IsHovered = 1 << 27, + ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, + ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, + ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, +}ImGuiTableColumnFlags_; +typedef enum { + ImGuiTableRowFlags_None = 0, + ImGuiTableRowFlags_Headers = 1 << 0, +}ImGuiTableRowFlags_; +typedef enum { + ImGuiTableBgTarget_None = 0, + ImGuiTableBgTarget_RowBg0 = 1, + ImGuiTableBgTarget_RowBg1 = 2, + ImGuiTableBgTarget_CellBg = 3, +}ImGuiTableBgTarget_; +struct ImGuiTableSortSpecs +{ + const ImGuiTableColumnSortSpecs* Specs; + int SpecsCount; + bool SpecsDirty; +}; +struct ImGuiTableColumnSortSpecs +{ + ImGuiID ColumnUserID; + ImS16 ColumnIndex; + ImS16 SortOrder; + ImGuiSortDirection SortDirection; +}; struct ImGuiStyle { float Alpha; @@ -799,9 +904,16 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; float TabMinWidthForCloseButton; + float TabBarBorderSize; + float TabBarOverlineSize; + float TableAngledHeadersAngle; + ImVec2 TableAngledHeadersTextAlign; ImGuiDir ColorButtonPosition; ImVec2 ButtonTextAlign; ImVec2 SelectableTextAlign; + float SeparatorTextBorderSize; + ImVec2 SeparatorTextAlign; + ImVec2 SeparatorTextPadding; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; float MouseCursorScale; @@ -811,6 +923,11 @@ struct ImGuiStyle float CurveTessellationTol; float CircleTessellationMaxError; ImVec4 Colors[ImGuiCol_COUNT]; + float HoverStationaryDelay; + float HoverDelayShort; + float HoverDelayNormal; + ImGuiHoveredFlags HoverFlagsForTooltipMouse; + ImGuiHoveredFlags HoverFlagsForTooltipNav; }; struct ImGuiKeyData { @@ -830,13 +947,6 @@ struct ImGuiIO float IniSavingRate; const char* IniFilename; const char* LogFilename; - float MouseDoubleClickTime; - float MouseDoubleClickMaxDist; - float MouseDragThreshold; - float KeyRepeatDelay; - float KeyRepeatRate; - float HoverDelayNormal; - float HoverDelayShort; void* UserData; ImFontAtlas*Fonts; float FontGlobalScale; @@ -845,6 +955,7 @@ struct ImGuiIO ImVec2 DisplayFramebufferScale; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; + bool ConfigNavSwapGamepadButtons; bool ConfigInputTrickleEventQueue; bool ConfigInputTextCursorBlink; bool ConfigInputTextEnterKeepActive; @@ -852,16 +963,22 @@ struct ImGuiIO bool ConfigWindowsResizeFromEdges; bool ConfigWindowsMoveFromTitleBarOnly; float ConfigMemoryCompactTimer; + float MouseDoubleClickTime; + float MouseDoubleClickMaxDist; + float MouseDragThreshold; + float KeyRepeatDelay; + float KeyRepeatRate; + bool ConfigDebugIsDebuggerPresent; + bool ConfigDebugHighlightIdConflicts; + bool ConfigDebugBeginReturnValueOnce; + bool ConfigDebugBeginReturnValueLoop; + bool ConfigDebugIgnoreFocusLoss; + bool ConfigDebugIniSettings; const char* BackendPlatformName; const char* BackendRendererName; void* BackendPlatformUserData; void* BackendRendererUserData; void* BackendLanguageUserData; - const char* (*GetClipboardTextFn)(void* user_data); - void (*SetClipboardTextFn)(void* user_data, const char* text); - void* ClipboardUserData; - void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data); - void* _UnusedPadding; bool WantCaptureMouse; bool WantCaptureKeyboard; bool WantTextInput; @@ -874,15 +991,13 @@ struct ImGuiIO int MetricsRenderIndices; int MetricsRenderWindows; int MetricsActiveWindows; - int MetricsActiveAllocations; ImVec2 MouseDelta; - int KeyMap[ImGuiKey_COUNT]; - bool KeysDown[ImGuiKey_COUNT]; - float NavInputs[ImGuiNavInput_COUNT]; + ImGuiContext* Ctx; ImVec2 MousePos; bool MouseDown[5]; float MouseWheel; float MouseWheelH; + ImGuiMouseSource MouseSource; bool KeyCtrl; bool KeyShift; bool KeyAlt; @@ -900,6 +1015,8 @@ struct ImGuiIO bool MouseReleased[5]; bool MouseDownOwned[5]; bool MouseDownOwnedUnlessPopupClose[5]; + bool MouseWheelRequestAxisSwap; + bool MouseCtrlLeftAsRightClick; float MouseDownDuration[5]; float MouseDownDurationPrev[5]; float MouseDragMaxDistanceSqr[5]; @@ -913,6 +1030,7 @@ struct ImGuiIO }; struct ImGuiInputTextCallbackData { + ImGuiContext* Ctx; ImGuiInputTextFlags EventFlag; ImGuiInputTextFlags Flags; void* UserData; @@ -944,19 +1062,6 @@ struct ImGuiPayload bool Preview; bool Delivery; }; -struct ImGuiTableColumnSortSpecs -{ - ImGuiID ColumnUserID; - ImS16 ColumnIndex; - ImS16 SortOrder; - ImGuiSortDirection SortDirection : 8; -}; -struct ImGuiTableSortSpecs -{ - const ImGuiTableColumnSortSpecs* Specs; - int SpecsCount; - bool SpecsDirty; -}; struct ImGuiOnceUponAFrame { int RefFrame; @@ -985,31 +1090,87 @@ struct ImGuiTextBuffer }; struct ImGuiStoragePair { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; - typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; struct ImGuiStorage { ImVector_ImGuiStoragePair Data; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; struct ImGuiListClipper { + ImGuiContext* Ctx; int DisplayStart; int DisplayEnd; int ItemsCount; float ItemsHeight; float StartPosY; + double StartSeekOffsetY; void* TempData; }; struct ImColor { ImVec4 Value; }; +typedef enum { + ImGuiMultiSelectFlags_None = 0, + ImGuiMultiSelectFlags_SingleSelect = 1 << 0, + ImGuiMultiSelectFlags_NoSelectAll = 1 << 1, + ImGuiMultiSelectFlags_NoRangeSelect = 1 << 2, + ImGuiMultiSelectFlags_NoAutoSelect = 1 << 3, + ImGuiMultiSelectFlags_NoAutoClear = 1 << 4, + ImGuiMultiSelectFlags_NoAutoClearOnReselect = 1 << 5, + ImGuiMultiSelectFlags_BoxSelect1d = 1 << 6, + ImGuiMultiSelectFlags_BoxSelect2d = 1 << 7, + ImGuiMultiSelectFlags_BoxSelectNoScroll = 1 << 8, + ImGuiMultiSelectFlags_ClearOnEscape = 1 << 9, + ImGuiMultiSelectFlags_ClearOnClickVoid = 1 << 10, + ImGuiMultiSelectFlags_ScopeWindow = 1 << 11, + ImGuiMultiSelectFlags_ScopeRect = 1 << 12, + ImGuiMultiSelectFlags_SelectOnClick = 1 << 13, + ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14, + ImGuiMultiSelectFlags_NavWrapX = 1 << 16, +}ImGuiMultiSelectFlags_; +typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest; + +struct ImGuiMultiSelectIO +{ + ImVector_ImGuiSelectionRequest Requests; + ImGuiSelectionUserData RangeSrcItem; + ImGuiSelectionUserData NavIdItem; + bool NavIdSelected; + bool RangeSrcReset; + int ItemsCount; +}; +typedef enum { + ImGuiSelectionRequestType_None = 0, + ImGuiSelectionRequestType_SetAll, + ImGuiSelectionRequestType_SetRange, +}ImGuiSelectionRequestType; +struct ImGuiSelectionRequest +{ + ImGuiSelectionRequestType Type; + bool Selected; + ImS8 RangeDirection; + ImGuiSelectionUserData RangeFirstItem; + ImGuiSelectionUserData RangeLastItem; +}; +struct ImGuiSelectionBasicStorage +{ + int Size; + bool PreserveOrder; + void* UserData; + ImGuiID (*AdapterIndexToStorageId)(ImGuiSelectionBasicStorage* self, int idx); + int _SelectionOrder; + ImGuiStorage _Storage; +}; +struct ImGuiSelectionExternalStorage +{ + void* UserData; + void (*AdapterSetItemSelected)(ImGuiSelectionExternalStorage* self, int idx, bool selected); +}; typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { @@ -1076,12 +1237,12 @@ typedef enum { }ImDrawListFlags_; typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; - struct ImDrawList { ImVector_ImDrawCmd CmdBuffer; @@ -1090,26 +1251,29 @@ struct ImDrawList ImDrawListFlags Flags; unsigned int _VtxCurrentIdx; ImDrawListSharedData* _Data; - const char* _OwnerName; ImDrawVert* _VtxWritePtr; ImDrawIdx* _IdxWritePtr; - ImVector_ImVec4 _ClipRectStack; - ImVector_ImTextureID _TextureIdStack; ImVector_ImVec2 _Path; ImDrawCmdHeader _CmdHeader; ImDrawListSplitter _Splitter; + ImVector_ImVec4 _ClipRectStack; + ImVector_ImTextureID _TextureIdStack; float _FringeScale; + const char* _OwnerName; }; +typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr; + struct ImDrawData { bool Valid; int CmdListsCount; int TotalIdxCount; int TotalVtxCount; - ImDrawList** CmdLists; + ImVector_ImDrawListPtr CmdLists; ImVec2 DisplayPos; ImVec2 DisplaySize; ImVec2 FramebufferScale; + ImGuiViewport* OwnerViewport; }; struct ImFontConfig { @@ -1129,6 +1293,7 @@ struct ImFontConfig bool MergeMode; unsigned int FontBuilderFlags; float RasterizerMultiply; + float RasterizerDensity; ImWchar EllipsisChar; char Name[40]; ImFont* DstFont; @@ -1212,7 +1377,9 @@ struct ImFont short ConfigDataCount; ImWchar FallbackChar; ImWchar EllipsisChar; - ImWchar DotChar; + short EllipsisCharCount; + float EllipsisWidth; + float EllipsisCharStep; bool DirtyLookupTables; float Scale; float Ascent, Descent; @@ -1227,13 +1394,26 @@ typedef enum { }ImGuiViewportFlags_; struct ImGuiViewport { + ImGuiID ID; ImGuiViewportFlags Flags; ImVec2 Pos; ImVec2 Size; ImVec2 WorkPos; ImVec2 WorkSize; + void* PlatformHandle; void* PlatformHandleRaw; }; +struct ImGuiPlatformIO +{ + const char* (*Platform_GetClipboardTextFn)(ImGuiContext* ctx); + void (*Platform_SetClipboardTextFn)(ImGuiContext* ctx, const char* text); + void* Platform_ClipboardUserData; + bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); + void* Platform_OpenInShellUserData; + void (*Platform_SetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + void* Platform_ImeUserData; + ImWchar Platform_LocaleDecimalPoint; +}; struct ImGuiPlatformImeData { bool WantVisible; @@ -1254,6 +1434,8 @@ typedef enum { ImGuiFreeTypeBuilderFlags_LoadColor = 1 << 8, ImGuiFreeTypeBuilderFlags_Bitmap = 1 << 9 }ImGuiFreeTypeBuilderFlags; +#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8) + #else struct GLFWwindow; struct SDL_Window; @@ -1261,16 +1443,17 @@ typedef union SDL_Event SDL_Event; #endif // CIMGUI_DEFINE_ENUMS_AND_STRUCTS #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS -typedef struct ImGuiStorage::ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiTextFilter::ImGuiTextRange ImGuiTextRange; typedef ImVector ImVector_ImDrawChannel; typedef ImVector ImVector_ImDrawCmd; typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImDrawListPtr; typedef ImVector ImVector_ImDrawVert; typedef ImVector ImVector_ImFontPtr; typedef ImVector ImVector_ImFontAtlasCustomRect; typedef ImVector ImVector_ImFontConfig; typedef ImVector ImVector_ImFontGlyph; +typedef ImVector ImVector_ImGuiSelectionRequest; typedef ImVector ImVector_ImGuiStoragePair; typedef ImVector ImVector_ImGuiTextRange; typedef ImVector ImVector_ImTextureID; @@ -1292,6 +1475,7 @@ CIMGUI_API void igDestroyContext(ImGuiContext* ctx); CIMGUI_API ImGuiContext* igGetCurrentContext(void); CIMGUI_API void igSetCurrentContext(ImGuiContext* ctx); CIMGUI_API ImGuiIO* igGetIO(void); +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API ImGuiStyle* igGetStyle(void); CIMGUI_API void igNewFrame(void); CIMGUI_API void igEndFrame(void); @@ -1300,7 +1484,7 @@ CIMGUI_API ImDrawData* igGetDrawData(void); CIMGUI_API void igShowDemoWindow(bool* p_open); CIMGUI_API void igShowMetricsWindow(bool* p_open); CIMGUI_API void igShowDebugLogWindow(bool* p_open); -CIMGUI_API void igShowStackToolWindow(bool* p_open); +CIMGUI_API void igShowIDStackToolWindow(bool* p_open); CIMGUI_API void igShowAboutWindow(bool* p_open); CIMGUI_API void igShowStyleEditor(ImGuiStyle* ref); CIMGUI_API bool igShowStyleSelector(const char* label); @@ -1312,8 +1496,8 @@ CIMGUI_API void igStyleColorsLight(ImGuiStyle* dst); CIMGUI_API void igStyleColorsClassic(ImGuiStyle* dst); CIMGUI_API bool igBegin(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEnd(void); -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags); -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags); +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); CIMGUI_API void igEndChild(void); CIMGUI_API bool igIsWindowAppearing(void); CIMGUI_API bool igIsWindowCollapsed(void); @@ -1341,10 +1525,6 @@ CIMGUI_API void igSetWindowPos_Str(const char* name,const ImVec2 pos,ImGuiCond c CIMGUI_API void igSetWindowSize_Str(const char* name,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_Str(const char* name,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowFocus_Str(const char* name); -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut); CIMGUI_API float igGetScrollX(void); CIMGUI_API float igGetScrollY(void); CIMGUI_API void igSetScrollX(float scroll_x); @@ -1362,11 +1542,11 @@ CIMGUI_API void igPushStyleColor_Vec4(ImGuiCol idx,const ImVec4 col); CIMGUI_API void igPopStyleColor(int count); CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val); CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val); +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x); +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y); CIMGUI_API void igPopStyleVar(int count); -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus); -CIMGUI_API void igPopAllowKeyboardFocus(void); -CIMGUI_API void igPushButtonRepeat(bool repeat); -CIMGUI_API void igPopButtonRepeat(void); +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); +CIMGUI_API void igPopItemFlag(void); CIMGUI_API void igPushItemWidth(float item_width); CIMGUI_API void igPopItemWidth(void); CIMGUI_API void igSetNextItemWidth(float item_width); @@ -1378,8 +1558,18 @@ CIMGUI_API float igGetFontSize(void); CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut); CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul); CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col); -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col); +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul); CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx); +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); +CIMGUI_API void igGetCursorPos(ImVec2 *pOut); +CIMGUI_API float igGetCursorPosX(void); +CIMGUI_API float igGetCursorPosY(void); +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); +CIMGUI_API void igSetCursorPosX(float local_x); +CIMGUI_API void igSetCursorPosY(float local_y); +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); CIMGUI_API void igSeparator(void); CIMGUI_API void igSameLine(float offset_from_start_x,float spacing); CIMGUI_API void igNewLine(void); @@ -1389,15 +1579,6 @@ CIMGUI_API void igIndent(float indent_w); CIMGUI_API void igUnindent(float indent_w); CIMGUI_API void igBeginGroup(void); CIMGUI_API void igEndGroup(void); -CIMGUI_API void igGetCursorPos(ImVec2 *pOut); -CIMGUI_API float igGetCursorPosX(void); -CIMGUI_API float igGetCursorPosY(void); -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); -CIMGUI_API void igSetCursorPosX(float local_x); -CIMGUI_API void igSetCursorPosY(float local_y); -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); CIMGUI_API void igAlignTextToFramePadding(void); CIMGUI_API float igGetTextLineHeight(void); CIMGUI_API float igGetTextLineHeightWithSpacing(void); @@ -1411,6 +1592,7 @@ CIMGUI_API void igPopID(void); CIMGUI_API ImGuiID igGetID_Str(const char* str_id); CIMGUI_API ImGuiID igGetID_StrStr(const char* str_id_begin,const char* str_id_end); CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id); +CIMGUI_API ImGuiID igGetID_Int(int int_id); CIMGUI_API void igTextUnformatted(const char* text,const char* text_end); CIMGUI_API void igText(const char* fmt,...); CIMGUI_API void igTextV(const char* fmt,va_list args); @@ -1424,6 +1606,7 @@ CIMGUI_API void igLabelText(const char* label,const char* fmt,...); CIMGUI_API void igLabelTextV(const char* label,const char* fmt,va_list args); CIMGUI_API void igBulletText(const char* fmt,...); CIMGUI_API void igBulletTextV(const char* fmt,va_list args); +CIMGUI_API void igSeparatorText(const char* label); CIMGUI_API bool igButton(const char* label,const ImVec2 size); CIMGUI_API bool igSmallButton(const char* label); CIMGUI_API bool igInvisibleButton(const char* str_id,const ImVec2 size,ImGuiButtonFlags flags); @@ -1435,13 +1618,15 @@ CIMGUI_API bool igRadioButton_Bool(const char* label,bool active); CIMGUI_API bool igRadioButton_IntPtr(const char* label,int* v,int v_button); CIMGUI_API void igProgressBar(float fraction,const ImVec2 size_arg,const char* overlay); CIMGUI_API void igBullet(void); -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); +CIMGUI_API bool igTextLink(const char* label); +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url); +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags); CIMGUI_API void igEndCombo(void); CIMGUI_API bool igCombo_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items); CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items); -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items); +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items); CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat2(const char* label,float v[2],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat3(const char* label,float v[3],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); @@ -1505,12 +1690,17 @@ CIMGUI_API float igGetTreeNodeToLabelSpacing(void); CIMGUI_API bool igCollapsingHeader_TreeNodeFlags(const char* label,ImGuiTreeNodeFlags flags); CIMGUI_API bool igCollapsingHeader_BoolPtr(const char* label,bool* p_visible,ImGuiTreeNodeFlags flags); CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond); +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id); CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size); CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size); +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count); +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect(void); +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data); +CIMGUI_API bool igIsItemToggledSelection(void); CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size); CIMGUI_API void igEndListBox(void); CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int height_in_items); -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items); +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items); CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); CIMGUI_API void igPlotLines_FnFloatPtr(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size); CIMGUI_API void igPlotHistogram_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); @@ -1527,10 +1717,13 @@ CIMGUI_API bool igBeginMenu(const char* label,bool enabled); CIMGUI_API void igEndMenu(void); CIMGUI_API bool igMenuItem_Bool(const char* label,const char* shortcut,bool selected,bool enabled); CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* p_selected,bool enabled); -CIMGUI_API void igBeginTooltip(void); +CIMGUI_API bool igBeginTooltip(void); CIMGUI_API void igEndTooltip(void); CIMGUI_API void igSetTooltip(const char* fmt,...); CIMGUI_API void igSetTooltipV(const char* fmt,va_list args); +CIMGUI_API bool igBeginItemTooltip(void); +CIMGUI_API void igSetItemTooltip(const char* fmt,...); +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args); CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags); CIMGUI_API bool igBeginPopupModal(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEndPopup(void); @@ -1542,15 +1735,16 @@ CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextVoid(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igIsPopupOpen(const char* str_id,ImGuiPopupFlags flags); -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); CIMGUI_API void igEndTable(void); CIMGUI_API void igTableNextRow(ImGuiTableRowFlags row_flags,float min_row_height); CIMGUI_API bool igTableNextColumn(void); CIMGUI_API bool igTableSetColumnIndex(int column_n); CIMGUI_API void igTableSetupColumn(const char* label,ImGuiTableColumnFlags flags,float init_width_or_weight,ImGuiID user_id); CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows); -CIMGUI_API void igTableHeadersRow(void); CIMGUI_API void igTableHeader(const char* label); +CIMGUI_API void igTableHeadersRow(void); +CIMGUI_API void igTableAngledHeadersRow(void); CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs(void); CIMGUI_API int igTableGetColumnCount(void); CIMGUI_API int igTableGetColumnIndex(void); @@ -1558,8 +1752,9 @@ CIMGUI_API int igTableGetRowIndex(void); CIMGUI_API const char* igTableGetColumnName(int column_n); CIMGUI_API ImGuiTableColumnFlags igTableGetColumnFlags(int column_n); CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v); +CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n); -CIMGUI_API void igColumns(int count,const char* id,bool border); +CIMGUI_API void igColumns(int count,const char* id,bool borders); CIMGUI_API void igNextColumn(void); CIMGUI_API int igGetColumnIndex(void); CIMGUI_API float igGetColumnWidth(int column_index); @@ -1592,6 +1787,7 @@ CIMGUI_API void igPushClipRect(const ImVec2 clip_rect_min,const ImVec2 clip_rect CIMGUI_API void igPopClipRect(void); CIMGUI_API void igSetItemDefaultFocus(void); CIMGUI_API void igSetKeyboardFocusHere(int offset); +CIMGUI_API void igSetNextItemAllowOverlap(void); CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags); CIMGUI_API bool igIsItemActive(void); CIMGUI_API bool igIsItemFocused(void); @@ -1609,7 +1805,6 @@ CIMGUI_API ImGuiID igGetItemID(void); CIMGUI_API void igGetItemRectMin(ImVec2 *pOut); CIMGUI_API void igGetItemRectMax(ImVec2 *pOut); CIMGUI_API void igGetItemRectSize(ImVec2 *pOut); -CIMGUI_API void igSetItemAllowOverlap(void); CIMGUI_API ImGuiViewport* igGetMainViewport(void); CIMGUI_API ImDrawList* igGetBackgroundDrawList(void); CIMGUI_API ImDrawList* igGetForegroundDrawList(void); @@ -1621,8 +1816,6 @@ CIMGUI_API ImDrawListSharedData* igGetDrawListSharedData(void); CIMGUI_API const char* igGetStyleColorName(ImGuiCol idx); CIMGUI_API void igSetStateStorage(ImGuiStorage* storage); CIMGUI_API ImGuiStorage* igGetStateStorage(void); -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags); -CIMGUI_API void igEndChildFrame(void); CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width); CIMGUI_API void igColorConvertU32ToFloat4(ImVec4 *pOut,ImU32 in); CIMGUI_API ImU32 igColorConvertFloat4ToU32(const ImVec4 in); @@ -1631,9 +1824,13 @@ CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float* out_r,floa CIMGUI_API bool igIsKeyDown(ImGuiKey key); CIMGUI_API bool igIsKeyPressed(ImGuiKey key,bool repeat); CIMGUI_API bool igIsKeyReleased(ImGuiKey key); +CIMGUI_API bool igIsKeyChordPressed(ImGuiKeyChord key_chord); CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate); CIMGUI_API const char* igGetKeyName(ImGuiKey key); CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); +CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner(ImGuiKey key); CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button); CIMGUI_API bool igIsMouseClicked(ImGuiMouseButton button,bool repeat); CIMGUI_API bool igIsMouseReleased(ImGuiMouseButton button); @@ -1657,11 +1854,19 @@ CIMGUI_API void igLoadIniSettingsFromMemory(const char* ini_data,size_t ini_size CIMGUI_API void igSaveIniSettingsToDisk(const char* ini_filename); CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igDebugTextEncoding(const char* text); +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx); +CIMGUI_API void igDebugStartItemPicker(void); CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx); +CIMGUI_API void igDebugLog(const char* fmt,...); +CIMGUI_API void igDebugLogV(const char* fmt,va_list args); CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data); CIMGUI_API void igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); @@ -1669,15 +1874,17 @@ CIMGUI_API void ImGuiIO_AddKeyEvent(ImGuiIO* self,ImGuiKey key,bool down); CIMGUI_API void ImGuiIO_AddKeyAnalogEvent(ImGuiIO* self,ImGuiKey key,bool down,float v); CIMGUI_API void ImGuiIO_AddMousePosEvent(ImGuiIO* self,float x,float y); CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down); -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y); +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y); +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source); CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused); CIMGUI_API void ImGuiIO_AddInputCharacter(ImGuiIO* self,unsigned int c); CIMGUI_API void ImGuiIO_AddInputCharacterUTF16(ImGuiIO* self,ImWchar16 c); CIMGUI_API void ImGuiIO_AddInputCharactersUTF8(ImGuiIO* self,const char* str); CIMGUI_API void ImGuiIO_SetKeyEventNativeData(ImGuiIO* self,ImGuiKey key,int native_keycode,int native_scancode,int native_legacy_index); CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_events); -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self); CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self); CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void); CIMGUI_API void ImGuiIO_destroy(ImGuiIO* self); CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputTextCallbackData(void); @@ -1693,10 +1900,6 @@ CIMGUI_API void ImGuiPayload_Clear(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDataType(ImGuiPayload* self,const char* type); CIMGUI_API bool ImGuiPayload_IsPreview(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self); -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void); CIMGUI_API void ImGuiOnceUponAFrame_destroy(ImGuiOnceUponAFrame* self); CIMGUI_API ImGuiTextFilter* ImGuiTextFilter_ImGuiTextFilter(const char* default_filter); @@ -1722,10 +1925,10 @@ CIMGUI_API void ImGuiTextBuffer_reserve(ImGuiTextBuffer* self,int capacity); CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end); CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val); CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val); CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self); CIMGUI_API int ImGuiStorage_GetInt(ImGuiStorage* self,ImGuiID key,int default_val); CIMGUI_API void ImGuiStorage_SetInt(ImGuiStorage* self,ImGuiID key,int val); @@ -1739,14 +1942,16 @@ CIMGUI_API int* ImGuiStorage_GetIntRef(ImGuiStorage* self,ImGuiID key,int defaul CIMGUI_API bool* ImGuiStorage_GetBoolRef(ImGuiStorage* self,ImGuiID key,bool default_val); CIMGUI_API float* ImGuiStorage_GetFloatRef(ImGuiStorage* self,ImGuiID key,float default_val); CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void* default_val); -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void); CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max); +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index); +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end); +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index); CIMGUI_API ImColor* ImColor_ImColor_Nil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColor_Float(float r,float g,float b,float a); @@ -1755,6 +1960,18 @@ CIMGUI_API ImColor* ImColor_ImColor_Int(int r,int g,int b,int a); CIMGUI_API ImColor* ImColor_ImColor_U32(ImU32 rgba); CIMGUI_API void ImColor_SetHSV(ImColor* self,float h,float s,float v,float a); CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a); +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void); +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io); +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id); +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r); +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected); +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id); +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx); +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void); +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self); +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io); CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void); CIMGUI_API void ImDrawCmd_destroy(ImDrawCmd* self); CIMGUI_API ImTextureID ImDrawCmd_GetTexID(ImDrawCmd* self); @@ -1786,12 +2003,15 @@ CIMGUI_API void ImDrawList_AddCircle(ImDrawList* self,const ImVec2 center,float CIMGUI_API void ImDrawList_AddCircleFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); CIMGUI_API void ImDrawList_AddNgon(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments,float thickness); CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness); +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments); CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end); CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,float font_size,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end,float wrap_width,const ImVec4* cpu_fine_clip_rect); -CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); -CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments); CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments); +CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col); CIMGUI_API void ImDrawList_AddImageQuad(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 uv1,const ImVec2 uv2,const ImVec2 uv3,const ImVec2 uv4,ImU32 col); CIMGUI_API void ImDrawList_AddImageRounded(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col,float rounding,ImDrawFlags flags); @@ -1799,9 +2019,11 @@ CIMGUI_API void ImDrawList_PathClear(ImDrawList* self); CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col); +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col); CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness); CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,float radius,int a_min_of_12,int a_max_of_12); +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments); CIMGUI_API void ImDrawList_PathBezierQuadraticCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,int num_segments); CIMGUI_API void ImDrawList_PathRect(ImDrawList* self,const ImVec2 rect_min,const ImVec2 rect_max,float rounding,ImDrawFlags flags); @@ -1826,12 +2048,14 @@ CIMGUI_API void ImDrawList__TryMergeDrawCmds(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedClipRect(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedTextureID(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self); +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id); CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius); CIMGUI_API void ImDrawList__PathArcToFastEx(ImDrawList* self,const ImVec2 center,float radius,int a_min_sample,int a_max_sample,int a_step); CIMGUI_API void ImDrawList__PathArcToN(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API ImDrawData* ImDrawData_ImDrawData(void); CIMGUI_API void ImDrawData_destroy(ImDrawData* self); CIMGUI_API void ImDrawData_Clear(ImDrawData* self); +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list); CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self); CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale); CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void); @@ -1853,8 +2077,8 @@ CIMGUI_API void ImFontAtlas_destroy(ImFontAtlas* self); CIMGUI_API ImFont* ImFontAtlas_AddFont(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontDefault(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* filename,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self); @@ -1901,9 +2125,10 @@ CIMGUI_API ImGuiViewport* ImGuiViewport_ImGuiViewport(void); CIMGUI_API void ImGuiViewport_destroy(ImGuiViewport* self); CIMGUI_API void ImGuiViewport_GetCenter(ImVec2 *pOut,ImGuiViewport* self); CIMGUI_API void ImGuiViewport_GetWorkCenter(ImVec2 *pOut,ImGuiViewport* self); +CIMGUI_API ImGuiPlatformIO* ImGuiPlatformIO_ImGuiPlatformIO(void); +CIMGUI_API void ImGuiPlatformIO_destroy(ImGuiPlatformIO* self); CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void); CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self); -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key); CIMGUI_API const ImFontBuilderIO* ImGuiFreeType_GetBuilderForFreeType(void); CIMGUI_API void ImGuiFreeType_SetAllocatorFunctions(void*(*alloc_func)(size_t sz,void* user_data),void(*free_func)(void* ptr,void* user_data),void* user_data); @@ -1924,6 +2149,10 @@ CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); +#ifdef IMGUI_HAS_DOCK +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowPos(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_pos)); +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowSize(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_size)); +#endif #endif //CIMGUI_INCLUDED diff --git a/imgui-sys/third-party/imgui-master-freetype/cimgui_impl.h b/imgui-sys/third-party/imgui-master-freetype/cimgui_impl.h index 597cca0..223f7bc 100644 --- a/imgui-sys/third-party/imgui-master-freetype/cimgui_impl.h +++ b/imgui-sys/third-party/imgui-master-freetype/cimgui_impl.h @@ -10,6 +10,7 @@ CIMGUI_API void ImGui_ImplGlfw_Shutdown(void); CIMGUI_API void ImGui_ImplGlfw_NewFrame(void); CIMGUI_API void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window); CIMGUI_API void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window); +CIMGUI_API void ImGui_ImplGlfw_SetCallbacksChainForAllWindows(bool chain_for_all_windows); CIMGUI_API void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window,int focused); CIMGUI_API void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window,int entered); CIMGUI_API void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window,double x,double y); @@ -18,6 +19,7 @@ CIMGUI_API void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window,double xoffset, CIMGUI_API void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window,int key,int scancode,int action,int mods); CIMGUI_API void ImGui_ImplGlfw_CharCallback(GLFWwindow* window,unsigned int c); CIMGUI_API void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor,int event); +CIMGUI_API void ImGui_ImplGlfw_Sleep(int milliseconds); #endif #ifdef CIMGUI_USE_OPENGL3 @@ -42,19 +44,24 @@ CIMGUI_API bool ImGui_ImplOpenGL2_CreateDeviceObjects(void); CIMGUI_API void ImGui_ImplOpenGL2_DestroyDeviceObjects(void); #endif -#ifdef CIMGUI_USE_SDL +#ifdef CIMGUI_USE_SDL2 typedef struct SDL_Window SDL_Window; typedef struct SDL_Renderer SDL_Renderer; +typedef struct _SDL_GameController _SDL_GameController; struct SDL_Window; struct SDL_Renderer; -typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); +struct _SDL_GameController; +typedef union SDL_Event SDL_Event; +typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); CIMGUI_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForSDLRenderer(SDL_Window* window,SDL_Renderer* renderer); +CIMGUI_API bool ImGui_ImplSDL2_InitForOther(SDL_Window* window); CIMGUI_API void ImGui_ImplSDL2_Shutdown(void); CIMGUI_API void ImGui_ImplSDL2_NewFrame(void); CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event); +CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count); #endif diff --git a/imgui-sys/third-party/imgui-master-freetype/definitions.json b/imgui-sys/third-party/imgui-master-freetype/definitions.json index 1d78469..bfe6ae6 100644 --- a/imgui-sys/third-party/imgui-master-freetype/definitions.json +++ b/imgui-sys/third-party/imgui-master-freetype/definitions.json @@ -32,7 +32,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2358", + "location": "imgui:2744", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -50,7 +50,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2348", + "location": "imgui:2734", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -83,7 +83,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2349", + "location": "imgui:2735", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -102,7 +102,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2350", + "location": "imgui:2736", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -135,7 +135,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2351", + "location": "imgui:2737", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -154,7 +154,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2352", + "location": "imgui:2738", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -192,7 +192,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2357", + "location": "imgui:2743", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -232,7 +232,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2406", + "location": "imgui:2940", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -249,7 +249,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2403", + "location": "imgui:2937", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -274,6 +274,31 @@ "stname": "ImDrawCmd" } ], + "ImDrawData_AddDrawList": [ + { + "args": "(ImDrawData* self,ImDrawList* draw_list)", + "argsT": [ + { + "name": "self", + "type": "ImDrawData*" + }, + { + "name": "draw_list", + "type": "ImDrawList*" + } + ], + "argsoriginal": "(ImDrawList* draw_list)", + "call_args": "(draw_list)", + "cimguiname": "ImDrawData_AddDrawList", + "defaults": {}, + "funcname": "AddDrawList", + "location": "imgui:3188", + "ov_cimguiname": "ImDrawData_AddDrawList", + "ret": "void", + "signature": "(ImDrawList*)", + "stname": "ImDrawData" + } + ], "ImDrawData_Clear": [ { "args": "(ImDrawData* self)", @@ -288,7 +313,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2639", + "location": "imgui:3187", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -309,7 +334,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2640", + "location": "imgui:3189", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -326,7 +351,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2638", + "location": "imgui:3186", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -350,7 +375,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2641", + "location": "imgui:3190", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -390,7 +415,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2451", + "location": "imgui:2985", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -411,7 +436,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2452", + "location": "imgui:2986", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -428,7 +453,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2449", + "location": "imgui:2983", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -452,7 +477,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2454", + "location": "imgui:2988", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -481,7 +506,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2455", + "location": "imgui:2989", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -510,7 +535,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2453", + "location": "imgui:2987", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -530,7 +555,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2450", + "location": "imgui:2984", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -582,7 +607,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2554", + "location": "imgui:3088", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -629,7 +654,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2555", + "location": "imgui:3089", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -658,7 +683,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2579", + "location": "imgui:3123", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -702,7 +727,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2546", + "location": "imgui:3080", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -741,13 +766,46 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2547", + "location": "imgui:3081", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" } ], + "ImDrawList_AddConcavePolyFilled": [ + { + "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "points", + "type": "const ImVec2*" + }, + { + "name": "num_points", + "type": "int" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col)", + "call_args": "(points,num_points,col)", + "cimguiname": "ImDrawList_AddConcavePolyFilled", + "defaults": {}, + "funcname": "AddConcavePolyFilled", + "location": "imgui:3096", + "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", + "ret": "void", + "signature": "(const ImVec2*,int,ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddConvexPolyFilled": [ { "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", @@ -774,7 +832,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2553", + "location": "imgui:3095", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -795,13 +853,106 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2580", + "location": "imgui:3124", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_AddEllipse": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + }, + { + "name": "thickness", + "type": "float" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)", + "call_args": "(center,radius,col,rot,num_segments,thickness)", + "cimguiname": "ImDrawList_AddEllipse", + "defaults": { + "num_segments": "0", + "rot": "0.0f", + "thickness": "1.0f" + }, + "funcname": "AddEllipse", + "location": "imgui:3084", + "ov_cimguiname": "ImDrawList_AddEllipse", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", + "stname": "ImDrawList" + } + ], + "ImDrawList_AddEllipseFilled": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)", + "call_args": "(center,radius,col,rot,num_segments)", + "cimguiname": "ImDrawList_AddEllipseFilled", + "defaults": { + "num_segments": "0", + "rot": "0.0f" + }, + "funcname": "AddEllipseFilled", + "location": "imgui:3085", + "ov_cimguiname": "ImDrawList_AddEllipseFilled", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddImage": [ { "args": "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)", @@ -844,7 +995,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2561", + "location": "imgui:3102", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -911,7 +1062,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2562", + "location": "imgui:3103", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -966,7 +1117,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2563", + "location": "imgui:3104", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1005,7 +1156,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2538", + "location": "imgui:3072", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1048,7 +1199,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2548", + "location": "imgui:3082", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1085,7 +1236,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2549", + "location": "imgui:3083", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1126,7 +1277,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2552", + "location": "imgui:3094", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1173,7 +1324,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2542", + "location": "imgui:3076", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1214,7 +1365,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2543", + "location": "imgui:3077", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1263,7 +1414,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2539", + "location": "imgui:3073", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -1307,7 +1458,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2540", + "location": "imgui:3074", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1352,7 +1503,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2541", + "location": "imgui:3075", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1391,7 +1542,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2550", + "location": "imgui:3086", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -1446,7 +1597,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2551", + "location": "imgui:3087", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1489,7 +1640,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2544", + "location": "imgui:3078", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1526,7 +1677,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2545", + "location": "imgui:3079", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1547,7 +1698,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2590", + "location": "imgui:3134", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -1572,7 +1723,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2591", + "location": "imgui:3135", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -1597,7 +1748,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2589", + "location": "imgui:3133", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -1618,7 +1769,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2581", + "location": "imgui:3125", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -1643,7 +1794,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2529", + "location": "imgui:3063", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -1669,7 +1820,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2528", + "location": "imgui:3062", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -1692,7 +1843,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2520", + "location": "imgui:3054", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -1734,7 +1885,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2572", + "location": "imgui:3115", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -1771,7 +1922,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2573", + "location": "imgui:3116", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -1810,7 +1961,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2574", + "location": "imgui:3118", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -1845,7 +1996,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2575", + "location": "imgui:3119", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -1866,13 +2017,85 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2567", + "location": "imgui:3109", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_PathEllipticalArcTo": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "a_min", + "type": "float" + }, + { + "name": "a_max", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)", + "call_args": "(center,radius,rot,a_min,a_max,num_segments)", + "cimguiname": "ImDrawList_PathEllipticalArcTo", + "defaults": { + "num_segments": "0" + }, + "funcname": "PathEllipticalArcTo", + "location": "imgui:3117", + "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,float,float,float,int)", + "stname": "ImDrawList" + } + ], + "ImDrawList_PathFillConcave": [ + { + "args": "(ImDrawList* self,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col)", + "call_args": "(col)", + "cimguiname": "ImDrawList_PathFillConcave", + "defaults": {}, + "funcname": "PathFillConcave", + "location": "imgui:3113", + "ov_cimguiname": "ImDrawList_PathFillConcave", + "ret": "void", + "signature": "(ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_PathFillConvex": [ { "args": "(ImDrawList* self,ImU32 col)", @@ -1891,7 +2114,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2570", + "location": "imgui:3112", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -1916,7 +2139,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2568", + "location": "imgui:3110", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -1941,7 +2164,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2569", + "location": "imgui:3111", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -1981,7 +2204,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2576", + "location": "imgui:3120", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2017,7 +2240,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2571", + "location": "imgui:3114", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2038,7 +2261,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2525", + "location": "imgui:3059", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2059,7 +2282,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2527", + "location": "imgui:3061", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2116,7 +2339,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2600", + "location": "imgui:3144", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2149,7 +2372,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2598", + "location": "imgui:3142", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2190,7 +2413,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2599", + "location": "imgui:3143", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2219,7 +2442,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2596", + "location": "imgui:3140", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2248,7 +2471,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2597", + "location": "imgui:3141", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -2281,7 +2504,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2603", + "location": "imgui:3147", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2306,7 +2529,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2602", + "location": "imgui:3146", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -2339,7 +2562,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2601", + "location": "imgui:3145", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2374,7 +2597,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2523", + "location": "imgui:3057", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -2395,7 +2618,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2524", + "location": "imgui:3058", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -2420,7 +2643,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2526", + "location": "imgui:3060", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -2445,7 +2668,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2618", + "location": "imgui:3165", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -2466,7 +2689,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2612", + "location": "imgui:3158", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -2487,7 +2710,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2615", + "location": "imgui:3161", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -2508,7 +2731,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2616", + "location": "imgui:3162", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -2529,7 +2752,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2617", + "location": "imgui:3163", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -2570,7 +2793,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2619", + "location": "imgui:3166", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -2611,7 +2834,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2620", + "location": "imgui:3167", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2632,7 +2855,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2613", + "location": "imgui:3159", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -2653,13 +2876,38 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2611", + "location": "imgui:3157", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList__SetTextureID": [ + { + "args": "(ImDrawList* self,ImTextureID texture_id)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "texture_id", + "type": "ImTextureID" + } + ], + "argsoriginal": "(ImTextureID texture_id)", + "call_args": "(texture_id)", + "cimguiname": "ImDrawList__SetTextureID", + "defaults": {}, + "funcname": "_SetTextureID", + "location": "imgui:3164", + "ov_cimguiname": "ImDrawList__SetTextureID", + "ret": "void", + "signature": "(ImTextureID)", + "stname": "ImDrawList" + } + ], "ImDrawList__TryMergeDrawCmds": [ { "args": "(ImDrawList* self)", @@ -2674,7 +2922,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:2614", + "location": "imgui:3160", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -2694,7 +2942,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2522", + "location": "imgui:3056", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -2712,7 +2960,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2712", + "location": "imgui:3262", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -2732,7 +2980,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2713", + "location": "imgui:3263", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -2798,7 +3046,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2797", + "location": "imgui:3348", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -2827,7 +3075,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2796", + "location": "imgui:3347", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -2852,7 +3100,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2746", + "location": "imgui:3296", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -2879,7 +3127,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2747", + "location": "imgui:3297", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -2919,7 +3167,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2748", + "location": "imgui:3298", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -2959,7 +3207,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2751", + "location": "imgui:3301", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -2968,7 +3216,7 @@ ], "ImFontAtlas_AddFontFromMemoryCompressedTTF": [ { - "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -2979,7 +3227,7 @@ "type": "const void*" }, { - "name": "compressed_font_size", + "name": "compressed_font_data_size", "type": "int" }, { @@ -2995,15 +3243,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2750", + "location": "imgui:3300", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3012,7 +3260,7 @@ ], "ImFontAtlas_AddFontFromMemoryTTF": [ { - "args": "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -3023,7 +3271,7 @@ "type": "void*" }, { - "name": "font_size", + "name": "font_data_size", "type": "int" }, { @@ -3039,15 +3287,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2749", + "location": "imgui:3299", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3068,7 +3316,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2762", + "location": "imgui:3312", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3101,7 +3349,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2801", + "location": "imgui:3352", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3122,7 +3370,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2755", + "location": "imgui:3305", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3143,7 +3391,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2754", + "location": "imgui:3304", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3164,7 +3412,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2752", + "location": "imgui:3302", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3185,7 +3433,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2753", + "location": "imgui:3303", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3210,7 +3458,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2798", + "location": "imgui:3349", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3231,7 +3479,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2779", + "location": "imgui:3330", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3252,7 +3500,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2780", + "location": "imgui:3331", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3273,7 +3521,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2781", + "location": "imgui:3332", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -3294,7 +3542,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2775", + "location": "imgui:3326", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -3315,7 +3563,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "defaults": {}, "funcname": "GetGlyphRangesGreek", - "location": "imgui:2776", + "location": "imgui:3327", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "ret": "const ImWchar*", "signature": "()", @@ -3336,7 +3584,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2778", + "location": "imgui:3329", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -3357,7 +3605,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2777", + "location": "imgui:3328", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -3378,7 +3626,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2782", + "location": "imgui:3333", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -3399,7 +3647,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2783", + "location": "imgui:3334", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -3440,7 +3688,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2802", + "location": "imgui:3353", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -3479,7 +3727,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2763", + "location": "imgui:3313", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3518,7 +3766,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2764", + "location": "imgui:3314", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3535,7 +3783,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2744", + "location": "imgui:3294", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -3555,7 +3803,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2765", + "location": "imgui:3315", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -3580,7 +3828,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2766", + "location": "imgui:3316", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -3600,7 +3848,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2745", + "location": "imgui:3295", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -3618,7 +3866,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2672", + "location": "imgui:3222", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -3661,7 +3909,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2697", + "location": "imgui:3247", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -3686,7 +3934,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2699", + "location": "imgui:3249", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -3717,7 +3965,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2698", + "location": "imgui:3248", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -3742,7 +3990,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2700", + "location": "imgui:3250", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -3763,7 +4011,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2694", + "location": "imgui:3244", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -3788,7 +4036,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2695", + "location": "imgui:3245", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -3805,7 +4053,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2693", + "location": "imgui:3243", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -3829,7 +4077,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2696", + "location": "imgui:3246", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -3913,7 +4161,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:2890", + "location": "imgui:3443", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -3948,7 +4196,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:2891", + "location": "imgui:3444", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -3969,7 +4217,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2887", + "location": "imgui:3440", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4021,7 +4269,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2881", + "location": "imgui:3434", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4059,7 +4307,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2882", + "location": "imgui:3435", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4080,7 +4328,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:2888", + "location": "imgui:3441", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4105,7 +4353,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2873", + "location": "imgui:3426", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4130,7 +4378,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2874", + "location": "imgui:3427", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4155,7 +4403,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2875", + "location": "imgui:3428", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4176,7 +4424,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2877", + "location": "imgui:3430", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4201,7 +4449,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:2889", + "location": "imgui:3442", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4218,7 +4466,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2871", + "location": "imgui:3424", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4246,7 +4494,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:2893", + "location": "imgui:3446", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4267,7 +4515,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2876", + "location": "imgui:3429", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -4308,7 +4556,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2883", + "location": "imgui:3436", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const", @@ -4368,7 +4616,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2884", + "location": "imgui:3437", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -4397,7 +4645,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:2892", + "location": "imgui:3445", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -4417,7 +4665,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2872", + "location": "imgui:3425", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -4496,7 +4744,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:1972", + "location": "imgui:2317", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -4521,7 +4769,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:1973", + "location": "imgui:2318", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -4546,7 +4794,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:1974", + "location": "imgui:2319", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -4571,7 +4819,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:1975", + "location": "imgui:2320", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -4604,7 +4852,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:1968", + "location": "imgui:2312", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -4633,7 +4881,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:1967", + "location": "imgui:2311", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -4662,7 +4910,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:1970", + "location": "imgui:2314", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -4691,43 +4939,68 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:1969", + "location": "imgui:2313", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], - "ImGuiIO_AddMouseWheelEvent": [ + "ImGuiIO_AddMouseSourceEvent": [ { - "args": "(ImGuiIO* self,float wh_x,float wh_y)", + "args": "(ImGuiIO* self,ImGuiMouseSource source)", "argsT": [ { "name": "self", "type": "ImGuiIO*" }, { - "name": "wh_x", + "name": "source", + "type": "ImGuiMouseSource" + } + ], + "argsoriginal": "(ImGuiMouseSource source)", + "call_args": "(source)", + "cimguiname": "ImGuiIO_AddMouseSourceEvent", + "defaults": {}, + "funcname": "AddMouseSourceEvent", + "location": "imgui:2316", + "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", + "ret": "void", + "signature": "(ImGuiMouseSource)", + "stname": "ImGuiIO" + } + ], + "ImGuiIO_AddMouseWheelEvent": [ + { + "args": "(ImGuiIO* self,float wheel_x,float wheel_y)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + }, + { + "name": "wheel_x", "type": "float" }, { - "name": "wh_y", + "name": "wheel_y", "type": "float" } ], - "argsoriginal": "(float wh_x,float wh_y)", - "call_args": "(wh_x,wh_y)", + "argsoriginal": "(float wheel_x,float wheel_y)", + "call_args": "(wheel_x,wheel_y)", "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:1971", + "location": "imgui:2315", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], - "ImGuiIO_ClearInputCharacters": [ + "ImGuiIO_ClearEventsQueue": [ { "args": "(ImGuiIO* self)", "argsT": [ @@ -4738,11 +5011,11 @@ ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiIO_ClearInputCharacters", + "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, - "funcname": "ClearInputCharacters", - "location": "imgui:1979", - "ov_cimguiname": "ImGuiIO_ClearInputCharacters", + "funcname": "ClearEventsQueue", + "location": "imgui:2324", + "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -4762,13 +5035,34 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:1980", + "location": "imgui:2325", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", "stname": "ImGuiIO" } ], + "ImGuiIO_ClearInputMouse": [ + { + "args": "(ImGuiIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIO_ClearInputMouse", + "defaults": {}, + "funcname": "ClearInputMouse", + "location": "imgui:2326", + "ov_cimguiname": "ImGuiIO_ClearInputMouse", + "ret": "void", + "signature": "()", + "stname": "ImGuiIO" + } + ], "ImGuiIO_ImGuiIO": [ { "args": "()", @@ -4779,7 +5073,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2053", + "location": "imgui:2415", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -4803,7 +5097,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:1978", + "location": "imgui:2323", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -4842,7 +5136,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:1977", + "location": "imgui:2322", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -4882,7 +5176,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2094", + "location": "imgui:2459", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -4911,7 +5205,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2091", + "location": "imgui:2456", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -4932,7 +5226,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2095", + "location": "imgui:2460", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -4949,7 +5243,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2090", + "location": "imgui:2455", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -4983,7 +5277,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2092", + "location": "imgui:2457", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -5004,7 +5298,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2093", + "location": "imgui:2458", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -5054,7 +5348,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2306", + "location": "imgui:2653", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -5075,42 +5369,13 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2307", + "location": "imgui:2654", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" } ], - "ImGuiListClipper_ForceDisplayRangeByIndices": [ - { - "args": "(ImGuiListClipper* self,int item_min,int item_max)", - "argsT": [ - { - "name": "self", - "type": "ImGuiListClipper*" - }, - { - "name": "item_min", - "type": "int" - }, - { - "name": "item_max", - "type": "int" - } - ], - "argsoriginal": "(int item_min,int item_max)", - "call_args": "(item_min,item_max)", - "cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "defaults": {}, - "funcname": "ForceDisplayRangeByIndices", - "location": "imgui:2311", - "ov_cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "ret": "void", - "signature": "(int,int)", - "stname": "ImGuiListClipper" - } - ], "ImGuiListClipper_ImGuiListClipper": [ { "args": "()", @@ -5121,12 +5386,91 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2304", + "location": "imgui:2651", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" } ], + "ImGuiListClipper_IncludeItemByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "defaults": {}, + "funcname": "IncludeItemByIndex", + "location": "imgui:2659", + "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_IncludeItemsByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_begin,int item_end)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_begin", + "type": "int" + }, + { + "name": "item_end", + "type": "int" + } + ], + "argsoriginal": "(int item_begin,int item_end)", + "call_args": "(item_begin,item_end)", + "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "defaults": {}, + "funcname": "IncludeItemsByIndex", + "location": "imgui:2660", + "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "ret": "void", + "signature": "(int,int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_SeekCursorForItem": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_SeekCursorForItem", + "defaults": {}, + "funcname": "SeekCursorForItem", + "location": "imgui:2665", + "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], "ImGuiListClipper_Step": [ { "args": "(ImGuiListClipper* self)", @@ -5141,7 +5485,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2308", + "location": "imgui:2655", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -5161,7 +5505,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2305", + "location": "imgui:2652", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -5179,7 +5523,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2170", + "location": "imgui:2511", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -5218,7 +5562,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2124", + "location": "imgui:2489", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -5235,7 +5579,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2123", + "location": "imgui:2488", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -5259,7 +5603,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2125", + "location": "imgui:2490", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -5280,7 +5624,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2127", + "location": "imgui:2492", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -5301,7 +5645,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2126", + "location": "imgui:2491", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -5327,6 +5671,41 @@ "stname": "ImGuiPayload" } ], + "ImGuiPlatformIO_ImGuiPlatformIO": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiPlatformIO", + "location": "imgui:3496", + "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", + "signature": "()", + "stname": "ImGuiPlatformIO" + } + ], + "ImGuiPlatformIO_destroy": [ + { + "args": "(ImGuiPlatformIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiPlatformIO*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiPlatformIO_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiPlatformIO_destroy", + "ret": "void", + "signature": "(ImGuiPlatformIO*)", + "stname": "ImGuiPlatformIO" + } + ], "ImGuiPlatformImeData_ImGuiPlatformImeData": [ { "args": "()", @@ -5337,7 +5716,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:2945", + "location": "imgui:3531", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -5362,72 +5741,347 @@ "stname": "ImGuiPlatformImeData" } ], + "ImGuiSelectionBasicStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:2873", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Clear": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui:2875", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Contains": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "ImGuiSelectionBasicStorage_Contains", + "defaults": {}, + "funcname": "Contains", + "location": "imgui:2874", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", + "ret": "bool", + "signature": "(ImGuiID)const", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetNextSelectedItem": [ + { + "args": "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "opaque_it", + "type": "void**" + }, + { + "name": "out_id", + "type": "ImGuiID*" + } + ], + "argsoriginal": "(void** opaque_it,ImGuiID* out_id)", + "call_args": "(opaque_it,out_id)", + "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "defaults": {}, + "funcname": "GetNextSelectedItem", + "location": "imgui:2878", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "ret": "bool", + "signature": "(void**,ImGuiID*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetStorageIdFromIndex": [ + { + "args": "(ImGuiSelectionBasicStorage* self,int idx)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "idx", + "type": "int" + } + ], + "argsoriginal": "(int idx)", + "call_args": "(idx)", + "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "defaults": {}, + "funcname": "GetStorageIdFromIndex", + "location": "imgui:2879", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionBasicStorage", + "location": "imgui:2872", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_SetItemSelected": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "selected", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiID id,bool selected)", + "call_args": "(id,selected)", + "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "defaults": {}, + "funcname": "SetItemSelected", + "location": "imgui:2877", + "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "ret": "void", + "signature": "(ImGuiID,bool)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Swap": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "r", + "reftoptr": true, + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "(ImGuiSelectionBasicStorage& r)", + "call_args": "(*r)", + "cimguiname": "ImGuiSelectionBasicStorage_Swap", + "defaults": {}, + "funcname": "Swap", + "location": "imgui:2876", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_destroy": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionBasicStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionExternalStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:2892", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionExternalStorage", + "location": "imgui:2891", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "signature": "()", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_destroy": [ + { + "args": "(ImGuiSelectionExternalStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionExternalStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionExternalStorage*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], "ImGuiStoragePair_ImGuiStoragePair": [ { - "args": "(ImGuiID _key,int _val_i)", + "args": "(ImGuiID _key,int _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_i", + "name": "_val", "type": "int" } ], - "argsoriginal": "(ImGuiID _key,int _val_i)", - "call_args": "(_key,_val_i)", + "argsoriginal": "(ImGuiID _key,int _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2237", + "location": "imgui:2568", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,float _val_f)", + "args": "(ImGuiID _key,float _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_f", + "name": "_val", "type": "float" } ], - "argsoriginal": "(ImGuiID _key,float _val_f)", - "call_args": "(_key,_val_f)", + "argsoriginal": "(ImGuiID _key,float _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2238", + "location": "imgui:2569", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,void* _val_p)", + "args": "(ImGuiID _key,void* _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_p", + "name": "_val", "type": "void*" } ], - "argsoriginal": "(ImGuiID _key,void* _val_p)", - "call_args": "(_key,_val_p)", + "argsoriginal": "(ImGuiID _key,void* _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2239", + "location": "imgui:2570", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -5466,7 +6120,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2270", + "location": "imgui:2609", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -5487,7 +6141,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2247", + "location": "imgui:2589", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -5518,7 +6172,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2250", + "location": "imgui:2592", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -5549,7 +6203,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2262", + "location": "imgui:2604", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -5580,7 +6234,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2252", + "location": "imgui:2594", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -5611,7 +6265,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2263", + "location": "imgui:2605", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -5642,7 +6296,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2248", + "location": "imgui:2590", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -5673,7 +6327,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2261", + "location": "imgui:2603", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -5698,7 +6352,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2254", + "location": "imgui:2596", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -5729,7 +6383,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2264", + "location": "imgui:2606", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -5754,7 +6408,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2267", + "location": "imgui:2611", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -5783,7 +6437,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2251", + "location": "imgui:2593", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -5812,7 +6466,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2253", + "location": "imgui:2595", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -5841,7 +6495,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2249", + "location": "imgui:2591", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -5870,7 +6524,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2255", + "location": "imgui:2597", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -5887,7 +6541,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1875", + "location": "imgui:2194", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -5911,7 +6565,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1876", + "location": "imgui:2195", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -5947,7 +6601,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2138", + "location": "imgui:2018", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -5982,7 +6636,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2151", + "location": "imgui:2007", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -6017,7 +6671,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2208", + "location": "imgui:2549", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -6047,7 +6701,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2217", + "location": "imgui:2558", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -6077,7 +6731,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2218", + "location": "imgui:2559", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -6107,7 +6761,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2219", + "location": "imgui:2560", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -6128,7 +6782,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2210", + "location": "imgui:2551", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -6149,7 +6803,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2216", + "location": "imgui:2557", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -6170,7 +6824,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2214", + "location": "imgui:2555", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -6210,7 +6864,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2213", + "location": "imgui:2554", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -6231,7 +6885,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2211", + "location": "imgui:2552", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -6256,7 +6910,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2215", + "location": "imgui:2556", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -6277,7 +6931,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2212", + "location": "imgui:2553", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -6298,7 +6952,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2181", + "location": "imgui:2522", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -6319,7 +6973,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2182", + "location": "imgui:2523", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -6351,7 +7005,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2179", + "location": "imgui:2520", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -6375,7 +7029,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2178", + "location": "imgui:2519", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -6395,7 +7049,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2183", + "location": "imgui:2524", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -6426,7 +7080,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2180", + "location": "imgui:2521", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -6462,7 +7116,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2191", + "location": "imgui:2532", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -6485,7 +7139,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2192", + "location": "imgui:2533", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -6524,7 +7178,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2193", + "location": "imgui:2534", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -6553,7 +7207,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2194", + "location": "imgui:2535", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -6578,7 +7232,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:2930", + "location": "imgui:3485", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -6604,7 +7258,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:2931", + "location": "imgui:3486", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -6622,7 +7276,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:2927", + "location": "imgui:3482", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -6657,7 +7311,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:256", + "location": "imgui:291", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -6680,7 +7334,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:257", + "location": "imgui:292", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -6715,7 +7369,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:269", + "location": "imgui:304", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -6746,7 +7400,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:270", + "location": "imgui:305", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -6781,7 +7435,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1772", + "location": "imgui:2075", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -6801,7 +7455,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1773", + "location": "imgui:2076", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -6826,7 +7480,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1799", + "location": "imgui:2102", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -6848,7 +7502,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1795", + "location": "imgui:2098", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -6869,7 +7523,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1796", + "location": "imgui:2099", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -6892,7 +7546,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1789", + "location": "imgui:2092", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -6912,7 +7566,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1790", + "location": "imgui:2093", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -6934,7 +7588,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1785", + "location": "imgui:2088", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -6956,7 +7610,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1777", + "location": "imgui:2080", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -6978,7 +7632,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:1778", + "location": "imgui:2081", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -7000,7 +7654,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:1779", + "location": "imgui:2082", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -7026,7 +7680,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1814", + "location": "imgui:2117", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -7047,7 +7701,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1775", + "location": "imgui:2078", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -7070,7 +7724,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1781", + "location": "imgui:2084", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -7092,7 +7746,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1791", + "location": "imgui:2094", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -7112,7 +7766,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1792", + "location": "imgui:2095", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -7138,7 +7792,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1810", + "location": "imgui:2113", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -7166,7 +7820,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1811", + "location": "imgui:2114", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -7192,7 +7846,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1812", + "location": "imgui:2115", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -7218,7 +7872,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1815", + "location": "imgui:2118", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -7242,7 +7896,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1816", + "location": "imgui:2119", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -7268,7 +7922,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1817", + "location": "imgui:2121", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -7294,7 +7948,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1818", + "location": "imgui:2122", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -7302,6 +7956,32 @@ "templated": true } ], + "ImVector_find_index": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_find_index", + "defaults": {}, + "funcname": "find_index", + "location": "imgui:2120", + "ov_cimguiname": "ImVector_find_index", + "ret": "int", + "signature": "(const T)const", + "stname": "ImVector", + "templated": true + } + ], "ImVector_front": [ { "args": "(ImVector* self)", @@ -7316,7 +7996,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1793", + "location": "imgui:2096", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -7337,7 +8017,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1794", + "location": "imgui:2097", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -7364,7 +8044,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1819", + "location": "imgui:2123", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -7394,7 +8074,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1813", + "location": "imgui:2116", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -7416,7 +8096,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1784", + "location": "imgui:2087", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -7438,7 +8118,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1808", + "location": "imgui:2111", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -7464,7 +8144,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1807", + "location": "imgui:2110", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -7490,7 +8170,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1809", + "location": "imgui:2112", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -7516,7 +8196,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1803", + "location": "imgui:2106", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -7542,7 +8222,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:1804", + "location": "imgui:2107", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -7568,7 +8248,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1800", + "location": "imgui:2103", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -7596,7 +8276,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1801", + "location": "imgui:2104", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -7622,7 +8302,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1802", + "location": "imgui:2105", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -7644,7 +8324,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1782", + "location": "imgui:2085", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -7666,7 +8346,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1783", + "location": "imgui:2086", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -7693,7 +8373,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1797", + "location": "imgui:2100", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -7721,7 +8401,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:812", + "location": "imgui:883", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -7738,7 +8418,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:456", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -7764,7 +8444,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:503", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -7797,7 +8477,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:330", + "location": "imgui:366", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -7807,7 +8487,7 @@ ], "igBeginChild": [ { - "args": "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "str_id", @@ -7818,32 +8498,32 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(str_id,size,border,flags)", + "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(str_id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:341", + "location": "imgui:387", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", - "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", + "signature": "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" }, { - "args": "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "id", @@ -7854,60 +8534,28 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,border,flags)", + "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:342", + "location": "imgui:388", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", - "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "" - } - ], - "igBeginChildFrame": [ - { - "args": "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)", - "argsT": [ - { - "name": "id", - "type": "ImGuiID" - }, - { - "name": "size", - "type": "const ImVec2" - }, - { - "name": "flags", - "type": "ImGuiWindowFlags" - } - ], - "argsoriginal": "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,flags)", - "cimguiname": "igBeginChildFrame", - "defaults": { - "flags": "0" - }, - "funcname": "BeginChildFrame", - "location": "imgui:874", - "namespace": "ImGui", - "ov_cimguiname": "igBeginChildFrame", - "ret": "bool", - "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", + "signature": "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" } ], @@ -7935,7 +8583,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:520", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -7959,7 +8607,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:820", + "location": "imgui:892", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -7983,7 +8631,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:808", + "location": "imgui:879", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -8000,7 +8648,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:811", + "location": "imgui:882", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -8017,7 +8665,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:445", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -8025,6 +8673,23 @@ "stname": "" } ], + "igBeginItemTooltip": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginItemTooltip", + "defaults": {}, + "funcname": "BeginItemTooltip", + "location": "imgui:741", + "namespace": "ImGui", + "ov_cimguiname": "igBeginItemTooltip", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igBeginListBox": [ { "args": "(const char* label,const ImVec2 size)", @@ -8045,7 +8710,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:632", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -8062,7 +8727,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:658", + "location": "imgui:721", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -8090,7 +8755,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:660", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -8107,7 +8772,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:656", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -8115,6 +8780,39 @@ "stname": "" } ], + "igBeginMultiSelect": [ + { + "args": "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiMultiSelectFlags" + }, + { + "name": "selection_size", + "type": "int" + }, + { + "name": "items_count", + "type": "int" + } + ], + "argsoriginal": "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)", + "call_args": "(flags,selection_size,items_count)", + "cimguiname": "igBeginMultiSelect", + "defaults": { + "items_count": "-1", + "selection_size": "-1" + }, + "funcname": "BeginMultiSelect", + "location": "imgui:684", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "(ImGuiMultiSelectFlags,int,int)", + "stname": "" + } + ], "igBeginPopup": [ { "args": "(const char* str_id,ImGuiWindowFlags flags)", @@ -8135,7 +8833,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:684", + "location": "imgui:755", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -8164,7 +8862,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:706", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -8193,7 +8891,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:708", + "location": "imgui:779", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -8222,7 +8920,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:707", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -8255,7 +8953,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:685", + "location": "imgui:756", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -8283,7 +8981,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:786", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -8316,7 +9014,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:788", + "location": "imgui:859", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -8326,14 +9024,14 @@ ], "igBeginTable": [ { - "args": "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", + "args": "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", "argsT": [ { "name": "str_id", "type": "const char*" }, { - "name": "column", + "name": "columns", "type": "int" }, { @@ -8349,8 +9047,8 @@ "type": "float" } ], - "argsoriginal": "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", - "call_args": "(str_id,column,flags,outer_size,inner_width)", + "argsoriginal": "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", + "call_args": "(str_id,columns,flags,outer_size,inner_width)", "cimguiname": "igBeginTable", "defaults": { "flags": "0", @@ -8358,7 +9056,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:739", + "location": "imgui:808", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -8375,10 +9073,10 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:667", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", - "ret": "void", + "ret": "bool", "signature": "()", "stname": "" } @@ -8392,7 +9090,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:510", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -8419,7 +9117,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:494", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -8445,7 +9143,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:495", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -8473,7 +9171,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:500", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -8490,7 +9188,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:417", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -8532,7 +9230,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:878", + "location": "imgui:950", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -8559,7 +9257,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:504", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -8589,7 +9287,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:505", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -8617,7 +9315,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:506", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -8634,7 +9332,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:699", + "location": "imgui:770", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -8662,7 +9360,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:616", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -8692,7 +9390,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:617", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -8729,7 +9427,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:597", + "location": "imgui:647", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -8751,7 +9449,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:882", + "location": "imgui:954", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -8796,7 +9494,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:884", + "location": "imgui:956", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -8841,7 +9539,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:883", + "location": "imgui:955", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -8867,7 +9565,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:881", + "location": "imgui:953", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -8900,7 +9598,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:593", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -8932,7 +9630,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:594", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -8964,7 +9662,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:595", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -9001,7 +9699,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:596", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -9011,7 +9709,7 @@ ], "igColumns": [ { - "args": "(int count,const char* id,bool border)", + "args": "(int count,const char* id,bool borders)", "argsT": [ { "name": "count", @@ -9022,20 +9720,20 @@ "type": "const char*" }, { - "name": "border", + "name": "borders", "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", - "call_args": "(count,id,border)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool borders=true)", + "call_args": "(count,id,borders)", "cimguiname": "igColumns", "defaults": { - "border": "true", + "borders": "true", "count": "1", "id": "NULL" }, "funcname": "Columns", - "location": "imgui:775", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -9075,7 +9773,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:522", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -9109,7 +9807,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:523", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -9117,7 +9815,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)", "argsT": [ { "name": "label", @@ -9128,13 +9826,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -9146,18 +9844,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)", "cimguiname": "igCombo", "defaults": { "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:524", + "location": "imgui:574", "namespace": "ImGui", - "ov_cimguiname": "igCombo_FnBoolPtr", + "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -9177,7 +9875,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:288", + "location": "imgui:323", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -9223,7 +9921,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:935", + "location": "imgui:1037", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -9231,6 +9929,98 @@ "stname": "" } ], + "igDebugFlashStyleColor": [ + { + "args": "(ImGuiCol idx)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiCol" + } + ], + "argsoriginal": "(ImGuiCol idx)", + "call_args": "(idx)", + "cimguiname": "igDebugFlashStyleColor", + "defaults": {}, + "funcname": "DebugFlashStyleColor", + "location": "imgui:1035", + "namespace": "ImGui", + "ov_cimguiname": "igDebugFlashStyleColor", + "ret": "void", + "signature": "(ImGuiCol)", + "stname": "" + } + ], + "igDebugLog": [ + { + "args": "(const char* fmt,...)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "...", + "type": "..." + } + ], + "argsoriginal": "(const char* fmt,...)", + "call_args": "(fmt,...)", + "cimguiname": "igDebugLog", + "defaults": {}, + "funcname": "DebugLog", + "isvararg": "...)", + "location": "imgui:1039", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLog", + "ret": "void", + "signature": "(const char*,...)", + "stname": "" + } + ], + "igDebugLogV": [ + { + "args": "(const char* fmt,va_list args)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "args", + "type": "va_list" + } + ], + "argsoriginal": "(const char* fmt,va_list args)", + "call_args": "(fmt,args)", + "cimguiname": "igDebugLogV", + "defaults": {}, + "funcname": "DebugLogV", + "location": "imgui:1040", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLogV", + "ret": "void", + "signature": "(const char*,va_list)", + "stname": "" + } + ], + "igDebugStartItemPicker": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDebugStartItemPicker", + "defaults": {}, + "funcname": "DebugStartItemPicker", + "location": "imgui:1036", + "namespace": "ImGui", + "ov_cimguiname": "igDebugStartItemPicker", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igDebugTextEncoding": [ { "args": "(const char* text)", @@ -9245,7 +10035,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:934", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -9269,7 +10059,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:289", + "location": "imgui:324", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -9321,7 +10111,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:538", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -9373,7 +10163,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:539", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -9425,7 +10215,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:540", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -9477,7 +10267,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:541", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -9538,7 +10328,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:542", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -9590,7 +10380,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:543", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -9642,7 +10432,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:544", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -9694,7 +10484,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:545", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -9746,7 +10536,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:546", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -9807,7 +10597,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:547", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -9863,7 +10653,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:548", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -9923,7 +10713,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:549", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -9945,7 +10735,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:442", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -9962,7 +10752,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:331", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -9979,7 +10769,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:343", + "location": "imgui:389", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -9987,23 +10777,6 @@ "stname": "" } ], - "igEndChildFrame": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igEndChildFrame", - "defaults": {}, - "funcname": "EndChildFrame", - "location": "imgui:875", - "namespace": "ImGui", - "ov_cimguiname": "igEndChildFrame", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igEndCombo": [ { "args": "()", @@ -10013,7 +10786,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:521", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -10030,7 +10803,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:821", + "location": "imgui:893", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -10047,7 +10820,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:810", + "location": "imgui:881", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -10064,7 +10837,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:813", + "location": "imgui:884", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -10081,7 +10854,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:297", + "location": "imgui:333", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -10098,7 +10871,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:446", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -10115,7 +10888,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:633", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -10132,7 +10905,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:659", + "location": "imgui:722", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -10149,7 +10922,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:661", + "location": "imgui:724", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -10166,7 +10939,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:657", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -10174,6 +10947,23 @@ "stname": "" } ], + "igEndMultiSelect": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndMultiSelect", + "defaults": {}, + "funcname": "EndMultiSelect", + "location": "imgui:685", + "namespace": "ImGui", + "ov_cimguiname": "igEndMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "()", + "stname": "" + } + ], "igEndPopup": [ { "args": "()", @@ -10183,7 +10973,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:686", + "location": "imgui:757", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -10200,7 +10990,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:787", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -10217,7 +11007,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:789", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -10234,7 +11024,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:740", + "location": "imgui:809", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -10251,7 +11041,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:668", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -10281,7 +11071,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:942", + "location": "imgui:1048", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -10298,7 +11088,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:862", + "location": "imgui:936", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -10315,7 +11105,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:921", + "location": "imgui:1020", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -10343,7 +11133,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:426", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -10363,7 +11153,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:427", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -10371,23 +11161,29 @@ "stname": "" }, { - "args": "(ImU32 col)", + "args": "(ImU32 col,float alpha_mul)", "argsT": [ { "name": "col", "type": "ImU32" + }, + { + "name": "alpha_mul", + "type": "float" } ], - "argsoriginal": "(ImU32 col)", - "call_args": "(col)", + "argsoriginal": "(ImU32 col,float alpha_mul=1.0f)", + "call_args": "(col,alpha_mul)", "cimguiname": "igGetColorU32", - "defaults": {}, + "defaults": { + "alpha_mul": "1.0f" + }, "funcname": "GetColorU32", - "location": "imgui:428", + "location": "imgui:466", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", - "signature": "(ImU32)", + "signature": "(ImU32,float)", "stname": "" } ], @@ -10400,7 +11196,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:777", + "location": "imgui:848", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -10424,7 +11220,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:780", + "location": "imgui:851", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -10448,7 +11244,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:778", + "location": "imgui:849", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -10465,7 +11261,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:782", + "location": "imgui:853", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -10487,7 +11283,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:380", + "location": "imgui:481", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -10496,29 +11292,6 @@ "stname": "" } ], - "igGetContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetContentRegionMax", - "defaults": {}, - "funcname": "GetContentRegionMax", - "location": "imgui:381", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetCurrentContext": [ { "args": "()", @@ -10528,7 +11301,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:290", + "location": "imgui:325", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -10550,7 +11323,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:447", + "location": "imgui:482", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -10568,7 +11341,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:448", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -10585,7 +11358,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:449", + "location": "imgui:484", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -10607,7 +11380,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:454", + "location": "imgui:479", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -10630,7 +11403,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:453", + "location": "imgui:488", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -10648,7 +11421,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:814", + "location": "imgui:885", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -10665,7 +11438,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:299", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -10682,7 +11455,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:870", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -10699,7 +11472,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:423", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -10716,7 +11489,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:424", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -10738,7 +11511,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:425", + "location": "imgui:463", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -10756,7 +11529,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:863", + "location": "imgui:937", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList", "ret": "ImDrawList*", @@ -10773,7 +11546,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:869", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -10790,7 +11563,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:459", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -10807,7 +11580,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:460", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -10829,7 +11602,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:478", + "location": "imgui:522", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -10853,7 +11626,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:479", + "location": "imgui:523", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -10873,12 +11646,32 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:480", + "location": "imgui:524", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "" + }, + { + "args": "(int int_id)", + "argsT": [ + { + "name": "int_id", + "type": "int" + } + ], + "argsoriginal": "(int int_id)", + "call_args": "(int_id)", + "cimguiname": "igGetID", + "defaults": {}, + "funcname": "GetID", + "location": "imgui:525", + "namespace": "ImGui", + "ov_cimguiname": "igGetID_Int", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "" } ], "igGetIO": [ @@ -10890,7 +11683,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:294", + "location": "imgui:329", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -10908,7 +11701,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:849", + "location": "imgui:924", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -10930,7 +11723,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:851", + "location": "imgui:926", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -10953,7 +11746,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:850", + "location": "imgui:925", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -10976,7 +11769,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:852", + "location": "imgui:927", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -10985,28 +11778,6 @@ "stname": "" } ], - "igGetKeyIndex": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igGetKeyIndex", - "defaults": {}, - "funcname": "GetKeyIndex", - "location": "imgui:2957", - "namespace": "ImGui", - "ov_cimguiname": "igGetKeyIndex", - "ret": "ImGuiKey", - "signature": "(ImGuiKey)", - "stname": "" - } - ], "igGetKeyName": [ { "args": "(ImGuiKey key)", @@ -11021,7 +11792,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:895", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -11051,7 +11822,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:894", + "location": "imgui:967", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -11068,7 +11839,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:859", + "location": "imgui:933", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -11090,7 +11861,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:906", + "location": "imgui:1005", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -11107,7 +11878,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:915", + "location": "imgui:1014", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -11140,7 +11911,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:913", + "location": "imgui:1012", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -11163,7 +11934,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:910", + "location": "imgui:1009", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -11186,7 +11957,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:911", + "location": "imgui:1010", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -11195,6 +11966,24 @@ "stname": "" } ], + "igGetPlatformIO": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetPlatformIO", + "defaults": {}, + "funcname": "GetPlatformIO", + "location": "imgui:330", + "namespace": "ImGui", + "ov_cimguiname": "igGetPlatformIO", + "ret": "ImGuiPlatformIO*", + "retref": "&", + "signature": "()", + "stname": "" + } + ], "igGetScrollMaxX": [ { "args": "()", @@ -11204,7 +11993,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:392", + "location": "imgui:430", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -11221,7 +12010,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:393", + "location": "imgui:431", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -11238,7 +12027,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:388", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -11255,7 +12044,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:389", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -11272,7 +12061,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:873", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -11289,7 +12078,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:295", + "location": "imgui:331", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -11312,7 +12101,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:871", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -11334,7 +12123,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:429", + "location": "imgui:467", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -11352,7 +12141,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:457", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -11369,7 +12158,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:458", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -11386,7 +12175,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:868", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -11403,7 +12192,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:615", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -11420,7 +12209,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:311", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -11428,52 +12217,6 @@ "stname": "" } ], - "igGetWindowContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMax", - "defaults": {}, - "funcname": "GetWindowContentRegionMax", - "location": "imgui:383", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igGetWindowContentRegionMin": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMin", - "defaults": {}, - "funcname": "GetWindowContentRegionMin", - "location": "imgui:382", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMin", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetWindowDrawList": [ { "args": "()", @@ -11483,7 +12226,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:351", + "location": "imgui:397", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -11500,7 +12243,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:355", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -11522,7 +12265,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:352", + "location": "imgui:398", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -11545,7 +12288,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:353", + "location": "imgui:399", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -11563,7 +12306,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:354", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -11573,14 +12316,14 @@ ], "igImage": [ { - "args": "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", + "args": "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", "argsT": [ { "name": "user_texture_id", "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -11600,8 +12343,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", - "call_args": "(user_texture_id,size,uv0,uv1,tint_col,border_col)", + "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", + "call_args": "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)", "cimguiname": "igImage", "defaults": { "border_col": "ImVec4(0,0,0,0)", @@ -11610,7 +12353,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:514", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -11620,7 +12363,7 @@ ], "igImageButton": [ { - "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", "argsT": [ { "name": "str_id", @@ -11631,7 +12374,7 @@ "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -11651,8 +12394,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", - "call_args": "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)", + "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", + "call_args": "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)", "cimguiname": "igImageButton", "defaults": { "bg_col": "ImVec4(0,0,0,0)", @@ -11661,7 +12404,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:515", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -11685,7 +12428,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:443", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -11732,7 +12475,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:586", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -11779,7 +12522,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:578", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -11816,7 +12559,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:579", + "location": "imgui:629", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -11853,7 +12596,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:580", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -11890,7 +12633,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:581", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -11932,7 +12675,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:582", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -11964,7 +12707,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:583", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -11996,7 +12739,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:584", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -12028,7 +12771,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:585", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -12079,7 +12822,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:587", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -12134,7 +12877,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:588", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -12180,7 +12923,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:575", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -12231,7 +12974,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:576", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -12281,7 +13024,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:577", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -12313,7 +13056,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:502", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -12330,7 +13073,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:847", + "location": "imgui:922", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -12347,7 +13090,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:848", + "location": "imgui:923", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -12364,7 +13107,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:846", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -12381,7 +13124,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:909", + "location": "imgui:1008", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -12398,7 +13141,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:842", + "location": "imgui:917", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -12415,7 +13158,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:837", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -12439,7 +13182,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:839", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -12456,7 +13199,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:843", + "location": "imgui:918", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -12473,7 +13216,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:844", + "location": "imgui:919", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -12490,7 +13233,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:841", + "location": "imgui:916", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -12507,7 +13250,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:838", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -12531,7 +13274,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:836", + "location": "imgui:911", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -12548,7 +13291,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:845", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -12556,6 +13299,23 @@ "stname": "" } ], + "igIsItemToggledSelection": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igIsItemToggledSelection", + "defaults": {}, + "funcname": "IsItemToggledSelection", + "location": "imgui:687", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemToggledSelection", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igIsItemVisible": [ { "args": "()", @@ -12565,7 +13325,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:840", + "location": "imgui:915", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -12573,6 +13333,28 @@ "stname": "" } ], + "igIsKeyChordPressed": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igIsKeyChordPressed", + "defaults": {}, + "funcname": "IsKeyChordPressed", + "location": "imgui:966", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyChordPressed", + "ret": "bool", + "signature": "(ImGuiKeyChord)", + "stname": "" + } + ], "igIsKeyDown": [ { "args": "(ImGuiKey key)", @@ -12587,7 +13369,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:891", + "location": "imgui:963", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -12615,7 +13397,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:892", + "location": "imgui:964", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -12637,7 +13419,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:893", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -12665,7 +13447,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:903", + "location": "imgui:1002", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -12687,7 +13469,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:905", + "location": "imgui:1004", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -12709,7 +13491,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:902", + "location": "imgui:1001", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -12737,7 +13519,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:912", + "location": "imgui:1011", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -12769,7 +13551,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:907", + "location": "imgui:1006", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -12793,7 +13575,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:908", + "location": "imgui:1007", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -12815,7 +13597,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:904", + "location": "imgui:1003", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -12843,7 +13625,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:714", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen", "ret": "bool", @@ -12865,7 +13647,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:866", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -12889,7 +13671,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:867", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -12906,7 +13688,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:347", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -12923,7 +13705,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:348", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -12947,7 +13729,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:349", + "location": "imgui:395", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -12971,7 +13753,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:350", + "location": "imgui:396", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -13002,7 +13784,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:492", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -13032,7 +13814,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:493", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -13072,7 +13854,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:634", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -13080,7 +13862,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)", "argsT": [ { "name": "label", @@ -13091,13 +13873,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -13109,18 +13891,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,height_in_items)", "cimguiname": "igListBox", "defaults": { "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:635", + "location": "imgui:698", "namespace": "ImGui", - "ov_cimguiname": "igListBox_FnBoolPtr", + "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -13138,7 +13920,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:928", + "location": "imgui:1027", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -13166,7 +13948,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:929", + "location": "imgui:1028", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -13183,7 +13965,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:799", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -13200,7 +13982,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:798", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -13227,7 +14009,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:800", + "location": "imgui:871", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -13254,7 +14036,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:801", + "location": "imgui:872", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -13278,7 +14060,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:797", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -13307,7 +14089,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:796", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -13331,7 +14113,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:795", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -13353,7 +14135,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:943", + "location": "imgui:1049", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -13375,7 +14157,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:944", + "location": "imgui:1050", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -13413,7 +14195,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:662", + "location": "imgui:725", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -13447,7 +14229,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:663", + "location": "imgui:726", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -13464,7 +14246,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:296", + "location": "imgui:332", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -13481,7 +14263,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:440", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -13498,7 +14280,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:776", + "location": "imgui:847", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -13526,7 +14308,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:696", + "location": "imgui:767", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -13552,7 +14334,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:697", + "location": "imgui:768", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -13581,7 +14363,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:698", + "location": "imgui:769", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -13630,7 +14412,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "defaults": { @@ -13642,7 +14424,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:641", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -13691,7 +14473,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "defaults": { @@ -13702,7 +14484,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:642", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -13751,7 +14533,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "defaults": { @@ -13763,7 +14545,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:639", + "location": "imgui:702", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -13812,7 +14594,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "defaults": { @@ -13823,7 +14605,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:640", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -13831,40 +14613,6 @@ "stname": "" } ], - "igPopAllowKeyboardFocus": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopAllowKeyboardFocus", - "defaults": {}, - "funcname": "PopAllowKeyboardFocus", - "location": "imgui:409", - "namespace": "ImGui", - "ov_cimguiname": "igPopAllowKeyboardFocus", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igPopButtonRepeat": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopButtonRepeat", - "defaults": {}, - "funcname": "PopButtonRepeat", - "location": "imgui:411", - "namespace": "ImGui", - "ov_cimguiname": "igPopButtonRepeat", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igPopClipRect": [ { "args": "()", @@ -13874,7 +14622,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:826", + "location": "imgui:898", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -13891,7 +14639,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:401", + "location": "imgui:439", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -13908,7 +14656,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:477", + "location": "imgui:521", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -13916,6 +14664,23 @@ "stname": "" } ], + "igPopItemFlag": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igPopItemFlag", + "defaults": {}, + "funcname": "PopItemFlag", + "location": "imgui:449", + "namespace": "ImGui", + "ov_cimguiname": "igPopItemFlag", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igPopItemWidth": [ { "args": "()", @@ -13925,7 +14690,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:415", + "location": "imgui:453", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -13949,7 +14714,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:404", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -13973,7 +14738,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:407", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -13990,7 +14755,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:419", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -14015,7 +14780,7 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "defaults": { @@ -14023,7 +14788,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:509", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -14031,50 +14796,6 @@ "stname": "" } ], - "igPushAllowKeyboardFocus": [ - { - "args": "(bool allow_keyboard_focus)", - "argsT": [ - { - "name": "allow_keyboard_focus", - "type": "bool" - } - ], - "argsoriginal": "(bool allow_keyboard_focus)", - "call_args": "(allow_keyboard_focus)", - "cimguiname": "igPushAllowKeyboardFocus", - "defaults": {}, - "funcname": "PushAllowKeyboardFocus", - "location": "imgui:408", - "namespace": "ImGui", - "ov_cimguiname": "igPushAllowKeyboardFocus", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], - "igPushButtonRepeat": [ - { - "args": "(bool repeat)", - "argsT": [ - { - "name": "repeat", - "type": "bool" - } - ], - "argsoriginal": "(bool repeat)", - "call_args": "(repeat)", - "cimguiname": "igPushButtonRepeat", - "defaults": {}, - "funcname": "PushButtonRepeat", - "location": "imgui:410", - "namespace": "ImGui", - "ov_cimguiname": "igPushButtonRepeat", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], "igPushClipRect": [ { "args": "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)", @@ -14097,7 +14818,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:825", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -14119,7 +14840,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:400", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -14141,7 +14862,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:473", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -14165,7 +14886,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:474", + "location": "imgui:518", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -14185,7 +14906,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:475", + "location": "imgui:519", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -14205,7 +14926,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:476", + "location": "imgui:520", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -14213,6 +14934,32 @@ "stname": "" } ], + "igPushItemFlag": [ + { + "args": "(ImGuiItemFlags option,bool enabled)", + "argsT": [ + { + "name": "option", + "type": "ImGuiItemFlags" + }, + { + "name": "enabled", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiItemFlags option,bool enabled)", + "call_args": "(option,enabled)", + "cimguiname": "igPushItemFlag", + "defaults": {}, + "funcname": "PushItemFlag", + "location": "imgui:448", + "namespace": "ImGui", + "ov_cimguiname": "igPushItemFlag", + "ret": "void", + "signature": "(ImGuiItemFlags,bool)", + "stname": "" + } + ], "igPushItemWidth": [ { "args": "(float item_width)", @@ -14227,7 +14974,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:414", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -14253,7 +15000,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:402", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -14277,7 +15024,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:403", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -14303,7 +15050,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:405", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -14327,7 +15074,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:406", + "location": "imgui:444", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -14335,6 +15082,58 @@ "stname": "" } ], + "igPushStyleVarX": [ + { + "args": "(ImGuiStyleVar idx,float val_x)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_x", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_x)", + "call_args": "(idx,val_x)", + "cimguiname": "igPushStyleVarX", + "defaults": {}, + "funcname": "PushStyleVarX", + "location": "imgui:445", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarX", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], + "igPushStyleVarY": [ + { + "args": "(ImGuiStyleVar idx,float val_y)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_y", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_y)", + "call_args": "(idx,val_y)", + "cimguiname": "igPushStyleVarY", + "defaults": {}, + "funcname": "PushStyleVarY", + "location": "imgui:446", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarY", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], "igPushTextWrapPos": [ { "args": "(float wrap_local_pos_x)", @@ -14351,7 +15150,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:418", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -14377,7 +15176,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:507", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -14405,7 +15204,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:508", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -14422,7 +15221,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:298", + "location": "imgui:334", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -14446,7 +15245,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:914", + "location": "imgui:1013", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -14475,7 +15274,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:439", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -14497,7 +15296,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:930", + "location": "imgui:1029", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -14521,7 +15320,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:931", + "location": "imgui:1030", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -14559,7 +15358,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:623", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -14594,7 +15393,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:624", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -14611,7 +15410,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:438", + "location": "imgui:491", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -14619,6 +15418,28 @@ "stname": "" } ], + "igSeparatorText": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igSeparatorText", + "defaults": {}, + "funcname": "SeparatorText", + "location": "imgui:541", + "namespace": "ImGui", + "ov_cimguiname": "igSeparatorText", + "ret": "void", + "signature": "(const char*)", + "stname": "" + } + ], "igSetAllocatorFunctions": [ { "args": "(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data)", @@ -14643,7 +15464,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:941", + "location": "imgui:1047", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -14665,7 +15486,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:922", + "location": "imgui:1021", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -14687,7 +15508,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:598", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -14713,7 +15534,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:781", + "location": "imgui:852", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -14739,7 +15560,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:779", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -14761,7 +15582,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:291", + "location": "imgui:326", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -14783,7 +15604,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:450", + "location": "imgui:485", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -14805,7 +15626,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:451", + "location": "imgui:486", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -14827,7 +15648,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:452", + "location": "imgui:487", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -14849,7 +15670,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:455", + "location": "imgui:480", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -14885,7 +15706,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:809", + "location": "imgui:880", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -14893,23 +15714,6 @@ "stname": "" } ], - "igSetItemAllowOverlap": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igSetItemAllowOverlap", - "defaults": {}, - "funcname": "SetItemAllowOverlap", - "location": "imgui:853", - "namespace": "ImGui", - "ov_cimguiname": "igSetItemAllowOverlap", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igSetItemDefaultFocus": [ { "args": "()", @@ -14919,7 +15723,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:830", + "location": "imgui:902", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -14927,6 +15731,81 @@ "stname": "" } ], + "igSetItemKeyOwner": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igSetItemKeyOwner", + "defaults": {}, + "funcname": "SetItemKeyOwner", + "location": "imgui:995", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemKeyOwner", + "ret": "void", + "signature": "(ImGuiKey)", + "stname": "" + } + ], + "igSetItemTooltip": [ + { + "args": "(const char* fmt,...)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "...", + "type": "..." + } + ], + "argsoriginal": "(const char* fmt,...)", + "call_args": "(fmt,...)", + "cimguiname": "igSetItemTooltip", + "defaults": {}, + "funcname": "SetItemTooltip", + "isvararg": "...)", + "location": "imgui:742", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltip", + "ret": "void", + "signature": "(const char*,...)", + "stname": "" + } + ], + "igSetItemTooltipV": [ + { + "args": "(const char* fmt,va_list args)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "args", + "type": "va_list" + } + ], + "argsoriginal": "(const char* fmt,va_list args)", + "call_args": "(fmt,args)", + "cimguiname": "igSetItemTooltipV", + "defaults": {}, + "funcname": "SetItemTooltipV", + "location": "imgui:743", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltipV", + "ret": "void", + "signature": "(const char*,va_list)", + "stname": "" + } + ], "igSetKeyboardFocusHere": [ { "args": "(int offset)", @@ -14943,7 +15822,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:831", + "location": "imgui:903", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -14965,7 +15844,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:916", + "location": "imgui:1015", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -14987,7 +15866,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:896", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -15009,7 +15888,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:917", + "location": "imgui:1016", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -15017,6 +15896,23 @@ "stname": "" } ], + "igSetNextItemAllowOverlap": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igSetNextItemAllowOverlap", + "defaults": {}, + "funcname": "SetNextItemAllowOverlap", + "location": "imgui:906", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemAllowOverlap", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igSetNextItemOpen": [ { "args": "(bool is_open,ImGuiCond cond)", @@ -15037,7 +15933,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:618", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -15045,6 +15941,78 @@ "stname": "" } ], + "igSetNextItemSelectionUserData": [ + { + "args": "(ImGuiSelectionUserData selection_user_data)", + "argsT": [ + { + "name": "selection_user_data", + "type": "ImGuiSelectionUserData" + } + ], + "argsoriginal": "(ImGuiSelectionUserData selection_user_data)", + "call_args": "(selection_user_data)", + "cimguiname": "igSetNextItemSelectionUserData", + "defaults": {}, + "funcname": "SetNextItemSelectionUserData", + "location": "imgui:686", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemSelectionUserData", + "ret": "void", + "signature": "(ImGuiSelectionUserData)", + "stname": "" + } + ], + "igSetNextItemShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", + "cimguiname": "igSetNextItemShortcut", + "defaults": { + "flags": "0" + }, + "funcname": "SetNextItemShortcut", + "location": "imgui:987", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemShortcut", + "ret": "void", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + } + ], + "igSetNextItemStorageID": [ + { + "args": "(ImGuiID storage_id)", + "argsT": [ + { + "name": "storage_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID storage_id)", + "call_args": "(storage_id)", + "cimguiname": "igSetNextItemStorageID", + "defaults": {}, + "funcname": "SetNextItemStorageID", + "location": "imgui:669", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemStorageID", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNextItemWidth": [ { "args": "(float item_width)", @@ -15059,7 +16027,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:416", + "location": "imgui:454", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -15081,7 +16049,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:366", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -15109,7 +16077,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:363", + "location": "imgui:409", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -15131,7 +16099,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:362", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -15148,7 +16116,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:364", + "location": "imgui:410", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -15181,7 +16149,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:359", + "location": "imgui:405", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -15203,7 +16171,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:365", + "location": "imgui:411", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -15231,7 +16199,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:360", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -15268,7 +16236,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:361", + "location": "imgui:407", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -15296,7 +16264,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:396", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX", "ret": "void", @@ -15324,7 +16292,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:397", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY", "ret": "void", @@ -15348,7 +16316,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:394", + "location": "imgui:432", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -15372,7 +16340,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:395", + "location": "imgui:433", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -15394,7 +16362,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:390", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX", "ret": "void", @@ -15416,7 +16384,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:391", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY", "ret": "void", @@ -15438,7 +16406,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:872", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -15460,7 +16428,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:791", + "location": "imgui:862", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -15487,7 +16455,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:669", + "location": "imgui:734", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -15513,7 +16481,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:670", + "location": "imgui:735", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -15541,7 +16509,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:369", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -15571,7 +16539,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:374", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -15588,7 +16556,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:370", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -15608,7 +16576,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:375", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -15630,7 +16598,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:371", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -15658,7 +16626,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:367", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -15688,7 +16656,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:372", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -15716,7 +16684,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:368", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -15746,7 +16714,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:373", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -15754,6 +16722,34 @@ "stname": "" } ], + "igShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", + "cimguiname": "igShortcut", + "defaults": { + "flags": "0" + }, + "funcname": "Shortcut", + "location": "imgui:986", + "namespace": "ImGui", + "ov_cimguiname": "igShortcut", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + } + ], "igShowAboutWindow": [ { "args": "(bool* p_open)", @@ -15770,7 +16766,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:306", + "location": "imgui:342", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -15794,7 +16790,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:304", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -15818,7 +16814,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:302", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -15840,7 +16836,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:309", + "location": "imgui:345", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -15848,6 +16844,30 @@ "stname": "" } ], + "igShowIDStackToolWindow": [ + { + "args": "(bool* p_open)", + "argsT": [ + { + "name": "p_open", + "type": "bool*" + } + ], + "argsoriginal": "(bool* p_open=((void*)0))", + "call_args": "(p_open)", + "cimguiname": "igShowIDStackToolWindow", + "defaults": { + "p_open": "NULL" + }, + "funcname": "ShowIDStackToolWindow", + "location": "imgui:341", + "namespace": "ImGui", + "ov_cimguiname": "igShowIDStackToolWindow", + "ret": "void", + "signature": "(bool*)", + "stname": "" + } + ], "igShowMetricsWindow": [ { "args": "(bool* p_open)", @@ -15864,7 +16884,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:303", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -15872,30 +16892,6 @@ "stname": "" } ], - "igShowStackToolWindow": [ - { - "args": "(bool* p_open)", - "argsT": [ - { - "name": "p_open", - "type": "bool*" - } - ], - "argsoriginal": "(bool* p_open=((void*)0))", - "call_args": "(p_open)", - "cimguiname": "igShowStackToolWindow", - "defaults": { - "p_open": "NULL" - }, - "funcname": "ShowStackToolWindow", - "location": "imgui:305", - "namespace": "ImGui", - "ov_cimguiname": "igShowStackToolWindow", - "ret": "void", - "signature": "(bool*)", - "stname": "" - } - ], "igShowStyleEditor": [ { "args": "(ImGuiStyle* ref)", @@ -15912,7 +16908,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:307", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -15934,7 +16930,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:308", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -15951,7 +16947,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:310", + "location": "imgui:346", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -15998,7 +16994,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:561", + "location": "imgui:611", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -16043,7 +17039,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:557", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -16088,7 +17084,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:558", + "location": "imgui:608", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -16133,7 +17129,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:559", + "location": "imgui:609", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -16178,7 +17174,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:560", + "location": "imgui:610", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -16223,7 +17219,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:562", + "location": "imgui:612", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -16268,7 +17264,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:563", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -16313,7 +17309,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:564", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -16358,7 +17354,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:565", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -16407,7 +17403,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:566", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -16460,7 +17456,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:567", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -16482,7 +17478,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:501", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -16499,7 +17495,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:441", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -16523,7 +17519,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:316", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -16547,7 +17543,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:314", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -16571,7 +17567,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:315", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -16599,7 +17595,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:790", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -16607,6 +17603,23 @@ "stname": "" } ], + "igTableAngledHeadersRow": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableAngledHeadersRow", + "defaults": {}, + "funcname": "TableAngledHeadersRow", + "location": "imgui:826", + "namespace": "ImGui", + "ov_cimguiname": "igTableAngledHeadersRow", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igTableGetColumnCount": [ { "args": "()", @@ -16616,7 +17629,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:765", + "location": "imgui:835", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -16640,7 +17653,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:769", + "location": "imgui:839", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -16657,7 +17670,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:766", + "location": "imgui:836", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -16681,7 +17694,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:768", + "location": "imgui:838", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName", "ret": "const char*", @@ -16689,6 +17702,23 @@ "stname": "" } ], + "igTableGetHoveredColumn": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableGetHoveredColumn", + "defaults": {}, + "funcname": "TableGetHoveredColumn", + "location": "imgui:841", + "namespace": "ImGui", + "ov_cimguiname": "igTableGetHoveredColumn", + "ret": "int", + "signature": "()", + "stname": "" + } + ], "igTableGetRowIndex": [ { "args": "()", @@ -16698,7 +17728,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:767", + "location": "imgui:837", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -16715,7 +17745,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:764", + "location": "imgui:834", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -16737,7 +17767,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:756", + "location": "imgui:824", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -16754,7 +17784,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:755", + "location": "imgui:825", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -16771,7 +17801,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:742", + "location": "imgui:811", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -16800,7 +17830,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:741", + "location": "imgui:810", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -16832,7 +17862,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:771", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -16858,7 +17888,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:770", + "location": "imgui:840", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -16880,7 +17910,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:743", + "location": "imgui:812", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -16918,7 +17948,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:753", + "location": "imgui:822", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -16944,7 +17974,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:754", + "location": "imgui:823", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -16971,7 +18001,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:484", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -17002,7 +18032,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:486", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -17032,7 +18062,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:487", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -17059,7 +18089,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:488", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -17085,7 +18115,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:489", + "location": "imgui:534", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -17093,6 +18123,56 @@ "stname": "" } ], + "igTextLink": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igTextLink", + "defaults": {}, + "funcname": "TextLink", + "location": "imgui:557", + "namespace": "ImGui", + "ov_cimguiname": "igTextLink", + "ret": "bool", + "signature": "(const char*)", + "stname": "" + } + ], + "igTextLinkOpenURL": [ + { + "args": "(const char* label,const char* url)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "url", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label,const char* url=((void*)0))", + "call_args": "(label,url)", + "cimguiname": "igTextLinkOpenURL", + "defaults": { + "url": "NULL" + }, + "funcname": "TextLinkOpenURL", + "location": "imgui:558", + "namespace": "ImGui", + "ov_cimguiname": "igTextLinkOpenURL", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igTextUnformatted": [ { "args": "(const char* text,const char* text_end)", @@ -17113,7 +18193,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:483", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -17139,7 +18219,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:485", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -17166,7 +18246,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:490", + "location": "imgui:535", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -17192,7 +18272,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:491", + "location": "imgui:536", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -17214,7 +18294,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:602", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -17243,7 +18323,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:603", + "location": "imgui:653", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -17272,7 +18352,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:604", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -17300,7 +18380,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:607", + "location": "imgui:657", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -17333,7 +18413,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:608", + "location": "imgui:658", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -17366,7 +18446,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:609", + "location": "imgui:659", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -17400,7 +18480,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:610", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -17432,7 +18512,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:611", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -17462,7 +18542,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:605", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -17490,7 +18570,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:606", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -17507,7 +18587,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:614", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -17529,7 +18609,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:612", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -17549,7 +18629,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:613", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -17573,7 +18653,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:444", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -17622,7 +18702,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:568", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -17671,7 +18751,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:569", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -17724,7 +18804,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:570", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -17750,7 +18830,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:646", + "location": "imgui:709", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -17774,7 +18854,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:647", + "location": "imgui:710", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -17798,7 +18878,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:648", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -17828,7 +18908,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:649", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", diff --git a/imgui-sys/third-party/imgui-master-freetype/definitions.lua b/imgui-sys/third-party/imgui-master-freetype/definitions.lua index 8908541..5e479d7 100644 --- a/imgui-sys/third-party/imgui-master-freetype/definitions.lua +++ b/imgui-sys/third-party/imgui-master-freetype/definitions.lua @@ -25,7 +25,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:2358" +defs["ImColor_HSV"][1]["location"] = "imgui:2744" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -42,7 +42,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:2348" +defs["ImColor_ImColor"][1]["location"] = "imgui:2734" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -68,7 +68,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2349" +defs["ImColor_ImColor"][2]["location"] = "imgui:2735" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -84,7 +84,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:2350" +defs["ImColor_ImColor"][3]["location"] = "imgui:2736" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -110,7 +110,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2351" +defs["ImColor_ImColor"][4]["location"] = "imgui:2737" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -126,7 +126,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:2352" +defs["ImColor_ImColor"][5]["location"] = "imgui:2738" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -160,7 +160,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:2357" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2743" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -194,7 +194,7 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" -defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2406" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2940" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -210,7 +210,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2403" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2937" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -231,6 +231,27 @@ defs["ImDrawCmd_destroy"][1]["ret"] = "void" defs["ImDrawCmd_destroy"][1]["signature"] = "(ImDrawCmd*)" defs["ImDrawCmd_destroy"][1]["stname"] = "ImDrawCmd" defs["ImDrawCmd_destroy"]["(ImDrawCmd*)"] = defs["ImDrawCmd_destroy"][1] +defs["ImDrawData_AddDrawList"] = {} +defs["ImDrawData_AddDrawList"][1] = {} +defs["ImDrawData_AddDrawList"][1]["args"] = "(ImDrawData* self,ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["argsT"] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["name"] = "self" +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["type"] = "ImDrawData*" +defs["ImDrawData_AddDrawList"][1]["argsT"][2] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["name"] = "draw_list" +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["type"] = "ImDrawList*" +defs["ImDrawData_AddDrawList"][1]["argsoriginal"] = "(ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["call_args"] = "(draw_list)" +defs["ImDrawData_AddDrawList"][1]["cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["defaults"] = {} +defs["ImDrawData_AddDrawList"][1]["funcname"] = "AddDrawList" +defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3188" +defs["ImDrawData_AddDrawList"][1]["ov_cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["ret"] = "void" +defs["ImDrawData_AddDrawList"][1]["signature"] = "(ImDrawList*)" +defs["ImDrawData_AddDrawList"][1]["stname"] = "ImDrawData" +defs["ImDrawData_AddDrawList"]["(ImDrawList*)"] = defs["ImDrawData_AddDrawList"][1] defs["ImDrawData_Clear"] = {} defs["ImDrawData_Clear"][1] = {} defs["ImDrawData_Clear"][1]["args"] = "(ImDrawData* self)" @@ -243,7 +264,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2639" +defs["ImDrawData_Clear"][1]["location"] = "imgui:3187" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -261,7 +282,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2640" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:3189" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -277,7 +298,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2638" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:3186" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -297,7 +318,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2641" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:3190" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -331,7 +352,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2451" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2985" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -349,7 +370,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2452" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2986" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -365,7 +386,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2449" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2983" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -385,7 +406,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2454" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2988" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -409,7 +430,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2455" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2989" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -433,7 +454,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2453" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2987" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -450,7 +471,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2450" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2984" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -491,7 +512,7 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" -defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2554" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3088" defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -528,7 +549,7 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" -defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2555" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3089" defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -552,7 +573,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2579" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3123" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -587,7 +608,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2546" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3080" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -618,12 +639,39 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2547" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3081" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" defs["ImDrawList_AddCircleFilled"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddCircleFilled"]["(const ImVec2,float,ImU32,int)"] = defs["ImDrawList_AddCircleFilled"][1] +defs["ImDrawList_AddConcavePolyFilled"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["name"] = "points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["type"] = "const ImVec2*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["name"] = "num_points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["type"] = "int" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsoriginal"] = "(const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3096" +defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" +defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" +defs["ImDrawList_AddConcavePolyFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddConcavePolyFilled"]["(const ImVec2*,int,ImU32)"] = defs["ImDrawList_AddConcavePolyFilled"][1] defs["ImDrawList_AddConvexPolyFilled"] = {} defs["ImDrawList_AddConvexPolyFilled"][1] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" @@ -645,7 +693,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2553" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3095" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -663,12 +711,86 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2580" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3124" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddDrawCmd"]["()"] = defs["ImDrawList_AddDrawCmd"][1] +defs["ImDrawList_AddEllipse"] = {} +defs["ImDrawList_AddEllipse"][1] = {} +defs["ImDrawList_AddEllipse"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)" +defs["ImDrawList_AddEllipse"][1]["argsT"] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipse"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipse"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipse"][1]["argsT"][7] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["name"] = "thickness" +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)" +defs["ImDrawList_AddEllipse"][1]["call_args"] = "(center,radius,col,rot,num_segments,thickness)" +defs["ImDrawList_AddEllipse"][1]["cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["defaults"] = {} +defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" +defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3084" +defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["ret"] = "void" +defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" +defs["ImDrawList_AddEllipse"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipse"]["(const ImVec2,const ImVec2,ImU32,float,int,float)"] = defs["ImDrawList_AddEllipse"][1] +defs["ImDrawList_AddEllipseFilled"] = {} +defs["ImDrawList_AddEllipseFilled"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipseFilled"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)" +defs["ImDrawList_AddEllipseFilled"][1]["call_args"] = "(center,radius,col,rot,num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3085" +defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" +defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" +defs["ImDrawList_AddEllipseFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipseFilled"]["(const ImVec2,const ImVec2,ImU32,float,int)"] = defs["ImDrawList_AddEllipseFilled"][1] defs["ImDrawList_AddImage"] = {} defs["ImDrawList_AddImage"][1] = {} defs["ImDrawList_AddImage"][1]["args"] = "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)" @@ -702,7 +824,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:2561" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:3102" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -755,7 +877,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2562" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3103" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -798,7 +920,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2563" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3104" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -829,7 +951,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:2538" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:3072" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -863,7 +985,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2548" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3082" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -893,7 +1015,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2549" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3083" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -926,7 +1048,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2552" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3094" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -963,7 +1085,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2542" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3076" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -996,7 +1118,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2543" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3077" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1035,7 +1157,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:2539" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:3073" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1070,7 +1192,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2540" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3074" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1106,7 +1228,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2541" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3075" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1137,7 +1259,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:2550" +defs["ImDrawList_AddText"][1]["location"] = "imgui:3086" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1180,7 +1302,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:2551" +defs["ImDrawList_AddText"][2]["location"] = "imgui:3087" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1215,7 +1337,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2544" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3078" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1245,7 +1367,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2545" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3079" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1263,7 +1385,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2590" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3134" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1284,7 +1406,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2591" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3135" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1305,7 +1427,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2589" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3133" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1323,7 +1445,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2581" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3125" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1344,7 +1466,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2529" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3063" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1366,7 +1488,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2528" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3062" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -1386,7 +1508,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2520" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3054" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -1419,7 +1541,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2572" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3115" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -1449,7 +1571,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2573" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3116" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -1480,7 +1602,7 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" -defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2574" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3118" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -1508,7 +1630,7 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" -defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2575" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3119" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -1526,12 +1648,70 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:2567" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:3109" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" defs["ImDrawList_PathClear"]["()"] = defs["ImDrawList_PathClear"][1] +defs["ImDrawList_PathEllipticalArcTo"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["name"] = "rot" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["name"] = "a_min" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["name"] = "a_max" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["name"] = "num_segments" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["type"] = "int" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)" +defs["ImDrawList_PathEllipticalArcTo"][1]["call_args"] = "(center,radius,rot,a_min,a_max,num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3117" +defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" +defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" +defs["ImDrawList_PathEllipticalArcTo"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathEllipticalArcTo"]["(const ImVec2,const ImVec2,float,float,float,int)"] = defs["ImDrawList_PathEllipticalArcTo"][1] +defs["ImDrawList_PathFillConcave"] = {} +defs["ImDrawList_PathFillConcave"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["args"] = "(ImDrawList* self,ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["argsT"] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["name"] = "col" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["type"] = "ImU32" +defs["ImDrawList_PathFillConcave"][1]["argsoriginal"] = "(ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" +defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} +defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3113" +defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" +defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" +defs["ImDrawList_PathFillConcave"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathFillConcave"]["(ImU32)"] = defs["ImDrawList_PathFillConcave"][1] defs["ImDrawList_PathFillConvex"] = {} defs["ImDrawList_PathFillConvex"][1] = {} defs["ImDrawList_PathFillConvex"][1]["args"] = "(ImDrawList* self,ImU32 col)" @@ -1547,7 +1727,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2570" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3112" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -1568,7 +1748,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2568" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3110" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -1589,7 +1769,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2569" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3111" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -1621,7 +1801,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:2576" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3120" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -1650,7 +1830,7 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2571" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3114" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -1668,7 +1848,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2525" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3059" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -1686,7 +1866,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2527" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3061" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -1731,7 +1911,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2600" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3144" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1758,7 +1938,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2598" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3142" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1791,7 +1971,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2599" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3143" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1815,7 +1995,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2596" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3140" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -1839,7 +2019,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2597" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3141" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -1866,7 +2046,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2603" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3147" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1887,7 +2067,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2602" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3146" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -1914,7 +2094,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2601" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3145" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1942,7 +2122,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2523" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3057" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -1960,7 +2140,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2524" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3058" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -1981,7 +2161,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2526" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3060" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2002,7 +2182,7 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" -defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2618" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:3165" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2020,7 +2200,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2612" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3158" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2038,7 +2218,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2615" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3161" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2056,7 +2236,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2616" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3162" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2074,7 +2254,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2617" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3163" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2107,7 +2287,7 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" -defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2619" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:3166" defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2140,7 +2320,7 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" -defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2620" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:3167" defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2158,7 +2338,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2613" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3159" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2176,12 +2356,33 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2611" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3157" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["stname"] = "ImDrawList" defs["ImDrawList__ResetForNewFrame"]["()"] = defs["ImDrawList__ResetForNewFrame"][1] +defs["ImDrawList__SetTextureID"] = {} +defs["ImDrawList__SetTextureID"][1] = {} +defs["ImDrawList__SetTextureID"][1]["args"] = "(ImDrawList* self,ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["argsT"] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList__SetTextureID"][1]["argsT"][2] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["name"] = "texture_id" +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["type"] = "ImTextureID" +defs["ImDrawList__SetTextureID"][1]["argsoriginal"] = "(ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["call_args"] = "(texture_id)" +defs["ImDrawList__SetTextureID"][1]["cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["defaults"] = {} +defs["ImDrawList__SetTextureID"][1]["funcname"] = "_SetTextureID" +defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3164" +defs["ImDrawList__SetTextureID"][1]["ov_cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["ret"] = "void" +defs["ImDrawList__SetTextureID"][1]["signature"] = "(ImTextureID)" +defs["ImDrawList__SetTextureID"][1]["stname"] = "ImDrawList" +defs["ImDrawList__SetTextureID"]["(ImTextureID)"] = defs["ImDrawList__SetTextureID"][1] defs["ImDrawList__TryMergeDrawCmds"] = {} defs["ImDrawList__TryMergeDrawCmds"][1] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["args"] = "(ImDrawList* self)" @@ -2194,7 +2395,7 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" -defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2614" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3160" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2211,7 +2412,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:2522" +defs["ImDrawList_destroy"][1]["location"] = "imgui:3056" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2228,7 +2429,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2712" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3262" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2245,7 +2446,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2713" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3263" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2298,7 +2499,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2797" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3348" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2322,7 +2523,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2796" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3347" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2343,7 +2544,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2746" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3296" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2365,7 +2566,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2747" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3297" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -2397,7 +2598,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2748" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3298" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2429,7 +2630,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2751" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3301" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2437,7 +2638,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["stname"] = "ImFontA defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"]["(const char*,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1] defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1]["name"] = "self" @@ -2446,7 +2647,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["name"] = "compressed_font_data" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["type"] = "const void*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_size" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_data_size" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -2457,14 +2658,14 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2750" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3300" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2472,7 +2673,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"]["(const void*,int,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] defs["ImFontAtlas_AddFontFromMemoryTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1]["name"] = "self" @@ -2481,7 +2682,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["name"] = "font_data" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["type"] = "void*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_size" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_data_size" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -2492,14 +2693,14 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2749" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3299" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2517,7 +2718,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2762" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:3312" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -2544,7 +2745,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2801" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3352" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -2562,7 +2763,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2755" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3305" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -2580,7 +2781,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2754" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3304" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -2598,7 +2799,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2752" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3302" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -2616,7 +2817,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2753" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3303" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -2637,7 +2838,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2798" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3349" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -2655,7 +2856,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2779" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3330" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -2673,7 +2874,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2780" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3331" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -2691,7 +2892,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2781" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3332" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -2709,7 +2910,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2775" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3326" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -2727,7 +2928,7 @@ defs["ImFontAtlas_GetGlyphRangesGreek"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesGreek"][1]["funcname"] = "GetGlyphRangesGreek" -defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:2776" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3327" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" @@ -2745,7 +2946,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2778" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3329" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -2763,7 +2964,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2777" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3328" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -2781,7 +2982,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2782" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3333" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -2799,7 +3000,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2783" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3334" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -2832,7 +3033,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2802" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3353" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -2863,7 +3064,7 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2763" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3313" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2894,7 +3095,7 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2764" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3314" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2910,7 +3111,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2744" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3294" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -2927,7 +3128,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2765" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3315" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -2948,7 +3149,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2766" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3316" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -2965,7 +3166,7 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true -defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2745" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3295" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -2982,7 +3183,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2672" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:3222" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3018,7 +3219,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2697" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:3247" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3039,7 +3240,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2699" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:3249" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3064,7 +3265,7 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2698" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:3248" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3085,7 +3286,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2700" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:3250" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3103,7 +3304,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2694" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:3244" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3124,7 +3325,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2695" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:3245" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3140,7 +3341,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2693" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:3243" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3160,7 +3361,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2696" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:3246" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3227,7 +3428,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:2890" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3443" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3255,7 +3456,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2891" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3444" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3273,7 +3474,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2887" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3440" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3314,7 +3515,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2881" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3434" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3345,7 +3546,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2882" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3435" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3363,7 +3564,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2888" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3441" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3384,7 +3585,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui:2873" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:3426" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -3405,7 +3606,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2874" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3427" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -3426,7 +3627,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2875" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3428" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -3444,7 +3645,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui:2877" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:3430" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -3465,7 +3666,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui:2889" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3442" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -3481,7 +3682,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui:2871" +defs["ImFont_ImFont"][1]["location"] = "imgui:3424" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -3504,7 +3705,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2893" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3446" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -3522,7 +3723,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui:2876" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:3429" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -3555,7 +3756,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui:2883" +defs["ImFont_RenderChar"][1]["location"] = "imgui:3436" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const" @@ -3602,7 +3803,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui:2884" +defs["ImFont_RenderText"][1]["location"] = "imgui:3437" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -3626,7 +3827,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2892" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3445" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -3643,7 +3844,7 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true -defs["ImFont_destroy"][1]["location"] = "imgui:2872" +defs["ImFont_destroy"][1]["location"] = "imgui:3425" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -3711,7 +3912,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:1972" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2317" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -3732,7 +3933,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:1973" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2318" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -3753,7 +3954,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:1974" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2319" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -3774,7 +3975,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:1975" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2320" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -3801,7 +4002,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:1968" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2312" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -3825,7 +4026,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:1967" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2311" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -3849,7 +4050,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:1970" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2314" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -3873,54 +4074,75 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:1969" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2313" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMousePosEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMousePosEvent"]["(float,float)"] = defs["ImGuiIO_AddMousePosEvent"][1] +defs["ImGuiIO_AddMouseSourceEvent"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["args"] = "(ImGuiIO* self,ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["name"] = "source" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["type"] = "ImGuiMouseSource" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsoriginal"] = "(ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2316" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" +defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_AddMouseSourceEvent"]["(ImGuiMouseSource)"] = defs["ImGuiIO_AddMouseSourceEvent"][1] defs["ImGuiIO_AddMouseWheelEvent"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wh_x,float wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wheel_x,float wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["name"] = "self" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wh_x" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wheel_x" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["type"] = "float" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wh_y" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wheel_y" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["type"] = "float" -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wh_x,float wh_y)" -defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wh_x,wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wheel_x,float wheel_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:1971" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2315" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMouseWheelEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseWheelEvent"]["(float,float)"] = defs["ImGuiIO_AddMouseWheelEvent"][1] -defs["ImGuiIO_ClearInputCharacters"] = {} -defs["ImGuiIO_ClearInputCharacters"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["args"] = "(ImGuiIO* self)" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["name"] = "self" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["type"] = "ImGuiIO*" -defs["ImGuiIO_ClearInputCharacters"][1]["argsoriginal"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:1979" -defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" -defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" -defs["ImGuiIO_ClearInputCharacters"]["()"] = defs["ImGuiIO_ClearInputCharacters"][1] +defs["ImGuiIO_ClearEventsQueue"] = {} +defs["ImGuiIO_ClearEventsQueue"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearEventsQueue"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2324" +defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" +defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearEventsQueue"]["()"] = defs["ImGuiIO_ClearEventsQueue"][1] defs["ImGuiIO_ClearInputKeys"] = {} defs["ImGuiIO_ClearInputKeys"][1] = {} defs["ImGuiIO_ClearInputKeys"][1]["args"] = "(ImGuiIO* self)" @@ -3933,12 +4155,30 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:1980" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2325" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ClearInputKeys"]["()"] = defs["ImGuiIO_ClearInputKeys"][1] +defs["ImGuiIO_ClearInputMouse"] = {} +defs["ImGuiIO_ClearInputMouse"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearInputMouse"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2326" +defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" +defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearInputMouse"]["()"] = defs["ImGuiIO_ClearInputMouse"][1] defs["ImGuiIO_ImGuiIO"] = {} defs["ImGuiIO_ImGuiIO"][1] = {} defs["ImGuiIO_ImGuiIO"][1]["args"] = "()" @@ -3949,7 +4189,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2053" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2415" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -3969,7 +4209,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:1978" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2323" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -4000,7 +4240,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:1977" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2322" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -4034,7 +4274,7 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2094" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2459" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -4058,7 +4298,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2091" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2456" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -4076,7 +4316,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2095" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2460" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -4092,7 +4332,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2090" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2455" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -4119,7 +4359,7 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2092" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2457" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -4137,7 +4377,7 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2093" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2458" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -4178,7 +4418,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2306" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2653" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -4196,36 +4436,12 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui:2307" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2654" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] -defs["ImGuiListClipper_ForceDisplayRangeByIndices"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["args"] = "(ImGuiListClipper* self,int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["name"] = "self" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["type"] = "ImGuiListClipper*" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["name"] = "item_min" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["name"] = "item_max" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsoriginal"] = "(int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["call_args"] = "(item_min,item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["defaults"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["funcname"] = "ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2311" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ov_cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ret"] = "void" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["signature"] = "(int,int)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["stname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"]["(int,int)"] = defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" @@ -4236,11 +4452,77 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2304" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2651" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"]["()"] = defs["ImGuiListClipper_ImGuiListClipper"][1] +defs["ImGuiListClipper_IncludeItemByIndex"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2659" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemByIndex"]["(int)"] = defs["ImGuiListClipper_IncludeItemByIndex"][1] +defs["ImGuiListClipper_IncludeItemsByIndex"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["name"] = "item_begin" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["name"] = "item_end" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsoriginal"] = "(int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2660" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemsByIndex"]["(int,int)"] = defs["ImGuiListClipper_IncludeItemsByIndex"][1] +defs["ImGuiListClipper_SeekCursorForItem"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["defaults"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["funcname"] = "SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2665" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ov_cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ret"] = "void" +defs["ImGuiListClipper_SeekCursorForItem"][1]["signature"] = "(int)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_SeekCursorForItem"]["(int)"] = defs["ImGuiListClipper_SeekCursorForItem"][1] defs["ImGuiListClipper_Step"] = {} defs["ImGuiListClipper_Step"][1] = {} defs["ImGuiListClipper_Step"][1]["args"] = "(ImGuiListClipper* self)" @@ -4253,7 +4535,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2308" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2655" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -4270,7 +4552,7 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true -defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2305" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2652" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -4287,7 +4569,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2170" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2511" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -4320,7 +4602,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2124" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2489" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -4336,7 +4618,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2123" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2488" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -4356,7 +4638,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2125" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2490" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -4374,7 +4656,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2127" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2492" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -4392,7 +4674,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2126" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2491" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -4414,6 +4696,37 @@ defs["ImGuiPayload_destroy"][1]["ret"] = "void" defs["ImGuiPayload_destroy"][1]["signature"] = "(ImGuiPayload*)" defs["ImGuiPayload_destroy"][1]["stname"] = "ImGuiPayload" defs["ImGuiPayload_destroy"]["(ImGuiPayload*)"] = defs["ImGuiPayload_destroy"][1] +defs["ImGuiPlatformIO_ImGuiPlatformIO"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["args"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["argsT"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["argsoriginal"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["call_args"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3496" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"]["()"] = defs["ImGuiPlatformIO_ImGuiPlatformIO"][1] +defs["ImGuiPlatformIO_destroy"] = {} +defs["ImGuiPlatformIO_destroy"][1] = {} +defs["ImGuiPlatformIO_destroy"][1]["args"] = "(ImGuiPlatformIO* self)" +defs["ImGuiPlatformIO_destroy"][1]["argsT"] = {} +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1] = {} +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1]["type"] = "ImGuiPlatformIO*" +defs["ImGuiPlatformIO_destroy"][1]["call_args"] = "(self)" +defs["ImGuiPlatformIO_destroy"][1]["cimguiname"] = "ImGuiPlatformIO_destroy" +defs["ImGuiPlatformIO_destroy"][1]["defaults"] = {} +defs["ImGuiPlatformIO_destroy"][1]["destructor"] = true +defs["ImGuiPlatformIO_destroy"][1]["ov_cimguiname"] = "ImGuiPlatformIO_destroy" +defs["ImGuiPlatformIO_destroy"][1]["ret"] = "void" +defs["ImGuiPlatformIO_destroy"][1]["signature"] = "(ImGuiPlatformIO*)" +defs["ImGuiPlatformIO_destroy"][1]["stname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_destroy"]["(ImGuiPlatformIO*)"] = defs["ImGuiPlatformIO_destroy"][1] defs["ImGuiPlatformImeData_ImGuiPlatformImeData"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["args"] = "()" @@ -4424,7 +4737,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:2945" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3531" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -4445,61 +4758,295 @@ defs["ImGuiPlatformImeData_destroy"][1]["ret"] = "void" defs["ImGuiPlatformImeData_destroy"][1]["signature"] = "(ImGuiPlatformImeData*)" defs["ImGuiPlatformImeData_destroy"][1]["stname"] = "ImGuiPlatformImeData" defs["ImGuiPlatformImeData_destroy"]["(ImGuiPlatformImeData*)"] = defs["ImGuiPlatformImeData_destroy"][1] +defs["ImGuiSelectionBasicStorage_ApplyRequests"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2873" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] +defs["ImGuiSelectionBasicStorage_Clear"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["funcname"] = "Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2875" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Clear"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Clear"]["()"] = defs["ImGuiSelectionBasicStorage_Clear"][1] +defs["ImGuiSelectionBasicStorage_Contains"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsoriginal"] = "(ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["call_args"] = "(id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["funcname"] = "Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2874" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_Contains"][1]["signature"] = "(ImGuiID)const" +defs["ImGuiSelectionBasicStorage_Contains"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Contains"]["(ImGuiID)const"] = defs["ImGuiSelectionBasicStorage_Contains"][1] +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["args"] = "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["name"] = "opaque_it" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["type"] = "void**" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["name"] = "out_id" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["type"] = "ImGuiID*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsoriginal"] = "(void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["call_args"] = "(opaque_it,out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["funcname"] = "GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2878" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["signature"] = "(void**,ImGuiID*)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"]["(void**,ImGuiID*)"] = defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["args"] = "(ImGuiSelectionBasicStorage* self,int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["name"] = "idx" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsoriginal"] = "(int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["call_args"] = "(idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["funcname"] = "GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2879" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ret"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["signature"] = "(int)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"]["(int)"] = defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["constructor"] = true +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["funcname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2872" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"]["()"] = defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] +defs["ImGuiSelectionBasicStorage_SetItemSelected"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["name"] = "selected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["type"] = "bool" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsoriginal"] = "(ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["call_args"] = "(id,selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["funcname"] = "SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2877" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["signature"] = "(ImGuiID,bool)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_SetItemSelected"]["(ImGuiID,bool)"] = defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] +defs["ImGuiSelectionBasicStorage_Swap"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["name"] = "r" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["reftoptr"] = true +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsoriginal"] = "(ImGuiSelectionBasicStorage& r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["call_args"] = "(*r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["funcname"] = "Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2876" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Swap"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Swap"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_Swap"][1] +defs["ImGuiSelectionBasicStorage_destroy"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionBasicStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_destroy"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_destroy"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_destroy"][1] +defs["ImGuiSelectionExternalStorage_ApplyRequests"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:2892" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["constructor"] = true +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["funcname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:2891" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["signature"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"]["()"] = defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] +defs["ImGuiSelectionExternalStorage_destroy"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["args"] = "(ImGuiSelectionExternalStorage* self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionExternalStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_destroy"][1]["signature"] = "(ImGuiSelectionExternalStorage*)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_destroy"]["(ImGuiSelectionExternalStorage*)"] = defs["ImGuiSelectionExternalStorage_destroy"][1] defs["ImGuiStoragePair_ImGuiStoragePair"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val_i" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["type"] = "int" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val_i)" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2237" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2568" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val_f" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["type"] = "float" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val_f)" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2238" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2569" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val_p" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["type"] = "void*" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val_p)" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2239" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2570" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -4534,7 +5081,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2270" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2609" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -4552,7 +5099,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2247" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2589" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -4577,7 +5124,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2250" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2592" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -4602,7 +5149,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2262" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2604" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -4627,7 +5174,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2252" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2594" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -4652,7 +5199,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2263" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2605" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -4677,7 +5224,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2248" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2590" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -4702,7 +5249,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2261" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2603" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -4723,7 +5270,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2254" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2596" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -4748,7 +5295,7 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2264" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2606" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -4769,7 +5316,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2267" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2611" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -4793,7 +5340,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2251" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2593" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -4817,7 +5364,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2253" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2595" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -4841,7 +5388,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2249" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2591" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -4865,7 +5412,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2255" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2597" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -4881,7 +5428,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1875" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2194" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -4901,7 +5448,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1876" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2195" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -4933,7 +5480,7 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" -defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2138" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2018" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -4964,7 +5511,7 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" -defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2151" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2007" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -4995,7 +5542,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2208" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2549" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -5019,7 +5566,7 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2217" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2558" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -5044,7 +5591,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2218" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2559" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -5069,7 +5616,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2219" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2560" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -5087,7 +5634,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2210" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2551" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -5105,7 +5652,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2216" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2557" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -5123,7 +5670,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2214" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2555" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -5157,7 +5704,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2213" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2554" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -5175,7 +5722,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2211" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2552" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -5196,7 +5743,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2215" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2556" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -5214,7 +5761,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2212" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2553" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -5232,7 +5779,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2181" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2522" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -5250,7 +5797,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2182" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2523" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -5276,7 +5823,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2179" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2520" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -5296,7 +5843,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2178" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2519" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -5313,7 +5860,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2183" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2524" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -5338,7 +5885,7 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2180" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2521" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -5370,7 +5917,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2191" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2532" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -5389,7 +5936,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2192" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2533" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -5423,7 +5970,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2193" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2534" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -5447,7 +5994,7 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui:2194" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2535" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -5468,7 +6015,7 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:2930" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3485" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -5490,7 +6037,7 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" -defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:2931" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3486" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -5507,7 +6054,7 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" -defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:2927" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3482" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -5538,7 +6085,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:256" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:291" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -5557,7 +6104,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:257" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:292" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -5589,7 +6136,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:269" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:304" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -5614,7 +6161,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:270" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:305" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -5646,7 +6193,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui:1772" +defs["ImVector_ImVector"][1]["location"] = "imgui:2075" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -5663,7 +6210,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui:1773" +defs["ImVector_ImVector"][2]["location"] = "imgui:2076" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -5685,7 +6232,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui:1799" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2102" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -5704,7 +6251,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui:1795" +defs["ImVector_back"][1]["location"] = "imgui:2098" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -5722,7 +6269,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui:1796" +defs["ImVector_back"][2]["location"] = "imgui:2099" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -5743,7 +6290,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui:1789" +defs["ImVector_begin"][1]["location"] = "imgui:2092" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -5760,7 +6307,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui:1790" +defs["ImVector_begin"][2]["location"] = "imgui:2093" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -5780,7 +6327,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui:1785" +defs["ImVector_capacity"][1]["location"] = "imgui:2088" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -5799,7 +6346,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui:1777" +defs["ImVector_clear"][1]["location"] = "imgui:2080" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -5818,7 +6365,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:1778" +defs["ImVector_clear_delete"][1]["location"] = "imgui:2081" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -5837,7 +6384,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:1779" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2082" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -5859,7 +6406,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui:1814" +defs["ImVector_contains"][1]["location"] = "imgui:2117" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -5877,7 +6424,7 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true -defs["ImVector_destroy"][1]["location"] = "imgui:1775" +defs["ImVector_destroy"][1]["location"] = "imgui:2078" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -5897,7 +6444,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui:1781" +defs["ImVector_empty"][1]["location"] = "imgui:2084" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -5916,7 +6463,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui:1791" +defs["ImVector_end"][1]["location"] = "imgui:2094" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -5933,7 +6480,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui:1792" +defs["ImVector_end"][2]["location"] = "imgui:2095" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -5956,7 +6503,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui:1810" +defs["ImVector_erase"][1]["location"] = "imgui:2113" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -5979,7 +6526,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui:1811" +defs["ImVector_erase"][2]["location"] = "imgui:2114" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -6002,7 +6549,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1812" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2115" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -6024,7 +6571,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui:1815" +defs["ImVector_find"][1]["location"] = "imgui:2118" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -6044,7 +6591,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui:1816" +defs["ImVector_find"][2]["location"] = "imgui:2119" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -6067,7 +6614,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui:1817" +defs["ImVector_find_erase"][1]["location"] = "imgui:2121" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -6089,13 +6636,35 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1818" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2122" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" defs["ImVector_find_erase_unsorted"][1]["stname"] = "ImVector" defs["ImVector_find_erase_unsorted"][1]["templated"] = true defs["ImVector_find_erase_unsorted"]["(const T)"] = defs["ImVector_find_erase_unsorted"][1] +defs["ImVector_find_index"] = {} +defs["ImVector_find_index"][1] = {} +defs["ImVector_find_index"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_find_index"][1]["argsT"] = {} +defs["ImVector_find_index"][1]["argsT"][1] = {} +defs["ImVector_find_index"][1]["argsT"][1]["name"] = "self" +defs["ImVector_find_index"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_find_index"][1]["argsT"][2] = {} +defs["ImVector_find_index"][1]["argsT"][2]["name"] = "v" +defs["ImVector_find_index"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_find_index"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_find_index"][1]["call_args"] = "(v)" +defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["defaults"] = {} +defs["ImVector_find_index"][1]["funcname"] = "find_index" +defs["ImVector_find_index"][1]["location"] = "imgui:2120" +defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["ret"] = "int" +defs["ImVector_find_index"][1]["signature"] = "(const T)const" +defs["ImVector_find_index"][1]["stname"] = "ImVector" +defs["ImVector_find_index"][1]["templated"] = true +defs["ImVector_find_index"]["(const T)const"] = defs["ImVector_find_index"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} defs["ImVector_front"][1]["args"] = "(ImVector* self)" @@ -6108,7 +6677,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui:1793" +defs["ImVector_front"][1]["location"] = "imgui:2096" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -6126,7 +6695,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui:1794" +defs["ImVector_front"][2]["location"] = "imgui:2097" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -6150,7 +6719,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1819" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2123" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -6175,7 +6744,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:1813" +defs["ImVector_insert"][1]["location"] = "imgui:2116" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -6194,7 +6763,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:1784" +defs["ImVector_max_size"][1]["location"] = "imgui:2087" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -6213,7 +6782,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui:1808" +defs["ImVector_pop_back"][1]["location"] = "imgui:2111" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -6235,7 +6804,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui:1807" +defs["ImVector_push_back"][1]["location"] = "imgui:2110" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -6257,7 +6826,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui:1809" +defs["ImVector_push_front"][1]["location"] = "imgui:2112" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -6279,7 +6848,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui:1803" +defs["ImVector_reserve"][1]["location"] = "imgui:2106" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -6301,7 +6870,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:1804" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2107" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -6323,7 +6892,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui:1800" +defs["ImVector_resize"][1]["location"] = "imgui:2103" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -6346,7 +6915,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui:1801" +defs["ImVector_resize"][2]["location"] = "imgui:2104" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -6369,7 +6938,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui:1802" +defs["ImVector_shrink"][1]["location"] = "imgui:2105" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -6388,7 +6957,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui:1782" +defs["ImVector_size"][1]["location"] = "imgui:2085" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -6407,7 +6976,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1783" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2086" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -6430,7 +6999,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui:1797" +defs["ImVector_swap"][1]["location"] = "imgui:2100" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -6453,7 +7022,7 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui:812" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:883" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -6469,7 +7038,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:456" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:500" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -6491,7 +7060,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:503" +defs["igArrowButton"][1]["location"] = "imgui:549" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -6518,7 +7087,7 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:330" +defs["igBegin"][1]["location"] = "imgui:366" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -6527,7 +7096,7 @@ defs["igBegin"][1]["stname"] = "" defs["igBegin"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBegin"][1] defs["igBeginChild"] = {} defs["igBeginChild"][1] = {} -defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][1]["argsT"] = {} defs["igBeginChild"][1]["argsT"][1] = {} defs["igBeginChild"][1]["argsT"][1]["name"] = "str_id" @@ -6536,27 +7105,27 @@ defs["igBeginChild"][1]["argsT"][2] = {} defs["igBeginChild"][1]["argsT"][2]["name"] = "size" defs["igBeginChild"][1]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][1]["argsT"][3] = {} -defs["igBeginChild"][1]["argsT"][3]["name"] = "border" -defs["igBeginChild"][1]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][1]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][1]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][1]["argsT"][4] = {} -defs["igBeginChild"][1]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][1]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][1]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][1]["call_args"] = "(str_id,size,border,flags)" +defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][1]["call_args"] = "(str_id,size,child_flags,window_flags)" defs["igBeginChild"][1]["cimguiname"] = "igBeginChild" defs["igBeginChild"][1]["defaults"] = {} -defs["igBeginChild"][1]["defaults"]["border"] = "false" -defs["igBeginChild"][1]["defaults"]["flags"] = "0" +defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:341" +defs["igBeginChild"][1]["location"] = "imgui:387" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" -defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][1]["stname"] = "" defs["igBeginChild"][2] = {} -defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][2]["argsT"] = {} defs["igBeginChild"][2]["argsT"][1] = {} defs["igBeginChild"][2]["argsT"][1]["name"] = "id" @@ -6565,53 +7134,27 @@ defs["igBeginChild"][2]["argsT"][2] = {} defs["igBeginChild"][2]["argsT"][2]["name"] = "size" defs["igBeginChild"][2]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][2]["argsT"][3] = {} -defs["igBeginChild"][2]["argsT"][3]["name"] = "border" -defs["igBeginChild"][2]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][2]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][2]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][2]["argsT"][4] = {} -defs["igBeginChild"][2]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][2]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][2]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][2]["call_args"] = "(id,size,border,flags)" +defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][2]["call_args"] = "(id,size,child_flags,window_flags)" defs["igBeginChild"][2]["cimguiname"] = "igBeginChild" defs["igBeginChild"][2]["defaults"] = {} -defs["igBeginChild"][2]["defaults"]["border"] = "false" -defs["igBeginChild"][2]["defaults"]["flags"] = "0" +defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:342" +defs["igBeginChild"][2]["location"] = "imgui:388" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" -defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][2]["stname"] = "" -defs["igBeginChild"]["(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][2] -defs["igBeginChild"]["(const char*,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][1] -defs["igBeginChildFrame"] = {} -defs["igBeginChildFrame"][1] = {} -defs["igBeginChildFrame"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)" -defs["igBeginChildFrame"][1]["argsT"] = {} -defs["igBeginChildFrame"][1]["argsT"][1] = {} -defs["igBeginChildFrame"][1]["argsT"][1]["name"] = "id" -defs["igBeginChildFrame"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igBeginChildFrame"][1]["argsT"][2] = {} -defs["igBeginChildFrame"][1]["argsT"][2]["name"] = "size" -defs["igBeginChildFrame"][1]["argsT"][2]["type"] = "const ImVec2" -defs["igBeginChildFrame"][1]["argsT"][3] = {} -defs["igBeginChildFrame"][1]["argsT"][3]["name"] = "flags" -defs["igBeginChildFrame"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginChildFrame"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)" -defs["igBeginChildFrame"][1]["call_args"] = "(id,size,flags)" -defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["defaults"] = {} -defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" -defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui:874" -defs["igBeginChildFrame"][1]["namespace"] = "ImGui" -defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["ret"] = "bool" -defs["igBeginChildFrame"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiWindowFlags)" -defs["igBeginChildFrame"][1]["stname"] = "" -defs["igBeginChildFrame"]["(ImGuiID,const ImVec2,ImGuiWindowFlags)"] = defs["igBeginChildFrame"][1] +defs["igBeginChild"]["(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][2] +defs["igBeginChild"]["(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][1] defs["igBeginCombo"] = {} defs["igBeginCombo"][1] = {} defs["igBeginCombo"][1]["args"] = "(const char* label,const char* preview_value,ImGuiComboFlags flags)" @@ -6631,7 +7174,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:520" +defs["igBeginCombo"][1]["location"] = "imgui:570" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -6651,7 +7194,7 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:820" +defs["igBeginDisabled"][1]["location"] = "imgui:892" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -6671,7 +7214,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui:808" +defs["igBeginDragDropSource"][1]["location"] = "imgui:879" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -6687,7 +7230,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui:811" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:882" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -6703,13 +7246,29 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:445" +defs["igBeginGroup"][1]["location"] = "imgui:498" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" defs["igBeginGroup"][1]["signature"] = "()" defs["igBeginGroup"][1]["stname"] = "" defs["igBeginGroup"]["()"] = defs["igBeginGroup"][1] +defs["igBeginItemTooltip"] = {} +defs["igBeginItemTooltip"][1] = {} +defs["igBeginItemTooltip"][1]["args"] = "()" +defs["igBeginItemTooltip"][1]["argsT"] = {} +defs["igBeginItemTooltip"][1]["argsoriginal"] = "()" +defs["igBeginItemTooltip"][1]["call_args"] = "()" +defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["defaults"] = {} +defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" +defs["igBeginItemTooltip"][1]["location"] = "imgui:741" +defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" +defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["ret"] = "bool" +defs["igBeginItemTooltip"][1]["signature"] = "()" +defs["igBeginItemTooltip"][1]["stname"] = "" +defs["igBeginItemTooltip"]["()"] = defs["igBeginItemTooltip"][1] defs["igBeginListBox"] = {} defs["igBeginListBox"][1] = {} defs["igBeginListBox"][1]["args"] = "(const char* label,const ImVec2 size)" @@ -6726,7 +7285,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:632" +defs["igBeginListBox"][1]["location"] = "imgui:695" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -6742,7 +7301,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:658" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:721" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -6765,7 +7324,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:660" +defs["igBeginMenu"][1]["location"] = "imgui:723" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -6781,13 +7340,40 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:656" +defs["igBeginMenuBar"][1]["location"] = "imgui:719" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" defs["igBeginMenuBar"][1]["signature"] = "()" defs["igBeginMenuBar"][1]["stname"] = "" defs["igBeginMenuBar"]["()"] = defs["igBeginMenuBar"][1] +defs["igBeginMultiSelect"] = {} +defs["igBeginMultiSelect"][1] = {} +defs["igBeginMultiSelect"][1]["args"] = "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)" +defs["igBeginMultiSelect"][1]["argsT"] = {} +defs["igBeginMultiSelect"][1]["argsT"][1] = {} +defs["igBeginMultiSelect"][1]["argsT"][1]["name"] = "flags" +defs["igBeginMultiSelect"][1]["argsT"][1]["type"] = "ImGuiMultiSelectFlags" +defs["igBeginMultiSelect"][1]["argsT"][2] = {} +defs["igBeginMultiSelect"][1]["argsT"][2]["name"] = "selection_size" +defs["igBeginMultiSelect"][1]["argsT"][2]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsT"][3] = {} +defs["igBeginMultiSelect"][1]["argsT"][3]["name"] = "items_count" +defs["igBeginMultiSelect"][1]["argsT"][3]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsoriginal"] = "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)" +defs["igBeginMultiSelect"][1]["call_args"] = "(flags,selection_size,items_count)" +defs["igBeginMultiSelect"][1]["cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["defaults"] = {} +defs["igBeginMultiSelect"][1]["defaults"]["items_count"] = "-1" +defs["igBeginMultiSelect"][1]["defaults"]["selection_size"] = "-1" +defs["igBeginMultiSelect"][1]["funcname"] = "BeginMultiSelect" +defs["igBeginMultiSelect"][1]["location"] = "imgui:684" +defs["igBeginMultiSelect"][1]["namespace"] = "ImGui" +defs["igBeginMultiSelect"][1]["ov_cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igBeginMultiSelect"][1]["signature"] = "(ImGuiMultiSelectFlags,int,int)" +defs["igBeginMultiSelect"][1]["stname"] = "" +defs["igBeginMultiSelect"]["(ImGuiMultiSelectFlags,int,int)"] = defs["igBeginMultiSelect"][1] defs["igBeginPopup"] = {} defs["igBeginPopup"][1] = {} defs["igBeginPopup"][1]["args"] = "(const char* str_id,ImGuiWindowFlags flags)" @@ -6804,7 +7390,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:684" +defs["igBeginPopup"][1]["location"] = "imgui:755" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -6828,7 +7414,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:706" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:777" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -6852,7 +7438,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:708" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:779" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -6876,7 +7462,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:707" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:778" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -6903,7 +7489,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:685" +defs["igBeginPopupModal"][1]["location"] = "imgui:756" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -6926,7 +7512,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:786" +defs["igBeginTabBar"][1]["location"] = "imgui:857" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -6953,7 +7539,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:788" +defs["igBeginTabItem"][1]["location"] = "imgui:859" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -6962,13 +7548,13 @@ defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTable"] = {} defs["igBeginTable"][1] = {} -defs["igBeginTable"][1]["args"] = "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" +defs["igBeginTable"][1]["args"] = "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" defs["igBeginTable"][1]["argsT"] = {} defs["igBeginTable"][1]["argsT"][1] = {} defs["igBeginTable"][1]["argsT"][1]["name"] = "str_id" defs["igBeginTable"][1]["argsT"][1]["type"] = "const char*" defs["igBeginTable"][1]["argsT"][2] = {} -defs["igBeginTable"][1]["argsT"][2]["name"] = "column" +defs["igBeginTable"][1]["argsT"][2]["name"] = "columns" defs["igBeginTable"][1]["argsT"][2]["type"] = "int" defs["igBeginTable"][1]["argsT"][3] = {} defs["igBeginTable"][1]["argsT"][3]["name"] = "flags" @@ -6979,15 +7565,15 @@ defs["igBeginTable"][1]["argsT"][4]["type"] = "const ImVec2" defs["igBeginTable"][1]["argsT"][5] = {} defs["igBeginTable"][1]["argsT"][5]["name"] = "inner_width" defs["igBeginTable"][1]["argsT"][5]["type"] = "float" -defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" -defs["igBeginTable"][1]["call_args"] = "(str_id,column,flags,outer_size,inner_width)" +defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" +defs["igBeginTable"][1]["call_args"] = "(str_id,columns,flags,outer_size,inner_width)" defs["igBeginTable"][1]["cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["defaults"] = {} defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:739" +defs["igBeginTable"][1]["location"] = "imgui:808" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -7003,10 +7589,10 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:667" +defs["igBeginTooltip"][1]["location"] = "imgui:732" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" -defs["igBeginTooltip"][1]["ret"] = "void" +defs["igBeginTooltip"][1]["ret"] = "bool" defs["igBeginTooltip"][1]["signature"] = "()" defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] @@ -7019,7 +7605,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:510" +defs["igBullet"][1]["location"] = "imgui:556" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -7042,7 +7628,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:494" +defs["igBulletText"][1]["location"] = "imgui:539" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -7064,7 +7650,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:495" +defs["igBulletTextV"][1]["location"] = "imgui:540" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -7087,7 +7673,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:500" +defs["igButton"][1]["location"] = "imgui:546" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -7103,7 +7689,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:417" +defs["igCalcItemWidth"][1]["location"] = "imgui:455" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -7137,7 +7723,7 @@ defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui:878" +defs["igCalcTextSize"][1]["location"] = "imgui:950" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -7160,7 +7746,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:504" +defs["igCheckbox"][1]["location"] = "imgui:550" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -7185,7 +7771,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:505" +defs["igCheckboxFlags"][1]["location"] = "imgui:551" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -7208,7 +7794,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:506" +defs["igCheckboxFlags"][2]["location"] = "imgui:552" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -7225,7 +7811,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:699" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:770" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -7248,7 +7834,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:616" +defs["igCollapsingHeader"][1]["location"] = "imgui:666" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -7272,7 +7858,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:617" +defs["igCollapsingHeader"][2]["location"] = "imgui:667" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -7303,7 +7889,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:597" +defs["igColorButton"][1]["location"] = "imgui:647" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -7322,7 +7908,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:882" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:954" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -7359,7 +7945,7 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:884" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:956" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -7396,7 +7982,7 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:883" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:955" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -7418,7 +8004,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:881" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:953" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -7445,7 +8031,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:593" +defs["igColorEdit3"][1]["location"] = "imgui:643" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -7471,7 +8057,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:594" +defs["igColorEdit4"][1]["location"] = "imgui:644" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -7497,7 +8083,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:595" +defs["igColorPicker3"][1]["location"] = "imgui:645" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -7527,7 +8113,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:596" +defs["igColorPicker4"][1]["location"] = "imgui:646" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -7536,7 +8122,7 @@ defs["igColorPicker4"][1]["stname"] = "" defs["igColorPicker4"]["(const char*,float[4],ImGuiColorEditFlags,const float*)"] = defs["igColorPicker4"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} -defs["igColumns"][1]["args"] = "(int count,const char* id,bool border)" +defs["igColumns"][1]["args"] = "(int count,const char* id,bool borders)" defs["igColumns"][1]["argsT"] = {} defs["igColumns"][1]["argsT"][1] = {} defs["igColumns"][1]["argsT"][1]["name"] = "count" @@ -7545,17 +8131,17 @@ defs["igColumns"][1]["argsT"][2] = {} defs["igColumns"][1]["argsT"][2]["name"] = "id" defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} -defs["igColumns"][1]["argsT"][3]["name"] = "border" +defs["igColumns"][1]["argsT"][3]["name"] = "borders" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" -defs["igColumns"][1]["call_args"] = "(count,id,border)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool borders=true)" +defs["igColumns"][1]["call_args"] = "(count,id,borders)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} -defs["igColumns"][1]["defaults"]["border"] = "true" +defs["igColumns"][1]["defaults"]["borders"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:775" +defs["igColumns"][1]["location"] = "imgui:846" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -7587,7 +8173,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:522" +defs["igCombo"][1]["location"] = "imgui:572" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -7614,14 +8200,14 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:523" +defs["igCombo"][2]["location"] = "imgui:573" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" defs["igCombo"][2]["signature"] = "(const char*,int*,const char*,int)" defs["igCombo"][2]["stname"] = "" defs["igCombo"][3] = {} -defs["igCombo"][3]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)" +defs["igCombo"][3]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)" defs["igCombo"][3]["argsT"] = {} defs["igCombo"][3]["argsT"][1] = {} defs["igCombo"][3]["argsT"][1]["name"] = "label" @@ -7630,12 +8216,12 @@ defs["igCombo"][3]["argsT"][2] = {} defs["igCombo"][3]["argsT"][2]["name"] = "current_item" defs["igCombo"][3]["argsT"][2]["type"] = "int*" defs["igCombo"][3]["argsT"][3] = {} -defs["igCombo"][3]["argsT"][3]["name"] = "items_getter" -defs["igCombo"][3]["argsT"][3]["ret"] = "bool" -defs["igCombo"][3]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igCombo"][3]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igCombo"][3]["argsT"][3]["name"] = "getter" +defs["igCombo"][3]["argsT"][3]["ret"] = "const char*" +defs["igCombo"][3]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igCombo"][3]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igCombo"][3]["argsT"][4] = {} -defs["igCombo"][3]["argsT"][4]["name"] = "data" +defs["igCombo"][3]["argsT"][4]["name"] = "user_data" defs["igCombo"][3]["argsT"][4]["type"] = "void*" defs["igCombo"][3]["argsT"][5] = {} defs["igCombo"][3]["argsT"][5]["name"] = "items_count" @@ -7643,20 +8229,20 @@ defs["igCombo"][3]["argsT"][5]["type"] = "int" defs["igCombo"][3]["argsT"][6] = {} defs["igCombo"][3]["argsT"][6]["name"] = "popup_max_height_in_items" defs["igCombo"][3]["argsT"][6]["type"] = "int" -defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)" -defs["igCombo"][3]["call_args"] = "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)" +defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)" +defs["igCombo"][3]["call_args"] = "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)" defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:524" +defs["igCombo"][3]["location"] = "imgui:574" defs["igCombo"][3]["namespace"] = "ImGui" -defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnBoolPtr" +defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" -defs["igCombo"][3]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igCombo"][3]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igCombo"][3]["stname"] = "" -defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] +defs["igCombo"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] defs["igCreateContext"] = {} defs["igCreateContext"][1] = {} @@ -7671,7 +8257,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:288" +defs["igCreateContext"][1]["location"] = "imgui:323" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -7708,13 +8294,93 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:935" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1037" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" defs["igDebugCheckVersionAndDataLayout"][1]["signature"] = "(const char*,size_t,size_t,size_t,size_t,size_t,size_t)" defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "" defs["igDebugCheckVersionAndDataLayout"]["(const char*,size_t,size_t,size_t,size_t,size_t,size_t)"] = defs["igDebugCheckVersionAndDataLayout"][1] +defs["igDebugFlashStyleColor"] = {} +defs["igDebugFlashStyleColor"][1] = {} +defs["igDebugFlashStyleColor"][1]["args"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["argsT"] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1]["name"] = "idx" +defs["igDebugFlashStyleColor"][1]["argsT"][1]["type"] = "ImGuiCol" +defs["igDebugFlashStyleColor"][1]["argsoriginal"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" +defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["defaults"] = {} +defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1035" +defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" +defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["ret"] = "void" +defs["igDebugFlashStyleColor"][1]["signature"] = "(ImGuiCol)" +defs["igDebugFlashStyleColor"][1]["stname"] = "" +defs["igDebugFlashStyleColor"]["(ImGuiCol)"] = defs["igDebugFlashStyleColor"][1] +defs["igDebugLog"] = {} +defs["igDebugLog"][1] = {} +defs["igDebugLog"][1]["args"] = "(const char* fmt,...)" +defs["igDebugLog"][1]["argsT"] = {} +defs["igDebugLog"][1]["argsT"][1] = {} +defs["igDebugLog"][1]["argsT"][1]["name"] = "fmt" +defs["igDebugLog"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugLog"][1]["argsT"][2] = {} +defs["igDebugLog"][1]["argsT"][2]["name"] = "..." +defs["igDebugLog"][1]["argsT"][2]["type"] = "..." +defs["igDebugLog"][1]["argsoriginal"] = "(const char* fmt,...)" +defs["igDebugLog"][1]["call_args"] = "(fmt,...)" +defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" +defs["igDebugLog"][1]["defaults"] = {} +defs["igDebugLog"][1]["funcname"] = "DebugLog" +defs["igDebugLog"][1]["isvararg"] = "...)" +defs["igDebugLog"][1]["location"] = "imgui:1039" +defs["igDebugLog"][1]["namespace"] = "ImGui" +defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" +defs["igDebugLog"][1]["ret"] = "void" +defs["igDebugLog"][1]["signature"] = "(const char*,...)" +defs["igDebugLog"][1]["stname"] = "" +defs["igDebugLog"]["(const char*,...)"] = defs["igDebugLog"][1] +defs["igDebugLogV"] = {} +defs["igDebugLogV"][1] = {} +defs["igDebugLogV"][1]["args"] = "(const char* fmt,va_list args)" +defs["igDebugLogV"][1]["argsT"] = {} +defs["igDebugLogV"][1]["argsT"][1] = {} +defs["igDebugLogV"][1]["argsT"][1]["name"] = "fmt" +defs["igDebugLogV"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugLogV"][1]["argsT"][2] = {} +defs["igDebugLogV"][1]["argsT"][2]["name"] = "args" +defs["igDebugLogV"][1]["argsT"][2]["type"] = "va_list" +defs["igDebugLogV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" +defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" +defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" +defs["igDebugLogV"][1]["defaults"] = {} +defs["igDebugLogV"][1]["funcname"] = "DebugLogV" +defs["igDebugLogV"][1]["location"] = "imgui:1040" +defs["igDebugLogV"][1]["namespace"] = "ImGui" +defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" +defs["igDebugLogV"][1]["ret"] = "void" +defs["igDebugLogV"][1]["signature"] = "(const char*,va_list)" +defs["igDebugLogV"][1]["stname"] = "" +defs["igDebugLogV"]["(const char*,va_list)"] = defs["igDebugLogV"][1] +defs["igDebugStartItemPicker"] = {} +defs["igDebugStartItemPicker"][1] = {} +defs["igDebugStartItemPicker"][1]["args"] = "()" +defs["igDebugStartItemPicker"][1]["argsT"] = {} +defs["igDebugStartItemPicker"][1]["argsoriginal"] = "()" +defs["igDebugStartItemPicker"][1]["call_args"] = "()" +defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" +defs["igDebugStartItemPicker"][1]["defaults"] = {} +defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1036" +defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" +defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" +defs["igDebugStartItemPicker"][1]["ret"] = "void" +defs["igDebugStartItemPicker"][1]["signature"] = "()" +defs["igDebugStartItemPicker"][1]["stname"] = "" +defs["igDebugStartItemPicker"]["()"] = defs["igDebugStartItemPicker"][1] defs["igDebugTextEncoding"] = {} defs["igDebugTextEncoding"][1] = {} defs["igDebugTextEncoding"][1]["args"] = "(const char* text)" @@ -7727,7 +8393,7 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:934" +defs["igDebugTextEncoding"][1]["location"] = "imgui:1034" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -7747,7 +8413,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:289" +defs["igDestroyContext"][1]["location"] = "imgui:324" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -7789,7 +8455,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:538" +defs["igDragFloat"][1]["location"] = "imgui:588" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -7831,7 +8497,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:539" +defs["igDragFloat2"][1]["location"] = "imgui:589" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -7873,7 +8539,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:540" +defs["igDragFloat3"][1]["location"] = "imgui:590" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -7915,7 +8581,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:541" +defs["igDragFloat4"][1]["location"] = "imgui:591" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -7964,7 +8630,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:542" +defs["igDragFloatRange2"][1]["location"] = "imgui:592" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -8006,7 +8672,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:543" +defs["igDragInt"][1]["location"] = "imgui:593" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -8048,7 +8714,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:544" +defs["igDragInt2"][1]["location"] = "imgui:594" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -8090,7 +8756,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:545" +defs["igDragInt3"][1]["location"] = "imgui:595" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -8132,7 +8798,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:546" +defs["igDragInt4"][1]["location"] = "imgui:596" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -8181,7 +8847,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:547" +defs["igDragIntRange2"][1]["location"] = "imgui:597" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -8226,7 +8892,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:548" +defs["igDragScalar"][1]["location"] = "imgui:598" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -8274,7 +8940,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:549" +defs["igDragScalarN"][1]["location"] = "imgui:599" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -8293,7 +8959,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:442" +defs["igDummy"][1]["location"] = "imgui:495" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -8309,7 +8975,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:331" +defs["igEnd"][1]["location"] = "imgui:367" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -8325,29 +8991,13 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:343" +defs["igEndChild"][1]["location"] = "imgui:389" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" defs["igEndChild"][1]["signature"] = "()" defs["igEndChild"][1]["stname"] = "" defs["igEndChild"]["()"] = defs["igEndChild"][1] -defs["igEndChildFrame"] = {} -defs["igEndChildFrame"][1] = {} -defs["igEndChildFrame"][1]["args"] = "()" -defs["igEndChildFrame"][1]["argsT"] = {} -defs["igEndChildFrame"][1]["argsoriginal"] = "()" -defs["igEndChildFrame"][1]["call_args"] = "()" -defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["defaults"] = {} -defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui:875" -defs["igEndChildFrame"][1]["namespace"] = "ImGui" -defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["ret"] = "void" -defs["igEndChildFrame"][1]["signature"] = "()" -defs["igEndChildFrame"][1]["stname"] = "" -defs["igEndChildFrame"]["()"] = defs["igEndChildFrame"][1] defs["igEndCombo"] = {} defs["igEndCombo"][1] = {} defs["igEndCombo"][1]["args"] = "()" @@ -8357,7 +9007,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:521" +defs["igEndCombo"][1]["location"] = "imgui:571" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -8373,7 +9023,7 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:821" +defs["igEndDisabled"][1]["location"] = "imgui:893" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -8389,7 +9039,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui:810" +defs["igEndDragDropSource"][1]["location"] = "imgui:881" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -8405,7 +9055,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui:813" +defs["igEndDragDropTarget"][1]["location"] = "imgui:884" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -8421,7 +9071,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:297" +defs["igEndFrame"][1]["location"] = "imgui:333" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -8437,7 +9087,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:446" +defs["igEndGroup"][1]["location"] = "imgui:499" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -8453,7 +9103,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:633" +defs["igEndListBox"][1]["location"] = "imgui:696" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -8469,7 +9119,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:659" +defs["igEndMainMenuBar"][1]["location"] = "imgui:722" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -8485,7 +9135,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:661" +defs["igEndMenu"][1]["location"] = "imgui:724" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -8501,13 +9151,29 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:657" +defs["igEndMenuBar"][1]["location"] = "imgui:720" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" defs["igEndMenuBar"][1]["signature"] = "()" defs["igEndMenuBar"][1]["stname"] = "" defs["igEndMenuBar"]["()"] = defs["igEndMenuBar"][1] +defs["igEndMultiSelect"] = {} +defs["igEndMultiSelect"][1] = {} +defs["igEndMultiSelect"][1]["args"] = "()" +defs["igEndMultiSelect"][1]["argsT"] = {} +defs["igEndMultiSelect"][1]["argsoriginal"] = "()" +defs["igEndMultiSelect"][1]["call_args"] = "()" +defs["igEndMultiSelect"][1]["cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["defaults"] = {} +defs["igEndMultiSelect"][1]["funcname"] = "EndMultiSelect" +defs["igEndMultiSelect"][1]["location"] = "imgui:685" +defs["igEndMultiSelect"][1]["namespace"] = "ImGui" +defs["igEndMultiSelect"][1]["ov_cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igEndMultiSelect"][1]["signature"] = "()" +defs["igEndMultiSelect"][1]["stname"] = "" +defs["igEndMultiSelect"]["()"] = defs["igEndMultiSelect"][1] defs["igEndPopup"] = {} defs["igEndPopup"][1] = {} defs["igEndPopup"][1]["args"] = "()" @@ -8517,7 +9183,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:686" +defs["igEndPopup"][1]["location"] = "imgui:757" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -8533,7 +9199,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:787" +defs["igEndTabBar"][1]["location"] = "imgui:858" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -8549,7 +9215,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:789" +defs["igEndTabItem"][1]["location"] = "imgui:860" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -8565,7 +9231,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:740" +defs["igEndTable"][1]["location"] = "imgui:809" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -8581,7 +9247,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:668" +defs["igEndTooltip"][1]["location"] = "imgui:733" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -8606,7 +9272,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:942" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1048" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -8622,7 +9288,7 @@ defs["igGetBackgroundDrawList"][1]["call_args"] = "()" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui:862" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:936" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -8638,7 +9304,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui:921" +defs["igGetClipboardText"][1]["location"] = "imgui:1020" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -8661,7 +9327,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:426" +defs["igGetColorU32"][1]["location"] = "imgui:464" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -8678,31 +9344,35 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:427" +defs["igGetColorU32"][2]["location"] = "imgui:465" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" defs["igGetColorU32"][2]["signature"] = "(const ImVec4)" defs["igGetColorU32"][2]["stname"] = "" defs["igGetColorU32"][3] = {} -defs["igGetColorU32"][3]["args"] = "(ImU32 col)" +defs["igGetColorU32"][3]["args"] = "(ImU32 col,float alpha_mul)" defs["igGetColorU32"][3]["argsT"] = {} defs["igGetColorU32"][3]["argsT"][1] = {} defs["igGetColorU32"][3]["argsT"][1]["name"] = "col" defs["igGetColorU32"][3]["argsT"][1]["type"] = "ImU32" -defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col)" -defs["igGetColorU32"][3]["call_args"] = "(col)" +defs["igGetColorU32"][3]["argsT"][2] = {} +defs["igGetColorU32"][3]["argsT"][2]["name"] = "alpha_mul" +defs["igGetColorU32"][3]["argsT"][2]["type"] = "float" +defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col,float alpha_mul=1.0f)" +defs["igGetColorU32"][3]["call_args"] = "(col,alpha_mul)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} +defs["igGetColorU32"][3]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:428" +defs["igGetColorU32"][3]["location"] = "imgui:466" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" -defs["igGetColorU32"][3]["signature"] = "(ImU32)" +defs["igGetColorU32"][3]["signature"] = "(ImU32,float)" defs["igGetColorU32"][3]["stname"] = "" defs["igGetColorU32"]["(ImGuiCol,float)"] = defs["igGetColorU32"][1] -defs["igGetColorU32"]["(ImU32)"] = defs["igGetColorU32"][3] +defs["igGetColorU32"]["(ImU32,float)"] = defs["igGetColorU32"][3] defs["igGetColorU32"]["(const ImVec4)"] = defs["igGetColorU32"][2] defs["igGetColumnIndex"] = {} defs["igGetColumnIndex"][1] = {} @@ -8713,7 +9383,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:777" +defs["igGetColumnIndex"][1]["location"] = "imgui:848" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -8733,7 +9403,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:780" +defs["igGetColumnOffset"][1]["location"] = "imgui:851" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -8753,7 +9423,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:778" +defs["igGetColumnWidth"][1]["location"] = "imgui:849" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -8769,7 +9439,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:782" +defs["igGetColumnsCount"][1]["location"] = "imgui:853" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -8788,7 +9458,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:380" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:481" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -8796,26 +9466,6 @@ defs["igGetContentRegionAvail"][1]["ret"] = "void" defs["igGetContentRegionAvail"][1]["signature"] = "()" defs["igGetContentRegionAvail"][1]["stname"] = "" defs["igGetContentRegionAvail"]["()"] = defs["igGetContentRegionAvail"][1] -defs["igGetContentRegionMax"] = {} -defs["igGetContentRegionMax"][1] = {} -defs["igGetContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetContentRegionMax"][1]["argsT"] = {} -defs["igGetContentRegionMax"][1]["argsT"][1] = {} -defs["igGetContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetContentRegionMax"][1]["call_args"] = "()" -defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["defaults"] = {} -defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui:381" -defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["ret"] = "void" -defs["igGetContentRegionMax"][1]["signature"] = "()" -defs["igGetContentRegionMax"][1]["stname"] = "" -defs["igGetContentRegionMax"]["()"] = defs["igGetContentRegionMax"][1] defs["igGetCurrentContext"] = {} defs["igGetCurrentContext"][1] = {} defs["igGetCurrentContext"][1]["args"] = "()" @@ -8825,7 +9475,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:290" +defs["igGetCurrentContext"][1]["location"] = "imgui:325" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -8844,7 +9494,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:447" +defs["igGetCursorPos"][1]["location"] = "imgui:482" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -8861,7 +9511,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:448" +defs["igGetCursorPosX"][1]["location"] = "imgui:483" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -8877,7 +9527,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:449" +defs["igGetCursorPosY"][1]["location"] = "imgui:484" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -8896,7 +9546,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:454" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:479" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -8916,7 +9566,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:453" +defs["igGetCursorStartPos"][1]["location"] = "imgui:488" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -8933,7 +9583,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui:814" +defs["igGetDragDropPayload"][1]["location"] = "imgui:885" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -8949,7 +9599,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:299" +defs["igGetDrawData"][1]["location"] = "imgui:335" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -8965,7 +9615,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui:870" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:944" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -8981,7 +9631,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:423" +defs["igGetFont"][1]["location"] = "imgui:461" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -8997,7 +9647,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:424" +defs["igGetFontSize"][1]["location"] = "imgui:462" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -9016,7 +9666,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:425" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:463" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -9033,7 +9683,7 @@ defs["igGetForegroundDrawList"][1]["call_args"] = "()" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui:863" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:937" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -9049,7 +9699,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui:869" +defs["igGetFrameCount"][1]["location"] = "imgui:943" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -9065,7 +9715,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:459" +defs["igGetFrameHeight"][1]["location"] = "imgui:503" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -9081,7 +9731,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:460" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:504" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -9100,7 +9750,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:478" +defs["igGetID"][1]["location"] = "imgui:522" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -9120,7 +9770,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:479" +defs["igGetID"][2]["location"] = "imgui:523" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -9137,15 +9787,33 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:480" +defs["igGetID"][3]["location"] = "imgui:524" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" defs["igGetID"][3]["signature"] = "(const void*)" defs["igGetID"][3]["stname"] = "" +defs["igGetID"][4] = {} +defs["igGetID"][4]["args"] = "(int int_id)" +defs["igGetID"][4]["argsT"] = {} +defs["igGetID"][4]["argsT"][1] = {} +defs["igGetID"][4]["argsT"][1]["name"] = "int_id" +defs["igGetID"][4]["argsT"][1]["type"] = "int" +defs["igGetID"][4]["argsoriginal"] = "(int int_id)" +defs["igGetID"][4]["call_args"] = "(int_id)" +defs["igGetID"][4]["cimguiname"] = "igGetID" +defs["igGetID"][4]["defaults"] = {} +defs["igGetID"][4]["funcname"] = "GetID" +defs["igGetID"][4]["location"] = "imgui:525" +defs["igGetID"][4]["namespace"] = "ImGui" +defs["igGetID"][4]["ov_cimguiname"] = "igGetID_Int" +defs["igGetID"][4]["ret"] = "ImGuiID" +defs["igGetID"][4]["signature"] = "(int)" +defs["igGetID"][4]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] +defs["igGetID"]["(int)"] = defs["igGetID"][4] defs["igGetIO"] = {} defs["igGetIO"][1] = {} defs["igGetIO"][1]["args"] = "()" @@ -9155,7 +9823,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:294" +defs["igGetIO"][1]["location"] = "imgui:329" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -9172,7 +9840,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "imgui:849" +defs["igGetItemID"][1]["location"] = "imgui:924" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -9191,7 +9859,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui:851" +defs["igGetItemRectMax"][1]["location"] = "imgui:926" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -9211,7 +9879,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui:850" +defs["igGetItemRectMin"][1]["location"] = "imgui:925" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -9231,7 +9899,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui:852" +defs["igGetItemRectSize"][1]["location"] = "imgui:927" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -9239,25 +9907,6 @@ defs["igGetItemRectSize"][1]["ret"] = "void" defs["igGetItemRectSize"][1]["signature"] = "()" defs["igGetItemRectSize"][1]["stname"] = "" defs["igGetItemRectSize"]["()"] = defs["igGetItemRectSize"][1] -defs["igGetKeyIndex"] = {} -defs["igGetKeyIndex"][1] = {} -defs["igGetKeyIndex"][1]["args"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["argsT"] = {} -defs["igGetKeyIndex"][1]["argsT"][1] = {} -defs["igGetKeyIndex"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyIndex"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["call_args"] = "(key)" -defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["defaults"] = {} -defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:2957" -defs["igGetKeyIndex"][1]["namespace"] = "ImGui" -defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["ret"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" -defs["igGetKeyIndex"][1]["stname"] = "" -defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] defs["igGetKeyName"] = {} defs["igGetKeyName"][1] = {} defs["igGetKeyName"][1]["args"] = "(ImGuiKey key)" @@ -9270,7 +9919,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:895" +defs["igGetKeyName"][1]["location"] = "imgui:968" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -9295,7 +9944,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:894" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:967" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -9311,7 +9960,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:859" +defs["igGetMainViewport"][1]["location"] = "imgui:933" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -9330,7 +9979,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:906" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1005" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -9346,7 +9995,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui:915" +defs["igGetMouseCursor"][1]["location"] = "imgui:1014" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -9373,7 +10022,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui:913" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1012" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -9393,7 +10042,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui:910" +defs["igGetMousePos"][1]["location"] = "imgui:1009" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -9413,7 +10062,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:911" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1010" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -9421,6 +10070,23 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] +defs["igGetPlatformIO"] = {} +defs["igGetPlatformIO"][1] = {} +defs["igGetPlatformIO"][1]["args"] = "()" +defs["igGetPlatformIO"][1]["argsT"] = {} +defs["igGetPlatformIO"][1]["argsoriginal"] = "()" +defs["igGetPlatformIO"][1]["call_args"] = "()" +defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" +defs["igGetPlatformIO"][1]["defaults"] = {} +defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" +defs["igGetPlatformIO"][1]["location"] = "imgui:330" +defs["igGetPlatformIO"][1]["namespace"] = "ImGui" +defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" +defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" +defs["igGetPlatformIO"][1]["retref"] = "&" +defs["igGetPlatformIO"][1]["signature"] = "()" +defs["igGetPlatformIO"][1]["stname"] = "" +defs["igGetPlatformIO"]["()"] = defs["igGetPlatformIO"][1] defs["igGetScrollMaxX"] = {} defs["igGetScrollMaxX"][1] = {} defs["igGetScrollMaxX"][1]["args"] = "()" @@ -9430,7 +10096,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:392" +defs["igGetScrollMaxX"][1]["location"] = "imgui:430" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -9446,7 +10112,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:393" +defs["igGetScrollMaxY"][1]["location"] = "imgui:431" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -9462,7 +10128,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:388" +defs["igGetScrollX"][1]["location"] = "imgui:426" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -9478,7 +10144,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:389" +defs["igGetScrollY"][1]["location"] = "imgui:427" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -9494,7 +10160,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui:873" +defs["igGetStateStorage"][1]["location"] = "imgui:947" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -9510,7 +10176,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:295" +defs["igGetStyle"][1]["location"] = "imgui:331" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -9530,7 +10196,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui:871" +defs["igGetStyleColorName"][1]["location"] = "imgui:945" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -9549,7 +10215,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:429" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:467" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -9566,7 +10232,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:457" +defs["igGetTextLineHeight"][1]["location"] = "imgui:501" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -9582,7 +10248,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:458" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:502" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -9598,7 +10264,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui:868" +defs["igGetTime"][1]["location"] = "imgui:942" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -9614,7 +10280,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:615" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:665" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -9630,53 +10296,13 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:311" +defs["igGetVersion"][1]["location"] = "imgui:347" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" defs["igGetVersion"][1]["signature"] = "()" defs["igGetVersion"][1]["stname"] = "" defs["igGetVersion"]["()"] = defs["igGetVersion"][1] -defs["igGetWindowContentRegionMax"] = {} -defs["igGetWindowContentRegionMax"][1] = {} -defs["igGetWindowContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMax"][1]["argsT"] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["defaults"] = {} -defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:383" -defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["ret"] = "void" -defs["igGetWindowContentRegionMax"][1]["signature"] = "()" -defs["igGetWindowContentRegionMax"][1]["stname"] = "" -defs["igGetWindowContentRegionMax"]["()"] = defs["igGetWindowContentRegionMax"][1] -defs["igGetWindowContentRegionMin"] = {} -defs["igGetWindowContentRegionMin"][1] = {} -defs["igGetWindowContentRegionMin"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMin"][1]["argsT"] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMin"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["defaults"] = {} -defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:382" -defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["ret"] = "void" -defs["igGetWindowContentRegionMin"][1]["signature"] = "()" -defs["igGetWindowContentRegionMin"][1]["stname"] = "" -defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] defs["igGetWindowDrawList"] = {} defs["igGetWindowDrawList"][1] = {} defs["igGetWindowDrawList"][1]["args"] = "()" @@ -9686,7 +10312,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:351" +defs["igGetWindowDrawList"][1]["location"] = "imgui:397" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -9702,7 +10328,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:355" +defs["igGetWindowHeight"][1]["location"] = "imgui:401" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -9721,7 +10347,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:352" +defs["igGetWindowPos"][1]["location"] = "imgui:398" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -9741,7 +10367,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:353" +defs["igGetWindowSize"][1]["location"] = "imgui:399" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -9758,7 +10384,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:354" +defs["igGetWindowWidth"][1]["location"] = "imgui:400" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -9767,13 +10393,13 @@ defs["igGetWindowWidth"][1]["stname"] = "" defs["igGetWindowWidth"]["()"] = defs["igGetWindowWidth"][1] defs["igImage"] = {} defs["igImage"][1] = {} -defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" +defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" defs["igImage"][1]["argsT"] = {} defs["igImage"][1]["argsT"][1] = {} defs["igImage"][1]["argsT"][1]["name"] = "user_texture_id" defs["igImage"][1]["argsT"][1]["type"] = "ImTextureID" defs["igImage"][1]["argsT"][2] = {} -defs["igImage"][1]["argsT"][2]["name"] = "size" +defs["igImage"][1]["argsT"][2]["name"] = "image_size" defs["igImage"][1]["argsT"][2]["type"] = "const ImVec2" defs["igImage"][1]["argsT"][3] = {} defs["igImage"][1]["argsT"][3]["name"] = "uv0" @@ -9787,8 +10413,8 @@ defs["igImage"][1]["argsT"][5]["type"] = "const ImVec4" defs["igImage"][1]["argsT"][6] = {} defs["igImage"][1]["argsT"][6]["name"] = "border_col" defs["igImage"][1]["argsT"][6]["type"] = "const ImVec4" -defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" -defs["igImage"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,tint_col,border_col)" +defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" +defs["igImage"][1]["call_args"] = "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)" defs["igImage"][1]["cimguiname"] = "igImage" defs["igImage"][1]["defaults"] = {} defs["igImage"][1]["defaults"]["border_col"] = "ImVec4(0,0,0,0)" @@ -9796,7 +10422,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:514" +defs["igImage"][1]["location"] = "imgui:564" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -9805,7 +10431,7 @@ defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} -defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" defs["igImageButton"][1]["argsT"] = {} defs["igImageButton"][1]["argsT"][1] = {} defs["igImageButton"][1]["argsT"][1]["name"] = "str_id" @@ -9814,7 +10440,7 @@ defs["igImageButton"][1]["argsT"][2] = {} defs["igImageButton"][1]["argsT"][2]["name"] = "user_texture_id" defs["igImageButton"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButton"][1]["argsT"][3] = {} -defs["igImageButton"][1]["argsT"][3]["name"] = "size" +defs["igImageButton"][1]["argsT"][3]["name"] = "image_size" defs["igImageButton"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][4] = {} defs["igImageButton"][1]["argsT"][4]["name"] = "uv0" @@ -9828,8 +10454,8 @@ defs["igImageButton"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButton"][1]["argsT"][7] = {} defs["igImageButton"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButton"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" -defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)" +defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" +defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)" defs["igImageButton"][1]["cimguiname"] = "igImageButton" defs["igImageButton"][1]["defaults"] = {} defs["igImageButton"][1]["defaults"]["bg_col"] = "ImVec4(0,0,0,0)" @@ -9837,7 +10463,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:515" +defs["igImageButton"][1]["location"] = "imgui:565" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -9857,7 +10483,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:443" +defs["igIndent"][1]["location"] = "imgui:496" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -9895,7 +10521,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:586" +defs["igInputDouble"][1]["location"] = "imgui:636" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -9933,7 +10559,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:578" +defs["igInputFloat"][1]["location"] = "imgui:628" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -9963,7 +10589,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:579" +defs["igInputFloat2"][1]["location"] = "imgui:629" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -9993,7 +10619,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:580" +defs["igInputFloat3"][1]["location"] = "imgui:630" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -10023,7 +10649,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:581" +defs["igInputFloat4"][1]["location"] = "imgui:631" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -10057,7 +10683,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:582" +defs["igInputInt"][1]["location"] = "imgui:632" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -10083,7 +10709,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:583" +defs["igInputInt2"][1]["location"] = "imgui:633" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -10109,7 +10735,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:584" +defs["igInputInt3"][1]["location"] = "imgui:634" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -10135,7 +10761,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:585" +defs["igInputInt4"][1]["location"] = "imgui:635" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -10176,7 +10802,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:587" +defs["igInputScalar"][1]["location"] = "imgui:637" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -10220,7 +10846,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:588" +defs["igInputScalarN"][1]["location"] = "imgui:638" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -10257,7 +10883,7 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:575" +defs["igInputText"][1]["location"] = "imgui:625" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -10298,7 +10924,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:576" +defs["igInputTextMultiline"][1]["location"] = "imgui:626" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -10338,7 +10964,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:577" +defs["igInputTextWithHint"][1]["location"] = "imgui:627" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -10364,7 +10990,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:502" +defs["igInvisibleButton"][1]["location"] = "imgui:548" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -10380,7 +11006,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui:847" +defs["igIsAnyItemActive"][1]["location"] = "imgui:922" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -10396,7 +11022,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui:848" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:923" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -10412,7 +11038,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui:846" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:921" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -10428,7 +11054,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui:909" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1008" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -10444,7 +11070,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui:842" +defs["igIsItemActivated"][1]["location"] = "imgui:917" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -10460,7 +11086,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui:837" +defs["igIsItemActive"][1]["location"] = "imgui:912" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -10480,7 +11106,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui:839" +defs["igIsItemClicked"][1]["location"] = "imgui:914" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -10496,7 +11122,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui:843" +defs["igIsItemDeactivated"][1]["location"] = "imgui:918" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -10512,7 +11138,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:844" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:919" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -10528,7 +11154,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui:841" +defs["igIsItemEdited"][1]["location"] = "imgui:916" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -10544,7 +11170,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui:838" +defs["igIsItemFocused"][1]["location"] = "imgui:913" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -10564,7 +11190,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui:836" +defs["igIsItemHovered"][1]["location"] = "imgui:911" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -10580,13 +11206,29 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui:845" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:920" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" defs["igIsItemToggledOpen"][1]["signature"] = "()" defs["igIsItemToggledOpen"][1]["stname"] = "" defs["igIsItemToggledOpen"]["()"] = defs["igIsItemToggledOpen"][1] +defs["igIsItemToggledSelection"] = {} +defs["igIsItemToggledSelection"][1] = {} +defs["igIsItemToggledSelection"][1]["args"] = "()" +defs["igIsItemToggledSelection"][1]["argsT"] = {} +defs["igIsItemToggledSelection"][1]["argsoriginal"] = "()" +defs["igIsItemToggledSelection"][1]["call_args"] = "()" +defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" +defs["igIsItemToggledSelection"][1]["defaults"] = {} +defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" +defs["igIsItemToggledSelection"][1]["location"] = "imgui:687" +defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" +defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" +defs["igIsItemToggledSelection"][1]["ret"] = "bool" +defs["igIsItemToggledSelection"][1]["signature"] = "()" +defs["igIsItemToggledSelection"][1]["stname"] = "" +defs["igIsItemToggledSelection"]["()"] = defs["igIsItemToggledSelection"][1] defs["igIsItemVisible"] = {} defs["igIsItemVisible"][1] = {} defs["igIsItemVisible"][1]["args"] = "()" @@ -10596,13 +11238,32 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui:840" +defs["igIsItemVisible"][1]["location"] = "imgui:915" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" defs["igIsItemVisible"][1]["signature"] = "()" defs["igIsItemVisible"][1]["stname"] = "" defs["igIsItemVisible"]["()"] = defs["igIsItemVisible"][1] +defs["igIsKeyChordPressed"] = {} +defs["igIsKeyChordPressed"][1] = {} +defs["igIsKeyChordPressed"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["argsT"] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1]["name"] = "key_chord" +defs["igIsKeyChordPressed"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igIsKeyChordPressed"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" +defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["defaults"] = {} +defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:966" +defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" +defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["ret"] = "bool" +defs["igIsKeyChordPressed"][1]["signature"] = "(ImGuiKeyChord)" +defs["igIsKeyChordPressed"][1]["stname"] = "" +defs["igIsKeyChordPressed"]["(ImGuiKeyChord)"] = defs["igIsKeyChordPressed"][1] defs["igIsKeyDown"] = {} defs["igIsKeyDown"][1] = {} defs["igIsKeyDown"][1]["args"] = "(ImGuiKey key)" @@ -10615,7 +11276,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:891" +defs["igIsKeyDown"][1]["location"] = "imgui:963" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -10638,7 +11299,7 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui:892" +defs["igIsKeyPressed"][1]["location"] = "imgui:964" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -10657,7 +11318,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:893" +defs["igIsKeyReleased"][1]["location"] = "imgui:965" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -10680,7 +11341,7 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui:903" +defs["igIsMouseClicked"][1]["location"] = "imgui:1002" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -10699,7 +11360,7 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:905" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1004" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -10718,7 +11379,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui:902" +defs["igIsMouseDown"][1]["location"] = "imgui:1001" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -10741,7 +11402,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui:912" +defs["igIsMouseDragging"][1]["location"] = "imgui:1011" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -10767,7 +11428,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui:907" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1006" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -10787,7 +11448,7 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui:908" +defs["igIsMousePosValid"][1]["location"] = "imgui:1007" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -10806,7 +11467,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui:904" +defs["igIsMouseReleased"][1]["location"] = "imgui:1003" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -10829,7 +11490,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:714" +defs["igIsPopupOpen"][1]["location"] = "imgui:785" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -10848,7 +11509,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui:866" +defs["igIsRectVisible"][1]["location"] = "imgui:940" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -10868,7 +11529,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui:867" +defs["igIsRectVisible"][2]["location"] = "imgui:941" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -10885,7 +11546,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:347" +defs["igIsWindowAppearing"][1]["location"] = "imgui:393" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -10901,7 +11562,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:348" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:394" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -10921,7 +11582,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:349" +defs["igIsWindowFocused"][1]["location"] = "imgui:395" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -10941,7 +11602,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:350" +defs["igIsWindowHovered"][1]["location"] = "imgui:396" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -10967,7 +11628,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:492" +defs["igLabelText"][1]["location"] = "imgui:537" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -10992,7 +11653,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:493" +defs["igLabelTextV"][1]["location"] = "imgui:538" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -11024,14 +11685,14 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:634" +defs["igListBox"][1]["location"] = "imgui:697" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" defs["igListBox"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" defs["igListBox"][1]["stname"] = "" defs["igListBox"][2] = {} -defs["igListBox"][2]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)" +defs["igListBox"][2]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)" defs["igListBox"][2]["argsT"] = {} defs["igListBox"][2]["argsT"][1] = {} defs["igListBox"][2]["argsT"][1]["name"] = "label" @@ -11040,12 +11701,12 @@ defs["igListBox"][2]["argsT"][2] = {} defs["igListBox"][2]["argsT"][2]["name"] = "current_item" defs["igListBox"][2]["argsT"][2]["type"] = "int*" defs["igListBox"][2]["argsT"][3] = {} -defs["igListBox"][2]["argsT"][3]["name"] = "items_getter" -defs["igListBox"][2]["argsT"][3]["ret"] = "bool" -defs["igListBox"][2]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igListBox"][2]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igListBox"][2]["argsT"][3]["name"] = "getter" +defs["igListBox"][2]["argsT"][3]["ret"] = "const char*" +defs["igListBox"][2]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igListBox"][2]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igListBox"][2]["argsT"][4] = {} -defs["igListBox"][2]["argsT"][4]["name"] = "data" +defs["igListBox"][2]["argsT"][4]["name"] = "user_data" defs["igListBox"][2]["argsT"][4]["type"] = "void*" defs["igListBox"][2]["argsT"][5] = {} defs["igListBox"][2]["argsT"][5]["name"] = "items_count" @@ -11053,20 +11714,20 @@ defs["igListBox"][2]["argsT"][5]["type"] = "int" defs["igListBox"][2]["argsT"][6] = {} defs["igListBox"][2]["argsT"][6]["name"] = "height_in_items" defs["igListBox"][2]["argsT"][6]["type"] = "int" -defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)" -defs["igListBox"][2]["call_args"] = "(label,current_item,items_getter,data,items_count,height_in_items)" +defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)" +defs["igListBox"][2]["call_args"] = "(label,current_item,getter,user_data,items_count,height_in_items)" defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:635" +defs["igListBox"][2]["location"] = "imgui:698" defs["igListBox"][2]["namespace"] = "ImGui" -defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnBoolPtr" +defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" -defs["igListBox"][2]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igListBox"][2]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igListBox"][2]["stname"] = "" -defs["igListBox"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igListBox"][2] defs["igListBox"]["(const char*,int*,const char* const[],int,int)"] = defs["igListBox"][1] +defs["igListBox"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igListBox"][2] defs["igLoadIniSettingsFromDisk"] = {} defs["igLoadIniSettingsFromDisk"][1] = {} defs["igLoadIniSettingsFromDisk"][1]["args"] = "(const char* ini_filename)" @@ -11079,7 +11740,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:928" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1027" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -11102,7 +11763,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:929" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1028" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -11118,7 +11779,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui:799" +defs["igLogButtons"][1]["location"] = "imgui:870" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -11134,7 +11795,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui:798" +defs["igLogFinish"][1]["location"] = "imgui:869" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -11157,7 +11818,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:800" +defs["igLogText"][1]["location"] = "imgui:871" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -11180,7 +11841,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:801" +defs["igLogTextV"][1]["location"] = "imgui:872" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -11200,7 +11861,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui:797" +defs["igLogToClipboard"][1]["location"] = "imgui:868" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -11224,7 +11885,7 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui:796" +defs["igLogToFile"][1]["location"] = "imgui:867" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -11244,7 +11905,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui:795" +defs["igLogToTTY"][1]["location"] = "imgui:866" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -11263,7 +11924,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui:943" +defs["igMemAlloc"][1]["location"] = "imgui:1049" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -11282,7 +11943,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui:944" +defs["igMemFree"][1]["location"] = "imgui:1050" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -11313,7 +11974,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:662" +defs["igMenuItem"][1]["location"] = "imgui:725" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -11340,7 +12001,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:663" +defs["igMenuItem"][2]["location"] = "imgui:726" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -11357,7 +12018,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:296" +defs["igNewFrame"][1]["location"] = "imgui:332" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -11373,7 +12034,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:440" +defs["igNewLine"][1]["location"] = "imgui:493" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -11389,7 +12050,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:776" +defs["igNextColumn"][1]["location"] = "imgui:847" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -11412,7 +12073,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:696" +defs["igOpenPopup"][1]["location"] = "imgui:767" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -11433,7 +12094,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:697" +defs["igOpenPopup"][2]["location"] = "imgui:768" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -11458,7 +12119,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:698" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:769" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -11496,7 +12157,7 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["defaults"] = {} @@ -11507,7 +12168,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:641" +defs["igPlotHistogram"][1]["location"] = "imgui:704" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -11545,7 +12206,7 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["defaults"] = {} @@ -11555,7 +12216,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:642" +defs["igPlotHistogram"][2]["location"] = "imgui:705" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -11594,7 +12255,7 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["defaults"] = {} @@ -11605,7 +12266,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:639" +defs["igPlotLines"][1]["location"] = "imgui:702" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -11643,7 +12304,7 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["defaults"] = {} @@ -11653,7 +12314,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:640" +defs["igPlotLines"][2]["location"] = "imgui:703" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -11661,38 +12322,6 @@ defs["igPlotLines"][2]["signature"] = "(const char*,float(*)(void*,int),void*,in defs["igPlotLines"][2]["stname"] = "" defs["igPlotLines"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotLines"][1] defs["igPlotLines"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotLines"][2] -defs["igPopAllowKeyboardFocus"] = {} -defs["igPopAllowKeyboardFocus"][1] = {} -defs["igPopAllowKeyboardFocus"][1]["args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPopAllowKeyboardFocus"][1]["argsoriginal"] = "()" -defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:409" -defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPopAllowKeyboardFocus"][1]["signature"] = "()" -defs["igPopAllowKeyboardFocus"][1]["stname"] = "" -defs["igPopAllowKeyboardFocus"]["()"] = defs["igPopAllowKeyboardFocus"][1] -defs["igPopButtonRepeat"] = {} -defs["igPopButtonRepeat"][1] = {} -defs["igPopButtonRepeat"][1]["args"] = "()" -defs["igPopButtonRepeat"][1]["argsT"] = {} -defs["igPopButtonRepeat"][1]["argsoriginal"] = "()" -defs["igPopButtonRepeat"][1]["call_args"] = "()" -defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["defaults"] = {} -defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui:411" -defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["ret"] = "void" -defs["igPopButtonRepeat"][1]["signature"] = "()" -defs["igPopButtonRepeat"][1]["stname"] = "" -defs["igPopButtonRepeat"]["()"] = defs["igPopButtonRepeat"][1] defs["igPopClipRect"] = {} defs["igPopClipRect"][1] = {} defs["igPopClipRect"][1]["args"] = "()" @@ -11702,7 +12331,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui:826" +defs["igPopClipRect"][1]["location"] = "imgui:898" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -11718,7 +12347,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:401" +defs["igPopFont"][1]["location"] = "imgui:439" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -11734,13 +12363,29 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:477" +defs["igPopID"][1]["location"] = "imgui:521" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" defs["igPopID"][1]["signature"] = "()" defs["igPopID"][1]["stname"] = "" defs["igPopID"]["()"] = defs["igPopID"][1] +defs["igPopItemFlag"] = {} +defs["igPopItemFlag"][1] = {} +defs["igPopItemFlag"][1]["args"] = "()" +defs["igPopItemFlag"][1]["argsT"] = {} +defs["igPopItemFlag"][1]["argsoriginal"] = "()" +defs["igPopItemFlag"][1]["call_args"] = "()" +defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" +defs["igPopItemFlag"][1]["defaults"] = {} +defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" +defs["igPopItemFlag"][1]["location"] = "imgui:449" +defs["igPopItemFlag"][1]["namespace"] = "ImGui" +defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" +defs["igPopItemFlag"][1]["ret"] = "void" +defs["igPopItemFlag"][1]["signature"] = "()" +defs["igPopItemFlag"][1]["stname"] = "" +defs["igPopItemFlag"]["()"] = defs["igPopItemFlag"][1] defs["igPopItemWidth"] = {} defs["igPopItemWidth"][1] = {} defs["igPopItemWidth"][1]["args"] = "()" @@ -11750,7 +12395,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:415" +defs["igPopItemWidth"][1]["location"] = "imgui:453" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -11770,7 +12415,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:404" +defs["igPopStyleColor"][1]["location"] = "imgui:442" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -11790,7 +12435,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:407" +defs["igPopStyleVar"][1]["location"] = "imgui:447" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -11806,7 +12451,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:419" +defs["igPopTextWrapPos"][1]["location"] = "imgui:457" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -11826,58 +12471,20 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:509" +defs["igProgressBar"][1]["location"] = "imgui:555" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" defs["igProgressBar"][1]["signature"] = "(float,const ImVec2,const char*)" defs["igProgressBar"][1]["stname"] = "" defs["igProgressBar"]["(float,const ImVec2,const char*)"] = defs["igProgressBar"][1] -defs["igPushAllowKeyboardFocus"] = {} -defs["igPushAllowKeyboardFocus"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["args"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["name"] = "allow_keyboard_focus" -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["type"] = "bool" -defs["igPushAllowKeyboardFocus"][1]["argsoriginal"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:408" -defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPushAllowKeyboardFocus"][1]["signature"] = "(bool)" -defs["igPushAllowKeyboardFocus"][1]["stname"] = "" -defs["igPushAllowKeyboardFocus"]["(bool)"] = defs["igPushAllowKeyboardFocus"][1] -defs["igPushButtonRepeat"] = {} -defs["igPushButtonRepeat"][1] = {} -defs["igPushButtonRepeat"][1]["args"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["argsT"] = {} -defs["igPushButtonRepeat"][1]["argsT"][1] = {} -defs["igPushButtonRepeat"][1]["argsT"][1]["name"] = "repeat" -defs["igPushButtonRepeat"][1]["argsT"][1]["type"] = "bool" -defs["igPushButtonRepeat"][1]["argsoriginal"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" -defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["defaults"] = {} -defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui:410" -defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["ret"] = "void" -defs["igPushButtonRepeat"][1]["signature"] = "(bool)" -defs["igPushButtonRepeat"][1]["stname"] = "" -defs["igPushButtonRepeat"]["(bool)"] = defs["igPushButtonRepeat"][1] defs["igPushClipRect"] = {} defs["igPushClipRect"][1] = {} defs["igPushClipRect"][1]["args"] = "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)" @@ -11896,7 +12503,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui:825" +defs["igPushClipRect"][1]["location"] = "imgui:897" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -11915,7 +12522,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:400" +defs["igPushFont"][1]["location"] = "imgui:438" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -11934,7 +12541,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:473" +defs["igPushID"][1]["location"] = "imgui:517" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -11954,7 +12561,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:474" +defs["igPushID"][2]["location"] = "imgui:518" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -11971,7 +12578,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:475" +defs["igPushID"][3]["location"] = "imgui:519" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -11988,7 +12595,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:476" +defs["igPushID"][4]["location"] = "imgui:520" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -11998,6 +12605,28 @@ defs["igPushID"]["(const char*)"] = defs["igPushID"][1] defs["igPushID"]["(const char*,const char*)"] = defs["igPushID"][2] defs["igPushID"]["(const void*)"] = defs["igPushID"][3] defs["igPushID"]["(int)"] = defs["igPushID"][4] +defs["igPushItemFlag"] = {} +defs["igPushItemFlag"][1] = {} +defs["igPushItemFlag"][1]["args"] = "(ImGuiItemFlags option,bool enabled)" +defs["igPushItemFlag"][1]["argsT"] = {} +defs["igPushItemFlag"][1]["argsT"][1] = {} +defs["igPushItemFlag"][1]["argsT"][1]["name"] = "option" +defs["igPushItemFlag"][1]["argsT"][1]["type"] = "ImGuiItemFlags" +defs["igPushItemFlag"][1]["argsT"][2] = {} +defs["igPushItemFlag"][1]["argsT"][2]["name"] = "enabled" +defs["igPushItemFlag"][1]["argsT"][2]["type"] = "bool" +defs["igPushItemFlag"][1]["argsoriginal"] = "(ImGuiItemFlags option,bool enabled)" +defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" +defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" +defs["igPushItemFlag"][1]["defaults"] = {} +defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" +defs["igPushItemFlag"][1]["location"] = "imgui:448" +defs["igPushItemFlag"][1]["namespace"] = "ImGui" +defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" +defs["igPushItemFlag"][1]["ret"] = "void" +defs["igPushItemFlag"][1]["signature"] = "(ImGuiItemFlags,bool)" +defs["igPushItemFlag"][1]["stname"] = "" +defs["igPushItemFlag"]["(ImGuiItemFlags,bool)"] = defs["igPushItemFlag"][1] defs["igPushItemWidth"] = {} defs["igPushItemWidth"][1] = {} defs["igPushItemWidth"][1]["args"] = "(float item_width)" @@ -12010,7 +12639,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:414" +defs["igPushItemWidth"][1]["location"] = "imgui:452" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -12032,7 +12661,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:402" +defs["igPushStyleColor"][1]["location"] = "imgui:440" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -12052,7 +12681,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:403" +defs["igPushStyleColor"][2]["location"] = "imgui:441" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -12075,7 +12704,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:405" +defs["igPushStyleVar"][1]["location"] = "imgui:443" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -12095,7 +12724,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:406" +defs["igPushStyleVar"][2]["location"] = "imgui:444" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -12103,6 +12732,50 @@ defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] +defs["igPushStyleVarX"] = {} +defs["igPushStyleVarX"][1] = {} +defs["igPushStyleVarX"][1]["args"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["argsT"] = {} +defs["igPushStyleVarX"][1]["argsT"][1] = {} +defs["igPushStyleVarX"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarX"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarX"][1]["argsT"][2] = {} +defs["igPushStyleVarX"][1]["argsT"][2]["name"] = "val_x" +defs["igPushStyleVarX"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarX"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["call_args"] = "(idx,val_x)" +defs["igPushStyleVarX"][1]["cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["defaults"] = {} +defs["igPushStyleVarX"][1]["funcname"] = "PushStyleVarX" +defs["igPushStyleVarX"][1]["location"] = "imgui:445" +defs["igPushStyleVarX"][1]["namespace"] = "ImGui" +defs["igPushStyleVarX"][1]["ov_cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["ret"] = "void" +defs["igPushStyleVarX"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarX"][1]["stname"] = "" +defs["igPushStyleVarX"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarX"][1] +defs["igPushStyleVarY"] = {} +defs["igPushStyleVarY"][1] = {} +defs["igPushStyleVarY"][1]["args"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["argsT"] = {} +defs["igPushStyleVarY"][1]["argsT"][1] = {} +defs["igPushStyleVarY"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarY"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarY"][1]["argsT"][2] = {} +defs["igPushStyleVarY"][1]["argsT"][2]["name"] = "val_y" +defs["igPushStyleVarY"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarY"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["call_args"] = "(idx,val_y)" +defs["igPushStyleVarY"][1]["cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["defaults"] = {} +defs["igPushStyleVarY"][1]["funcname"] = "PushStyleVarY" +defs["igPushStyleVarY"][1]["location"] = "imgui:446" +defs["igPushStyleVarY"][1]["namespace"] = "ImGui" +defs["igPushStyleVarY"][1]["ov_cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["ret"] = "void" +defs["igPushStyleVarY"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarY"][1]["stname"] = "" +defs["igPushStyleVarY"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarY"][1] defs["igPushTextWrapPos"] = {} defs["igPushTextWrapPos"][1] = {} defs["igPushTextWrapPos"][1]["args"] = "(float wrap_local_pos_x)" @@ -12116,7 +12789,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:418" +defs["igPushTextWrapPos"][1]["location"] = "imgui:456" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -12138,7 +12811,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:507" +defs["igRadioButton"][1]["location"] = "imgui:553" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -12161,7 +12834,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:508" +defs["igRadioButton"][2]["location"] = "imgui:554" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -12178,7 +12851,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:298" +defs["igRender"][1]["location"] = "imgui:334" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -12198,7 +12871,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui:914" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1013" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -12222,7 +12895,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:439" +defs["igSameLine"][1]["location"] = "imgui:492" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -12241,7 +12914,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:930" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1029" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -12261,7 +12934,7 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:931" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1030" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -12292,7 +12965,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:623" +defs["igSelectable"][1]["location"] = "imgui:674" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -12320,7 +12993,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:624" +defs["igSelectable"][2]["location"] = "imgui:675" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -12337,13 +13010,32 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:438" +defs["igSeparator"][1]["location"] = "imgui:491" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" defs["igSeparator"][1]["signature"] = "()" defs["igSeparator"][1]["stname"] = "" defs["igSeparator"]["()"] = defs["igSeparator"][1] +defs["igSeparatorText"] = {} +defs["igSeparatorText"][1] = {} +defs["igSeparatorText"][1]["args"] = "(const char* label)" +defs["igSeparatorText"][1]["argsT"] = {} +defs["igSeparatorText"][1]["argsT"][1] = {} +defs["igSeparatorText"][1]["argsT"][1]["name"] = "label" +defs["igSeparatorText"][1]["argsT"][1]["type"] = "const char*" +defs["igSeparatorText"][1]["argsoriginal"] = "(const char* label)" +defs["igSeparatorText"][1]["call_args"] = "(label)" +defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["defaults"] = {} +defs["igSeparatorText"][1]["funcname"] = "SeparatorText" +defs["igSeparatorText"][1]["location"] = "imgui:541" +defs["igSeparatorText"][1]["namespace"] = "ImGui" +defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["ret"] = "void" +defs["igSeparatorText"][1]["signature"] = "(const char*)" +defs["igSeparatorText"][1]["stname"] = "" +defs["igSeparatorText"]["(const char*)"] = defs["igSeparatorText"][1] defs["igSetAllocatorFunctions"] = {} defs["igSetAllocatorFunctions"][1] = {} defs["igSetAllocatorFunctions"][1]["args"] = "(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data)" @@ -12363,7 +13055,7 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui:941" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1047" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -12382,7 +13074,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui:922" +defs["igSetClipboardText"][1]["location"] = "imgui:1021" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -12401,7 +13093,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:598" +defs["igSetColorEditOptions"][1]["location"] = "imgui:648" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -12423,7 +13115,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:781" +defs["igSetColumnOffset"][1]["location"] = "imgui:852" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -12445,7 +13137,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:779" +defs["igSetColumnWidth"][1]["location"] = "imgui:850" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -12464,7 +13156,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:291" +defs["igSetCurrentContext"][1]["location"] = "imgui:326" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -12483,7 +13175,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:450" +defs["igSetCursorPos"][1]["location"] = "imgui:485" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -12502,7 +13194,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:451" +defs["igSetCursorPosX"][1]["location"] = "imgui:486" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -12521,7 +13213,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:452" +defs["igSetCursorPosY"][1]["location"] = "imgui:487" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -12540,7 +13232,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:455" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:480" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -12569,29 +13261,13 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui:809" +defs["igSetDragDropPayload"][1]["location"] = "imgui:880" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" defs["igSetDragDropPayload"][1]["signature"] = "(const char*,const void*,size_t,ImGuiCond)" defs["igSetDragDropPayload"][1]["stname"] = "" defs["igSetDragDropPayload"]["(const char*,const void*,size_t,ImGuiCond)"] = defs["igSetDragDropPayload"][1] -defs["igSetItemAllowOverlap"] = {} -defs["igSetItemAllowOverlap"][1] = {} -defs["igSetItemAllowOverlap"][1]["args"] = "()" -defs["igSetItemAllowOverlap"][1]["argsT"] = {} -defs["igSetItemAllowOverlap"][1]["argsoriginal"] = "()" -defs["igSetItemAllowOverlap"][1]["call_args"] = "()" -defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["defaults"] = {} -defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui:853" -defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" -defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["ret"] = "void" -defs["igSetItemAllowOverlap"][1]["signature"] = "()" -defs["igSetItemAllowOverlap"][1]["stname"] = "" -defs["igSetItemAllowOverlap"]["()"] = defs["igSetItemAllowOverlap"][1] defs["igSetItemDefaultFocus"] = {} defs["igSetItemDefaultFocus"][1] = {} defs["igSetItemDefaultFocus"][1]["args"] = "()" @@ -12601,13 +13277,77 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:830" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:902" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" defs["igSetItemDefaultFocus"][1]["signature"] = "()" defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] +defs["igSetItemKeyOwner"] = {} +defs["igSetItemKeyOwner"][1] = {} +defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key)" +defs["igSetItemKeyOwner"][1]["argsT"] = {} +defs["igSetItemKeyOwner"][1]["argsT"][1] = {} +defs["igSetItemKeyOwner"][1]["argsT"][1]["name"] = "key" +defs["igSetItemKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igSetItemKeyOwner"][1]["call_args"] = "(key)" +defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["defaults"] = {} +defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["location"] = "imgui:995" +defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" +defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["ret"] = "void" +defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey)" +defs["igSetItemKeyOwner"][1]["stname"] = "" +defs["igSetItemKeyOwner"]["(ImGuiKey)"] = defs["igSetItemKeyOwner"][1] +defs["igSetItemTooltip"] = {} +defs["igSetItemTooltip"][1] = {} +defs["igSetItemTooltip"][1]["args"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["argsT"] = {} +defs["igSetItemTooltip"][1]["argsT"][1] = {} +defs["igSetItemTooltip"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltip"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltip"][1]["argsT"][2] = {} +defs["igSetItemTooltip"][1]["argsT"][2]["name"] = "..." +defs["igSetItemTooltip"][1]["argsT"][2]["type"] = "..." +defs["igSetItemTooltip"][1]["argsoriginal"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["call_args"] = "(fmt,...)" +defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["defaults"] = {} +defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" +defs["igSetItemTooltip"][1]["isvararg"] = "...)" +defs["igSetItemTooltip"][1]["location"] = "imgui:742" +defs["igSetItemTooltip"][1]["namespace"] = "ImGui" +defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["ret"] = "void" +defs["igSetItemTooltip"][1]["signature"] = "(const char*,...)" +defs["igSetItemTooltip"][1]["stname"] = "" +defs["igSetItemTooltip"]["(const char*,...)"] = defs["igSetItemTooltip"][1] +defs["igSetItemTooltipV"] = {} +defs["igSetItemTooltipV"][1] = {} +defs["igSetItemTooltipV"][1]["args"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["argsT"] = {} +defs["igSetItemTooltipV"][1]["argsT"][1] = {} +defs["igSetItemTooltipV"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltipV"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltipV"][1]["argsT"][2] = {} +defs["igSetItemTooltipV"][1]["argsT"][2]["name"] = "args" +defs["igSetItemTooltipV"][1]["argsT"][2]["type"] = "va_list" +defs["igSetItemTooltipV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" +defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["defaults"] = {} +defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" +defs["igSetItemTooltipV"][1]["location"] = "imgui:743" +defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" +defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["ret"] = "void" +defs["igSetItemTooltipV"][1]["signature"] = "(const char*,va_list)" +defs["igSetItemTooltipV"][1]["stname"] = "" +defs["igSetItemTooltipV"]["(const char*,va_list)"] = defs["igSetItemTooltipV"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} defs["igSetKeyboardFocusHere"][1]["args"] = "(int offset)" @@ -12621,7 +13361,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:831" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:903" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -12640,7 +13380,7 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:916" +defs["igSetMouseCursor"][1]["location"] = "imgui:1015" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -12659,7 +13399,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:896" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:969" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -12678,13 +13418,29 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:917" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1016" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" defs["igSetNextFrameWantCaptureMouse"][1]["signature"] = "(bool)" defs["igSetNextFrameWantCaptureMouse"][1]["stname"] = "" defs["igSetNextFrameWantCaptureMouse"]["(bool)"] = defs["igSetNextFrameWantCaptureMouse"][1] +defs["igSetNextItemAllowOverlap"] = {} +defs["igSetNextItemAllowOverlap"][1] = {} +defs["igSetNextItemAllowOverlap"][1]["args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["argsT"] = {} +defs["igSetNextItemAllowOverlap"][1]["argsoriginal"] = "()" +defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} +defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:906" +defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" +defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" +defs["igSetNextItemAllowOverlap"][1]["signature"] = "()" +defs["igSetNextItemAllowOverlap"][1]["stname"] = "" +defs["igSetNextItemAllowOverlap"]["()"] = defs["igSetNextItemAllowOverlap"][1] defs["igSetNextItemOpen"] = {} defs["igSetNextItemOpen"][1] = {} defs["igSetNextItemOpen"][1]["args"] = "(bool is_open,ImGuiCond cond)" @@ -12701,13 +13457,74 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:618" +defs["igSetNextItemOpen"][1]["location"] = "imgui:668" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" defs["igSetNextItemOpen"][1]["signature"] = "(bool,ImGuiCond)" defs["igSetNextItemOpen"][1]["stname"] = "" defs["igSetNextItemOpen"]["(bool,ImGuiCond)"] = defs["igSetNextItemOpen"][1] +defs["igSetNextItemSelectionUserData"] = {} +defs["igSetNextItemSelectionUserData"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["args"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["argsT"] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["name"] = "selection_user_data" +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["type"] = "ImGuiSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["argsoriginal"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} +defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:686" +defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" +defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" +defs["igSetNextItemSelectionUserData"][1]["signature"] = "(ImGuiSelectionUserData)" +defs["igSetNextItemSelectionUserData"][1]["stname"] = "" +defs["igSetNextItemSelectionUserData"]["(ImGuiSelectionUserData)"] = defs["igSetNextItemSelectionUserData"][1] +defs["igSetNextItemShortcut"] = {} +defs["igSetNextItemShortcut"][1] = {} +defs["igSetNextItemShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" +defs["igSetNextItemShortcut"][1]["argsT"] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igSetNextItemShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetNextItemShortcut"][1]["argsT"][2] = {} +defs["igSetNextItemShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igSetNextItemShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetNextItemShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igSetNextItemShortcut"][1]["call_args"] = "(key_chord,flags)" +defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["defaults"] = {} +defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" +defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["location"] = "imgui:987" +defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" +defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["ret"] = "void" +defs["igSetNextItemShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" +defs["igSetNextItemShortcut"][1]["stname"] = "" +defs["igSetNextItemShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igSetNextItemShortcut"][1] +defs["igSetNextItemStorageID"] = {} +defs["igSetNextItemStorageID"][1] = {} +defs["igSetNextItemStorageID"][1]["args"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["argsT"] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1]["name"] = "storage_id" +defs["igSetNextItemStorageID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNextItemStorageID"][1]["argsoriginal"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["call_args"] = "(storage_id)" +defs["igSetNextItemStorageID"][1]["cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["defaults"] = {} +defs["igSetNextItemStorageID"][1]["funcname"] = "SetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["location"] = "imgui:669" +defs["igSetNextItemStorageID"][1]["namespace"] = "ImGui" +defs["igSetNextItemStorageID"][1]["ov_cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["ret"] = "void" +defs["igSetNextItemStorageID"][1]["signature"] = "(ImGuiID)" +defs["igSetNextItemStorageID"][1]["stname"] = "" +defs["igSetNextItemStorageID"]["(ImGuiID)"] = defs["igSetNextItemStorageID"][1] defs["igSetNextItemWidth"] = {} defs["igSetNextItemWidth"][1] = {} defs["igSetNextItemWidth"][1]["args"] = "(float item_width)" @@ -12720,7 +13537,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:416" +defs["igSetNextItemWidth"][1]["location"] = "imgui:454" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -12739,7 +13556,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:366" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:412" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -12762,7 +13579,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:363" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:409" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -12781,7 +13598,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:362" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:408" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -12797,7 +13614,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:364" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:410" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -12824,7 +13641,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:359" +defs["igSetNextWindowPos"][1]["location"] = "imgui:405" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -12843,7 +13660,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "imgui:365" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:411" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -12866,7 +13683,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:360" +defs["igSetNextWindowSize"][1]["location"] = "imgui:406" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -12896,7 +13713,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:361" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:407" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -12919,7 +13736,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:396" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:434" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -12942,7 +13759,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:397" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:435" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -12962,7 +13779,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:394" +defs["igSetScrollHereX"][1]["location"] = "imgui:432" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -12982,7 +13799,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:395" +defs["igSetScrollHereY"][1]["location"] = "imgui:433" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -13001,7 +13818,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:390" +defs["igSetScrollX"][1]["location"] = "imgui:428" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["ret"] = "void" @@ -13020,7 +13837,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:391" +defs["igSetScrollY"][1]["location"] = "imgui:429" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["ret"] = "void" @@ -13039,7 +13856,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui:872" +defs["igSetStateStorage"][1]["location"] = "imgui:946" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -13058,7 +13875,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui:791" +defs["igSetTabItemClosed"][1]["location"] = "imgui:862" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -13081,7 +13898,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:669" +defs["igSetTooltip"][1]["location"] = "imgui:734" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -13103,7 +13920,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:670" +defs["igSetTooltipV"][1]["location"] = "imgui:735" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -13126,7 +13943,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:369" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:415" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -13150,7 +13967,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:374" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:420" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -13167,7 +13984,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:370" +defs["igSetWindowFocus"][1]["location"] = "imgui:416" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -13184,7 +14001,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:375" +defs["igSetWindowFocus"][2]["location"] = "imgui:421" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -13204,7 +14021,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:371" +defs["igSetWindowFontScale"][1]["location"] = "imgui:417" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -13227,7 +14044,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:367" +defs["igSetWindowPos"][1]["location"] = "imgui:413" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -13251,7 +14068,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:372" +defs["igSetWindowPos"][2]["location"] = "imgui:418" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -13275,7 +14092,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:368" +defs["igSetWindowSize"][1]["location"] = "imgui:414" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -13299,7 +14116,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:373" +defs["igSetWindowSize"][2]["location"] = "imgui:419" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -13307,6 +14124,29 @@ defs["igSetWindowSize"][2]["signature"] = "(const char*,const ImVec2,ImGuiCond)" defs["igSetWindowSize"][2]["stname"] = "" defs["igSetWindowSize"]["(const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][1] defs["igSetWindowSize"]["(const char*,const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][2] +defs["igShortcut"] = {} +defs["igShortcut"][1] = {} +defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" +defs["igShortcut"][1]["argsT"] = {} +defs["igShortcut"][1]["argsT"][1] = {} +defs["igShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igShortcut"][1]["argsT"][2] = {} +defs["igShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igShortcut"][1]["call_args"] = "(key_chord,flags)" +defs["igShortcut"][1]["cimguiname"] = "igShortcut" +defs["igShortcut"][1]["defaults"] = {} +defs["igShortcut"][1]["defaults"]["flags"] = "0" +defs["igShortcut"][1]["funcname"] = "Shortcut" +defs["igShortcut"][1]["location"] = "imgui:986" +defs["igShortcut"][1]["namespace"] = "ImGui" +defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut" +defs["igShortcut"][1]["ret"] = "bool" +defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" +defs["igShortcut"][1]["stname"] = "" +defs["igShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igShortcut"][1] defs["igShowAboutWindow"] = {} defs["igShowAboutWindow"][1] = {} defs["igShowAboutWindow"][1]["args"] = "(bool* p_open)" @@ -13320,7 +14160,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:306" +defs["igShowAboutWindow"][1]["location"] = "imgui:342" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -13340,7 +14180,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:304" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:340" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -13360,7 +14200,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:302" +defs["igShowDemoWindow"][1]["location"] = "imgui:338" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -13379,13 +14219,33 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:309" +defs["igShowFontSelector"][1]["location"] = "imgui:345" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" defs["igShowFontSelector"][1]["signature"] = "(const char*)" defs["igShowFontSelector"][1]["stname"] = "" defs["igShowFontSelector"]["(const char*)"] = defs["igShowFontSelector"][1] +defs["igShowIDStackToolWindow"] = {} +defs["igShowIDStackToolWindow"][1] = {} +defs["igShowIDStackToolWindow"][1]["args"] = "(bool* p_open)" +defs["igShowIDStackToolWindow"][1]["argsT"] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1]["name"] = "p_open" +defs["igShowIDStackToolWindow"][1]["argsT"][1]["type"] = "bool*" +defs["igShowIDStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowIDStackToolWindow"][1]["call_args"] = "(p_open)" +defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["defaults"] = {} +defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" +defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:341" +defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" +defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["ret"] = "void" +defs["igShowIDStackToolWindow"][1]["signature"] = "(bool*)" +defs["igShowIDStackToolWindow"][1]["stname"] = "" +defs["igShowIDStackToolWindow"]["(bool*)"] = defs["igShowIDStackToolWindow"][1] defs["igShowMetricsWindow"] = {} defs["igShowMetricsWindow"][1] = {} defs["igShowMetricsWindow"][1]["args"] = "(bool* p_open)" @@ -13399,33 +14259,13 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:303" +defs["igShowMetricsWindow"][1]["location"] = "imgui:339" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" defs["igShowMetricsWindow"][1]["stname"] = "" defs["igShowMetricsWindow"]["(bool*)"] = defs["igShowMetricsWindow"][1] -defs["igShowStackToolWindow"] = {} -defs["igShowStackToolWindow"][1] = {} -defs["igShowStackToolWindow"][1]["args"] = "(bool* p_open)" -defs["igShowStackToolWindow"][1]["argsT"] = {} -defs["igShowStackToolWindow"][1]["argsT"][1] = {} -defs["igShowStackToolWindow"][1]["argsT"][1]["name"] = "p_open" -defs["igShowStackToolWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" -defs["igShowStackToolWindow"][1]["call_args"] = "(p_open)" -defs["igShowStackToolWindow"][1]["cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["defaults"] = {} -defs["igShowStackToolWindow"][1]["defaults"]["p_open"] = "NULL" -defs["igShowStackToolWindow"][1]["funcname"] = "ShowStackToolWindow" -defs["igShowStackToolWindow"][1]["location"] = "imgui:305" -defs["igShowStackToolWindow"][1]["namespace"] = "ImGui" -defs["igShowStackToolWindow"][1]["ov_cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["ret"] = "void" -defs["igShowStackToolWindow"][1]["signature"] = "(bool*)" -defs["igShowStackToolWindow"][1]["stname"] = "" -defs["igShowStackToolWindow"]["(bool*)"] = defs["igShowStackToolWindow"][1] defs["igShowStyleEditor"] = {} defs["igShowStyleEditor"][1] = {} defs["igShowStyleEditor"][1]["args"] = "(ImGuiStyle* ref)" @@ -13439,7 +14279,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:307" +defs["igShowStyleEditor"][1]["location"] = "imgui:343" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -13458,7 +14298,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:308" +defs["igShowStyleSelector"][1]["location"] = "imgui:344" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -13474,7 +14314,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:310" +defs["igShowUserGuide"][1]["location"] = "imgui:346" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -13512,7 +14352,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:561" +defs["igSliderAngle"][1]["location"] = "imgui:611" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -13548,7 +14388,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:557" +defs["igSliderFloat"][1]["location"] = "imgui:607" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -13584,7 +14424,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:558" +defs["igSliderFloat2"][1]["location"] = "imgui:608" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -13620,7 +14460,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:559" +defs["igSliderFloat3"][1]["location"] = "imgui:609" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -13656,7 +14496,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:560" +defs["igSliderFloat4"][1]["location"] = "imgui:610" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -13692,7 +14532,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:562" +defs["igSliderInt"][1]["location"] = "imgui:612" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -13728,7 +14568,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:563" +defs["igSliderInt2"][1]["location"] = "imgui:613" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -13764,7 +14604,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:564" +defs["igSliderInt3"][1]["location"] = "imgui:614" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -13800,7 +14640,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:565" +defs["igSliderInt4"][1]["location"] = "imgui:615" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -13839,7 +14679,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:566" +defs["igSliderScalar"][1]["location"] = "imgui:616" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -13881,7 +14721,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:567" +defs["igSliderScalarN"][1]["location"] = "imgui:617" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -13900,7 +14740,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:501" +defs["igSmallButton"][1]["location"] = "imgui:547" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -13916,7 +14756,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:441" +defs["igSpacing"][1]["location"] = "imgui:494" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -13936,7 +14776,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:316" +defs["igStyleColorsClassic"][1]["location"] = "imgui:352" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -13956,7 +14796,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:314" +defs["igStyleColorsDark"][1]["location"] = "imgui:350" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -13976,7 +14816,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:315" +defs["igStyleColorsLight"][1]["location"] = "imgui:351" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -13999,13 +14839,29 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:790" +defs["igTabItemButton"][1]["location"] = "imgui:861" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" defs["igTabItemButton"][1]["signature"] = "(const char*,ImGuiTabItemFlags)" defs["igTabItemButton"][1]["stname"] = "" defs["igTabItemButton"]["(const char*,ImGuiTabItemFlags)"] = defs["igTabItemButton"][1] +defs["igTableAngledHeadersRow"] = {} +defs["igTableAngledHeadersRow"][1] = {} +defs["igTableAngledHeadersRow"][1]["args"] = "()" +defs["igTableAngledHeadersRow"][1]["argsT"] = {} +defs["igTableAngledHeadersRow"][1]["argsoriginal"] = "()" +defs["igTableAngledHeadersRow"][1]["call_args"] = "()" +defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["defaults"] = {} +defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:826" +defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" +defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["ret"] = "void" +defs["igTableAngledHeadersRow"][1]["signature"] = "()" +defs["igTableAngledHeadersRow"][1]["stname"] = "" +defs["igTableAngledHeadersRow"]["()"] = defs["igTableAngledHeadersRow"][1] defs["igTableGetColumnCount"] = {} defs["igTableGetColumnCount"][1] = {} defs["igTableGetColumnCount"][1]["args"] = "()" @@ -14015,7 +14871,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:765" +defs["igTableGetColumnCount"][1]["location"] = "imgui:835" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -14035,7 +14891,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:769" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:839" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -14051,7 +14907,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:766" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:836" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -14071,13 +14927,29 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:768" +defs["igTableGetColumnName"][1]["location"] = "imgui:838" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["ret"] = "const char*" defs["igTableGetColumnName"][1]["signature"] = "(int)" defs["igTableGetColumnName"][1]["stname"] = "" defs["igTableGetColumnName"]["(int)"] = defs["igTableGetColumnName"][1] +defs["igTableGetHoveredColumn"] = {} +defs["igTableGetHoveredColumn"][1] = {} +defs["igTableGetHoveredColumn"][1]["args"] = "()" +defs["igTableGetHoveredColumn"][1]["argsT"] = {} +defs["igTableGetHoveredColumn"][1]["argsoriginal"] = "()" +defs["igTableGetHoveredColumn"][1]["call_args"] = "()" +defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" +defs["igTableGetHoveredColumn"][1]["defaults"] = {} +defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:841" +defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" +defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" +defs["igTableGetHoveredColumn"][1]["ret"] = "int" +defs["igTableGetHoveredColumn"][1]["signature"] = "()" +defs["igTableGetHoveredColumn"][1]["stname"] = "" +defs["igTableGetHoveredColumn"]["()"] = defs["igTableGetHoveredColumn"][1] defs["igTableGetRowIndex"] = {} defs["igTableGetRowIndex"][1] = {} defs["igTableGetRowIndex"][1]["args"] = "()" @@ -14087,7 +14959,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:767" +defs["igTableGetRowIndex"][1]["location"] = "imgui:837" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -14103,7 +14975,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:764" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:834" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -14122,7 +14994,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:756" +defs["igTableHeader"][1]["location"] = "imgui:824" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -14138,7 +15010,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:755" +defs["igTableHeadersRow"][1]["location"] = "imgui:825" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -14154,7 +15026,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:742" +defs["igTableNextColumn"][1]["location"] = "imgui:811" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -14178,7 +15050,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:741" +defs["igTableNextRow"][1]["location"] = "imgui:810" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -14204,7 +15076,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:771" +defs["igTableSetBgColor"][1]["location"] = "imgui:842" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -14226,7 +15098,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:770" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:840" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -14245,7 +15117,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:743" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:812" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -14276,7 +15148,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:753" +defs["igTableSetupColumn"][1]["location"] = "imgui:822" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -14298,7 +15170,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:754" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:823" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -14321,7 +15193,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:484" +defs["igText"][1]["location"] = "imgui:529" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -14347,7 +15219,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:486" +defs["igTextColored"][1]["location"] = "imgui:531" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -14372,7 +15244,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:487" +defs["igTextColoredV"][1]["location"] = "imgui:532" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -14395,7 +15267,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:488" +defs["igTextDisabled"][1]["location"] = "imgui:533" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -14417,13 +15289,55 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:489" +defs["igTextDisabledV"][1]["location"] = "imgui:534" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" defs["igTextDisabledV"][1]["signature"] = "(const char*,va_list)" defs["igTextDisabledV"][1]["stname"] = "" defs["igTextDisabledV"]["(const char*,va_list)"] = defs["igTextDisabledV"][1] +defs["igTextLink"] = {} +defs["igTextLink"][1] = {} +defs["igTextLink"][1]["args"] = "(const char* label)" +defs["igTextLink"][1]["argsT"] = {} +defs["igTextLink"][1]["argsT"][1] = {} +defs["igTextLink"][1]["argsT"][1]["name"] = "label" +defs["igTextLink"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLink"][1]["argsoriginal"] = "(const char* label)" +defs["igTextLink"][1]["call_args"] = "(label)" +defs["igTextLink"][1]["cimguiname"] = "igTextLink" +defs["igTextLink"][1]["defaults"] = {} +defs["igTextLink"][1]["funcname"] = "TextLink" +defs["igTextLink"][1]["location"] = "imgui:557" +defs["igTextLink"][1]["namespace"] = "ImGui" +defs["igTextLink"][1]["ov_cimguiname"] = "igTextLink" +defs["igTextLink"][1]["ret"] = "bool" +defs["igTextLink"][1]["signature"] = "(const char*)" +defs["igTextLink"][1]["stname"] = "" +defs["igTextLink"]["(const char*)"] = defs["igTextLink"][1] +defs["igTextLinkOpenURL"] = {} +defs["igTextLinkOpenURL"][1] = {} +defs["igTextLinkOpenURL"][1]["args"] = "(const char* label,const char* url)" +defs["igTextLinkOpenURL"][1]["argsT"] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1]["name"] = "label" +defs["igTextLinkOpenURL"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsT"][2] = {} +defs["igTextLinkOpenURL"][1]["argsT"][2]["name"] = "url" +defs["igTextLinkOpenURL"][1]["argsT"][2]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsoriginal"] = "(const char* label,const char* url=((void*)0))" +defs["igTextLinkOpenURL"][1]["call_args"] = "(label,url)" +defs["igTextLinkOpenURL"][1]["cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["defaults"] = {} +defs["igTextLinkOpenURL"][1]["defaults"]["url"] = "NULL" +defs["igTextLinkOpenURL"][1]["funcname"] = "TextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["location"] = "imgui:558" +defs["igTextLinkOpenURL"][1]["namespace"] = "ImGui" +defs["igTextLinkOpenURL"][1]["ov_cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["ret"] = "void" +defs["igTextLinkOpenURL"][1]["signature"] = "(const char*,const char*)" +defs["igTextLinkOpenURL"][1]["stname"] = "" +defs["igTextLinkOpenURL"]["(const char*,const char*)"] = defs["igTextLinkOpenURL"][1] defs["igTextUnformatted"] = {} defs["igTextUnformatted"][1] = {} defs["igTextUnformatted"][1]["args"] = "(const char* text,const char* text_end)" @@ -14440,7 +15354,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:483" +defs["igTextUnformatted"][1]["location"] = "imgui:528" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -14462,7 +15376,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:485" +defs["igTextV"][1]["location"] = "imgui:530" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -14485,7 +15399,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:490" +defs["igTextWrapped"][1]["location"] = "imgui:535" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -14507,7 +15421,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:491" +defs["igTextWrappedV"][1]["location"] = "imgui:536" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -14526,7 +15440,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:602" +defs["igTreeNode"][1]["location"] = "imgui:652" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -14550,7 +15464,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:603" +defs["igTreeNode"][2]["location"] = "imgui:653" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -14574,7 +15488,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:604" +defs["igTreeNode"][3]["location"] = "imgui:654" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -14599,7 +15513,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:607" +defs["igTreeNodeEx"][1]["location"] = "imgui:657" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -14626,7 +15540,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:608" +defs["igTreeNodeEx"][2]["location"] = "imgui:658" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -14653,7 +15567,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:609" +defs["igTreeNodeEx"][3]["location"] = "imgui:659" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -14683,7 +15597,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:610" +defs["igTreeNodeExV"][1]["location"] = "imgui:660" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -14709,7 +15623,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:611" +defs["igTreeNodeExV"][2]["location"] = "imgui:661" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -14735,7 +15649,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:605" +defs["igTreeNodeV"][1]["location"] = "imgui:655" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -14758,7 +15672,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:606" +defs["igTreeNodeV"][2]["location"] = "imgui:656" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -14775,7 +15689,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:614" +defs["igTreePop"][1]["location"] = "imgui:664" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -14794,7 +15708,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:612" +defs["igTreePush"][1]["location"] = "imgui:662" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -14811,7 +15725,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:613" +defs["igTreePush"][2]["location"] = "imgui:663" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -14832,7 +15746,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:444" +defs["igUnindent"][1]["location"] = "imgui:497" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -14871,7 +15785,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:568" +defs["igVSliderFloat"][1]["location"] = "imgui:618" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -14910,7 +15824,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:569" +defs["igVSliderInt"][1]["location"] = "imgui:619" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -14952,7 +15866,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:570" +defs["igVSliderScalar"][1]["location"] = "imgui:620" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -14974,7 +15888,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:646" +defs["igValue"][1]["location"] = "imgui:709" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -14994,7 +15908,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:647" +defs["igValue"][2]["location"] = "imgui:710" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -15014,7 +15928,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:648" +defs["igValue"][3]["location"] = "imgui:711" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -15038,7 +15952,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:649" +defs["igValue"][4]["location"] = "imgui:712" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" diff --git a/imgui-sys/third-party/imgui-master-freetype/impl_definitions.json b/imgui-sys/third-party/imgui-master-freetype/impl_definitions.json index 3597665..ac713a3 100644 --- a/imgui-sys/third-party/imgui-master-freetype/impl_definitions.json +++ b/imgui-sys/third-party/imgui-master-freetype/impl_definitions.json @@ -17,7 +17,7 @@ "cimguiname": "ImGui_ImplGlfw_CharCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw:41", + "location": "imgui_impl_glfw:61", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -42,7 +42,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorEnterCallback", - "location": "imgui_impl_glfw:36", + "location": "imgui_impl_glfw:56", "ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -71,7 +71,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorPosCallback", - "location": "imgui_impl_glfw:37", + "location": "imgui_impl_glfw:57", "ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -96,7 +96,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw:22", + "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -121,7 +121,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOther", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOther", - "location": "imgui_impl_glfw:24", + "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_InitForOther", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -146,7 +146,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw:23", + "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -167,7 +167,7 @@ "cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_InstallCallbacks", - "location": "imgui_impl_glfw:31", + "location": "imgui_impl_glfw:47", "ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -204,7 +204,7 @@ "cimguiname": "ImGui_ImplGlfw_KeyCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw:40", + "location": "imgui_impl_glfw:60", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -229,7 +229,7 @@ "cimguiname": "ImGui_ImplGlfw_MonitorCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MonitorCallback", - "location": "imgui_impl_glfw:42", + "location": "imgui_impl_glfw:62", "ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback", "ret": "void", "signature": "(GLFWmonitor*,int)", @@ -262,7 +262,7 @@ "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw:38", + "location": "imgui_impl_glfw:58", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -278,7 +278,7 @@ "cimguiname": "ImGui_ImplGlfw_NewFrame", "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw:26", + "location": "imgui_impl_glfw:36", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -299,7 +299,7 @@ "cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_RestoreCallbacks", - "location": "imgui_impl_glfw:32", + "location": "imgui_impl_glfw:48", "ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -328,13 +328,34 @@ "cimguiname": "ImGui_ImplGlfw_ScrollCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw:39", + "location": "imgui_impl_glfw:59", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" } ], + "ImGui_ImplGlfw_SetCallbacksChainForAllWindows": [ + { + "args": "(bool chain_for_all_windows)", + "argsT": [ + { + "name": "chain_for_all_windows", + "type": "bool" + } + ], + "argsoriginal": "(bool chain_for_all_windows)", + "call_args": "(chain_for_all_windows)", + "cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "location": "imgui_impl_glfw:52", + "ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "ret": "void", + "signature": "(bool)", + "stname": "" + } + ], "ImGui_ImplGlfw_Shutdown": [ { "args": "()", @@ -344,13 +365,34 @@ "cimguiname": "ImGui_ImplGlfw_Shutdown", "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw:25", + "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" } ], + "ImGui_ImplGlfw_Sleep": [ + { + "args": "(int milliseconds)", + "argsT": [ + { + "name": "milliseconds", + "type": "int" + } + ], + "argsoriginal": "(int milliseconds)", + "call_args": "(milliseconds)", + "cimguiname": "ImGui_ImplGlfw_Sleep", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_Sleep", + "location": "imgui_impl_glfw:65", + "ov_cimguiname": "ImGui_ImplGlfw_Sleep", + "ret": "void", + "signature": "(int)", + "stname": "" + } + ], "ImGui_ImplGlfw_WindowFocusCallback": [ { "args": "(GLFWwindow* window,int focused)", @@ -369,7 +411,7 @@ "cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_WindowFocusCallback", - "location": "imgui_impl_glfw:35", + "location": "imgui_impl_glfw:55", "ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -385,7 +427,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2:31", + "location": "imgui_impl_opengl2:37", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -401,7 +443,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2:29", + "location": "imgui_impl_opengl2:35", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -417,7 +459,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2:32", + "location": "imgui_impl_opengl2:38", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -433,7 +475,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2:30", + "location": "imgui_impl_opengl2:36", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -449,7 +491,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2:23", + "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -465,7 +507,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2:25", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -486,7 +528,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2:26", + "location": "imgui_impl_opengl2:32", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -502,7 +544,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2:24", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -518,7 +560,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3:32", + "location": "imgui_impl_opengl3:42", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -534,7 +576,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3:30", + "location": "imgui_impl_opengl3:40", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -550,7 +592,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3:33", + "location": "imgui_impl_opengl3:43", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -566,7 +608,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3:31", + "location": "imgui_impl_opengl3:41", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -589,7 +631,7 @@ "glsl_version": "nullptr" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3:24", + "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", @@ -605,7 +647,7 @@ "cimguiname": "ImGui_ImplOpenGL3_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3:26", + "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", @@ -626,7 +668,7 @@ "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3:27", + "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -642,7 +684,7 @@ "cimguiname": "ImGui_ImplOpenGL3_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3:25", + "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", @@ -663,7 +705,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForD3D", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForD3D", - "location": "imgui_impl_sdl:27", + "location": "imgui_impl_sdl2:37", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -684,7 +726,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForMetal", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForMetal", - "location": "imgui_impl_sdl:28", + "location": "imgui_impl_sdl2:38", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -709,13 +751,34 @@ "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl:25", + "location": "imgui_impl_sdl2:35", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" } ], + "ImGui_ImplSDL2_InitForOther": [ + { + "args": "(SDL_Window* window)", + "argsT": [ + { + "name": "window", + "type": "SDL_Window*" + } + ], + "argsoriginal": "(SDL_Window* window)", + "call_args": "(window)", + "cimguiname": "ImGui_ImplSDL2_InitForOther", + "defaults": {}, + "funcname": "ImGui_ImplSDL2_InitForOther", + "location": "imgui_impl_sdl2:40", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOther", + "ret": "bool", + "signature": "(SDL_Window*)", + "stname": "" + } + ], "ImGui_ImplSDL2_InitForSDLRenderer": [ { "args": "(SDL_Window* window,SDL_Renderer* renderer)", @@ -734,7 +797,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForSDLRenderer", - "location": "imgui_impl_sdl:29", + "location": "imgui_impl_sdl2:39", "ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "ret": "bool", "signature": "(SDL_Window*,SDL_Renderer*)", @@ -755,7 +818,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl:26", + "location": "imgui_impl_sdl2:36", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -771,7 +834,7 @@ "cimguiname": "ImGui_ImplSDL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl:31", + "location": "imgui_impl_sdl2:42", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "()", @@ -792,13 +855,45 @@ "cimguiname": "ImGui_ImplSDL2_ProcessEvent", "defaults": {}, "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl:32", + "location": "imgui_impl_sdl2:43", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" } ], + "ImGui_ImplSDL2_SetGamepadMode": [ + { + "args": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)", + "argsT": [ + { + "name": "mode", + "type": "ImGui_ImplSDL2_GamepadMode" + }, + { + "name": "manual_gamepads_array", + "type": "struct _SDL_GameController**" + }, + { + "name": "manual_gamepads_count", + "type": "int" + } + ], + "argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)", + "call_args": "(mode,manual_gamepads_array,manual_gamepads_count)", + "cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "defaults": { + "manual_gamepads_array": "NULL", + "manual_gamepads_count": "-1" + }, + "funcname": "ImGui_ImplSDL2_SetGamepadMode", + "location": "imgui_impl_sdl2:48", + "ov_cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "ret": "void", + "signature": "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)", + "stname": "" + } + ], "ImGui_ImplSDL2_Shutdown": [ { "args": "()", @@ -808,7 +903,7 @@ "cimguiname": "ImGui_ImplSDL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl:30", + "location": "imgui_impl_sdl2:41", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", diff --git a/imgui-sys/third-party/imgui-master-freetype/impl_definitions.lua b/imgui-sys/third-party/imgui-master-freetype/impl_definitions.lua index fbc6a4c..828c8f2 100644 --- a/imgui-sys/third-party/imgui-master-freetype/impl_definitions.lua +++ b/imgui-sys/third-party/imgui-master-freetype/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:41" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:61" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback" -defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:36" +defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:56" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback" -defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:37" +defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:57" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:22" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:32" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther" -defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:24" +defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:34" defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)" @@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:23" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:33" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks" -defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:31" +defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:47" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:40" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:60" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)" defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback" -defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:42" +defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:62" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)" @@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:38" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:58" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:26" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:36" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks" -defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:32" +defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:48" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -275,12 +275,30 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:39" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:59" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["stname"] = "" defs["ImGui_ImplGlfw_ScrollCallback"]["(GLFWwindow*,double,double)"] = defs["ImGui_ImplGlfw_ScrollCallback"][1] +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["args"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["name"] = "chain_for_all_windows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["type"] = "bool" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsoriginal"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:52" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["stname"] = "" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"]["(bool)"] = defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] defs["ImGui_ImplGlfw_Shutdown"] = {} defs["ImGui_ImplGlfw_Shutdown"][1] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["args"] = "()" @@ -290,12 +308,30 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:25" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:35" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" defs["ImGui_ImplGlfw_Shutdown"]["()"] = defs["ImGui_ImplGlfw_Shutdown"][1] +defs["ImGui_ImplGlfw_Sleep"] = {} +defs["ImGui_ImplGlfw_Sleep"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["args"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["name"] = "milliseconds" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["type"] = "int" +defs["ImGui_ImplGlfw_Sleep"][1]["argsoriginal"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["call_args"] = "(milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["funcname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["location"] = "imgui_impl_glfw:65" +defs["ImGui_ImplGlfw_Sleep"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_Sleep"][1]["signature"] = "(int)" +defs["ImGui_ImplGlfw_Sleep"][1]["stname"] = "" +defs["ImGui_ImplGlfw_Sleep"]["(int)"] = defs["ImGui_ImplGlfw_Sleep"][1] defs["ImGui_ImplGlfw_WindowFocusCallback"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["args"] = "(GLFWwindow* window,int focused)" @@ -311,7 +347,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback" -defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:35" +defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:55" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -326,7 +362,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:31" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:37" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -341,7 +377,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:29" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:35" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -356,7 +392,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:32" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:38" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -371,7 +407,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:30" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:36" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -386,7 +422,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:23" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:29" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -401,7 +437,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:25" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -419,7 +455,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:26" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:32" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -434,7 +470,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:24" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -449,7 +485,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:32" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:42" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" @@ -464,7 +500,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:30" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:40" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" @@ -479,7 +515,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:33" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:43" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" @@ -494,7 +530,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:31" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:41" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" @@ -513,7 +549,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "nullptr" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:24" +defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:34" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" @@ -528,7 +564,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:26" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:36" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" @@ -546,7 +582,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:27" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:37" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -561,7 +597,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:25" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:35" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" @@ -579,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D" -defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl:27" +defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:37" defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -597,7 +633,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal" -defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl:28" +defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:38" defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -618,12 +654,30 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl:25" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:35" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["stname"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"]["(SDL_Window*,void*)"] = defs["ImGui_ImplSDL2_InitForOpenGL"][1] +defs["ImGui_ImplSDL2_InitForOther"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["args"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["name"] = "window" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["type"] = "SDL_Window*" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsoriginal"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["call_args"] = "(window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:40" +defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool" +defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)" +defs["ImGui_ImplSDL2_InitForOther"][1]["stname"] = "" +defs["ImGui_ImplSDL2_InitForOther"]["(SDL_Window*)"] = defs["ImGui_ImplSDL2_InitForOther"][1] defs["ImGui_ImplSDL2_InitForSDLRenderer"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["args"] = "(SDL_Window* window,SDL_Renderer* renderer)" @@ -639,7 +693,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer" -defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl:29" +defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:39" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)" @@ -657,7 +711,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl:26" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:36" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -672,7 +726,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl:31" +defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:42" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()" @@ -690,12 +744,38 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl:32" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:43" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = "" defs["ImGui_ImplSDL2_ProcessEvent"]["(const SDL_Event*)"] = defs["ImGui_ImplSDL2_ProcessEvent"][1] +defs["ImGui_ImplSDL2_SetGamepadMode"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["args"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["name"] = "mode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["type"] = "ImGui_ImplSDL2_GamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["name"] = "manual_gamepads_array" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["type"] = "struct _SDL_GameController**" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["type"] = "int" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["location"] = "imgui_impl_sdl2:48" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ret"] = "void" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["signature"] = "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["stname"] = "" +defs["ImGui_ImplSDL2_SetGamepadMode"]["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"] = defs["ImGui_ImplSDL2_SetGamepadMode"][1] defs["ImGui_ImplSDL2_Shutdown"] = {} defs["ImGui_ImplSDL2_Shutdown"][1] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()" @@ -705,7 +785,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl:30" +defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:41" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" diff --git a/imgui-sys/third-party/imgui-master-freetype/overloads.txt b/imgui-sys/third-party/imgui-master-freetype/overloads.txt index 0f2d997..65bf0e7 100644 --- a/imgui-sys/third-party/imgui-master-freetype/overloads.txt +++ b/imgui-sys/third-party/imgui-master-freetype/overloads.txt @@ -46,8 +46,8 @@ ImVector_resize 2 1 void ImVector_resize_Nil (int) 2 void ImVector_resize_T (int,const T) igBeginChild 2 -1 bool igBeginChild_Str (const char*,const ImVec2,bool,ImGuiWindowFlags) -2 bool igBeginChild_ID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) +1 bool igBeginChild_Str (const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) +2 bool igBeginChild_ID (ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) igCheckboxFlags 2 1 bool igCheckboxFlags_IntPtr (const char*,int*,int) 2 bool igCheckboxFlags_UintPtr (const char*,unsigned int*,unsigned int) @@ -57,21 +57,22 @@ igCollapsingHeader 2 igCombo 3 1 bool igCombo_Str_arr (const char*,int*,const char* const[],int,int) 2 bool igCombo_Str (const char*,int*,const char*,int) -3 bool igCombo_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +3 bool igCombo_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igGetColorU32 3 1 ImU32 igGetColorU32_Col (ImGuiCol,float) 2 ImU32 igGetColorU32_Vec4 (const ImVec4) -3 ImU32 igGetColorU32_U32 (ImU32) -igGetID 3 +3 ImU32 igGetColorU32_U32 (ImU32,float) +igGetID 4 1 ImGuiID igGetID_Str (const char*) 2 ImGuiID igGetID_StrStr (const char*,const char*) 3 ImGuiID igGetID_Ptr (const void*) +4 ImGuiID igGetID_Int (int) igIsRectVisible 2 1 bool igIsRectVisible_Nil (const ImVec2) 2 bool igIsRectVisible_Vec2 (const ImVec2,const ImVec2) igListBox 2 1 bool igListBox_Str_arr (const char*,int*,const char* const[],int,int) -2 bool igListBox_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +2 bool igListBox_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igMenuItem 2 1 bool igMenuItem_Bool (const char*,const char*,bool,bool) 2 bool igMenuItem_BoolPtr (const char*,const char*,bool*,bool) @@ -135,4 +136,4 @@ igValue 4 2 void igValue_Int (const char*,int) 3 void igValue_Uint (const char*,unsigned int) 4 void igValue_Float (const char*,float,const char*) -95 overloaded \ No newline at end of file +96 overloaded \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.json b/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.json index 2452493..5766011 100644 --- a/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.json +++ b/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.json @@ -173,11 +173,58 @@ "calc_value": 7, "name": "ImGuiButtonFlags_MouseButtonMask_", "value": "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" + } + ], + "ImGuiChildFlags_": [ + { + "calc_value": 0, + "name": "ImGuiChildFlags_None", + "value": "0" }, { "calc_value": 1, - "name": "ImGuiButtonFlags_MouseButtonDefault_", - "value": "ImGuiButtonFlags_MouseButtonLeft" + "name": "ImGuiChildFlags_Borders", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiChildFlags_AlwaysUseWindowPadding", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiChildFlags_ResizeX", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiChildFlags_ResizeY", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiChildFlags_AutoResizeX", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiChildFlags_AutoResizeY", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiChildFlags_AlwaysAutoResize", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiChildFlags_FrameStyle", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiChildFlags_NavFlattened", + "value": "1 << 8" } ], "ImGuiCol_": [ @@ -348,108 +395,123 @@ }, { "calc_value": 33, - "name": "ImGuiCol_Tab", + "name": "ImGuiCol_TabHovered", "value": "33" }, { "calc_value": 34, - "name": "ImGuiCol_TabHovered", + "name": "ImGuiCol_Tab", "value": "34" }, { "calc_value": 35, - "name": "ImGuiCol_TabActive", + "name": "ImGuiCol_TabSelected", "value": "35" }, { "calc_value": 36, - "name": "ImGuiCol_TabUnfocused", + "name": "ImGuiCol_TabSelectedOverline", "value": "36" }, { "calc_value": 37, - "name": "ImGuiCol_TabUnfocusedActive", + "name": "ImGuiCol_TabDimmed", "value": "37" }, { "calc_value": 38, - "name": "ImGuiCol_PlotLines", + "name": "ImGuiCol_TabDimmedSelected", "value": "38" }, { "calc_value": 39, - "name": "ImGuiCol_PlotLinesHovered", + "name": "ImGuiCol_TabDimmedSelectedOverline", "value": "39" }, { "calc_value": 40, - "name": "ImGuiCol_PlotHistogram", + "name": "ImGuiCol_PlotLines", "value": "40" }, { "calc_value": 41, - "name": "ImGuiCol_PlotHistogramHovered", + "name": "ImGuiCol_PlotLinesHovered", "value": "41" }, { "calc_value": 42, - "name": "ImGuiCol_TableHeaderBg", + "name": "ImGuiCol_PlotHistogram", "value": "42" }, { "calc_value": 43, - "name": "ImGuiCol_TableBorderStrong", + "name": "ImGuiCol_PlotHistogramHovered", "value": "43" }, { "calc_value": 44, - "name": "ImGuiCol_TableBorderLight", + "name": "ImGuiCol_TableHeaderBg", "value": "44" }, { "calc_value": 45, - "name": "ImGuiCol_TableRowBg", + "name": "ImGuiCol_TableBorderStrong", "value": "45" }, { "calc_value": 46, - "name": "ImGuiCol_TableRowBgAlt", + "name": "ImGuiCol_TableBorderLight", "value": "46" }, { "calc_value": 47, - "name": "ImGuiCol_TextSelectedBg", + "name": "ImGuiCol_TableRowBg", "value": "47" }, { "calc_value": 48, - "name": "ImGuiCol_DragDropTarget", + "name": "ImGuiCol_TableRowBgAlt", "value": "48" }, { "calc_value": 49, - "name": "ImGuiCol_NavHighlight", + "name": "ImGuiCol_TextLink", "value": "49" }, { "calc_value": 50, - "name": "ImGuiCol_NavWindowingHighlight", + "name": "ImGuiCol_TextSelectedBg", "value": "50" }, { "calc_value": 51, - "name": "ImGuiCol_NavWindowingDimBg", + "name": "ImGuiCol_DragDropTarget", "value": "51" }, { "calc_value": 52, - "name": "ImGuiCol_ModalWindowDimBg", + "name": "ImGuiCol_NavHighlight", "value": "52" }, { "calc_value": 53, - "name": "ImGuiCol_COUNT", + "name": "ImGuiCol_NavWindowingHighlight", "value": "53" + }, + { + "calc_value": 54, + "name": "ImGuiCol_NavWindowingDimBg", + "value": "54" + }, + { + "calc_value": 55, + "name": "ImGuiCol_ModalWindowDimBg", + "value": "55" + }, + { + "calc_value": 56, + "name": "ImGuiCol_COUNT", + "value": "56" } ], "ImGuiColorEditFlags_": [ @@ -640,6 +702,11 @@ "name": "ImGuiComboFlags_NoPreview", "value": "1 << 6" }, + { + "calc_value": 128, + "name": "ImGuiComboFlags_WidthFitPreview", + "value": "1 << 7" + }, { "calc_value": 30, "name": "ImGuiComboFlags_HeightMask_", @@ -709,6 +776,11 @@ "name": "ImGuiConfigFlags_NoMouseCursorChange", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiConfigFlags_NoKeyboard", + "value": "1 << 6" + }, { "calc_value": 1048576, "name": "ImGuiConfigFlags_IsSRGB", @@ -773,11 +845,16 @@ }, { "calc_value": 10, - "name": "ImGuiDataType_COUNT", + "name": "ImGuiDataType_Bool", "value": "10" + }, + { + "calc_value": 11, + "name": "ImGuiDataType_COUNT", + "value": "11" } ], - "ImGuiDir_": [ + "ImGuiDir": [ { "calc_value": -1, "name": "ImGuiDir_None", @@ -842,9 +919,19 @@ }, { "calc_value": 32, - "name": "ImGuiDragDropFlags_SourceAutoExpirePayload", + "name": "ImGuiDragDropFlags_PayloadAutoExpire", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiDragDropFlags_PayloadNoCrossContext", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDragDropFlags_PayloadNoCrossProcess", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiDragDropFlags_AcceptBeforeDelivery", @@ -988,21 +1075,31 @@ }, { "calc_value": 256, - "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByItem", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiHoveredFlags_AllowWhenDisabled", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByWindow", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiHoveredFlags_NoNavOverride", + "name": "ImGuiHoveredFlags_AllowWhenDisabled", "value": "1 << 10" }, { - "calc_value": 416, + "calc_value": 2048, + "name": "ImGuiHoveredFlags_NoNavOverride", + "value": "1 << 11" + }, + { + "calc_value": 768, + "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "value": "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" + }, + { + "calc_value": 928, "name": "ImGuiHoveredFlags_RectOnly", "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" }, @@ -1011,20 +1108,92 @@ "name": "ImGuiHoveredFlags_RootAndChildWindows", "value": "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" }, - { - "calc_value": 2048, - "name": "ImGuiHoveredFlags_DelayNormal", - "value": "1 << 11" - }, { "calc_value": 4096, - "name": "ImGuiHoveredFlags_DelayShort", + "name": "ImGuiHoveredFlags_ForTooltip", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiHoveredFlags_NoSharedDelay", + "name": "ImGuiHoveredFlags_Stationary", "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiHoveredFlags_DelayNone", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiHoveredFlags_DelayShort", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiHoveredFlags_DelayNormal", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiHoveredFlags_NoSharedDelay", + "value": "1 << 17" + } + ], + "ImGuiInputFlags_": [ + { + "calc_value": 0, + "name": "ImGuiInputFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiInputFlags_Repeat", + "value": "1 << 0" + }, + { + "calc_value": 1024, + "name": "ImGuiInputFlags_RouteActive", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiInputFlags_RouteFocused", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiInputFlags_RouteGlobal", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiInputFlags_RouteAlways", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiInputFlags_RouteOverFocused", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiInputFlags_RouteOverActive", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiInputFlags_RouteUnlessBgFocused", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiInputFlags_RouteFromRootWindow", + "value": "1 << 17" + }, + { + "calc_value": 262144, + "name": "ImGuiInputFlags_Tooltip", + "value": "1 << 18" } ], "ImGuiInputTextFlags_": [ @@ -1045,72 +1214,72 @@ }, { "calc_value": 4, - "name": "ImGuiInputTextFlags_CharsUppercase", + "name": "ImGuiInputTextFlags_CharsScientific", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiInputTextFlags_CharsNoBlank", + "name": "ImGuiInputTextFlags_CharsUppercase", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiInputTextFlags_AutoSelectAll", + "name": "ImGuiInputTextFlags_CharsNoBlank", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiInputTextFlags_EnterReturnsTrue", + "name": "ImGuiInputTextFlags_AllowTabInput", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiInputTextFlags_CallbackCompletion", + "name": "ImGuiInputTextFlags_EnterReturnsTrue", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiInputTextFlags_CallbackHistory", + "name": "ImGuiInputTextFlags_EscapeClearsAll", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiInputTextFlags_CallbackAlways", + "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiInputTextFlags_CallbackCharFilter", + "name": "ImGuiInputTextFlags_ReadOnly", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiInputTextFlags_AllowTabInput", + "name": "ImGuiInputTextFlags_Password", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", + "name": "ImGuiInputTextFlags_AlwaysOverwrite", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiInputTextFlags_NoHorizontalScroll", + "name": "ImGuiInputTextFlags_AutoSelectAll", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiInputTextFlags_AlwaysOverwrite", + "name": "ImGuiInputTextFlags_ParseEmptyRefVal", "value": "1 << 13" }, { "calc_value": 16384, - "name": "ImGuiInputTextFlags_ReadOnly", + "name": "ImGuiInputTextFlags_DisplayEmptyRefVal", "value": "1 << 14" }, { "calc_value": 32768, - "name": "ImGuiInputTextFlags_Password", + "name": "ImGuiInputTextFlags_NoHorizontalScroll", "value": "1 << 15" }, { @@ -1120,23 +1289,70 @@ }, { "calc_value": 131072, - "name": "ImGuiInputTextFlags_CharsScientific", + "name": "ImGuiInputTextFlags_CallbackCompletion", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiInputTextFlags_CallbackResize", + "name": "ImGuiInputTextFlags_CallbackHistory", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiInputTextFlags_CallbackEdit", + "name": "ImGuiInputTextFlags_CallbackAlways", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiInputTextFlags_EscapeClearsAll", + "name": "ImGuiInputTextFlags_CallbackCharFilter", "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiInputTextFlags_CallbackResize", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 22" + } + ], + "ImGuiItemFlags_": [ + { + "calc_value": 0, + "name": "ImGuiItemFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiItemFlags_NoTabStop", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiItemFlags_NoNav", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiItemFlags_NoNavDefaultFocus", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiItemFlags_ButtonRepeat", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiItemFlags_AutoClosePopups", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiItemFlags_AllowDuplicateId", + "value": "1 << 5" } ], "ImGuiKey": [ @@ -1507,349 +1723,419 @@ }, { "calc_value": 584, - "name": "ImGuiKey_Apostrophe", + "name": "ImGuiKey_F13", "value": "584" }, { "calc_value": 585, - "name": "ImGuiKey_Comma", + "name": "ImGuiKey_F14", "value": "585" }, { "calc_value": 586, - "name": "ImGuiKey_Minus", + "name": "ImGuiKey_F15", "value": "586" }, { "calc_value": 587, - "name": "ImGuiKey_Period", + "name": "ImGuiKey_F16", "value": "587" }, { "calc_value": 588, - "name": "ImGuiKey_Slash", + "name": "ImGuiKey_F17", "value": "588" }, { "calc_value": 589, - "name": "ImGuiKey_Semicolon", + "name": "ImGuiKey_F18", "value": "589" }, { "calc_value": 590, - "name": "ImGuiKey_Equal", + "name": "ImGuiKey_F19", "value": "590" }, { "calc_value": 591, - "name": "ImGuiKey_LeftBracket", + "name": "ImGuiKey_F20", "value": "591" }, { "calc_value": 592, - "name": "ImGuiKey_Backslash", + "name": "ImGuiKey_F21", "value": "592" }, { "calc_value": 593, - "name": "ImGuiKey_RightBracket", + "name": "ImGuiKey_F22", "value": "593" }, { "calc_value": 594, - "name": "ImGuiKey_GraveAccent", + "name": "ImGuiKey_F23", "value": "594" }, { "calc_value": 595, - "name": "ImGuiKey_CapsLock", + "name": "ImGuiKey_F24", "value": "595" }, { "calc_value": 596, - "name": "ImGuiKey_ScrollLock", + "name": "ImGuiKey_Apostrophe", "value": "596" }, { "calc_value": 597, - "name": "ImGuiKey_NumLock", + "name": "ImGuiKey_Comma", "value": "597" }, { "calc_value": 598, - "name": "ImGuiKey_PrintScreen", + "name": "ImGuiKey_Minus", "value": "598" }, { "calc_value": 599, - "name": "ImGuiKey_Pause", + "name": "ImGuiKey_Period", "value": "599" }, { "calc_value": 600, - "name": "ImGuiKey_Keypad0", + "name": "ImGuiKey_Slash", "value": "600" }, { "calc_value": 601, - "name": "ImGuiKey_Keypad1", + "name": "ImGuiKey_Semicolon", "value": "601" }, { "calc_value": 602, - "name": "ImGuiKey_Keypad2", + "name": "ImGuiKey_Equal", "value": "602" }, { "calc_value": 603, - "name": "ImGuiKey_Keypad3", + "name": "ImGuiKey_LeftBracket", "value": "603" }, { "calc_value": 604, - "name": "ImGuiKey_Keypad4", + "name": "ImGuiKey_Backslash", "value": "604" }, { "calc_value": 605, - "name": "ImGuiKey_Keypad5", + "name": "ImGuiKey_RightBracket", "value": "605" }, { "calc_value": 606, - "name": "ImGuiKey_Keypad6", + "name": "ImGuiKey_GraveAccent", "value": "606" }, { "calc_value": 607, - "name": "ImGuiKey_Keypad7", + "name": "ImGuiKey_CapsLock", "value": "607" }, { "calc_value": 608, - "name": "ImGuiKey_Keypad8", + "name": "ImGuiKey_ScrollLock", "value": "608" }, { "calc_value": 609, - "name": "ImGuiKey_Keypad9", + "name": "ImGuiKey_NumLock", "value": "609" }, { "calc_value": 610, - "name": "ImGuiKey_KeypadDecimal", + "name": "ImGuiKey_PrintScreen", "value": "610" }, { "calc_value": 611, - "name": "ImGuiKey_KeypadDivide", + "name": "ImGuiKey_Pause", "value": "611" }, { "calc_value": 612, - "name": "ImGuiKey_KeypadMultiply", + "name": "ImGuiKey_Keypad0", "value": "612" }, { "calc_value": 613, - "name": "ImGuiKey_KeypadSubtract", + "name": "ImGuiKey_Keypad1", "value": "613" }, { "calc_value": 614, - "name": "ImGuiKey_KeypadAdd", + "name": "ImGuiKey_Keypad2", "value": "614" }, { "calc_value": 615, - "name": "ImGuiKey_KeypadEnter", + "name": "ImGuiKey_Keypad3", "value": "615" }, { "calc_value": 616, - "name": "ImGuiKey_KeypadEqual", + "name": "ImGuiKey_Keypad4", "value": "616" }, { "calc_value": 617, - "name": "ImGuiKey_GamepadStart", + "name": "ImGuiKey_Keypad5", "value": "617" }, { "calc_value": 618, - "name": "ImGuiKey_GamepadBack", + "name": "ImGuiKey_Keypad6", "value": "618" }, { "calc_value": 619, - "name": "ImGuiKey_GamepadFaceLeft", + "name": "ImGuiKey_Keypad7", "value": "619" }, { "calc_value": 620, - "name": "ImGuiKey_GamepadFaceRight", + "name": "ImGuiKey_Keypad8", "value": "620" }, { "calc_value": 621, - "name": "ImGuiKey_GamepadFaceUp", + "name": "ImGuiKey_Keypad9", "value": "621" }, { "calc_value": 622, - "name": "ImGuiKey_GamepadFaceDown", + "name": "ImGuiKey_KeypadDecimal", "value": "622" }, { "calc_value": 623, - "name": "ImGuiKey_GamepadDpadLeft", + "name": "ImGuiKey_KeypadDivide", "value": "623" }, { "calc_value": 624, - "name": "ImGuiKey_GamepadDpadRight", + "name": "ImGuiKey_KeypadMultiply", "value": "624" }, { "calc_value": 625, - "name": "ImGuiKey_GamepadDpadUp", + "name": "ImGuiKey_KeypadSubtract", "value": "625" }, { "calc_value": 626, - "name": "ImGuiKey_GamepadDpadDown", + "name": "ImGuiKey_KeypadAdd", "value": "626" }, { "calc_value": 627, - "name": "ImGuiKey_GamepadL1", + "name": "ImGuiKey_KeypadEnter", "value": "627" }, { "calc_value": 628, - "name": "ImGuiKey_GamepadR1", + "name": "ImGuiKey_KeypadEqual", "value": "628" }, { "calc_value": 629, - "name": "ImGuiKey_GamepadL2", + "name": "ImGuiKey_AppBack", "value": "629" }, { "calc_value": 630, - "name": "ImGuiKey_GamepadR2", + "name": "ImGuiKey_AppForward", "value": "630" }, { "calc_value": 631, - "name": "ImGuiKey_GamepadL3", + "name": "ImGuiKey_GamepadStart", "value": "631" }, { "calc_value": 632, - "name": "ImGuiKey_GamepadR3", + "name": "ImGuiKey_GamepadBack", "value": "632" }, { "calc_value": 633, - "name": "ImGuiKey_GamepadLStickLeft", + "name": "ImGuiKey_GamepadFaceLeft", "value": "633" }, { "calc_value": 634, - "name": "ImGuiKey_GamepadLStickRight", + "name": "ImGuiKey_GamepadFaceRight", "value": "634" }, { "calc_value": 635, - "name": "ImGuiKey_GamepadLStickUp", + "name": "ImGuiKey_GamepadFaceUp", "value": "635" }, { "calc_value": 636, - "name": "ImGuiKey_GamepadLStickDown", + "name": "ImGuiKey_GamepadFaceDown", "value": "636" }, { "calc_value": 637, - "name": "ImGuiKey_GamepadRStickLeft", + "name": "ImGuiKey_GamepadDpadLeft", "value": "637" }, { "calc_value": 638, - "name": "ImGuiKey_GamepadRStickRight", + "name": "ImGuiKey_GamepadDpadRight", "value": "638" }, { "calc_value": 639, - "name": "ImGuiKey_GamepadRStickUp", + "name": "ImGuiKey_GamepadDpadUp", "value": "639" }, { "calc_value": 640, - "name": "ImGuiKey_GamepadRStickDown", + "name": "ImGuiKey_GamepadDpadDown", "value": "640" }, { "calc_value": 641, - "name": "ImGuiKey_MouseLeft", + "name": "ImGuiKey_GamepadL1", "value": "641" }, { "calc_value": 642, - "name": "ImGuiKey_MouseRight", + "name": "ImGuiKey_GamepadR1", "value": "642" }, { "calc_value": 643, - "name": "ImGuiKey_MouseMiddle", + "name": "ImGuiKey_GamepadL2", "value": "643" }, { "calc_value": 644, - "name": "ImGuiKey_MouseX1", + "name": "ImGuiKey_GamepadR2", "value": "644" }, { "calc_value": 645, - "name": "ImGuiKey_MouseX2", + "name": "ImGuiKey_GamepadL3", "value": "645" }, { "calc_value": 646, - "name": "ImGuiKey_MouseWheelX", + "name": "ImGuiKey_GamepadR3", "value": "646" }, { "calc_value": 647, - "name": "ImGuiKey_MouseWheelY", + "name": "ImGuiKey_GamepadLStickLeft", "value": "647" }, { "calc_value": 648, - "name": "ImGuiKey_ReservedForModCtrl", + "name": "ImGuiKey_GamepadLStickRight", "value": "648" }, { "calc_value": 649, - "name": "ImGuiKey_ReservedForModShift", + "name": "ImGuiKey_GamepadLStickUp", "value": "649" }, { "calc_value": 650, - "name": "ImGuiKey_ReservedForModAlt", + "name": "ImGuiKey_GamepadLStickDown", "value": "650" }, { "calc_value": 651, - "name": "ImGuiKey_ReservedForModSuper", + "name": "ImGuiKey_GamepadRStickLeft", "value": "651" }, { "calc_value": 652, - "name": "ImGuiKey_COUNT", + "name": "ImGuiKey_GamepadRStickRight", "value": "652" }, + { + "calc_value": 653, + "name": "ImGuiKey_GamepadRStickUp", + "value": "653" + }, + { + "calc_value": 654, + "name": "ImGuiKey_GamepadRStickDown", + "value": "654" + }, + { + "calc_value": 655, + "name": "ImGuiKey_MouseLeft", + "value": "655" + }, + { + "calc_value": 656, + "name": "ImGuiKey_MouseRight", + "value": "656" + }, + { + "calc_value": 657, + "name": "ImGuiKey_MouseMiddle", + "value": "657" + }, + { + "calc_value": 658, + "name": "ImGuiKey_MouseX1", + "value": "658" + }, + { + "calc_value": 659, + "name": "ImGuiKey_MouseX2", + "value": "659" + }, + { + "calc_value": 660, + "name": "ImGuiKey_MouseWheelX", + "value": "660" + }, + { + "calc_value": 661, + "name": "ImGuiKey_MouseWheelY", + "value": "661" + }, + { + "calc_value": 662, + "name": "ImGuiKey_ReservedForModCtrl", + "value": "662" + }, + { + "calc_value": 663, + "name": "ImGuiKey_ReservedForModShift", + "value": "663" + }, + { + "calc_value": 664, + "name": "ImGuiKey_ReservedForModAlt", + "value": "664" + }, + { + "calc_value": 665, + "name": "ImGuiKey_ReservedForModSuper", + "value": "665" + }, + { + "calc_value": 666, + "name": "ImGuiKey_COUNT", + "value": "666" + }, { "calc_value": 0, "name": "ImGuiMod_None", @@ -1876,14 +2162,9 @@ "value": "1 << 15" }, { - "calc_value": 2048, - "name": "ImGuiMod_Shortcut", - "value": "1 << 11" - }, - { - "calc_value": 63488, + "calc_value": 61440, "name": "ImGuiMod_Mask_", - "value": "0xF800" + "value": "0xF000" }, { "calc_value": 512, @@ -1891,24 +2172,24 @@ "value": "512" }, { - "calc_value": 652, + "calc_value": 666, "name": "ImGuiKey_NamedKey_END", "value": "ImGuiKey_COUNT" }, { - "calc_value": 140, + "calc_value": 154, "name": "ImGuiKey_NamedKey_COUNT", "value": "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" }, { - "calc_value": 652, + "calc_value": 154, "name": "ImGuiKey_KeysData_SIZE", - "value": "ImGuiKey_COUNT" + "value": "ImGuiKey_NamedKey_COUNT" }, { - "calc_value": 0, + "calc_value": 512, "name": "ImGuiKey_KeysData_OFFSET", - "value": "0" + "value": "ImGuiKey_NamedKey_BEGIN" } ], "ImGuiMouseButton_": [ @@ -1990,91 +2271,113 @@ "value": "9" } ], - "ImGuiNavInput": [ + "ImGuiMouseSource": [ { "calc_value": 0, - "name": "ImGuiNavInput_Activate", + "name": "ImGuiMouseSource_Mouse", "value": "0" }, { "calc_value": 1, - "name": "ImGuiNavInput_Cancel", + "name": "ImGuiMouseSource_TouchScreen", "value": "1" }, { "calc_value": 2, - "name": "ImGuiNavInput_Input", + "name": "ImGuiMouseSource_Pen", "value": "2" }, { "calc_value": 3, - "name": "ImGuiNavInput_Menu", + "name": "ImGuiMouseSource_COUNT", "value": "3" + } + ], + "ImGuiMultiSelectFlags_": [ + { + "calc_value": 0, + "name": "ImGuiMultiSelectFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiMultiSelectFlags_SingleSelect", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiMultiSelectFlags_NoSelectAll", + "value": "1 << 1" }, { "calc_value": 4, - "name": "ImGuiNavInput_DpadLeft", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiNavInput_DpadRight", - "value": "5" - }, - { - "calc_value": 6, - "name": "ImGuiNavInput_DpadUp", - "value": "6" - }, - { - "calc_value": 7, - "name": "ImGuiNavInput_DpadDown", - "value": "7" + "name": "ImGuiMultiSelectFlags_NoRangeSelect", + "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiNavInput_LStickLeft", - "value": "8" - }, - { - "calc_value": 9, - "name": "ImGuiNavInput_LStickRight", - "value": "9" - }, - { - "calc_value": 10, - "name": "ImGuiNavInput_LStickUp", - "value": "10" - }, - { - "calc_value": 11, - "name": "ImGuiNavInput_LStickDown", - "value": "11" - }, - { - "calc_value": 12, - "name": "ImGuiNavInput_FocusPrev", - "value": "12" - }, - { - "calc_value": 13, - "name": "ImGuiNavInput_FocusNext", - "value": "13" - }, - { - "calc_value": 14, - "name": "ImGuiNavInput_TweakSlow", - "value": "14" - }, - { - "calc_value": 15, - "name": "ImGuiNavInput_TweakFast", - "value": "15" + "name": "ImGuiMultiSelectFlags_NoAutoSelect", + "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiNavInput_COUNT", - "value": "16" + "name": "ImGuiMultiSelectFlags_NoAutoClear", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiMultiSelectFlags_NoAutoClearOnReselect", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiMultiSelectFlags_BoxSelect1d", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiMultiSelectFlags_BoxSelect2d", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiMultiSelectFlags_BoxSelectNoScroll", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiMultiSelectFlags_ClearOnEscape", + "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiMultiSelectFlags_ClearOnClickVoid", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiMultiSelectFlags_ScopeWindow", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiMultiSelectFlags_ScopeRect", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiMultiSelectFlags_SelectOnClick", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiMultiSelectFlags_SelectOnClickRelease", + "value": "1 << 14" + }, + { + "calc_value": 65536, + "name": "ImGuiMultiSelectFlags_NavWrapX", + "value": "1 << 16" } ], "ImGuiPopupFlags_": [ @@ -2110,26 +2413,31 @@ }, { "calc_value": 32, - "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", + "name": "ImGuiPopupFlags_NoReopen", "value": "1 << 5" }, - { - "calc_value": 64, - "name": "ImGuiPopupFlags_NoOpenOverItems", - "value": "1 << 6" - }, { "calc_value": 128, - "name": "ImGuiPopupFlags_AnyPopupId", + "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiPopupFlags_AnyPopupLevel", + "name": "ImGuiPopupFlags_NoOpenOverItems", "value": "1 << 8" }, { - "calc_value": 384, + "calc_value": 1024, + "name": "ImGuiPopupFlags_AnyPopupId", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiPopupFlags_AnyPopupLevel", + "value": "1 << 11" + }, + { + "calc_value": 3072, "name": "ImGuiPopupFlags_AnyPopup", "value": "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" } @@ -2142,7 +2450,7 @@ }, { "calc_value": 1, - "name": "ImGuiSelectableFlags_DontClosePopups", + "name": "ImGuiSelectableFlags_NoAutoClosePopups", "value": "1 << 0" }, { @@ -2162,8 +2470,30 @@ }, { "calc_value": 16, - "name": "ImGuiSelectableFlags_AllowItemOverlap", + "name": "ImGuiSelectableFlags_AllowOverlap", "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiSelectableFlags_Highlight", + "value": "1 << 5" + } + ], + "ImGuiSelectionRequestType": [ + { + "calc_value": 0, + "name": "ImGuiSelectionRequestType_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiSelectionRequestType_SetAll", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiSelectionRequestType_SetRange", + "value": "2" } ], "ImGuiSliderFlags_": [ @@ -2192,13 +2522,18 @@ "name": "ImGuiSliderFlags_NoInput", "value": "1 << 7" }, + { + "calc_value": 256, + "name": "ImGuiSliderFlags_WrapAround", + "value": "1 << 8" + }, { "calc_value": 1879048207, "name": "ImGuiSliderFlags_InvalidMask_", "value": "0x7000000F" } ], - "ImGuiSortDirection_": [ + "ImGuiSortDirection": [ { "calc_value": 0, "name": "ImGuiSortDirection_None", @@ -2333,18 +2668,58 @@ }, { "calc_value": 23, - "name": "ImGuiStyleVar_ButtonTextAlign", + "name": "ImGuiStyleVar_TabBorderSize", "value": "23" }, { "calc_value": 24, - "name": "ImGuiStyleVar_SelectableTextAlign", + "name": "ImGuiStyleVar_TabBarBorderSize", "value": "24" }, { "calc_value": 25, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_TabBarOverlineSize", "value": "25" + }, + { + "calc_value": 26, + "name": "ImGuiStyleVar_TableAngledHeadersAngle", + "value": "26" + }, + { + "calc_value": 27, + "name": "ImGuiStyleVar_TableAngledHeadersTextAlign", + "value": "27" + }, + { + "calc_value": 28, + "name": "ImGuiStyleVar_ButtonTextAlign", + "value": "28" + }, + { + "calc_value": 29, + "name": "ImGuiStyleVar_SelectableTextAlign", + "value": "29" + }, + { + "calc_value": 30, + "name": "ImGuiStyleVar_SeparatorTextBorderSize", + "value": "30" + }, + { + "calc_value": 31, + "name": "ImGuiStyleVar_SeparatorTextAlign", + "value": "31" + }, + { + "calc_value": 32, + "name": "ImGuiStyleVar_SeparatorTextPadding", + "value": "32" + }, + { + "calc_value": 33, + "name": "ImGuiStyleVar_COUNT", + "value": "33" } ], "ImGuiTabBarFlags_": [ @@ -2385,21 +2760,26 @@ }, { "calc_value": 64, - "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", + "name": "ImGuiTabBarFlags_DrawSelectedOverline", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", "value": "1 << 7" }, { - "calc_value": 192, + "calc_value": 256, + "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "value": "1 << 8" + }, + { + "calc_value": 384, "name": "ImGuiTabBarFlags_FittingPolicyMask_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" }, { - "calc_value": 64, + "calc_value": 128, "name": "ImGuiTabBarFlags_FittingPolicyDefault_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown" } @@ -2449,6 +2829,11 @@ "calc_value": 128, "name": "ImGuiTabItemFlags_Trailing", "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiTabItemFlags_NoAssumedClosure", + "value": "1 << 8" } ], "ImGuiTableBgTarget_": [ @@ -2569,6 +2954,11 @@ "name": "ImGuiTableColumnFlags_IndentDisable", "value": "1 << 17" }, + { + "calc_value": 262144, + "name": "ImGuiTableColumnFlags_AngledHeader", + "value": "1 << 18" + }, { "calc_value": 16777216, "name": "ImGuiTableColumnFlags_IsEnabled", @@ -2786,6 +3176,11 @@ "name": "ImGuiTableFlags_SortTristate", "value": "1 << 27" }, + { + "calc_value": 268435456, + "name": "ImGuiTableFlags_HighlightHoveredColumn", + "value": "1 << 28" + }, { "calc_value": 57344, "name": "ImGuiTableFlags_SizingMask_", @@ -2822,7 +3217,7 @@ }, { "calc_value": 4, - "name": "ImGuiTreeNodeFlags_AllowItemOverlap", + "name": "ImGuiTreeNodeFlags_AllowOverlap", "value": "1 << 2" }, { @@ -2877,9 +3272,19 @@ }, { "calc_value": 8192, - "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "name": "ImGuiTreeNodeFlags_SpanTextWidth", "value": "1 << 13" }, + { + "calc_value": 16384, + "name": "ImGuiTreeNodeFlags_SpanAllColumns", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "value": "1 << 15" + }, { "calc_value": 26, "name": "ImGuiTreeNodeFlags_CollapsingHeader", @@ -2996,26 +3401,21 @@ }, { "calc_value": 65536, - "name": "ImGuiWindowFlags_AlwaysUseWindowPadding", + "name": "ImGuiWindowFlags_NoNavInputs", "value": "1 << 16" }, + { + "calc_value": 131072, + "name": "ImGuiWindowFlags_NoNavFocus", + "value": "1 << 17" + }, { "calc_value": 262144, - "name": "ImGuiWindowFlags_NoNavInputs", + "name": "ImGuiWindowFlags_UnsavedDocument", "value": "1 << 18" }, { - "calc_value": 524288, - "name": "ImGuiWindowFlags_NoNavFocus", - "value": "1 << 19" - }, - { - "calc_value": 1048576, - "name": "ImGuiWindowFlags_UnsavedDocument", - "value": "1 << 20" - }, - { - "calc_value": 786432, + "calc_value": 196608, "name": "ImGuiWindowFlags_NoNav", "value": "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, @@ -3025,15 +3425,10 @@ "value": "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" }, { - "calc_value": 786944, + "calc_value": 197120, "name": "ImGuiWindowFlags_NoInputs", "value": "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, - { - "calc_value": 8388608, - "name": "ImGuiWindowFlags_NavFlattened", - "value": "1 << 23" - }, { "calc_value": 16777216, "name": "ImGuiWindowFlags_ChildWindow", @@ -3062,77 +3457,90 @@ ] }, "enumtypes": { - "ImGuiKey": "int" + "ImGuiDir": "int", + "ImGuiKey": "int", + "ImGuiMouseSource": "int", + "ImGuiSortDirection": "ImU8" }, "locations": { - "ImColor": "imgui:2344", - "ImDrawChannel": "imgui:2434", - "ImDrawCmd": "imgui:2393", - "ImDrawCmdHeader": "imgui:2426", - "ImDrawData": "imgui:2626", - "ImDrawFlags_": "imgui:2460", - "ImDrawList": "imgui:2498", - "ImDrawListFlags_": "imgui:2480", - "ImDrawListSplitter": "imgui:2443", - "ImDrawVert": "imgui:2411", - "ImFont": "imgui:2845", - "ImFontAtlas": "imgui:2742", - "ImFontAtlasCustomRect": "imgui:2704", - "ImFontAtlasFlags_": "imgui:2717", - "ImFontConfig": "imgui:2648", - "ImFontGlyph": "imgui:2677", - "ImFontGlyphRangesBuilder": "imgui:2689", - "ImGuiBackendFlags_": "imgui:1508", - "ImGuiButtonFlags_": "imgui:1615", - "ImGuiCol_": "imgui:1518", - "ImGuiColorEditFlags_": "imgui:1628", - "ImGuiComboFlags_": "imgui:1080", - "ImGuiCond_": "imgui:1719", - "ImGuiConfigFlags_": "imgui:1492", - "ImGuiDataType_": "imgui:1317", - "ImGuiDir_": "imgui:1333", - "ImGuiDragDropFlags_": "imgui:1295", - "ImGuiFocusedFlags_": "imgui:1257", + "ImColor": "imgui:2730", + "ImDrawChannel": "imgui:2968", + "ImDrawCmd": "imgui:2927", + "ImDrawCmdHeader": "imgui:2960", + "ImDrawData": "imgui:3173", + "ImDrawFlags_": "imgui:2994", + "ImDrawList": "imgui:3032", + "ImDrawListFlags_": "imgui:3014", + "ImDrawListSplitter": "imgui:2977", + "ImDrawVert": "imgui:2945", + "ImFont": "imgui:3396", + "ImFontAtlas": "imgui:3292", + "ImFontAtlasCustomRect": "imgui:3254", + "ImFontAtlasFlags_": "imgui:3267", + "ImFontConfig": "imgui:3197", + "ImFontGlyph": "imgui:3227", + "ImFontGlyphRangesBuilder": "imgui:3239", + "ImGuiBackendFlags_": "imgui:1610", + "ImGuiButtonFlags_": "imgui:1735", + "ImGuiChildFlags_": "imgui:1109", + "ImGuiCol_": "imgui:1620", + "ImGuiColorEditFlags_": "imgui:1746", + "ImGuiComboFlags_": "imgui:1252", + "ImGuiCond_": "imgui:1848", + "ImGuiConfigFlags_": "imgui:1593", + "ImGuiDataType_": "imgui:1379", + "ImGuiDir": "imgui:1396", + "ImGuiDragDropFlags_": "imgui:1351", + "ImGuiFocusedFlags_": "imgui:1299", "ImGuiFreeTypeBuilderFlags": "imgui_freetype:19", - "ImGuiHoveredFlags_": "imgui:1271", - "ImGuiIO": "imgui:1896", - "ImGuiInputTextCallbackData": "imgui:2069", - "ImGuiInputTextFlags_": "imgui:992", - "ImGuiKey": "imgui:1355", - "ImGuiKeyData": "imgui:1888", - "ImGuiListClipper": "imgui:2293", - "ImGuiMouseButton_": "imgui:1691", - "ImGuiMouseCursor_": "imgui:1701", - "ImGuiNavInput": "imgui:1483", - "ImGuiOnceUponAFrame": "imgui:2168", - "ImGuiPayload": "imgui:2109", - "ImGuiPlatformImeData": "imgui:2939", - "ImGuiPopupFlags_": "imgui:1053", - "ImGuiSelectableFlags_": "imgui:1069", - "ImGuiSizeCallbackData": "imgui:2100", - "ImGuiSliderFlags_": "imgui:1674", - "ImGuiSortDirection_": "imgui:1344", - "ImGuiStorage": "imgui:2230", - "ImGuiStoragePair": "imgui:2233", - "ImGuiStyle": "imgui:1831", - "ImGuiStyleVar_": "imgui:1583", - "ImGuiTabBarFlags_": "imgui:1094", - "ImGuiTabItemFlags_": "imgui:1110", - "ImGuiTableBgTarget_": "imgui:1248", - "ImGuiTableColumnFlags_": "imgui:1196", - "ImGuiTableColumnSortSpecs": "imgui:2131", - "ImGuiTableFlags_": "imgui:1145", - "ImGuiTableRowFlags_": "imgui:1233", - "ImGuiTableSortSpecs": "imgui:2145", - "ImGuiTextBuffer": "imgui:2203", - "ImGuiTextFilter": "imgui:2176", - "ImGuiTextRange": "imgui:2186", - "ImGuiTreeNodeFlags_": "imgui:1024", - "ImGuiViewport": "imgui:2916", - "ImGuiViewportFlags_": "imgui:2901", - "ImGuiWindowFlags_": "imgui:954", - "ImVec2": "imgui:253", - "ImVec4": "imgui:266" + "ImGuiHoveredFlags_": "imgui:1313", + "ImGuiIO": "imgui:2220", + "ImGuiInputFlags_": "imgui:1558", + "ImGuiInputTextCallbackData": "imgui:2431", + "ImGuiInputTextFlags_": "imgui:1143", + "ImGuiItemFlags_": "imgui:1130", + "ImGuiKey": "imgui:1425", + "ImGuiKeyData": "imgui:2212", + "ImGuiListClipper": "imgui:2638", + "ImGuiMouseButton_": "imgui:1808", + "ImGuiMouseCursor_": "imgui:1818", + "ImGuiMouseSource": "imgui:1837", + "ImGuiMultiSelectFlags_": "imgui:2788", + "ImGuiMultiSelectIO": "imgui:2815", + "ImGuiOnceUponAFrame": "imgui:2509", + "ImGuiPayload": "imgui:2474", + "ImGuiPlatformIO": "imgui:3494", + "ImGuiPlatformImeData": "imgui:3525", + "ImGuiPopupFlags_": "imgui:1217", + "ImGuiSelectableFlags_": "imgui:1235", + "ImGuiSelectionBasicStorage": "imgui:2861", + "ImGuiSelectionExternalStorage": "imgui:2884", + "ImGuiSelectionRequest": "imgui:2835", + "ImGuiSelectionRequestType": "imgui:2827", + "ImGuiSizeCallbackData": "imgui:2465", + "ImGuiSliderFlags_": "imgui:1792", + "ImGuiSortDirection": "imgui:1407", + "ImGuiStorage": "imgui:2581", + "ImGuiStoragePair": "imgui:2564", + "ImGuiStyle": "imgui:2135", + "ImGuiStyleVar_": "imgui:1695", + "ImGuiTabBarFlags_": "imgui:1267", + "ImGuiTabItemFlags_": "imgui:1284", + "ImGuiTableBgTarget_": "imgui:1989", + "ImGuiTableColumnFlags_": "imgui:1936", + "ImGuiTableColumnSortSpecs": "imgui:2011", + "ImGuiTableFlags_": "imgui:1883", + "ImGuiTableRowFlags_": "imgui:1974", + "ImGuiTableSortSpecs": "imgui:2001", + "ImGuiTextBuffer": "imgui:2544", + "ImGuiTextFilter": "imgui:2517", + "ImGuiTextRange": "imgui:2527", + "ImGuiTreeNodeFlags_": "imgui:1182", + "ImGuiViewport": "imgui:3469", + "ImGuiViewportFlags_": "imgui:3454", + "ImGuiWindowFlags_": "imgui:1060", + "ImVec2": "imgui:288", + "ImVec4": "imgui:301" }, "structs": { "ImColor": [ @@ -3216,7 +3624,8 @@ }, { "name": "CmdLists", - "type": "ImDrawList**" + "template_type": "ImDrawList*", + "type": "ImVector_ImDrawListPtr" }, { "name": "DisplayPos", @@ -3229,6 +3638,10 @@ { "name": "FramebufferScale", "type": "ImVec2" + }, + { + "name": "OwnerViewport", + "type": "ImGuiViewport*" } ], "ImDrawList": [ @@ -3259,10 +3672,6 @@ "name": "_Data", "type": "ImDrawListSharedData*" }, - { - "name": "_OwnerName", - "type": "const char*" - }, { "name": "_VtxWritePtr", "type": "ImDrawVert*" @@ -3271,16 +3680,6 @@ "name": "_IdxWritePtr", "type": "ImDrawIdx*" }, - { - "name": "_ClipRectStack", - "template_type": "ImVec4", - "type": "ImVector_ImVec4" - }, - { - "name": "_TextureIdStack", - "template_type": "ImTextureID", - "type": "ImVector_ImTextureID" - }, { "name": "_Path", "template_type": "ImVec2", @@ -3294,9 +3693,23 @@ "name": "_Splitter", "type": "ImDrawListSplitter" }, + { + "name": "_ClipRectStack", + "template_type": "ImVec4", + "type": "ImVector_ImVec4" + }, + { + "name": "_TextureIdStack", + "template_type": "ImTextureID", + "type": "ImVector_ImTextureID" + }, { "name": "_FringeScale", "type": "float" + }, + { + "name": "_OwnerName", + "type": "const char*" } ], "ImDrawListSplitter": [ @@ -3377,8 +3790,16 @@ "type": "ImWchar" }, { - "name": "DotChar", - "type": "ImWchar" + "name": "EllipsisCharCount", + "type": "short" + }, + { + "name": "EllipsisWidth", + "type": "float" + }, + { + "name": "EllipsisCharStep", + "type": "float" }, { "name": "DirtyLookupTables", @@ -3599,6 +4020,10 @@ "name": "RasterizerMultiply", "type": "float" }, + { + "name": "RasterizerDensity", + "type": "float" + }, { "name": "EllipsisChar", "type": "ImWchar" @@ -3702,34 +4127,6 @@ "name": "LogFilename", "type": "const char*" }, - { - "name": "MouseDoubleClickTime", - "type": "float" - }, - { - "name": "MouseDoubleClickMaxDist", - "type": "float" - }, - { - "name": "MouseDragThreshold", - "type": "float" - }, - { - "name": "KeyRepeatDelay", - "type": "float" - }, - { - "name": "KeyRepeatRate", - "type": "float" - }, - { - "name": "HoverDelayNormal", - "type": "float" - }, - { - "name": "HoverDelayShort", - "type": "float" - }, { "name": "UserData", "type": "void*" @@ -3762,6 +4159,10 @@ "name": "ConfigMacOSXBehaviors", "type": "bool" }, + { + "name": "ConfigNavSwapGamepadButtons", + "type": "bool" + }, { "name": "ConfigInputTrickleEventQueue", "type": "bool" @@ -3790,6 +4191,50 @@ "name": "ConfigMemoryCompactTimer", "type": "float" }, + { + "name": "MouseDoubleClickTime", + "type": "float" + }, + { + "name": "MouseDoubleClickMaxDist", + "type": "float" + }, + { + "name": "MouseDragThreshold", + "type": "float" + }, + { + "name": "KeyRepeatDelay", + "type": "float" + }, + { + "name": "KeyRepeatRate", + "type": "float" + }, + { + "name": "ConfigDebugIsDebuggerPresent", + "type": "bool" + }, + { + "name": "ConfigDebugHighlightIdConflicts", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueOnce", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueLoop", + "type": "bool" + }, + { + "name": "ConfigDebugIgnoreFocusLoss", + "type": "bool" + }, + { + "name": "ConfigDebugIniSettings", + "type": "bool" + }, { "name": "BackendPlatformName", "type": "const char*" @@ -3810,26 +4255,6 @@ "name": "BackendLanguageUserData", "type": "void*" }, - { - "name": "GetClipboardTextFn", - "type": "const char*(*)(void* user_data)" - }, - { - "name": "SetClipboardTextFn", - "type": "void(*)(void* user_data,const char* text)" - }, - { - "name": "ClipboardUserData", - "type": "void*" - }, - { - "name": "SetPlatformImeDataFn", - "type": "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" - }, - { - "name": "_UnusedPadding", - "type": "void*" - }, { "name": "WantCaptureMouse", "type": "bool" @@ -3878,28 +4303,13 @@ "name": "MetricsActiveWindows", "type": "int" }, - { - "name": "MetricsActiveAllocations", - "type": "int" - }, { "name": "MouseDelta", "type": "ImVec2" }, { - "name": "KeyMap[ImGuiKey_COUNT]", - "size": 652, - "type": "int" - }, - { - "name": "KeysDown[ImGuiKey_COUNT]", - "size": 652, - "type": "bool" - }, - { - "name": "NavInputs[ImGuiNavInput_COUNT]", - "size": 16, - "type": "float" + "name": "Ctx", + "type": "ImGuiContext*" }, { "name": "MousePos", @@ -3918,6 +4328,10 @@ "name": "MouseWheelH", "type": "float" }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" + }, { "name": "KeyCtrl", "type": "bool" @@ -3940,7 +4354,7 @@ }, { "name": "KeysData[ImGuiKey_KeysData_SIZE]", - "size": 652, + "size": 154, "type": "ImGuiKeyData" }, { @@ -3996,6 +4410,14 @@ "size": 5, "type": "bool" }, + { + "name": "MouseWheelRequestAxisSwap", + "type": "bool" + }, + { + "name": "MouseCtrlLeftAsRightClick", + "type": "bool" + }, { "name": "MouseDownDuration[5]", "size": 5, @@ -4042,6 +4464,10 @@ } ], "ImGuiInputTextCallbackData": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "EventFlag", "type": "ImGuiInputTextFlags" @@ -4110,6 +4536,10 @@ } ], "ImGuiListClipper": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "DisplayStart", "type": "int" @@ -4130,11 +4560,42 @@ "name": "StartPosY", "type": "float" }, + { + "name": "StartSeekOffsetY", + "type": "double" + }, { "name": "TempData", "type": "void*" } ], + "ImGuiMultiSelectIO": [ + { + "name": "Requests", + "template_type": "ImGuiSelectionRequest", + "type": "ImVector_ImGuiSelectionRequest" + }, + { + "name": "RangeSrcItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdSelected", + "type": "bool" + }, + { + "name": "RangeSrcReset", + "type": "bool" + }, + { + "name": "ItemsCount", + "type": "int" + } + ], "ImGuiOnceUponAFrame": [ { "name": "RefFrame", @@ -4176,6 +4637,40 @@ "type": "bool" } ], + "ImGuiPlatformIO": [ + { + "name": "Platform_GetClipboardTextFn", + "type": "const char*(*)(ImGuiContext* ctx)" + }, + { + "name": "Platform_SetClipboardTextFn", + "type": "void(*)(ImGuiContext* ctx,const char* text)" + }, + { + "name": "Platform_ClipboardUserData", + "type": "void*" + }, + { + "name": "Platform_OpenInShellFn", + "type": "bool(*)(ImGuiContext* ctx,const char* path)" + }, + { + "name": "Platform_OpenInShellUserData", + "type": "void*" + }, + { + "name": "Platform_SetImeDataFn", + "type": "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" + }, + { + "name": "Platform_ImeUserData", + "type": "void*" + }, + { + "name": "Platform_LocaleDecimalPoint", + "type": "ImWchar" + } + ], "ImGuiPlatformImeData": [ { "name": "WantVisible", @@ -4190,6 +4685,64 @@ "type": "float" } ], + "ImGuiSelectionBasicStorage": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "PreserveOrder", + "type": "bool" + }, + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterIndexToStorageId", + "type": "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" + }, + { + "name": "_SelectionOrder", + "type": "int" + }, + { + "name": "_Storage", + "type": "ImGuiStorage" + } + ], + "ImGuiSelectionExternalStorage": [ + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterSetItemSelected", + "type": "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" + } + ], + "ImGuiSelectionRequest": [ + { + "name": "Type", + "type": "ImGuiSelectionRequestType" + }, + { + "name": "Selected", + "type": "bool" + }, + { + "name": "RangeDirection", + "type": "ImS8" + }, + { + "name": "RangeFirstItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "RangeLastItem", + "type": "ImGuiSelectionUserData" + } + ], "ImGuiSizeCallbackData": [ { "name": "UserData", @@ -4342,6 +4895,22 @@ "name": "TabMinWidthForCloseButton", "type": "float" }, + { + "name": "TabBarBorderSize", + "type": "float" + }, + { + "name": "TabBarOverlineSize", + "type": "float" + }, + { + "name": "TableAngledHeadersAngle", + "type": "float" + }, + { + "name": "TableAngledHeadersTextAlign", + "type": "ImVec2" + }, { "name": "ColorButtonPosition", "type": "ImGuiDir" @@ -4354,6 +4923,18 @@ "name": "SelectableTextAlign", "type": "ImVec2" }, + { + "name": "SeparatorTextBorderSize", + "type": "float" + }, + { + "name": "SeparatorTextAlign", + "type": "ImVec2" + }, + { + "name": "SeparatorTextPadding", + "type": "ImVec2" + }, { "name": "DisplayWindowPadding", "type": "ImVec2" @@ -4388,8 +4969,28 @@ }, { "name": "Colors[ImGuiCol_COUNT]", - "size": 53, + "size": 56, "type": "ImVec4" + }, + { + "name": "HoverStationaryDelay", + "type": "float" + }, + { + "name": "HoverDelayShort", + "type": "float" + }, + { + "name": "HoverDelayNormal", + "type": "float" + }, + { + "name": "HoverFlagsForTooltipMouse", + "type": "ImGuiHoveredFlags" + }, + { + "name": "HoverFlagsForTooltipNav", + "type": "ImGuiHoveredFlags" } ], "ImGuiTableColumnSortSpecs": [ @@ -4406,7 +5007,6 @@ "type": "ImS16" }, { - "bitfield": "8", "name": "SortDirection", "type": "ImGuiSortDirection" } @@ -4459,6 +5059,10 @@ } ], "ImGuiViewport": [ + { + "name": "ID", + "type": "ImGuiID" + }, { "name": "Flags", "type": "ImGuiViewportFlags" @@ -4479,6 +5083,10 @@ "name": "WorkSize", "type": "ImVec2" }, + { + "name": "PlatformHandle", + "type": "void*" + }, { "name": "PlatformHandleRaw", "type": "void*" @@ -4512,5 +5120,47 @@ "type": "float" } ] + }, + "templated_structs": { + "ImVector": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "Capacity", + "type": "int" + }, + { + "name": "Data", + "type": "T*" + } + ] + }, + "templates_done": { + "ImVector": { + "ImDrawChannel": true, + "ImDrawCmd": true, + "ImDrawIdx": true, + "ImDrawList*": true, + "ImDrawVert": true, + "ImFont*": true, + "ImFontAtlasCustomRect": true, + "ImFontConfig": true, + "ImFontGlyph": true, + "ImGuiSelectionRequest": true, + "ImGuiStoragePair": true, + "ImGuiTextRange": true, + "ImTextureID": true, + "ImU32": true, + "ImVec2": true, + "ImVec4": true, + "ImWchar": true, + "char": true, + "float": true + } + }, + "typenames": { + "ImVector": "T" } } \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.lua b/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.lua index b49d8f3..434c967 100644 --- a/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.lua +++ b/imgui-sys/third-party/imgui-master-freetype/structs_and_enums.lua @@ -137,10 +137,47 @@ defs["enums"]["ImGuiButtonFlags_"][5] = {} defs["enums"]["ImGuiButtonFlags_"][5]["calc_value"] = 7 defs["enums"]["ImGuiButtonFlags_"][5]["name"] = "ImGuiButtonFlags_MouseButtonMask_" defs["enums"]["ImGuiButtonFlags_"][5]["value"] = "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" -defs["enums"]["ImGuiButtonFlags_"][6] = {} -defs["enums"]["ImGuiButtonFlags_"][6]["calc_value"] = 1 -defs["enums"]["ImGuiButtonFlags_"][6]["name"] = "ImGuiButtonFlags_MouseButtonDefault_" -defs["enums"]["ImGuiButtonFlags_"][6]["value"] = "ImGuiButtonFlags_MouseButtonLeft" +defs["enums"]["ImGuiChildFlags_"] = {} +defs["enums"]["ImGuiChildFlags_"][1] = {} +defs["enums"]["ImGuiChildFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiChildFlags_"][1]["name"] = "ImGuiChildFlags_None" +defs["enums"]["ImGuiChildFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiChildFlags_"][2] = {} +defs["enums"]["ImGuiChildFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiChildFlags_"][2]["name"] = "ImGuiChildFlags_Borders" +defs["enums"]["ImGuiChildFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiChildFlags_"][3] = {} +defs["enums"]["ImGuiChildFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiChildFlags_"][3]["name"] = "ImGuiChildFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiChildFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiChildFlags_"][4] = {} +defs["enums"]["ImGuiChildFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiChildFlags_"][4]["name"] = "ImGuiChildFlags_ResizeX" +defs["enums"]["ImGuiChildFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiChildFlags_"][5] = {} +defs["enums"]["ImGuiChildFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiChildFlags_"][5]["name"] = "ImGuiChildFlags_ResizeY" +defs["enums"]["ImGuiChildFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiChildFlags_"][6] = {} +defs["enums"]["ImGuiChildFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiChildFlags_"][6]["name"] = "ImGuiChildFlags_AutoResizeX" +defs["enums"]["ImGuiChildFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiChildFlags_"][7] = {} +defs["enums"]["ImGuiChildFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiChildFlags_"][7]["name"] = "ImGuiChildFlags_AutoResizeY" +defs["enums"]["ImGuiChildFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiChildFlags_"][8] = {} +defs["enums"]["ImGuiChildFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiChildFlags_"][8]["name"] = "ImGuiChildFlags_AlwaysAutoResize" +defs["enums"]["ImGuiChildFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiChildFlags_"][9] = {} +defs["enums"]["ImGuiChildFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiChildFlags_"][9]["name"] = "ImGuiChildFlags_FrameStyle" +defs["enums"]["ImGuiChildFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiChildFlags_"][10] = {} +defs["enums"]["ImGuiChildFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiChildFlags_"][10]["name"] = "ImGuiChildFlags_NavFlattened" +defs["enums"]["ImGuiChildFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiCol_"] = {} defs["enums"]["ImGuiCol_"][1] = {} defs["enums"]["ImGuiCol_"][1]["calc_value"] = 0 @@ -276,88 +313,100 @@ defs["enums"]["ImGuiCol_"][33]["name"] = "ImGuiCol_ResizeGripActive" defs["enums"]["ImGuiCol_"][33]["value"] = "32" defs["enums"]["ImGuiCol_"][34] = {} defs["enums"]["ImGuiCol_"][34]["calc_value"] = 33 -defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_Tab" +defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_TabHovered" defs["enums"]["ImGuiCol_"][34]["value"] = "33" defs["enums"]["ImGuiCol_"][35] = {} defs["enums"]["ImGuiCol_"][35]["calc_value"] = 34 -defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_TabHovered" +defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_Tab" defs["enums"]["ImGuiCol_"][35]["value"] = "34" defs["enums"]["ImGuiCol_"][36] = {} defs["enums"]["ImGuiCol_"][36]["calc_value"] = 35 -defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabActive" +defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabSelected" defs["enums"]["ImGuiCol_"][36]["value"] = "35" defs["enums"]["ImGuiCol_"][37] = {} defs["enums"]["ImGuiCol_"][37]["calc_value"] = 36 -defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabUnfocused" +defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabSelectedOverline" defs["enums"]["ImGuiCol_"][37]["value"] = "36" defs["enums"]["ImGuiCol_"][38] = {} defs["enums"]["ImGuiCol_"][38]["calc_value"] = 37 -defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabUnfocusedActive" +defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabDimmed" defs["enums"]["ImGuiCol_"][38]["value"] = "37" defs["enums"]["ImGuiCol_"][39] = {} defs["enums"]["ImGuiCol_"][39]["calc_value"] = 38 -defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_PlotLines" +defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_TabDimmedSelected" defs["enums"]["ImGuiCol_"][39]["value"] = "38" defs["enums"]["ImGuiCol_"][40] = {} defs["enums"]["ImGuiCol_"][40]["calc_value"] = 39 -defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_PlotLinesHovered" +defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_TabDimmedSelectedOverline" defs["enums"]["ImGuiCol_"][40]["value"] = "39" defs["enums"]["ImGuiCol_"][41] = {} defs["enums"]["ImGuiCol_"][41]["calc_value"] = 40 -defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotHistogram" +defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotLines" defs["enums"]["ImGuiCol_"][41]["value"] = "40" defs["enums"]["ImGuiCol_"][42] = {} defs["enums"]["ImGuiCol_"][42]["calc_value"] = 41 -defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotHistogramHovered" +defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotLinesHovered" defs["enums"]["ImGuiCol_"][42]["value"] = "41" defs["enums"]["ImGuiCol_"][43] = {} defs["enums"]["ImGuiCol_"][43]["calc_value"] = 42 -defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_TableHeaderBg" +defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotHistogram" defs["enums"]["ImGuiCol_"][43]["value"] = "42" defs["enums"]["ImGuiCol_"][44] = {} defs["enums"]["ImGuiCol_"][44]["calc_value"] = 43 -defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_TableBorderStrong" +defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotHistogramHovered" defs["enums"]["ImGuiCol_"][44]["value"] = "43" defs["enums"]["ImGuiCol_"][45] = {} defs["enums"]["ImGuiCol_"][45]["calc_value"] = 44 -defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_TableBorderLight" +defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_TableHeaderBg" defs["enums"]["ImGuiCol_"][45]["value"] = "44" defs["enums"]["ImGuiCol_"][46] = {} defs["enums"]["ImGuiCol_"][46]["calc_value"] = 45 -defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_TableRowBg" +defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_TableBorderStrong" defs["enums"]["ImGuiCol_"][46]["value"] = "45" defs["enums"]["ImGuiCol_"][47] = {} defs["enums"]["ImGuiCol_"][47]["calc_value"] = 46 -defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableRowBgAlt" +defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableBorderLight" defs["enums"]["ImGuiCol_"][47]["value"] = "46" defs["enums"]["ImGuiCol_"][48] = {} defs["enums"]["ImGuiCol_"][48]["calc_value"] = 47 -defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TextSelectedBg" +defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableRowBg" defs["enums"]["ImGuiCol_"][48]["value"] = "47" defs["enums"]["ImGuiCol_"][49] = {} defs["enums"]["ImGuiCol_"][49]["calc_value"] = 48 -defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_DragDropTarget" +defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableRowBgAlt" defs["enums"]["ImGuiCol_"][49]["value"] = "48" defs["enums"]["ImGuiCol_"][50] = {} defs["enums"]["ImGuiCol_"][50]["calc_value"] = 49 -defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_NavHighlight" +defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TextLink" defs["enums"]["ImGuiCol_"][50]["value"] = "49" defs["enums"]["ImGuiCol_"][51] = {} defs["enums"]["ImGuiCol_"][51]["calc_value"] = 50 -defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_NavWindowingHighlight" +defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_TextSelectedBg" defs["enums"]["ImGuiCol_"][51]["value"] = "50" defs["enums"]["ImGuiCol_"][52] = {} defs["enums"]["ImGuiCol_"][52]["calc_value"] = 51 -defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_DragDropTarget" defs["enums"]["ImGuiCol_"][52]["value"] = "51" defs["enums"]["ImGuiCol_"][53] = {} defs["enums"]["ImGuiCol_"][53]["calc_value"] = 52 -defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_NavHighlight" defs["enums"]["ImGuiCol_"][53]["value"] = "52" defs["enums"]["ImGuiCol_"][54] = {} defs["enums"]["ImGuiCol_"][54]["calc_value"] = 53 -defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_NavWindowingHighlight" defs["enums"]["ImGuiCol_"][54]["value"] = "53" +defs["enums"]["ImGuiCol_"][55] = {} +defs["enums"]["ImGuiCol_"][55]["calc_value"] = 54 +defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][55]["value"] = "54" +defs["enums"]["ImGuiCol_"][56] = {} +defs["enums"]["ImGuiCol_"][56]["calc_value"] = 55 +defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][56]["value"] = "55" +defs["enums"]["ImGuiCol_"][57] = {} +defs["enums"]["ImGuiCol_"][57]["calc_value"] = 56 +defs["enums"]["ImGuiCol_"][57]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][57]["value"] = "56" defs["enums"]["ImGuiColorEditFlags_"] = {} defs["enums"]["ImGuiColorEditFlags_"][1] = {} defs["enums"]["ImGuiColorEditFlags_"][1]["calc_value"] = 0 @@ -509,9 +558,13 @@ defs["enums"]["ImGuiComboFlags_"][8]["calc_value"] = 64 defs["enums"]["ImGuiComboFlags_"][8]["name"] = "ImGuiComboFlags_NoPreview" defs["enums"]["ImGuiComboFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiComboFlags_"][9] = {} -defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 30 -defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_HeightMask_" -defs["enums"]["ImGuiComboFlags_"][9]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" +defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_WidthFitPreview" +defs["enums"]["ImGuiComboFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiComboFlags_"][10] = {} +defs["enums"]["ImGuiComboFlags_"][10]["calc_value"] = 30 +defs["enums"]["ImGuiComboFlags_"][10]["name"] = "ImGuiComboFlags_HeightMask_" +defs["enums"]["ImGuiComboFlags_"][10]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" defs["enums"]["ImGuiCond_"] = {} defs["enums"]["ImGuiCond_"][1] = {} defs["enums"]["ImGuiCond_"][1]["calc_value"] = 0 @@ -563,13 +616,17 @@ defs["enums"]["ImGuiConfigFlags_"][7]["calc_value"] = 32 defs["enums"]["ImGuiConfigFlags_"][7]["name"] = "ImGuiConfigFlags_NoMouseCursorChange" defs["enums"]["ImGuiConfigFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiConfigFlags_"][8] = {} -defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 1048576 -defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_IsSRGB" -defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_NoKeyboard" +defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiConfigFlags_"][9] = {} -defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 2097152 -defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_IsTouchScreen" -defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 21" +defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 1048576 +defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_IsSRGB" +defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][10] = {} +defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 2097152 +defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_IsTouchScreen" +defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 21" defs["enums"]["ImGuiDataType_"] = {} defs["enums"]["ImGuiDataType_"][1] = {} defs["enums"]["ImGuiDataType_"][1]["calc_value"] = 0 @@ -613,33 +670,37 @@ defs["enums"]["ImGuiDataType_"][10]["name"] = "ImGuiDataType_Double" defs["enums"]["ImGuiDataType_"][10]["value"] = "9" defs["enums"]["ImGuiDataType_"][11] = {} defs["enums"]["ImGuiDataType_"][11]["calc_value"] = 10 -defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_Bool" defs["enums"]["ImGuiDataType_"][11]["value"] = "10" -defs["enums"]["ImGuiDir_"] = {} -defs["enums"]["ImGuiDir_"][1] = {} -defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 -defs["enums"]["ImGuiDir_"][1]["name"] = "ImGuiDir_None" -defs["enums"]["ImGuiDir_"][1]["value"] = "-1" -defs["enums"]["ImGuiDir_"][2] = {} -defs["enums"]["ImGuiDir_"][2]["calc_value"] = 0 -defs["enums"]["ImGuiDir_"][2]["name"] = "ImGuiDir_Left" -defs["enums"]["ImGuiDir_"][2]["value"] = "0" -defs["enums"]["ImGuiDir_"][3] = {} -defs["enums"]["ImGuiDir_"][3]["calc_value"] = 1 -defs["enums"]["ImGuiDir_"][3]["name"] = "ImGuiDir_Right" -defs["enums"]["ImGuiDir_"][3]["value"] = "1" -defs["enums"]["ImGuiDir_"][4] = {} -defs["enums"]["ImGuiDir_"][4]["calc_value"] = 2 -defs["enums"]["ImGuiDir_"][4]["name"] = "ImGuiDir_Up" -defs["enums"]["ImGuiDir_"][4]["value"] = "2" -defs["enums"]["ImGuiDir_"][5] = {} -defs["enums"]["ImGuiDir_"][5]["calc_value"] = 3 -defs["enums"]["ImGuiDir_"][5]["name"] = "ImGuiDir_Down" -defs["enums"]["ImGuiDir_"][5]["value"] = "3" -defs["enums"]["ImGuiDir_"][6] = {} -defs["enums"]["ImGuiDir_"][6]["calc_value"] = 4 -defs["enums"]["ImGuiDir_"][6]["name"] = "ImGuiDir_COUNT" -defs["enums"]["ImGuiDir_"][6]["value"] = "4" +defs["enums"]["ImGuiDataType_"][12] = {} +defs["enums"]["ImGuiDataType_"][12]["calc_value"] = 11 +defs["enums"]["ImGuiDataType_"][12]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][12]["value"] = "11" +defs["enums"]["ImGuiDir"] = {} +defs["enums"]["ImGuiDir"][1] = {} +defs["enums"]["ImGuiDir"][1]["calc_value"] = -1 +defs["enums"]["ImGuiDir"][1]["name"] = "ImGuiDir_None" +defs["enums"]["ImGuiDir"][1]["value"] = "-1" +defs["enums"]["ImGuiDir"][2] = {} +defs["enums"]["ImGuiDir"][2]["calc_value"] = 0 +defs["enums"]["ImGuiDir"][2]["name"] = "ImGuiDir_Left" +defs["enums"]["ImGuiDir"][2]["value"] = "0" +defs["enums"]["ImGuiDir"][3] = {} +defs["enums"]["ImGuiDir"][3]["calc_value"] = 1 +defs["enums"]["ImGuiDir"][3]["name"] = "ImGuiDir_Right" +defs["enums"]["ImGuiDir"][3]["value"] = "1" +defs["enums"]["ImGuiDir"][4] = {} +defs["enums"]["ImGuiDir"][4]["calc_value"] = 2 +defs["enums"]["ImGuiDir"][4]["name"] = "ImGuiDir_Up" +defs["enums"]["ImGuiDir"][4]["value"] = "2" +defs["enums"]["ImGuiDir"][5] = {} +defs["enums"]["ImGuiDir"][5]["calc_value"] = 3 +defs["enums"]["ImGuiDir"][5]["name"] = "ImGuiDir_Down" +defs["enums"]["ImGuiDir"][5]["value"] = "3" +defs["enums"]["ImGuiDir"][6] = {} +defs["enums"]["ImGuiDir"][6]["calc_value"] = 4 +defs["enums"]["ImGuiDir"][6]["name"] = "ImGuiDir_COUNT" +defs["enums"]["ImGuiDir"][6]["value"] = "4" defs["enums"]["ImGuiDragDropFlags_"] = {} defs["enums"]["ImGuiDragDropFlags_"][1] = {} defs["enums"]["ImGuiDragDropFlags_"][1]["calc_value"] = 0 @@ -667,24 +728,32 @@ defs["enums"]["ImGuiDragDropFlags_"][6]["name"] = "ImGuiDragDropFlags_SourceExte defs["enums"]["ImGuiDragDropFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDragDropFlags_"][7] = {} defs["enums"]["ImGuiDragDropFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_SourceAutoExpirePayload" +defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_PayloadAutoExpire" defs["enums"]["ImGuiDragDropFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDragDropFlags_"][8] = {} -defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 1024 -defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" -defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 10" +defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_PayloadNoCrossContext" +defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDragDropFlags_"][9] = {} -defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 2048 -defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" -defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_PayloadNoCrossProcess" +defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDragDropFlags_"][10] = {} -defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 4096 -defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" -defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" +defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiDragDropFlags_"][11] = {} -defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 3072 -defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" -defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][12] = {} +defs["enums"]["ImGuiDragDropFlags_"][12]["calc_value"] = 4096 +defs["enums"]["ImGuiDragDropFlags_"][12]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" +defs["enums"]["ImGuiDragDropFlags_"][12]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][13] = {} +defs["enums"]["ImGuiDragDropFlags_"][13]["calc_value"] = 3072 +defs["enums"]["ImGuiDragDropFlags_"][13]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" +defs["enums"]["ImGuiDragDropFlags_"][13]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" defs["enums"]["ImGuiFocusedFlags_"] = {} defs["enums"]["ImGuiFocusedFlags_"][1] = {} defs["enums"]["ImGuiFocusedFlags_"][1]["calc_value"] = 0 @@ -782,36 +851,101 @@ defs["enums"]["ImGuiHoveredFlags_"][7]["name"] = "ImGuiHoveredFlags_AllowWhenBlo defs["enums"]["ImGuiHoveredFlags_"][7]["value"] = "1 << 7" defs["enums"]["ImGuiHoveredFlags_"][8] = {} defs["enums"]["ImGuiHoveredFlags_"][8]["calc_value"] = 256 -defs["enums"]["ImGuiHoveredFlags_"][8]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][8]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem" defs["enums"]["ImGuiHoveredFlags_"][8]["value"] = "1 << 8" defs["enums"]["ImGuiHoveredFlags_"][9] = {} defs["enums"]["ImGuiHoveredFlags_"][9]["calc_value"] = 512 -defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" +defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][9]["value"] = "1 << 9" defs["enums"]["ImGuiHoveredFlags_"][10] = {} defs["enums"]["ImGuiHoveredFlags_"][10]["calc_value"] = 1024 -defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" defs["enums"]["ImGuiHoveredFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiHoveredFlags_"][11] = {} -defs["enums"]["ImGuiHoveredFlags_"][11]["calc_value"] = 416 -defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_RectOnly" -defs["enums"]["ImGuiHoveredFlags_"][11]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][11]["value"] = "1 << 11" defs["enums"]["ImGuiHoveredFlags_"][12] = {} -defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 3 -defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" -defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 768 +defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][13] = {} -defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_DelayNormal" -defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 928 +defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_RectOnly" +defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" defs["enums"]["ImGuiHoveredFlags_"][14] = {} -defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_DelayShort" -defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 3 +defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" defs["enums"]["ImGuiHoveredFlags_"][15] = {} -defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_NoSharedDelay" -defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 4096 +defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_ForTooltip" +defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][16] = {} +defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 8192 +defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_Stationary" +defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][17] = {} +defs["enums"]["ImGuiHoveredFlags_"][17]["calc_value"] = 16384 +defs["enums"]["ImGuiHoveredFlags_"][17]["name"] = "ImGuiHoveredFlags_DelayNone" +defs["enums"]["ImGuiHoveredFlags_"][17]["value"] = "1 << 14" +defs["enums"]["ImGuiHoveredFlags_"][18] = {} +defs["enums"]["ImGuiHoveredFlags_"][18]["calc_value"] = 32768 +defs["enums"]["ImGuiHoveredFlags_"][18]["name"] = "ImGuiHoveredFlags_DelayShort" +defs["enums"]["ImGuiHoveredFlags_"][18]["value"] = "1 << 15" +defs["enums"]["ImGuiHoveredFlags_"][19] = {} +defs["enums"]["ImGuiHoveredFlags_"][19]["calc_value"] = 65536 +defs["enums"]["ImGuiHoveredFlags_"][19]["name"] = "ImGuiHoveredFlags_DelayNormal" +defs["enums"]["ImGuiHoveredFlags_"][19]["value"] = "1 << 16" +defs["enums"]["ImGuiHoveredFlags_"][20] = {} +defs["enums"]["ImGuiHoveredFlags_"][20]["calc_value"] = 131072 +defs["enums"]["ImGuiHoveredFlags_"][20]["name"] = "ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlags_"][20]["value"] = "1 << 17" +defs["enums"]["ImGuiInputFlags_"] = {} +defs["enums"]["ImGuiInputFlags_"][1] = {} +defs["enums"]["ImGuiInputFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiInputFlags_"][1]["name"] = "ImGuiInputFlags_None" +defs["enums"]["ImGuiInputFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiInputFlags_"][2] = {} +defs["enums"]["ImGuiInputFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiInputFlags_"][2]["name"] = "ImGuiInputFlags_Repeat" +defs["enums"]["ImGuiInputFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiInputFlags_"][3] = {} +defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 1024 +defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RouteActive" +defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 10" +defs["enums"]["ImGuiInputFlags_"][4] = {} +defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 2048 +defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RouteFocused" +defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 11" +defs["enums"]["ImGuiInputFlags_"][5] = {} +defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 4096 +defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RouteGlobal" +defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 12" +defs["enums"]["ImGuiInputFlags_"][6] = {} +defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 8192 +defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlags_"][6]["value"] = "1 << 13" +defs["enums"]["ImGuiInputFlags_"][7] = {} +defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16384 +defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_RouteOverFocused" +defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 14" +defs["enums"]["ImGuiInputFlags_"][8] = {} +defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32768 +defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_RouteOverActive" +defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 15" +defs["enums"]["ImGuiInputFlags_"][9] = {} +defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 65536 +defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][9]["value"] = "1 << 16" +defs["enums"]["ImGuiInputFlags_"][10] = {} +defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 131072 +defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_RouteFromRootWindow" +defs["enums"]["ImGuiInputFlags_"][10]["value"] = "1 << 17" +defs["enums"]["ImGuiInputFlags_"][11] = {} +defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 262144 +defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_Tooltip" +defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"] = {} defs["enums"]["ImGuiInputTextFlags_"][1] = {} defs["enums"]["ImGuiInputTextFlags_"][1]["calc_value"] = 0 @@ -827,59 +961,59 @@ defs["enums"]["ImGuiInputTextFlags_"][3]["name"] = "ImGuiInputTextFlags_CharsHex defs["enums"]["ImGuiInputTextFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiInputTextFlags_"][4] = {} defs["enums"]["ImGuiInputTextFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsUppercase" +defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsScientific" defs["enums"]["ImGuiInputTextFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiInputTextFlags_"][5] = {} defs["enums"]["ImGuiInputTextFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsNoBlank" +defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsUppercase" defs["enums"]["ImGuiInputTextFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiInputTextFlags_"][6] = {} defs["enums"]["ImGuiInputTextFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_AutoSelectAll" +defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_CharsNoBlank" defs["enums"]["ImGuiInputTextFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiInputTextFlags_"][7] = {} defs["enums"]["ImGuiInputTextFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" +defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_AllowTabInput" defs["enums"]["ImGuiInputTextFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiInputTextFlags_"][8] = {} defs["enums"]["ImGuiInputTextFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_CallbackCompletion" +defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" defs["enums"]["ImGuiInputTextFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiInputTextFlags_"][9] = {} defs["enums"]["ImGuiInputTextFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_CallbackHistory" +defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" defs["enums"]["ImGuiInputTextFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiInputTextFlags_"][10] = {} defs["enums"]["ImGuiInputTextFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CallbackAlways" +defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" defs["enums"]["ImGuiInputTextFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiInputTextFlags_"][11] = {} defs["enums"]["ImGuiInputTextFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" +defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_ReadOnly" defs["enums"]["ImGuiInputTextFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiInputTextFlags_"][12] = {} defs["enums"]["ImGuiInputTextFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_AllowTabInput" +defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_Password" defs["enums"]["ImGuiInputTextFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiInputTextFlags_"][13] = {} defs["enums"]["ImGuiInputTextFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" +defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" defs["enums"]["ImGuiInputTextFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiInputTextFlags_"][14] = {} defs["enums"]["ImGuiInputTextFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" +defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_AutoSelectAll" defs["enums"]["ImGuiInputTextFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiInputTextFlags_"][15] = {} defs["enums"]["ImGuiInputTextFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" +defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_ParseEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiInputTextFlags_"][16] = {} defs["enums"]["ImGuiInputTextFlags_"][16]["calc_value"] = 16384 -defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_ReadOnly" +defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_DisplayEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][16]["value"] = "1 << 14" defs["enums"]["ImGuiInputTextFlags_"][17] = {} defs["enums"]["ImGuiInputTextFlags_"][17]["calc_value"] = 32768 -defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_Password" +defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" defs["enums"]["ImGuiInputTextFlags_"][17]["value"] = "1 << 15" defs["enums"]["ImGuiInputTextFlags_"][18] = {} defs["enums"]["ImGuiInputTextFlags_"][18]["calc_value"] = 65536 @@ -887,20 +1021,57 @@ defs["enums"]["ImGuiInputTextFlags_"][18]["name"] = "ImGuiInputTextFlags_NoUndoR defs["enums"]["ImGuiInputTextFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiInputTextFlags_"][19] = {} defs["enums"]["ImGuiInputTextFlags_"][19]["calc_value"] = 131072 -defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CharsScientific" +defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CallbackCompletion" defs["enums"]["ImGuiInputTextFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiInputTextFlags_"][20] = {} defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 -defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackHistory" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackAlways" defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][23] = {} +defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" +defs["enums"]["ImGuiInputTextFlags_"][24] = {} +defs["enums"]["ImGuiInputTextFlags_"][24]["calc_value"] = 4194304 +defs["enums"]["ImGuiInputTextFlags_"][24]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][24]["value"] = "1 << 22" +defs["enums"]["ImGuiItemFlags_"] = {} +defs["enums"]["ImGuiItemFlags_"][1] = {} +defs["enums"]["ImGuiItemFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiItemFlags_"][1]["name"] = "ImGuiItemFlags_None" +defs["enums"]["ImGuiItemFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiItemFlags_"][2] = {} +defs["enums"]["ImGuiItemFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiItemFlags_"][2]["name"] = "ImGuiItemFlags_NoTabStop" +defs["enums"]["ImGuiItemFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiItemFlags_"][3] = {} +defs["enums"]["ImGuiItemFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiItemFlags_"][3]["name"] = "ImGuiItemFlags_NoNav" +defs["enums"]["ImGuiItemFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiItemFlags_"][4] = {} +defs["enums"]["ImGuiItemFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiItemFlags_"][4]["name"] = "ImGuiItemFlags_NoNavDefaultFocus" +defs["enums"]["ImGuiItemFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiItemFlags_"][5] = {} +defs["enums"]["ImGuiItemFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiItemFlags_"][5]["name"] = "ImGuiItemFlags_ButtonRepeat" +defs["enums"]["ImGuiItemFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiItemFlags_"][6] = {} +defs["enums"]["ImGuiItemFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiItemFlags_"][6]["name"] = "ImGuiItemFlags_AutoClosePopups" +defs["enums"]["ImGuiItemFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiItemFlags_"][7] = {} +defs["enums"]["ImGuiItemFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiItemFlags_"][7]["name"] = "ImGuiItemFlags_AllowDuplicateId" +defs["enums"]["ImGuiItemFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiKey"] = {} defs["enums"]["ImGuiKey"][1] = {} defs["enums"]["ImGuiKey"][1]["calc_value"] = 0 @@ -1196,328 +1367,380 @@ defs["enums"]["ImGuiKey"][73]["name"] = "ImGuiKey_F12" defs["enums"]["ImGuiKey"][73]["value"] = "583" defs["enums"]["ImGuiKey"][74] = {} defs["enums"]["ImGuiKey"][74]["calc_value"] = 584 -defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_Apostrophe" +defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_F13" defs["enums"]["ImGuiKey"][74]["value"] = "584" defs["enums"]["ImGuiKey"][75] = {} defs["enums"]["ImGuiKey"][75]["calc_value"] = 585 -defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_Comma" +defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_F14" defs["enums"]["ImGuiKey"][75]["value"] = "585" defs["enums"]["ImGuiKey"][76] = {} defs["enums"]["ImGuiKey"][76]["calc_value"] = 586 -defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_Minus" +defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_F15" defs["enums"]["ImGuiKey"][76]["value"] = "586" defs["enums"]["ImGuiKey"][77] = {} defs["enums"]["ImGuiKey"][77]["calc_value"] = 587 -defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_Period" +defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_F16" defs["enums"]["ImGuiKey"][77]["value"] = "587" defs["enums"]["ImGuiKey"][78] = {} defs["enums"]["ImGuiKey"][78]["calc_value"] = 588 -defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_Slash" +defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_F17" defs["enums"]["ImGuiKey"][78]["value"] = "588" defs["enums"]["ImGuiKey"][79] = {} defs["enums"]["ImGuiKey"][79]["calc_value"] = 589 -defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_Semicolon" +defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_F18" defs["enums"]["ImGuiKey"][79]["value"] = "589" defs["enums"]["ImGuiKey"][80] = {} defs["enums"]["ImGuiKey"][80]["calc_value"] = 590 -defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_Equal" +defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_F19" defs["enums"]["ImGuiKey"][80]["value"] = "590" defs["enums"]["ImGuiKey"][81] = {} defs["enums"]["ImGuiKey"][81]["calc_value"] = 591 -defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_LeftBracket" +defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_F20" defs["enums"]["ImGuiKey"][81]["value"] = "591" defs["enums"]["ImGuiKey"][82] = {} defs["enums"]["ImGuiKey"][82]["calc_value"] = 592 -defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_Backslash" +defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_F21" defs["enums"]["ImGuiKey"][82]["value"] = "592" defs["enums"]["ImGuiKey"][83] = {} defs["enums"]["ImGuiKey"][83]["calc_value"] = 593 -defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_RightBracket" +defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_F22" defs["enums"]["ImGuiKey"][83]["value"] = "593" defs["enums"]["ImGuiKey"][84] = {} defs["enums"]["ImGuiKey"][84]["calc_value"] = 594 -defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_GraveAccent" +defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_F23" defs["enums"]["ImGuiKey"][84]["value"] = "594" defs["enums"]["ImGuiKey"][85] = {} defs["enums"]["ImGuiKey"][85]["calc_value"] = 595 -defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_CapsLock" +defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_F24" defs["enums"]["ImGuiKey"][85]["value"] = "595" defs["enums"]["ImGuiKey"][86] = {} defs["enums"]["ImGuiKey"][86]["calc_value"] = 596 -defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_ScrollLock" +defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_Apostrophe" defs["enums"]["ImGuiKey"][86]["value"] = "596" defs["enums"]["ImGuiKey"][87] = {} defs["enums"]["ImGuiKey"][87]["calc_value"] = 597 -defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_NumLock" +defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_Comma" defs["enums"]["ImGuiKey"][87]["value"] = "597" defs["enums"]["ImGuiKey"][88] = {} defs["enums"]["ImGuiKey"][88]["calc_value"] = 598 -defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_PrintScreen" +defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_Minus" defs["enums"]["ImGuiKey"][88]["value"] = "598" defs["enums"]["ImGuiKey"][89] = {} defs["enums"]["ImGuiKey"][89]["calc_value"] = 599 -defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Pause" +defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Period" defs["enums"]["ImGuiKey"][89]["value"] = "599" defs["enums"]["ImGuiKey"][90] = {} defs["enums"]["ImGuiKey"][90]["calc_value"] = 600 -defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Keypad0" +defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Slash" defs["enums"]["ImGuiKey"][90]["value"] = "600" defs["enums"]["ImGuiKey"][91] = {} defs["enums"]["ImGuiKey"][91]["calc_value"] = 601 -defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Keypad1" +defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Semicolon" defs["enums"]["ImGuiKey"][91]["value"] = "601" defs["enums"]["ImGuiKey"][92] = {} defs["enums"]["ImGuiKey"][92]["calc_value"] = 602 -defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Keypad2" +defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Equal" defs["enums"]["ImGuiKey"][92]["value"] = "602" defs["enums"]["ImGuiKey"][93] = {} defs["enums"]["ImGuiKey"][93]["calc_value"] = 603 -defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_Keypad3" +defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_LeftBracket" defs["enums"]["ImGuiKey"][93]["value"] = "603" defs["enums"]["ImGuiKey"][94] = {} defs["enums"]["ImGuiKey"][94]["calc_value"] = 604 -defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Keypad4" +defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Backslash" defs["enums"]["ImGuiKey"][94]["value"] = "604" defs["enums"]["ImGuiKey"][95] = {} defs["enums"]["ImGuiKey"][95]["calc_value"] = 605 -defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_Keypad5" +defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_RightBracket" defs["enums"]["ImGuiKey"][95]["value"] = "605" defs["enums"]["ImGuiKey"][96] = {} defs["enums"]["ImGuiKey"][96]["calc_value"] = 606 -defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_Keypad6" +defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_GraveAccent" defs["enums"]["ImGuiKey"][96]["value"] = "606" defs["enums"]["ImGuiKey"][97] = {} defs["enums"]["ImGuiKey"][97]["calc_value"] = 607 -defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_Keypad7" +defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_CapsLock" defs["enums"]["ImGuiKey"][97]["value"] = "607" defs["enums"]["ImGuiKey"][98] = {} defs["enums"]["ImGuiKey"][98]["calc_value"] = 608 -defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_Keypad8" +defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_ScrollLock" defs["enums"]["ImGuiKey"][98]["value"] = "608" defs["enums"]["ImGuiKey"][99] = {} defs["enums"]["ImGuiKey"][99]["calc_value"] = 609 -defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_Keypad9" +defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_NumLock" defs["enums"]["ImGuiKey"][99]["value"] = "609" defs["enums"]["ImGuiKey"][100] = {} defs["enums"]["ImGuiKey"][100]["calc_value"] = 610 -defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_KeypadDecimal" +defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_PrintScreen" defs["enums"]["ImGuiKey"][100]["value"] = "610" defs["enums"]["ImGuiKey"][101] = {} defs["enums"]["ImGuiKey"][101]["calc_value"] = 611 -defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_KeypadDivide" +defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_Pause" defs["enums"]["ImGuiKey"][101]["value"] = "611" defs["enums"]["ImGuiKey"][102] = {} defs["enums"]["ImGuiKey"][102]["calc_value"] = 612 -defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_KeypadMultiply" +defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_Keypad0" defs["enums"]["ImGuiKey"][102]["value"] = "612" defs["enums"]["ImGuiKey"][103] = {} defs["enums"]["ImGuiKey"][103]["calc_value"] = 613 -defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_KeypadSubtract" +defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_Keypad1" defs["enums"]["ImGuiKey"][103]["value"] = "613" defs["enums"]["ImGuiKey"][104] = {} defs["enums"]["ImGuiKey"][104]["calc_value"] = 614 -defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_KeypadAdd" +defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_Keypad2" defs["enums"]["ImGuiKey"][104]["value"] = "614" defs["enums"]["ImGuiKey"][105] = {} defs["enums"]["ImGuiKey"][105]["calc_value"] = 615 -defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_KeypadEnter" +defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_Keypad3" defs["enums"]["ImGuiKey"][105]["value"] = "615" defs["enums"]["ImGuiKey"][106] = {} defs["enums"]["ImGuiKey"][106]["calc_value"] = 616 -defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_KeypadEqual" +defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_Keypad4" defs["enums"]["ImGuiKey"][106]["value"] = "616" defs["enums"]["ImGuiKey"][107] = {} defs["enums"]["ImGuiKey"][107]["calc_value"] = 617 -defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_GamepadStart" +defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_Keypad5" defs["enums"]["ImGuiKey"][107]["value"] = "617" defs["enums"]["ImGuiKey"][108] = {} defs["enums"]["ImGuiKey"][108]["calc_value"] = 618 -defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_GamepadBack" +defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_Keypad6" defs["enums"]["ImGuiKey"][108]["value"] = "618" defs["enums"]["ImGuiKey"][109] = {} defs["enums"]["ImGuiKey"][109]["calc_value"] = 619 -defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_GamepadFaceLeft" +defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_Keypad7" defs["enums"]["ImGuiKey"][109]["value"] = "619" defs["enums"]["ImGuiKey"][110] = {} defs["enums"]["ImGuiKey"][110]["calc_value"] = 620 -defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_GamepadFaceRight" +defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_Keypad8" defs["enums"]["ImGuiKey"][110]["value"] = "620" defs["enums"]["ImGuiKey"][111] = {} defs["enums"]["ImGuiKey"][111]["calc_value"] = 621 -defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_GamepadFaceUp" +defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_Keypad9" defs["enums"]["ImGuiKey"][111]["value"] = "621" defs["enums"]["ImGuiKey"][112] = {} defs["enums"]["ImGuiKey"][112]["calc_value"] = 622 -defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_GamepadFaceDown" +defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_KeypadDecimal" defs["enums"]["ImGuiKey"][112]["value"] = "622" defs["enums"]["ImGuiKey"][113] = {} defs["enums"]["ImGuiKey"][113]["calc_value"] = 623 -defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_GamepadDpadLeft" +defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_KeypadDivide" defs["enums"]["ImGuiKey"][113]["value"] = "623" defs["enums"]["ImGuiKey"][114] = {} defs["enums"]["ImGuiKey"][114]["calc_value"] = 624 -defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_GamepadDpadRight" +defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_KeypadMultiply" defs["enums"]["ImGuiKey"][114]["value"] = "624" defs["enums"]["ImGuiKey"][115] = {} defs["enums"]["ImGuiKey"][115]["calc_value"] = 625 -defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_GamepadDpadUp" +defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_KeypadSubtract" defs["enums"]["ImGuiKey"][115]["value"] = "625" defs["enums"]["ImGuiKey"][116] = {} defs["enums"]["ImGuiKey"][116]["calc_value"] = 626 -defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_GamepadDpadDown" +defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_KeypadAdd" defs["enums"]["ImGuiKey"][116]["value"] = "626" defs["enums"]["ImGuiKey"][117] = {} defs["enums"]["ImGuiKey"][117]["calc_value"] = 627 -defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_GamepadL1" +defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_KeypadEnter" defs["enums"]["ImGuiKey"][117]["value"] = "627" defs["enums"]["ImGuiKey"][118] = {} defs["enums"]["ImGuiKey"][118]["calc_value"] = 628 -defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_GamepadR1" +defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_KeypadEqual" defs["enums"]["ImGuiKey"][118]["value"] = "628" defs["enums"]["ImGuiKey"][119] = {} defs["enums"]["ImGuiKey"][119]["calc_value"] = 629 -defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_GamepadL2" +defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_AppBack" defs["enums"]["ImGuiKey"][119]["value"] = "629" defs["enums"]["ImGuiKey"][120] = {} defs["enums"]["ImGuiKey"][120]["calc_value"] = 630 -defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_GamepadR2" +defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_AppForward" defs["enums"]["ImGuiKey"][120]["value"] = "630" defs["enums"]["ImGuiKey"][121] = {} defs["enums"]["ImGuiKey"][121]["calc_value"] = 631 -defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadL3" +defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadStart" defs["enums"]["ImGuiKey"][121]["value"] = "631" defs["enums"]["ImGuiKey"][122] = {} defs["enums"]["ImGuiKey"][122]["calc_value"] = 632 -defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadR3" +defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadBack" defs["enums"]["ImGuiKey"][122]["value"] = "632" defs["enums"]["ImGuiKey"][123] = {} defs["enums"]["ImGuiKey"][123]["calc_value"] = 633 -defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadLStickLeft" +defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadFaceLeft" defs["enums"]["ImGuiKey"][123]["value"] = "633" defs["enums"]["ImGuiKey"][124] = {} defs["enums"]["ImGuiKey"][124]["calc_value"] = 634 -defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadLStickRight" +defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadFaceRight" defs["enums"]["ImGuiKey"][124]["value"] = "634" defs["enums"]["ImGuiKey"][125] = {} defs["enums"]["ImGuiKey"][125]["calc_value"] = 635 -defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadLStickUp" +defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadFaceUp" defs["enums"]["ImGuiKey"][125]["value"] = "635" defs["enums"]["ImGuiKey"][126] = {} defs["enums"]["ImGuiKey"][126]["calc_value"] = 636 -defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadLStickDown" +defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadFaceDown" defs["enums"]["ImGuiKey"][126]["value"] = "636" defs["enums"]["ImGuiKey"][127] = {} defs["enums"]["ImGuiKey"][127]["calc_value"] = 637 -defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadRStickLeft" +defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadDpadLeft" defs["enums"]["ImGuiKey"][127]["value"] = "637" defs["enums"]["ImGuiKey"][128] = {} defs["enums"]["ImGuiKey"][128]["calc_value"] = 638 -defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadRStickRight" +defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadDpadRight" defs["enums"]["ImGuiKey"][128]["value"] = "638" defs["enums"]["ImGuiKey"][129] = {} defs["enums"]["ImGuiKey"][129]["calc_value"] = 639 -defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadDpadUp" defs["enums"]["ImGuiKey"][129]["value"] = "639" defs["enums"]["ImGuiKey"][130] = {} defs["enums"]["ImGuiKey"][130]["calc_value"] = 640 -defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadDpadDown" defs["enums"]["ImGuiKey"][130]["value"] = "640" defs["enums"]["ImGuiKey"][131] = {} defs["enums"]["ImGuiKey"][131]["calc_value"] = 641 -defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_GamepadL1" defs["enums"]["ImGuiKey"][131]["value"] = "641" defs["enums"]["ImGuiKey"][132] = {} defs["enums"]["ImGuiKey"][132]["calc_value"] = 642 -defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_GamepadR1" defs["enums"]["ImGuiKey"][132]["value"] = "642" defs["enums"]["ImGuiKey"][133] = {} defs["enums"]["ImGuiKey"][133]["calc_value"] = 643 -defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_GamepadL2" defs["enums"]["ImGuiKey"][133]["value"] = "643" defs["enums"]["ImGuiKey"][134] = {} defs["enums"]["ImGuiKey"][134]["calc_value"] = 644 -defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_GamepadR2" defs["enums"]["ImGuiKey"][134]["value"] = "644" defs["enums"]["ImGuiKey"][135] = {} defs["enums"]["ImGuiKey"][135]["calc_value"] = 645 -defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_GamepadL3" defs["enums"]["ImGuiKey"][135]["value"] = "645" defs["enums"]["ImGuiKey"][136] = {} defs["enums"]["ImGuiKey"][136]["calc_value"] = 646 -defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_GamepadR3" defs["enums"]["ImGuiKey"][136]["value"] = "646" defs["enums"]["ImGuiKey"][137] = {} defs["enums"]["ImGuiKey"][137]["calc_value"] = 647 -defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_GamepadLStickLeft" defs["enums"]["ImGuiKey"][137]["value"] = "647" defs["enums"]["ImGuiKey"][138] = {} defs["enums"]["ImGuiKey"][138]["calc_value"] = 648 -defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_GamepadLStickRight" defs["enums"]["ImGuiKey"][138]["value"] = "648" defs["enums"]["ImGuiKey"][139] = {} defs["enums"]["ImGuiKey"][139]["calc_value"] = 649 -defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_GamepadLStickUp" defs["enums"]["ImGuiKey"][139]["value"] = "649" defs["enums"]["ImGuiKey"][140] = {} defs["enums"]["ImGuiKey"][140]["calc_value"] = 650 -defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_GamepadLStickDown" defs["enums"]["ImGuiKey"][140]["value"] = "650" defs["enums"]["ImGuiKey"][141] = {} defs["enums"]["ImGuiKey"][141]["calc_value"] = 651 -defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_GamepadRStickLeft" defs["enums"]["ImGuiKey"][141]["value"] = "651" defs["enums"]["ImGuiKey"][142] = {} defs["enums"]["ImGuiKey"][142]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_GamepadRStickRight" defs["enums"]["ImGuiKey"][142]["value"] = "652" defs["enums"]["ImGuiKey"][143] = {} -defs["enums"]["ImGuiKey"][143]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiMod_None" -defs["enums"]["ImGuiKey"][143]["value"] = "0" +defs["enums"]["ImGuiKey"][143]["calc_value"] = 653 +defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][143]["value"] = "653" defs["enums"]["ImGuiKey"][144] = {} -defs["enums"]["ImGuiKey"][144]["calc_value"] = 4096 -defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiMod_Ctrl" -defs["enums"]["ImGuiKey"][144]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][144]["calc_value"] = 654 +defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][144]["value"] = "654" defs["enums"]["ImGuiKey"][145] = {} -defs["enums"]["ImGuiKey"][145]["calc_value"] = 8192 -defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiMod_Shift" -defs["enums"]["ImGuiKey"][145]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][145]["calc_value"] = 655 +defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][145]["value"] = "655" defs["enums"]["ImGuiKey"][146] = {} -defs["enums"]["ImGuiKey"][146]["calc_value"] = 16384 -defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiMod_Alt" -defs["enums"]["ImGuiKey"][146]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][146]["calc_value"] = 656 +defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][146]["value"] = "656" defs["enums"]["ImGuiKey"][147] = {} -defs["enums"]["ImGuiKey"][147]["calc_value"] = 32768 -defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiMod_Super" -defs["enums"]["ImGuiKey"][147]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][147]["calc_value"] = 657 +defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][147]["value"] = "657" defs["enums"]["ImGuiKey"][148] = {} -defs["enums"]["ImGuiKey"][148]["calc_value"] = 2048 -defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiMod_Shortcut" -defs["enums"]["ImGuiKey"][148]["value"] = "1 << 11" +defs["enums"]["ImGuiKey"][148]["calc_value"] = 658 +defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][148]["value"] = "658" defs["enums"]["ImGuiKey"][149] = {} -defs["enums"]["ImGuiKey"][149]["calc_value"] = 63488 -defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiMod_Mask_" -defs["enums"]["ImGuiKey"][149]["value"] = "0xF800" +defs["enums"]["ImGuiKey"][149]["calc_value"] = 659 +defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][149]["value"] = "659" defs["enums"]["ImGuiKey"][150] = {} -defs["enums"]["ImGuiKey"][150]["calc_value"] = 512 -defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_NamedKey_BEGIN" -defs["enums"]["ImGuiKey"][150]["value"] = "512" +defs["enums"]["ImGuiKey"][150]["calc_value"] = 660 +defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][150]["value"] = "660" defs["enums"]["ImGuiKey"][151] = {} -defs["enums"]["ImGuiKey"][151]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_NamedKey_END" -defs["enums"]["ImGuiKey"][151]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][151]["calc_value"] = 661 +defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][151]["value"] = "661" defs["enums"]["ImGuiKey"][152] = {} -defs["enums"]["ImGuiKey"][152]["calc_value"] = 140 -defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_NamedKey_COUNT" -defs["enums"]["ImGuiKey"][152]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][152]["calc_value"] = 662 +defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][152]["value"] = "662" defs["enums"]["ImGuiKey"][153] = {} -defs["enums"]["ImGuiKey"][153]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_KeysData_SIZE" -defs["enums"]["ImGuiKey"][153]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][153]["calc_value"] = 663 +defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][153]["value"] = "663" defs["enums"]["ImGuiKey"][154] = {} -defs["enums"]["ImGuiKey"][154]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_KeysData_OFFSET" -defs["enums"]["ImGuiKey"][154]["value"] = "0" +defs["enums"]["ImGuiKey"][154]["calc_value"] = 664 +defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][154]["value"] = "664" +defs["enums"]["ImGuiKey"][155] = {} +defs["enums"]["ImGuiKey"][155]["calc_value"] = 665 +defs["enums"]["ImGuiKey"][155]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][155]["value"] = "665" +defs["enums"]["ImGuiKey"][156] = {} +defs["enums"]["ImGuiKey"][156]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][156]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][156]["value"] = "666" +defs["enums"]["ImGuiKey"][157] = {} +defs["enums"]["ImGuiKey"][157]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][157]["name"] = "ImGuiMod_None" +defs["enums"]["ImGuiKey"][157]["value"] = "0" +defs["enums"]["ImGuiKey"][158] = {} +defs["enums"]["ImGuiKey"][158]["calc_value"] = 4096 +defs["enums"]["ImGuiKey"][158]["name"] = "ImGuiMod_Ctrl" +defs["enums"]["ImGuiKey"][158]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][159] = {} +defs["enums"]["ImGuiKey"][159]["calc_value"] = 8192 +defs["enums"]["ImGuiKey"][159]["name"] = "ImGuiMod_Shift" +defs["enums"]["ImGuiKey"][159]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][160] = {} +defs["enums"]["ImGuiKey"][160]["calc_value"] = 16384 +defs["enums"]["ImGuiKey"][160]["name"] = "ImGuiMod_Alt" +defs["enums"]["ImGuiKey"][160]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][161] = {} +defs["enums"]["ImGuiKey"][161]["calc_value"] = 32768 +defs["enums"]["ImGuiKey"][161]["name"] = "ImGuiMod_Super" +defs["enums"]["ImGuiKey"][161]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][162] = {} +defs["enums"]["ImGuiKey"][162]["calc_value"] = 61440 +defs["enums"]["ImGuiKey"][162]["name"] = "ImGuiMod_Mask_" +defs["enums"]["ImGuiKey"][162]["value"] = "0xF000" +defs["enums"]["ImGuiKey"][163] = {} +defs["enums"]["ImGuiKey"][163]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][163]["name"] = "ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][163]["value"] = "512" +defs["enums"]["ImGuiKey"][164] = {} +defs["enums"]["ImGuiKey"][164]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][164]["name"] = "ImGuiKey_NamedKey_END" +defs["enums"]["ImGuiKey"][164]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][165] = {} +defs["enums"]["ImGuiKey"][165]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][165]["name"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][165]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][166] = {} +defs["enums"]["ImGuiKey"][166]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][166]["name"] = "ImGuiKey_KeysData_SIZE" +defs["enums"]["ImGuiKey"][166]["value"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][167] = {} +defs["enums"]["ImGuiKey"][167]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][167]["name"] = "ImGuiKey_KeysData_OFFSET" +defs["enums"]["ImGuiKey"][167]["value"] = "ImGuiKey_NamedKey_BEGIN" defs["enums"]["ImGuiMouseButton_"] = {} defs["enums"]["ImGuiMouseButton_"][1] = {} defs["enums"]["ImGuiMouseButton_"][1]["calc_value"] = 0 @@ -1580,75 +1803,92 @@ defs["enums"]["ImGuiMouseCursor_"][11] = {} defs["enums"]["ImGuiMouseCursor_"][11]["calc_value"] = 9 defs["enums"]["ImGuiMouseCursor_"][11]["name"] = "ImGuiMouseCursor_COUNT" defs["enums"]["ImGuiMouseCursor_"][11]["value"] = "9" -defs["enums"]["ImGuiNavInput"] = {} -defs["enums"]["ImGuiNavInput"][1] = {} -defs["enums"]["ImGuiNavInput"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavInput"][1]["name"] = "ImGuiNavInput_Activate" -defs["enums"]["ImGuiNavInput"][1]["value"] = "0" -defs["enums"]["ImGuiNavInput"][2] = {} -defs["enums"]["ImGuiNavInput"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavInput"][2]["name"] = "ImGuiNavInput_Cancel" -defs["enums"]["ImGuiNavInput"][2]["value"] = "1" -defs["enums"]["ImGuiNavInput"][3] = {} -defs["enums"]["ImGuiNavInput"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavInput"][3]["name"] = "ImGuiNavInput_Input" -defs["enums"]["ImGuiNavInput"][3]["value"] = "2" -defs["enums"]["ImGuiNavInput"][4] = {} -defs["enums"]["ImGuiNavInput"][4]["calc_value"] = 3 -defs["enums"]["ImGuiNavInput"][4]["name"] = "ImGuiNavInput_Menu" -defs["enums"]["ImGuiNavInput"][4]["value"] = "3" -defs["enums"]["ImGuiNavInput"][5] = {} -defs["enums"]["ImGuiNavInput"][5]["calc_value"] = 4 -defs["enums"]["ImGuiNavInput"][5]["name"] = "ImGuiNavInput_DpadLeft" -defs["enums"]["ImGuiNavInput"][5]["value"] = "4" -defs["enums"]["ImGuiNavInput"][6] = {} -defs["enums"]["ImGuiNavInput"][6]["calc_value"] = 5 -defs["enums"]["ImGuiNavInput"][6]["name"] = "ImGuiNavInput_DpadRight" -defs["enums"]["ImGuiNavInput"][6]["value"] = "5" -defs["enums"]["ImGuiNavInput"][7] = {} -defs["enums"]["ImGuiNavInput"][7]["calc_value"] = 6 -defs["enums"]["ImGuiNavInput"][7]["name"] = "ImGuiNavInput_DpadUp" -defs["enums"]["ImGuiNavInput"][7]["value"] = "6" -defs["enums"]["ImGuiNavInput"][8] = {} -defs["enums"]["ImGuiNavInput"][8]["calc_value"] = 7 -defs["enums"]["ImGuiNavInput"][8]["name"] = "ImGuiNavInput_DpadDown" -defs["enums"]["ImGuiNavInput"][8]["value"] = "7" -defs["enums"]["ImGuiNavInput"][9] = {} -defs["enums"]["ImGuiNavInput"][9]["calc_value"] = 8 -defs["enums"]["ImGuiNavInput"][9]["name"] = "ImGuiNavInput_LStickLeft" -defs["enums"]["ImGuiNavInput"][9]["value"] = "8" -defs["enums"]["ImGuiNavInput"][10] = {} -defs["enums"]["ImGuiNavInput"][10]["calc_value"] = 9 -defs["enums"]["ImGuiNavInput"][10]["name"] = "ImGuiNavInput_LStickRight" -defs["enums"]["ImGuiNavInput"][10]["value"] = "9" -defs["enums"]["ImGuiNavInput"][11] = {} -defs["enums"]["ImGuiNavInput"][11]["calc_value"] = 10 -defs["enums"]["ImGuiNavInput"][11]["name"] = "ImGuiNavInput_LStickUp" -defs["enums"]["ImGuiNavInput"][11]["value"] = "10" -defs["enums"]["ImGuiNavInput"][12] = {} -defs["enums"]["ImGuiNavInput"][12]["calc_value"] = 11 -defs["enums"]["ImGuiNavInput"][12]["name"] = "ImGuiNavInput_LStickDown" -defs["enums"]["ImGuiNavInput"][12]["value"] = "11" -defs["enums"]["ImGuiNavInput"][13] = {} -defs["enums"]["ImGuiNavInput"][13]["calc_value"] = 12 -defs["enums"]["ImGuiNavInput"][13]["name"] = "ImGuiNavInput_FocusPrev" -defs["enums"]["ImGuiNavInput"][13]["value"] = "12" -defs["enums"]["ImGuiNavInput"][14] = {} -defs["enums"]["ImGuiNavInput"][14]["calc_value"] = 13 -defs["enums"]["ImGuiNavInput"][14]["name"] = "ImGuiNavInput_FocusNext" -defs["enums"]["ImGuiNavInput"][14]["value"] = "13" -defs["enums"]["ImGuiNavInput"][15] = {} -defs["enums"]["ImGuiNavInput"][15]["calc_value"] = 14 -defs["enums"]["ImGuiNavInput"][15]["name"] = "ImGuiNavInput_TweakSlow" -defs["enums"]["ImGuiNavInput"][15]["value"] = "14" -defs["enums"]["ImGuiNavInput"][16] = {} -defs["enums"]["ImGuiNavInput"][16]["calc_value"] = 15 -defs["enums"]["ImGuiNavInput"][16]["name"] = "ImGuiNavInput_TweakFast" -defs["enums"]["ImGuiNavInput"][16]["value"] = "15" -defs["enums"]["ImGuiNavInput"][17] = {} -defs["enums"]["ImGuiNavInput"][17]["calc_value"] = 16 -defs["enums"]["ImGuiNavInput"][17]["name"] = "ImGuiNavInput_COUNT" -defs["enums"]["ImGuiNavInput"][17]["value"] = "16" +defs["enums"]["ImGuiMouseSource"] = {} +defs["enums"]["ImGuiMouseSource"][1] = {} +defs["enums"]["ImGuiMouseSource"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMouseSource"][1]["name"] = "ImGuiMouseSource_Mouse" +defs["enums"]["ImGuiMouseSource"][1]["value"] = "0" +defs["enums"]["ImGuiMouseSource"][2] = {} +defs["enums"]["ImGuiMouseSource"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMouseSource"][2]["name"] = "ImGuiMouseSource_TouchScreen" +defs["enums"]["ImGuiMouseSource"][2]["value"] = "1" +defs["enums"]["ImGuiMouseSource"][3] = {} +defs["enums"]["ImGuiMouseSource"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMouseSource"][3]["name"] = "ImGuiMouseSource_Pen" +defs["enums"]["ImGuiMouseSource"][3]["value"] = "2" +defs["enums"]["ImGuiMouseSource"][4] = {} +defs["enums"]["ImGuiMouseSource"][4]["calc_value"] = 3 +defs["enums"]["ImGuiMouseSource"][4]["name"] = "ImGuiMouseSource_COUNT" +defs["enums"]["ImGuiMouseSource"][4]["value"] = "3" +defs["enums"]["ImGuiMultiSelectFlags_"] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMultiSelectFlags_"][1]["name"] = "ImGuiMultiSelectFlags_None" +defs["enums"]["ImGuiMultiSelectFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiMultiSelectFlags_"][2] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMultiSelectFlags_"][2]["name"] = "ImGuiMultiSelectFlags_SingleSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiMultiSelectFlags_"][3] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMultiSelectFlags_"][3]["name"] = "ImGuiMultiSelectFlags_NoSelectAll" +defs["enums"]["ImGuiMultiSelectFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiMultiSelectFlags_"][4] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiMultiSelectFlags_"][4]["name"] = "ImGuiMultiSelectFlags_NoRangeSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiMultiSelectFlags_"][5] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiMultiSelectFlags_"][5]["name"] = "ImGuiMultiSelectFlags_NoAutoSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiMultiSelectFlags_"][6] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiMultiSelectFlags_"][6]["name"] = "ImGuiMultiSelectFlags_NoAutoClear" +defs["enums"]["ImGuiMultiSelectFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiMultiSelectFlags_"][7] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiMultiSelectFlags_"][7]["name"] = "ImGuiMultiSelectFlags_NoAutoClearOnReselect" +defs["enums"]["ImGuiMultiSelectFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiMultiSelectFlags_"][8] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiMultiSelectFlags_"][8]["name"] = "ImGuiMultiSelectFlags_BoxSelect1d" +defs["enums"]["ImGuiMultiSelectFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiMultiSelectFlags_"][9] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiMultiSelectFlags_"][9]["name"] = "ImGuiMultiSelectFlags_BoxSelect2d" +defs["enums"]["ImGuiMultiSelectFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiMultiSelectFlags_"][10] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiMultiSelectFlags_"][10]["name"] = "ImGuiMultiSelectFlags_BoxSelectNoScroll" +defs["enums"]["ImGuiMultiSelectFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiMultiSelectFlags_"][11] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiMultiSelectFlags_"][11]["name"] = "ImGuiMultiSelectFlags_ClearOnEscape" +defs["enums"]["ImGuiMultiSelectFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiMultiSelectFlags_"][12] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiMultiSelectFlags_"][12]["name"] = "ImGuiMultiSelectFlags_ClearOnClickVoid" +defs["enums"]["ImGuiMultiSelectFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiMultiSelectFlags_"][13] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiMultiSelectFlags_"][13]["name"] = "ImGuiMultiSelectFlags_ScopeWindow" +defs["enums"]["ImGuiMultiSelectFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiMultiSelectFlags_"][14] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiMultiSelectFlags_"][14]["name"] = "ImGuiMultiSelectFlags_ScopeRect" +defs["enums"]["ImGuiMultiSelectFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiMultiSelectFlags_"][15] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiMultiSelectFlags_"][15]["name"] = "ImGuiMultiSelectFlags_SelectOnClick" +defs["enums"]["ImGuiMultiSelectFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiMultiSelectFlags_"][16] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiMultiSelectFlags_"][16]["name"] = "ImGuiMultiSelectFlags_SelectOnClickRelease" +defs["enums"]["ImGuiMultiSelectFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiMultiSelectFlags_"][17] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][17]["calc_value"] = 65536 +defs["enums"]["ImGuiMultiSelectFlags_"][17]["name"] = "ImGuiMultiSelectFlags_NavWrapX" +defs["enums"]["ImGuiMultiSelectFlags_"][17]["value"] = "1 << 16" defs["enums"]["ImGuiPopupFlags_"] = {} defs["enums"]["ImGuiPopupFlags_"][1] = {} defs["enums"]["ImGuiPopupFlags_"][1]["calc_value"] = 0 @@ -1676,24 +1916,28 @@ defs["enums"]["ImGuiPopupFlags_"][6]["name"] = "ImGuiPopupFlags_MouseButtonDefau defs["enums"]["ImGuiPopupFlags_"][6]["value"] = "1" defs["enums"]["ImGuiPopupFlags_"][7] = {} defs["enums"]["ImGuiPopupFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoReopen" defs["enums"]["ImGuiPopupFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiPopupFlags_"][8] = {} -defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverItems" -defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiPopupFlags_"][9] = {} -defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_AnyPopupId" -defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 256 +defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_NoOpenOverItems" +defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiPopupFlags_"][10] = {} -defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupLevel" -defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupId" +defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiPopupFlags_"][11] = {} -defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 384 -defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopup" -defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiPopupFlags_"][12] = {} +defs["enums"]["ImGuiPopupFlags_"][12]["calc_value"] = 3072 +defs["enums"]["ImGuiPopupFlags_"][12]["name"] = "ImGuiPopupFlags_AnyPopup" +defs["enums"]["ImGuiPopupFlags_"][12]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" defs["enums"]["ImGuiSelectableFlags_"] = {} defs["enums"]["ImGuiSelectableFlags_"][1] = {} defs["enums"]["ImGuiSelectableFlags_"][1]["calc_value"] = 0 @@ -1701,7 +1945,7 @@ defs["enums"]["ImGuiSelectableFlags_"][1]["name"] = "ImGuiSelectableFlags_None" defs["enums"]["ImGuiSelectableFlags_"][1]["value"] = "0" defs["enums"]["ImGuiSelectableFlags_"][2] = {} defs["enums"]["ImGuiSelectableFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_DontClosePopups" +defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_NoAutoClosePopups" defs["enums"]["ImGuiSelectableFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiSelectableFlags_"][3] = {} defs["enums"]["ImGuiSelectableFlags_"][3]["calc_value"] = 2 @@ -1717,8 +1961,25 @@ defs["enums"]["ImGuiSelectableFlags_"][5]["name"] = "ImGuiSelectableFlags_Disabl defs["enums"]["ImGuiSelectableFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiSelectableFlags_"][6] = {} defs["enums"]["ImGuiSelectableFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowItemOverlap" +defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowOverlap" defs["enums"]["ImGuiSelectableFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiSelectableFlags_"][7] = {} +defs["enums"]["ImGuiSelectableFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiSelectableFlags_"][7]["name"] = "ImGuiSelectableFlags_Highlight" +defs["enums"]["ImGuiSelectableFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiSelectionRequestType"] = {} +defs["enums"]["ImGuiSelectionRequestType"][1] = {} +defs["enums"]["ImGuiSelectionRequestType"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSelectionRequestType"][1]["name"] = "ImGuiSelectionRequestType_None" +defs["enums"]["ImGuiSelectionRequestType"][1]["value"] = "0" +defs["enums"]["ImGuiSelectionRequestType"][2] = {} +defs["enums"]["ImGuiSelectionRequestType"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSelectionRequestType"][2]["name"] = "ImGuiSelectionRequestType_SetAll" +defs["enums"]["ImGuiSelectionRequestType"][2]["value"] = "1" +defs["enums"]["ImGuiSelectionRequestType"][3] = {} +defs["enums"]["ImGuiSelectionRequestType"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSelectionRequestType"][3]["name"] = "ImGuiSelectionRequestType_SetRange" +defs["enums"]["ImGuiSelectionRequestType"][3]["value"] = "2" defs["enums"]["ImGuiSliderFlags_"] = {} defs["enums"]["ImGuiSliderFlags_"][1] = {} defs["enums"]["ImGuiSliderFlags_"][1]["calc_value"] = 0 @@ -1741,22 +2002,26 @@ defs["enums"]["ImGuiSliderFlags_"][5]["calc_value"] = 128 defs["enums"]["ImGuiSliderFlags_"][5]["name"] = "ImGuiSliderFlags_NoInput" defs["enums"]["ImGuiSliderFlags_"][5]["value"] = "1 << 7" defs["enums"]["ImGuiSliderFlags_"][6] = {} -defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 1879048207 -defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_InvalidMask_" -defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "0x7000000F" -defs["enums"]["ImGuiSortDirection_"] = {} -defs["enums"]["ImGuiSortDirection_"][1] = {} -defs["enums"]["ImGuiSortDirection_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiSortDirection_"][1]["name"] = "ImGuiSortDirection_None" -defs["enums"]["ImGuiSortDirection_"][1]["value"] = "0" -defs["enums"]["ImGuiSortDirection_"][2] = {} -defs["enums"]["ImGuiSortDirection_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSortDirection_"][2]["name"] = "ImGuiSortDirection_Ascending" -defs["enums"]["ImGuiSortDirection_"][2]["value"] = "1" -defs["enums"]["ImGuiSortDirection_"][3] = {} -defs["enums"]["ImGuiSortDirection_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiSortDirection_"][3]["name"] = "ImGuiSortDirection_Descending" -defs["enums"]["ImGuiSortDirection_"][3]["value"] = "2" +defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 256 +defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_WrapAround" +defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "1 << 8" +defs["enums"]["ImGuiSliderFlags_"][7] = {} +defs["enums"]["ImGuiSliderFlags_"][7]["calc_value"] = 1879048207 +defs["enums"]["ImGuiSliderFlags_"][7]["name"] = "ImGuiSliderFlags_InvalidMask_" +defs["enums"]["ImGuiSliderFlags_"][7]["value"] = "0x7000000F" +defs["enums"]["ImGuiSortDirection"] = {} +defs["enums"]["ImGuiSortDirection"][1] = {} +defs["enums"]["ImGuiSortDirection"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSortDirection"][1]["name"] = "ImGuiSortDirection_None" +defs["enums"]["ImGuiSortDirection"][1]["value"] = "0" +defs["enums"]["ImGuiSortDirection"][2] = {} +defs["enums"]["ImGuiSortDirection"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSortDirection"][2]["name"] = "ImGuiSortDirection_Ascending" +defs["enums"]["ImGuiSortDirection"][2]["value"] = "1" +defs["enums"]["ImGuiSortDirection"][3] = {} +defs["enums"]["ImGuiSortDirection"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSortDirection"][3]["name"] = "ImGuiSortDirection_Descending" +defs["enums"]["ImGuiSortDirection"][3]["value"] = "2" defs["enums"]["ImGuiStyleVar_"] = {} defs["enums"]["ImGuiStyleVar_"][1] = {} defs["enums"]["ImGuiStyleVar_"][1]["calc_value"] = 0 @@ -1852,16 +2117,48 @@ defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_TabRounding" defs["enums"]["ImGuiStyleVar_"][23]["value"] = "22" defs["enums"]["ImGuiStyleVar_"][24] = {} defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23 -defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_TabBorderSize" defs["enums"]["ImGuiStyleVar_"][24]["value"] = "23" defs["enums"]["ImGuiStyleVar_"][25] = {} defs["enums"]["ImGuiStyleVar_"][25]["calc_value"] = 24 -defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_TabBarBorderSize" defs["enums"]["ImGuiStyleVar_"][25]["value"] = "24" defs["enums"]["ImGuiStyleVar_"][26] = {} defs["enums"]["ImGuiStyleVar_"][26]["calc_value"] = 25 -defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_TabBarOverlineSize" defs["enums"]["ImGuiStyleVar_"][26]["value"] = "25" +defs["enums"]["ImGuiStyleVar_"][27] = {} +defs["enums"]["ImGuiStyleVar_"][27]["calc_value"] = 26 +defs["enums"]["ImGuiStyleVar_"][27]["name"] = "ImGuiStyleVar_TableAngledHeadersAngle" +defs["enums"]["ImGuiStyleVar_"][27]["value"] = "26" +defs["enums"]["ImGuiStyleVar_"][28] = {} +defs["enums"]["ImGuiStyleVar_"][28]["calc_value"] = 27 +defs["enums"]["ImGuiStyleVar_"][28]["name"] = "ImGuiStyleVar_TableAngledHeadersTextAlign" +defs["enums"]["ImGuiStyleVar_"][28]["value"] = "27" +defs["enums"]["ImGuiStyleVar_"][29] = {} +defs["enums"]["ImGuiStyleVar_"][29]["calc_value"] = 28 +defs["enums"]["ImGuiStyleVar_"][29]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][29]["value"] = "28" +defs["enums"]["ImGuiStyleVar_"][30] = {} +defs["enums"]["ImGuiStyleVar_"][30]["calc_value"] = 29 +defs["enums"]["ImGuiStyleVar_"][30]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][30]["value"] = "29" +defs["enums"]["ImGuiStyleVar_"][31] = {} +defs["enums"]["ImGuiStyleVar_"][31]["calc_value"] = 30 +defs["enums"]["ImGuiStyleVar_"][31]["name"] = "ImGuiStyleVar_SeparatorTextBorderSize" +defs["enums"]["ImGuiStyleVar_"][31]["value"] = "30" +defs["enums"]["ImGuiStyleVar_"][32] = {} +defs["enums"]["ImGuiStyleVar_"][32]["calc_value"] = 31 +defs["enums"]["ImGuiStyleVar_"][32]["name"] = "ImGuiStyleVar_SeparatorTextAlign" +defs["enums"]["ImGuiStyleVar_"][32]["value"] = "31" +defs["enums"]["ImGuiStyleVar_"][33] = {} +defs["enums"]["ImGuiStyleVar_"][33]["calc_value"] = 32 +defs["enums"]["ImGuiStyleVar_"][33]["name"] = "ImGuiStyleVar_SeparatorTextPadding" +defs["enums"]["ImGuiStyleVar_"][33]["value"] = "32" +defs["enums"]["ImGuiStyleVar_"][34] = {} +defs["enums"]["ImGuiStyleVar_"][34]["calc_value"] = 33 +defs["enums"]["ImGuiStyleVar_"][34]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][34]["value"] = "33" defs["enums"]["ImGuiTabBarFlags_"] = {} defs["enums"]["ImGuiTabBarFlags_"][1] = {} defs["enums"]["ImGuiTabBarFlags_"][1]["calc_value"] = 0 @@ -1893,20 +2190,24 @@ defs["enums"]["ImGuiTabBarFlags_"][7]["name"] = "ImGuiTabBarFlags_NoTooltip" defs["enums"]["ImGuiTabBarFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiTabBarFlags_"][8] = {} defs["enums"]["ImGuiTabBarFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_DrawSelectedOverline" defs["enums"]["ImGuiTabBarFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiTabBarFlags_"][9] = {} defs["enums"]["ImGuiTabBarFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabBarFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTabBarFlags_"][10] = {} -defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 192 -defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" -defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTabBarFlags_"][11] = {} -defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" -defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 384 +defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" +defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][12] = {} +defs["enums"]["ImGuiTabBarFlags_"][12]["calc_value"] = 128 +defs["enums"]["ImGuiTabBarFlags_"][12]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" +defs["enums"]["ImGuiTabBarFlags_"][12]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabItemFlags_"] = {} defs["enums"]["ImGuiTabItemFlags_"][1] = {} defs["enums"]["ImGuiTabItemFlags_"][1]["calc_value"] = 0 @@ -1944,6 +2245,10 @@ defs["enums"]["ImGuiTabItemFlags_"][9] = {} defs["enums"]["ImGuiTabItemFlags_"][9]["calc_value"] = 128 defs["enums"]["ImGuiTabItemFlags_"][9]["name"] = "ImGuiTabItemFlags_Trailing" defs["enums"]["ImGuiTabItemFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiTabItemFlags_"][10] = {} +defs["enums"]["ImGuiTabItemFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabItemFlags_"][10]["name"] = "ImGuiTabItemFlags_NoAssumedClosure" +defs["enums"]["ImGuiTabItemFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTableBgTarget_"] = {} defs["enums"]["ImGuiTableBgTarget_"][1] = {} defs["enums"]["ImGuiTableBgTarget_"][1]["calc_value"] = 0 @@ -2039,37 +2344,41 @@ defs["enums"]["ImGuiTableColumnFlags_"][19]["calc_value"] = 131072 defs["enums"]["ImGuiTableColumnFlags_"][19]["name"] = "ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiTableColumnFlags_"][20] = {} -defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 16777216 -defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_IsEnabled" -defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 24" +defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_AngledHeader" +defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiTableColumnFlags_"][21] = {} -defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 33554432 -defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsVisible" -defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 25" +defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 16777216 +defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsEnabled" +defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 24" defs["enums"]["ImGuiTableColumnFlags_"][22] = {} -defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 67108864 -defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsSorted" -defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 26" +defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 33554432 +defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsVisible" +defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 25" defs["enums"]["ImGuiTableColumnFlags_"][23] = {} -defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 134217728 -defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsHovered" -defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 27" +defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 67108864 +defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsSorted" +defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 26" defs["enums"]["ImGuiTableColumnFlags_"][24] = {} -defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 24 -defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_WidthMask_" -defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" +defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 134217728 +defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "1 << 27" defs["enums"]["ImGuiTableColumnFlags_"][25] = {} -defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 196608 -defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_IndentMask_" -defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" +defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 24 +defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_WidthMask_" +defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" defs["enums"]["ImGuiTableColumnFlags_"][26] = {} -defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 251658240 -defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_StatusMask_" -defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 196608 +defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_IndentMask_" +defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][27] = {} -defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 1073741824 -defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" -defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "1 << 30" +defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 251658240 +defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_StatusMask_" +defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][28] = {} +defs["enums"]["ImGuiTableColumnFlags_"][28]["calc_value"] = 1073741824 +defs["enums"]["ImGuiTableColumnFlags_"][28]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" +defs["enums"]["ImGuiTableColumnFlags_"][28]["value"] = "1 << 30" defs["enums"]["ImGuiTableFlags_"] = {} defs["enums"]["ImGuiTableFlags_"][1] = {} defs["enums"]["ImGuiTableFlags_"][1]["calc_value"] = 0 @@ -2212,9 +2521,13 @@ defs["enums"]["ImGuiTableFlags_"][35]["calc_value"] = 134217728 defs["enums"]["ImGuiTableFlags_"][35]["name"] = "ImGuiTableFlags_SortTristate" defs["enums"]["ImGuiTableFlags_"][35]["value"] = "1 << 27" defs["enums"]["ImGuiTableFlags_"][36] = {} -defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 57344 -defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_SizingMask_" -defs["enums"]["ImGuiTableFlags_"][36]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" +defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 268435456 +defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_HighlightHoveredColumn" +defs["enums"]["ImGuiTableFlags_"][36]["value"] = "1 << 28" +defs["enums"]["ImGuiTableFlags_"][37] = {} +defs["enums"]["ImGuiTableFlags_"][37]["calc_value"] = 57344 +defs["enums"]["ImGuiTableFlags_"][37]["name"] = "ImGuiTableFlags_SizingMask_" +defs["enums"]["ImGuiTableFlags_"][37]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" defs["enums"]["ImGuiTableRowFlags_"] = {} defs["enums"]["ImGuiTableRowFlags_"][1] = {} defs["enums"]["ImGuiTableRowFlags_"][1]["calc_value"] = 0 @@ -2239,7 +2552,7 @@ defs["enums"]["ImGuiTreeNodeFlags_"][3]["name"] = "ImGuiTreeNodeFlags_Framed" defs["enums"]["ImGuiTreeNodeFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiTreeNodeFlags_"][4] = {} defs["enums"]["ImGuiTreeNodeFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowItemOverlap" +defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowOverlap" defs["enums"]["ImGuiTreeNodeFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiTreeNodeFlags_"][5] = {} defs["enums"]["ImGuiTreeNodeFlags_"][5]["calc_value"] = 8 @@ -2283,12 +2596,20 @@ defs["enums"]["ImGuiTreeNodeFlags_"][14]["name"] = "ImGuiTreeNodeFlags_SpanFullW defs["enums"]["ImGuiTreeNodeFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiTreeNodeFlags_"][15] = {} defs["enums"]["ImGuiTreeNodeFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_SpanTextWidth" defs["enums"]["ImGuiTreeNodeFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiTreeNodeFlags_"][16] = {} -defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 26 -defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" -defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_SpanAllColumns" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiTreeNodeFlags_"][17] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][17]["calc_value"] = 32768 +defs["enums"]["ImGuiTreeNodeFlags_"][17]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][17]["value"] = "1 << 15" +defs["enums"]["ImGuiTreeNodeFlags_"][18] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][18]["calc_value"] = 26 +defs["enums"]["ImGuiTreeNodeFlags_"][18]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" +defs["enums"]["ImGuiTreeNodeFlags_"][18]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" defs["enums"]["ImGuiViewportFlags_"] = {} defs["enums"]["ImGuiViewportFlags_"][1] = {} defs["enums"]["ImGuiViewportFlags_"][1]["calc_value"] = 0 @@ -2377,127 +2698,132 @@ defs["enums"]["ImGuiWindowFlags_"][17]["name"] = "ImGuiWindowFlags_AlwaysHorizon defs["enums"]["ImGuiWindowFlags_"][17]["value"] = "1<< 15" defs["enums"]["ImGuiWindowFlags_"][18] = {} defs["enums"]["ImGuiWindowFlags_"][18]["calc_value"] = 65536 -defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_NoNavInputs" defs["enums"]["ImGuiWindowFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiWindowFlags_"][19] = {} -defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 262144 -defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavInputs" -defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 18" +defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 131072 +defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiWindowFlags_"][20] = {} -defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 524288 -defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_NoNavFocus" -defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 19" +defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_UnsavedDocument" +defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiWindowFlags_"][21] = {} -defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 1048576 -defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_UnsavedDocument" -defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "1 << 20" +defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 196608 +defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_NoNav" +defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][22] = {} -defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 786432 -defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoNav" -defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 43 +defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoDecoration" +defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" defs["enums"]["ImGuiWindowFlags_"][23] = {} -defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 43 -defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoDecoration" -defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" +defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 197120 +defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoInputs" +defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][24] = {} -defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 786944 -defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_NoInputs" -defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 16777216 +defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_ChildWindow" +defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "1 << 24" defs["enums"]["ImGuiWindowFlags_"][25] = {} -defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 8388608 -defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_NavFlattened" -defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "1 << 23" +defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 33554432 +defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_Tooltip" +defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "1 << 25" defs["enums"]["ImGuiWindowFlags_"][26] = {} -defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 16777216 -defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_ChildWindow" -defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 24" +defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 67108864 +defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_Popup" +defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 26" defs["enums"]["ImGuiWindowFlags_"][27] = {} -defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 33554432 -defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_Tooltip" -defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 25" +defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 134217728 +defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_Modal" +defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 27" defs["enums"]["ImGuiWindowFlags_"][28] = {} -defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 67108864 -defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_Popup" -defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 26" -defs["enums"]["ImGuiWindowFlags_"][29] = {} -defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 134217728 -defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_Modal" -defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 27" -defs["enums"]["ImGuiWindowFlags_"][30] = {} -defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 268435456 -defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_ChildMenu" -defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 28" +defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 268435456 +defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_ChildMenu" +defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 28" defs["enumtypes"] = {} +defs["enumtypes"]["ImGuiDir"] = "int" defs["enumtypes"]["ImGuiKey"] = "int" +defs["enumtypes"]["ImGuiMouseSource"] = "int" +defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} -defs["locations"]["ImColor"] = "imgui:2344" -defs["locations"]["ImDrawChannel"] = "imgui:2434" -defs["locations"]["ImDrawCmd"] = "imgui:2393" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2426" -defs["locations"]["ImDrawData"] = "imgui:2626" -defs["locations"]["ImDrawFlags_"] = "imgui:2460" -defs["locations"]["ImDrawList"] = "imgui:2498" -defs["locations"]["ImDrawListFlags_"] = "imgui:2480" -defs["locations"]["ImDrawListSplitter"] = "imgui:2443" -defs["locations"]["ImDrawVert"] = "imgui:2411" -defs["locations"]["ImFont"] = "imgui:2845" -defs["locations"]["ImFontAtlas"] = "imgui:2742" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2704" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2717" -defs["locations"]["ImFontConfig"] = "imgui:2648" -defs["locations"]["ImFontGlyph"] = "imgui:2677" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2689" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1508" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1615" -defs["locations"]["ImGuiCol_"] = "imgui:1518" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1628" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1080" -defs["locations"]["ImGuiCond_"] = "imgui:1719" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1492" -defs["locations"]["ImGuiDataType_"] = "imgui:1317" -defs["locations"]["ImGuiDir_"] = "imgui:1333" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1295" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1257" +defs["locations"]["ImColor"] = "imgui:2730" +defs["locations"]["ImDrawChannel"] = "imgui:2968" +defs["locations"]["ImDrawCmd"] = "imgui:2927" +defs["locations"]["ImDrawCmdHeader"] = "imgui:2960" +defs["locations"]["ImDrawData"] = "imgui:3173" +defs["locations"]["ImDrawFlags_"] = "imgui:2994" +defs["locations"]["ImDrawList"] = "imgui:3032" +defs["locations"]["ImDrawListFlags_"] = "imgui:3014" +defs["locations"]["ImDrawListSplitter"] = "imgui:2977" +defs["locations"]["ImDrawVert"] = "imgui:2945" +defs["locations"]["ImFont"] = "imgui:3396" +defs["locations"]["ImFontAtlas"] = "imgui:3292" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3254" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:3267" +defs["locations"]["ImFontConfig"] = "imgui:3197" +defs["locations"]["ImFontGlyph"] = "imgui:3227" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3239" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1610" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1735" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1109" +defs["locations"]["ImGuiCol_"] = "imgui:1620" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1746" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1252" +defs["locations"]["ImGuiCond_"] = "imgui:1848" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1593" +defs["locations"]["ImGuiDataType_"] = "imgui:1379" +defs["locations"]["ImGuiDir"] = "imgui:1396" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1351" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1299" defs["locations"]["ImGuiFreeTypeBuilderFlags"] = "imgui_freetype:19" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1271" -defs["locations"]["ImGuiIO"] = "imgui:1896" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2069" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:992" -defs["locations"]["ImGuiKey"] = "imgui:1355" -defs["locations"]["ImGuiKeyData"] = "imgui:1888" -defs["locations"]["ImGuiListClipper"] = "imgui:2293" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1691" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1701" -defs["locations"]["ImGuiNavInput"] = "imgui:1483" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2168" -defs["locations"]["ImGuiPayload"] = "imgui:2109" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:2939" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1053" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1069" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2100" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1674" -defs["locations"]["ImGuiSortDirection_"] = "imgui:1344" -defs["locations"]["ImGuiStorage"] = "imgui:2230" -defs["locations"]["ImGuiStoragePair"] = "imgui:2233" -defs["locations"]["ImGuiStyle"] = "imgui:1831" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1583" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1094" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1110" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1248" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1196" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2131" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1145" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1233" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2145" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2203" -defs["locations"]["ImGuiTextFilter"] = "imgui:2176" -defs["locations"]["ImGuiTextRange"] = "imgui:2186" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1024" -defs["locations"]["ImGuiViewport"] = "imgui:2916" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:2901" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:954" -defs["locations"]["ImVec2"] = "imgui:253" -defs["locations"]["ImVec4"] = "imgui:266" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1313" +defs["locations"]["ImGuiIO"] = "imgui:2220" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1558" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2431" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1143" +defs["locations"]["ImGuiItemFlags_"] = "imgui:1130" +defs["locations"]["ImGuiKey"] = "imgui:1425" +defs["locations"]["ImGuiKeyData"] = "imgui:2212" +defs["locations"]["ImGuiListClipper"] = "imgui:2638" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1808" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1818" +defs["locations"]["ImGuiMouseSource"] = "imgui:1837" +defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2788" +defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2815" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2509" +defs["locations"]["ImGuiPayload"] = "imgui:2474" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3494" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3525" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1217" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1235" +defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2861" +defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2884" +defs["locations"]["ImGuiSelectionRequest"] = "imgui:2835" +defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2827" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2465" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1792" +defs["locations"]["ImGuiSortDirection"] = "imgui:1407" +defs["locations"]["ImGuiStorage"] = "imgui:2581" +defs["locations"]["ImGuiStoragePair"] = "imgui:2564" +defs["locations"]["ImGuiStyle"] = "imgui:2135" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1695" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1267" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1284" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1989" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1936" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2011" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1883" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1974" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2001" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2544" +defs["locations"]["ImGuiTextFilter"] = "imgui:2517" +defs["locations"]["ImGuiTextRange"] = "imgui:2527" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1182" +defs["locations"]["ImGuiViewport"] = "imgui:3469" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3454" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1060" +defs["locations"]["ImVec2"] = "imgui:288" +defs["locations"]["ImVec4"] = "imgui:301" defs["structs"] = {} defs["structs"]["ImColor"] = {} defs["structs"]["ImColor"][1] = {} @@ -2559,7 +2885,8 @@ defs["structs"]["ImDrawData"][4]["name"] = "TotalVtxCount" defs["structs"]["ImDrawData"][4]["type"] = "int" defs["structs"]["ImDrawData"][5] = {} defs["structs"]["ImDrawData"][5]["name"] = "CmdLists" -defs["structs"]["ImDrawData"][5]["type"] = "ImDrawList**" +defs["structs"]["ImDrawData"][5]["template_type"] = "ImDrawList*" +defs["structs"]["ImDrawData"][5]["type"] = "ImVector_ImDrawListPtr" defs["structs"]["ImDrawData"][6] = {} defs["structs"]["ImDrawData"][6]["name"] = "DisplayPos" defs["structs"]["ImDrawData"][6]["type"] = "ImVec2" @@ -2569,6 +2896,9 @@ defs["structs"]["ImDrawData"][7]["type"] = "ImVec2" defs["structs"]["ImDrawData"][8] = {} defs["structs"]["ImDrawData"][8]["name"] = "FramebufferScale" defs["structs"]["ImDrawData"][8]["type"] = "ImVec2" +defs["structs"]["ImDrawData"][9] = {} +defs["structs"]["ImDrawData"][9]["name"] = "OwnerViewport" +defs["structs"]["ImDrawData"][9]["type"] = "ImGuiViewport*" defs["structs"]["ImDrawList"] = {} defs["structs"]["ImDrawList"][1] = {} defs["structs"]["ImDrawList"][1]["name"] = "CmdBuffer" @@ -2592,35 +2922,35 @@ defs["structs"]["ImDrawList"][6] = {} defs["structs"]["ImDrawList"][6]["name"] = "_Data" defs["structs"]["ImDrawList"][6]["type"] = "ImDrawListSharedData*" defs["structs"]["ImDrawList"][7] = {} -defs["structs"]["ImDrawList"][7]["name"] = "_OwnerName" -defs["structs"]["ImDrawList"][7]["type"] = "const char*" +defs["structs"]["ImDrawList"][7]["name"] = "_VtxWritePtr" +defs["structs"]["ImDrawList"][7]["type"] = "ImDrawVert*" defs["structs"]["ImDrawList"][8] = {} -defs["structs"]["ImDrawList"][8]["name"] = "_VtxWritePtr" -defs["structs"]["ImDrawList"][8]["type"] = "ImDrawVert*" +defs["structs"]["ImDrawList"][8]["name"] = "_IdxWritePtr" +defs["structs"]["ImDrawList"][8]["type"] = "ImDrawIdx*" defs["structs"]["ImDrawList"][9] = {} -defs["structs"]["ImDrawList"][9]["name"] = "_IdxWritePtr" -defs["structs"]["ImDrawList"][9]["type"] = "ImDrawIdx*" +defs["structs"]["ImDrawList"][9]["name"] = "_Path" +defs["structs"]["ImDrawList"][9]["template_type"] = "ImVec2" +defs["structs"]["ImDrawList"][9]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawList"][10] = {} -defs["structs"]["ImDrawList"][10]["name"] = "_ClipRectStack" -defs["structs"]["ImDrawList"][10]["template_type"] = "ImVec4" -defs["structs"]["ImDrawList"][10]["type"] = "ImVector_ImVec4" +defs["structs"]["ImDrawList"][10]["name"] = "_CmdHeader" +defs["structs"]["ImDrawList"][10]["type"] = "ImDrawCmdHeader" defs["structs"]["ImDrawList"][11] = {} -defs["structs"]["ImDrawList"][11]["name"] = "_TextureIdStack" -defs["structs"]["ImDrawList"][11]["template_type"] = "ImTextureID" -defs["structs"]["ImDrawList"][11]["type"] = "ImVector_ImTextureID" +defs["structs"]["ImDrawList"][11]["name"] = "_Splitter" +defs["structs"]["ImDrawList"][11]["type"] = "ImDrawListSplitter" defs["structs"]["ImDrawList"][12] = {} -defs["structs"]["ImDrawList"][12]["name"] = "_Path" -defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec2" -defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawList"][12]["name"] = "_ClipRectStack" +defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec4" +defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec4" defs["structs"]["ImDrawList"][13] = {} -defs["structs"]["ImDrawList"][13]["name"] = "_CmdHeader" -defs["structs"]["ImDrawList"][13]["type"] = "ImDrawCmdHeader" +defs["structs"]["ImDrawList"][13]["name"] = "_TextureIdStack" +defs["structs"]["ImDrawList"][13]["template_type"] = "ImTextureID" +defs["structs"]["ImDrawList"][13]["type"] = "ImVector_ImTextureID" defs["structs"]["ImDrawList"][14] = {} -defs["structs"]["ImDrawList"][14]["name"] = "_Splitter" -defs["structs"]["ImDrawList"][14]["type"] = "ImDrawListSplitter" +defs["structs"]["ImDrawList"][14]["name"] = "_FringeScale" +defs["structs"]["ImDrawList"][14]["type"] = "float" defs["structs"]["ImDrawList"][15] = {} -defs["structs"]["ImDrawList"][15]["name"] = "_FringeScale" -defs["structs"]["ImDrawList"][15]["type"] = "float" +defs["structs"]["ImDrawList"][15]["name"] = "_OwnerName" +defs["structs"]["ImDrawList"][15]["type"] = "const char*" defs["structs"]["ImDrawListSplitter"] = {} defs["structs"]["ImDrawListSplitter"][1] = {} defs["structs"]["ImDrawListSplitter"][1]["name"] = "_Current" @@ -2680,27 +3010,33 @@ defs["structs"]["ImFont"][11] = {} defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "DotChar" -defs["structs"]["ImFont"][12]["type"] = "ImWchar" +defs["structs"]["ImFont"][12]["name"] = "EllipsisCharCount" +defs["structs"]["ImFont"][12]["type"] = "short" defs["structs"]["ImFont"][13] = {} -defs["structs"]["ImFont"][13]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][13]["type"] = "bool" +defs["structs"]["ImFont"][13]["name"] = "EllipsisWidth" +defs["structs"]["ImFont"][13]["type"] = "float" defs["structs"]["ImFont"][14] = {} -defs["structs"]["ImFont"][14]["name"] = "Scale" +defs["structs"]["ImFont"][14]["name"] = "EllipsisCharStep" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "Ascent" -defs["structs"]["ImFont"][15]["type"] = "float" +defs["structs"]["ImFont"][15]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][15]["type"] = "bool" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "Descent" +defs["structs"]["ImFont"][16]["name"] = "Scale" defs["structs"]["ImFont"][16]["type"] = "float" defs["structs"]["ImFont"][17] = {} -defs["structs"]["ImFont"][17]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][17]["type"] = "int" +defs["structs"]["ImFont"][17]["name"] = "Ascent" +defs["structs"]["ImFont"][17]["type"] = "float" defs["structs"]["ImFont"][18] = {} -defs["structs"]["ImFont"][18]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" -defs["structs"]["ImFont"][18]["size"] = 34 -defs["structs"]["ImFont"][18]["type"] = "ImU8" +defs["structs"]["ImFont"][18]["name"] = "Descent" +defs["structs"]["ImFont"][18]["type"] = "float" +defs["structs"]["ImFont"][19] = {} +defs["structs"]["ImFont"][19]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][19]["type"] = "int" +defs["structs"]["ImFont"][20] = {} +defs["structs"]["ImFont"][20]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" +defs["structs"]["ImFont"][20]["size"] = 34 +defs["structs"]["ImFont"][20]["type"] = "ImU8" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Flags" @@ -2847,15 +3183,18 @@ defs["structs"]["ImFontConfig"][16] = {} defs["structs"]["ImFontConfig"][16]["name"] = "RasterizerMultiply" defs["structs"]["ImFontConfig"][16]["type"] = "float" defs["structs"]["ImFontConfig"][17] = {} -defs["structs"]["ImFontConfig"][17]["name"] = "EllipsisChar" -defs["structs"]["ImFontConfig"][17]["type"] = "ImWchar" +defs["structs"]["ImFontConfig"][17]["name"] = "RasterizerDensity" +defs["structs"]["ImFontConfig"][17]["type"] = "float" defs["structs"]["ImFontConfig"][18] = {} -defs["structs"]["ImFontConfig"][18]["name"] = "Name[40]" -defs["structs"]["ImFontConfig"][18]["size"] = 40 -defs["structs"]["ImFontConfig"][18]["type"] = "char" +defs["structs"]["ImFontConfig"][18]["name"] = "EllipsisChar" +defs["structs"]["ImFontConfig"][18]["type"] = "ImWchar" defs["structs"]["ImFontConfig"][19] = {} -defs["structs"]["ImFontConfig"][19]["name"] = "DstFont" -defs["structs"]["ImFontConfig"][19]["type"] = "ImFont*" +defs["structs"]["ImFontConfig"][19]["name"] = "Name[40]" +defs["structs"]["ImFontConfig"][19]["size"] = 40 +defs["structs"]["ImFontConfig"][19]["type"] = "char" +defs["structs"]["ImFontConfig"][20] = {} +defs["structs"]["ImFontConfig"][20]["name"] = "DstFont" +defs["structs"]["ImFontConfig"][20]["type"] = "ImFont*" defs["structs"]["ImFontGlyph"] = {} defs["structs"]["ImFontGlyph"][1] = {} defs["structs"]["ImFontGlyph"][1]["bitfield"] = "1" @@ -2924,100 +3263,100 @@ defs["structs"]["ImGuiIO"][7] = {} defs["structs"]["ImGuiIO"][7]["name"] = "LogFilename" defs["structs"]["ImGuiIO"][7]["type"] = "const char*" defs["structs"]["ImGuiIO"][8] = {} -defs["structs"]["ImGuiIO"][8]["name"] = "MouseDoubleClickTime" -defs["structs"]["ImGuiIO"][8]["type"] = "float" +defs["structs"]["ImGuiIO"][8]["name"] = "UserData" +defs["structs"]["ImGuiIO"][8]["type"] = "void*" defs["structs"]["ImGuiIO"][9] = {} -defs["structs"]["ImGuiIO"][9]["name"] = "MouseDoubleClickMaxDist" -defs["structs"]["ImGuiIO"][9]["type"] = "float" +defs["structs"]["ImGuiIO"][9]["name"] = "Fonts" +defs["structs"]["ImGuiIO"][9]["type"] = "ImFontAtlas*" defs["structs"]["ImGuiIO"][10] = {} -defs["structs"]["ImGuiIO"][10]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][10]["name"] = "FontGlobalScale" defs["structs"]["ImGuiIO"][10]["type"] = "float" defs["structs"]["ImGuiIO"][11] = {} -defs["structs"]["ImGuiIO"][11]["name"] = "KeyRepeatDelay" -defs["structs"]["ImGuiIO"][11]["type"] = "float" +defs["structs"]["ImGuiIO"][11]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][11]["type"] = "bool" defs["structs"]["ImGuiIO"][12] = {} -defs["structs"]["ImGuiIO"][12]["name"] = "KeyRepeatRate" -defs["structs"]["ImGuiIO"][12]["type"] = "float" +defs["structs"]["ImGuiIO"][12]["name"] = "FontDefault" +defs["structs"]["ImGuiIO"][12]["type"] = "ImFont*" defs["structs"]["ImGuiIO"][13] = {} -defs["structs"]["ImGuiIO"][13]["name"] = "HoverDelayNormal" -defs["structs"]["ImGuiIO"][13]["type"] = "float" +defs["structs"]["ImGuiIO"][13]["name"] = "DisplayFramebufferScale" +defs["structs"]["ImGuiIO"][13]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][14] = {} -defs["structs"]["ImGuiIO"][14]["name"] = "HoverDelayShort" -defs["structs"]["ImGuiIO"][14]["type"] = "float" +defs["structs"]["ImGuiIO"][14]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][14]["type"] = "bool" defs["structs"]["ImGuiIO"][15] = {} -defs["structs"]["ImGuiIO"][15]["name"] = "UserData" -defs["structs"]["ImGuiIO"][15]["type"] = "void*" +defs["structs"]["ImGuiIO"][15]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][15]["type"] = "bool" defs["structs"]["ImGuiIO"][16] = {} -defs["structs"]["ImGuiIO"][16]["name"] = "Fonts" -defs["structs"]["ImGuiIO"][16]["type"] = "ImFontAtlas*" +defs["structs"]["ImGuiIO"][16]["name"] = "ConfigNavSwapGamepadButtons" +defs["structs"]["ImGuiIO"][16]["type"] = "bool" defs["structs"]["ImGuiIO"][17] = {} -defs["structs"]["ImGuiIO"][17]["name"] = "FontGlobalScale" -defs["structs"]["ImGuiIO"][17]["type"] = "float" +defs["structs"]["ImGuiIO"][17]["name"] = "ConfigInputTrickleEventQueue" +defs["structs"]["ImGuiIO"][17]["type"] = "bool" defs["structs"]["ImGuiIO"][18] = {} -defs["structs"]["ImGuiIO"][18]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][18]["name"] = "ConfigInputTextCursorBlink" defs["structs"]["ImGuiIO"][18]["type"] = "bool" defs["structs"]["ImGuiIO"][19] = {} -defs["structs"]["ImGuiIO"][19]["name"] = "FontDefault" -defs["structs"]["ImGuiIO"][19]["type"] = "ImFont*" +defs["structs"]["ImGuiIO"][19]["name"] = "ConfigInputTextEnterKeepActive" +defs["structs"]["ImGuiIO"][19]["type"] = "bool" defs["structs"]["ImGuiIO"][20] = {} -defs["structs"]["ImGuiIO"][20]["name"] = "DisplayFramebufferScale" -defs["structs"]["ImGuiIO"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][20]["name"] = "ConfigDragClickToInputText" +defs["structs"]["ImGuiIO"][20]["type"] = "bool" defs["structs"]["ImGuiIO"][21] = {} -defs["structs"]["ImGuiIO"][21]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][21]["name"] = "ConfigWindowsResizeFromEdges" defs["structs"]["ImGuiIO"][21]["type"] = "bool" defs["structs"]["ImGuiIO"][22] = {} -defs["structs"]["ImGuiIO"][22]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][22]["name"] = "ConfigWindowsMoveFromTitleBarOnly" defs["structs"]["ImGuiIO"][22]["type"] = "bool" defs["structs"]["ImGuiIO"][23] = {} -defs["structs"]["ImGuiIO"][23]["name"] = "ConfigInputTrickleEventQueue" -defs["structs"]["ImGuiIO"][23]["type"] = "bool" +defs["structs"]["ImGuiIO"][23]["name"] = "ConfigMemoryCompactTimer" +defs["structs"]["ImGuiIO"][23]["type"] = "float" defs["structs"]["ImGuiIO"][24] = {} -defs["structs"]["ImGuiIO"][24]["name"] = "ConfigInputTextCursorBlink" -defs["structs"]["ImGuiIO"][24]["type"] = "bool" +defs["structs"]["ImGuiIO"][24]["name"] = "MouseDoubleClickTime" +defs["structs"]["ImGuiIO"][24]["type"] = "float" defs["structs"]["ImGuiIO"][25] = {} -defs["structs"]["ImGuiIO"][25]["name"] = "ConfigInputTextEnterKeepActive" -defs["structs"]["ImGuiIO"][25]["type"] = "bool" +defs["structs"]["ImGuiIO"][25]["name"] = "MouseDoubleClickMaxDist" +defs["structs"]["ImGuiIO"][25]["type"] = "float" defs["structs"]["ImGuiIO"][26] = {} -defs["structs"]["ImGuiIO"][26]["name"] = "ConfigDragClickToInputText" -defs["structs"]["ImGuiIO"][26]["type"] = "bool" +defs["structs"]["ImGuiIO"][26]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][26]["type"] = "float" defs["structs"]["ImGuiIO"][27] = {} -defs["structs"]["ImGuiIO"][27]["name"] = "ConfigWindowsResizeFromEdges" -defs["structs"]["ImGuiIO"][27]["type"] = "bool" +defs["structs"]["ImGuiIO"][27]["name"] = "KeyRepeatDelay" +defs["structs"]["ImGuiIO"][27]["type"] = "float" defs["structs"]["ImGuiIO"][28] = {} -defs["structs"]["ImGuiIO"][28]["name"] = "ConfigWindowsMoveFromTitleBarOnly" -defs["structs"]["ImGuiIO"][28]["type"] = "bool" +defs["structs"]["ImGuiIO"][28]["name"] = "KeyRepeatRate" +defs["structs"]["ImGuiIO"][28]["type"] = "float" defs["structs"]["ImGuiIO"][29] = {} -defs["structs"]["ImGuiIO"][29]["name"] = "ConfigMemoryCompactTimer" -defs["structs"]["ImGuiIO"][29]["type"] = "float" +defs["structs"]["ImGuiIO"][29]["name"] = "ConfigDebugIsDebuggerPresent" +defs["structs"]["ImGuiIO"][29]["type"] = "bool" defs["structs"]["ImGuiIO"][30] = {} -defs["structs"]["ImGuiIO"][30]["name"] = "BackendPlatformName" -defs["structs"]["ImGuiIO"][30]["type"] = "const char*" +defs["structs"]["ImGuiIO"][30]["name"] = "ConfigDebugHighlightIdConflicts" +defs["structs"]["ImGuiIO"][30]["type"] = "bool" defs["structs"]["ImGuiIO"][31] = {} -defs["structs"]["ImGuiIO"][31]["name"] = "BackendRendererName" -defs["structs"]["ImGuiIO"][31]["type"] = "const char*" +defs["structs"]["ImGuiIO"][31]["name"] = "ConfigDebugBeginReturnValueOnce" +defs["structs"]["ImGuiIO"][31]["type"] = "bool" defs["structs"]["ImGuiIO"][32] = {} -defs["structs"]["ImGuiIO"][32]["name"] = "BackendPlatformUserData" -defs["structs"]["ImGuiIO"][32]["type"] = "void*" +defs["structs"]["ImGuiIO"][32]["name"] = "ConfigDebugBeginReturnValueLoop" +defs["structs"]["ImGuiIO"][32]["type"] = "bool" defs["structs"]["ImGuiIO"][33] = {} -defs["structs"]["ImGuiIO"][33]["name"] = "BackendRendererUserData" -defs["structs"]["ImGuiIO"][33]["type"] = "void*" +defs["structs"]["ImGuiIO"][33]["name"] = "ConfigDebugIgnoreFocusLoss" +defs["structs"]["ImGuiIO"][33]["type"] = "bool" defs["structs"]["ImGuiIO"][34] = {} -defs["structs"]["ImGuiIO"][34]["name"] = "BackendLanguageUserData" -defs["structs"]["ImGuiIO"][34]["type"] = "void*" +defs["structs"]["ImGuiIO"][34]["name"] = "ConfigDebugIniSettings" +defs["structs"]["ImGuiIO"][34]["type"] = "bool" defs["structs"]["ImGuiIO"][35] = {} -defs["structs"]["ImGuiIO"][35]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][35]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][35]["name"] = "BackendPlatformName" +defs["structs"]["ImGuiIO"][35]["type"] = "const char*" defs["structs"]["ImGuiIO"][36] = {} -defs["structs"]["ImGuiIO"][36]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][36]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][36]["name"] = "BackendRendererName" +defs["structs"]["ImGuiIO"][36]["type"] = "const char*" defs["structs"]["ImGuiIO"][37] = {} -defs["structs"]["ImGuiIO"][37]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][37]["name"] = "BackendPlatformUserData" defs["structs"]["ImGuiIO"][37]["type"] = "void*" defs["structs"]["ImGuiIO"][38] = {} -defs["structs"]["ImGuiIO"][38]["name"] = "SetPlatformImeDataFn" -defs["structs"]["ImGuiIO"][38]["type"] = "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiIO"][38]["name"] = "BackendRendererUserData" +defs["structs"]["ImGuiIO"][38]["type"] = "void*" defs["structs"]["ImGuiIO"][39] = {} -defs["structs"]["ImGuiIO"][39]["name"] = "_UnusedPadding" +defs["structs"]["ImGuiIO"][39]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][39]["type"] = "void*" defs["structs"]["ImGuiIO"][40] = {} defs["structs"]["ImGuiIO"][40]["name"] = "WantCaptureMouse" @@ -3056,96 +3395,93 @@ defs["structs"]["ImGuiIO"][51] = {} defs["structs"]["ImGuiIO"][51]["name"] = "MetricsActiveWindows" defs["structs"]["ImGuiIO"][51]["type"] = "int" defs["structs"]["ImGuiIO"][52] = {} -defs["structs"]["ImGuiIO"][52]["name"] = "MetricsActiveAllocations" -defs["structs"]["ImGuiIO"][52]["type"] = "int" +defs["structs"]["ImGuiIO"][52]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][52]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][53] = {} -defs["structs"]["ImGuiIO"][53]["name"] = "MouseDelta" -defs["structs"]["ImGuiIO"][53]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][53]["name"] = "Ctx" +defs["structs"]["ImGuiIO"][53]["type"] = "ImGuiContext*" defs["structs"]["ImGuiIO"][54] = {} -defs["structs"]["ImGuiIO"][54]["name"] = "KeyMap[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][54]["size"] = 652 -defs["structs"]["ImGuiIO"][54]["type"] = "int" +defs["structs"]["ImGuiIO"][54]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][54]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][55] = {} -defs["structs"]["ImGuiIO"][55]["name"] = "KeysDown[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][55]["size"] = 652 +defs["structs"]["ImGuiIO"][55]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][55]["size"] = 5 defs["structs"]["ImGuiIO"][55]["type"] = "bool" defs["structs"]["ImGuiIO"][56] = {} -defs["structs"]["ImGuiIO"][56]["name"] = "NavInputs[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][56]["size"] = 16 +defs["structs"]["ImGuiIO"][56]["name"] = "MouseWheel" defs["structs"]["ImGuiIO"][56]["type"] = "float" defs["structs"]["ImGuiIO"][57] = {} -defs["structs"]["ImGuiIO"][57]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][57]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][57]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][57]["type"] = "float" defs["structs"]["ImGuiIO"][58] = {} -defs["structs"]["ImGuiIO"][58]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][58]["size"] = 5 -defs["structs"]["ImGuiIO"][58]["type"] = "bool" +defs["structs"]["ImGuiIO"][58]["name"] = "MouseSource" +defs["structs"]["ImGuiIO"][58]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiIO"][59] = {} -defs["structs"]["ImGuiIO"][59]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][59]["type"] = "float" +defs["structs"]["ImGuiIO"][59]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][59]["type"] = "bool" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][60]["type"] = "float" +defs["structs"]["ImGuiIO"][60]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][60]["type"] = "bool" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][61]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][61]["type"] = "bool" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][62]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][62]["type"] = "bool" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "KeyAlt" -defs["structs"]["ImGuiIO"][63]["type"] = "bool" +defs["structs"]["ImGuiIO"][63]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][63]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][64]["type"] = "bool" +defs["structs"]["ImGuiIO"][64]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][64]["size"] = 154 +defs["structs"]["ImGuiIO"][64]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][65]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiIO"][65]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][65]["type"] = "bool" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][66]["size"] = 652 -defs["structs"]["ImGuiIO"][66]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][66]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][66]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "WantCaptureMouseUnlessPopupClose" -defs["structs"]["ImGuiIO"][67]["type"] = "bool" +defs["structs"]["ImGuiIO"][67]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][67]["size"] = 5 +defs["structs"]["ImGuiIO"][67]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][68]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][68]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][68]["size"] = 5 +defs["structs"]["ImGuiIO"][68]["type"] = "double" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][69]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][69]["size"] = 5 -defs["structs"]["ImGuiIO"][69]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][69]["type"] = "bool" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][70]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][70]["size"] = 5 -defs["structs"]["ImGuiIO"][70]["type"] = "double" +defs["structs"]["ImGuiIO"][70]["type"] = "bool" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][71]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][71]["size"] = 5 -defs["structs"]["ImGuiIO"][71]["type"] = "bool" +defs["structs"]["ImGuiIO"][71]["type"] = "ImU16" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][72]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][72]["size"] = 5 -defs["structs"]["ImGuiIO"][72]["type"] = "bool" +defs["structs"]["ImGuiIO"][72]["type"] = "ImU16" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][73]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][73]["size"] = 5 -defs["structs"]["ImGuiIO"][73]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][73]["type"] = "bool" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][74]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][74]["size"] = 5 -defs["structs"]["ImGuiIO"][74]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][74]["type"] = "bool" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][75]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][75]["size"] = 5 defs["structs"]["ImGuiIO"][75]["type"] = "bool" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "MouseDownOwned[5]" -defs["structs"]["ImGuiIO"][76]["size"] = 5 +defs["structs"]["ImGuiIO"][76]["name"] = "MouseWheelRequestAxisSwap" defs["structs"]["ImGuiIO"][76]["type"] = "bool" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MouseDownOwnedUnlessPopupClose[5]" -defs["structs"]["ImGuiIO"][77]["size"] = 5 +defs["structs"]["ImGuiIO"][77]["name"] = "MouseCtrlLeftAsRightClick" defs["structs"]["ImGuiIO"][77]["type"] = "bool" defs["structs"]["ImGuiIO"][78] = {} defs["structs"]["ImGuiIO"][78]["name"] = "MouseDownDuration[5]" @@ -3183,41 +3519,44 @@ defs["structs"]["ImGuiIO"][87]["template_type"] = "ImWchar" defs["structs"]["ImGuiIO"][87]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputTextCallbackData"] = {} defs["structs"]["ImGuiInputTextCallbackData"][1] = {} -defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "EventFlag" -defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "Ctx" +defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiInputTextCallbackData"][2] = {} -defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "EventFlag" defs["structs"]["ImGuiInputTextCallbackData"][2]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][3] = {} -defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "UserData" -defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "void*" +defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][4] = {} -defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "EventChar" -defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "ImWchar" +defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "UserData" +defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "void*" defs["structs"]["ImGuiInputTextCallbackData"][5] = {} -defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventKey" -defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImGuiKey" +defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventChar" +defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImWchar" defs["structs"]["ImGuiInputTextCallbackData"][6] = {} -defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "Buf" -defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "char*" +defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "EventKey" +defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "ImGuiKey" defs["structs"]["ImGuiInputTextCallbackData"][7] = {} -defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "BufTextLen" -defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "Buf" +defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "char*" defs["structs"]["ImGuiInputTextCallbackData"][8] = {} -defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufTextLen" defs["structs"]["ImGuiInputTextCallbackData"][8]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][9] = {} -defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufDirty" -defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "bool" +defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][10] = {} -defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "CursorPos" -defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "BufDirty" +defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "bool" defs["structs"]["ImGuiInputTextCallbackData"][11] = {} -defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "SelectionStart" +defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "CursorPos" defs["structs"]["ImGuiInputTextCallbackData"][11]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][12] = {} -defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionStart" defs["structs"]["ImGuiInputTextCallbackData"][12]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][13] = {} +defs["structs"]["ImGuiInputTextCallbackData"][13]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][13]["type"] = "int" defs["structs"]["ImGuiKeyData"] = {} defs["structs"]["ImGuiKeyData"][1] = {} defs["structs"]["ImGuiKeyData"][1]["name"] = "Down" @@ -3233,23 +3572,49 @@ defs["structs"]["ImGuiKeyData"][4]["name"] = "AnalogValue" defs["structs"]["ImGuiKeyData"][4]["type"] = "float" defs["structs"]["ImGuiListClipper"] = {} defs["structs"]["ImGuiListClipper"][1] = {} -defs["structs"]["ImGuiListClipper"][1]["name"] = "DisplayStart" -defs["structs"]["ImGuiListClipper"][1]["type"] = "int" +defs["structs"]["ImGuiListClipper"][1]["name"] = "Ctx" +defs["structs"]["ImGuiListClipper"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiListClipper"][2] = {} -defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayEnd" +defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayStart" defs["structs"]["ImGuiListClipper"][2]["type"] = "int" defs["structs"]["ImGuiListClipper"][3] = {} -defs["structs"]["ImGuiListClipper"][3]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][3]["name"] = "DisplayEnd" defs["structs"]["ImGuiListClipper"][3]["type"] = "int" defs["structs"]["ImGuiListClipper"][4] = {} -defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsHeight" -defs["structs"]["ImGuiListClipper"][4]["type"] = "float" +defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][4]["type"] = "int" defs["structs"]["ImGuiListClipper"][5] = {} -defs["structs"]["ImGuiListClipper"][5]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][5]["name"] = "ItemsHeight" defs["structs"]["ImGuiListClipper"][5]["type"] = "float" defs["structs"]["ImGuiListClipper"][6] = {} -defs["structs"]["ImGuiListClipper"][6]["name"] = "TempData" -defs["structs"]["ImGuiListClipper"][6]["type"] = "void*" +defs["structs"]["ImGuiListClipper"][6]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][6]["type"] = "float" +defs["structs"]["ImGuiListClipper"][7] = {} +defs["structs"]["ImGuiListClipper"][7]["name"] = "StartSeekOffsetY" +defs["structs"]["ImGuiListClipper"][7]["type"] = "double" +defs["structs"]["ImGuiListClipper"][8] = {} +defs["structs"]["ImGuiListClipper"][8]["name"] = "TempData" +defs["structs"]["ImGuiListClipper"][8]["type"] = "void*" +defs["structs"]["ImGuiMultiSelectIO"] = {} +defs["structs"]["ImGuiMultiSelectIO"][1] = {} +defs["structs"]["ImGuiMultiSelectIO"][1]["name"] = "Requests" +defs["structs"]["ImGuiMultiSelectIO"][1]["template_type"] = "ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][1]["type"] = "ImVector_ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][2] = {} +defs["structs"]["ImGuiMultiSelectIO"][2]["name"] = "RangeSrcItem" +defs["structs"]["ImGuiMultiSelectIO"][2]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][3] = {} +defs["structs"]["ImGuiMultiSelectIO"][3]["name"] = "NavIdItem" +defs["structs"]["ImGuiMultiSelectIO"][3]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][4] = {} +defs["structs"]["ImGuiMultiSelectIO"][4]["name"] = "NavIdSelected" +defs["structs"]["ImGuiMultiSelectIO"][4]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][5] = {} +defs["structs"]["ImGuiMultiSelectIO"][5]["name"] = "RangeSrcReset" +defs["structs"]["ImGuiMultiSelectIO"][5]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][6] = {} +defs["structs"]["ImGuiMultiSelectIO"][6]["name"] = "ItemsCount" +defs["structs"]["ImGuiMultiSelectIO"][6]["type"] = "int" defs["structs"]["ImGuiOnceUponAFrame"] = {} defs["structs"]["ImGuiOnceUponAFrame"][1] = {} defs["structs"]["ImGuiOnceUponAFrame"][1]["name"] = "RefFrame" @@ -3280,6 +3645,31 @@ defs["structs"]["ImGuiPayload"][7]["type"] = "bool" defs["structs"]["ImGuiPayload"][8] = {} defs["structs"]["ImGuiPayload"][8]["name"] = "Delivery" defs["structs"]["ImGuiPayload"][8]["type"] = "bool" +defs["structs"]["ImGuiPlatformIO"] = {} +defs["structs"]["ImGuiPlatformIO"][1] = {} +defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_GetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][1]["type"] = "const char*(*)(ImGuiContext* ctx)" +defs["structs"]["ImGuiPlatformIO"][2] = {} +defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_SetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiContext* ctx,const char* text)" +defs["structs"]["ImGuiPlatformIO"][3] = {} +defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ClipboardUserData" +defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void*" +defs["structs"]["ImGuiPlatformIO"][4] = {} +defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_OpenInShellFn" +defs["structs"]["ImGuiPlatformIO"][4]["type"] = "bool(*)(ImGuiContext* ctx,const char* path)" +defs["structs"]["ImGuiPlatformIO"][5] = {} +defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_OpenInShellUserData" +defs["structs"]["ImGuiPlatformIO"][5]["type"] = "void*" +defs["structs"]["ImGuiPlatformIO"][6] = {} +defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetImeDataFn" +defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiPlatformIO"][7] = {} +defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_ImeUserData" +defs["structs"]["ImGuiPlatformIO"][7]["type"] = "void*" +defs["structs"]["ImGuiPlatformIO"][8] = {} +defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_LocaleDecimalPoint" +defs["structs"]["ImGuiPlatformIO"][8]["type"] = "ImWchar" defs["structs"]["ImGuiPlatformImeData"] = {} defs["structs"]["ImGuiPlatformImeData"][1] = {} defs["structs"]["ImGuiPlatformImeData"][1]["name"] = "WantVisible" @@ -3290,6 +3680,48 @@ defs["structs"]["ImGuiPlatformImeData"][2]["type"] = "ImVec2" defs["structs"]["ImGuiPlatformImeData"][3] = {} defs["structs"]["ImGuiPlatformImeData"][3]["name"] = "InputLineHeight" defs["structs"]["ImGuiPlatformImeData"][3]["type"] = "float" +defs["structs"]["ImGuiSelectionBasicStorage"] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1]["name"] = "Size" +defs["structs"]["ImGuiSelectionBasicStorage"][1]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][2] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][2]["name"] = "PreserveOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionBasicStorage"][3] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][3]["name"] = "UserData" +defs["structs"]["ImGuiSelectionBasicStorage"][3]["type"] = "void*" +defs["structs"]["ImGuiSelectionBasicStorage"][4] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][4]["name"] = "AdapterIndexToStorageId" +defs["structs"]["ImGuiSelectionBasicStorage"][4]["type"] = "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" +defs["structs"]["ImGuiSelectionBasicStorage"][5] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][5]["name"] = "_SelectionOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][5]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][6] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][6]["name"] = "_Storage" +defs["structs"]["ImGuiSelectionBasicStorage"][6]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiSelectionExternalStorage"] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1]["name"] = "UserData" +defs["structs"]["ImGuiSelectionExternalStorage"][1]["type"] = "void*" +defs["structs"]["ImGuiSelectionExternalStorage"][2] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][2]["name"] = "AdapterSetItemSelected" +defs["structs"]["ImGuiSelectionExternalStorage"][2]["type"] = "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" +defs["structs"]["ImGuiSelectionRequest"] = {} +defs["structs"]["ImGuiSelectionRequest"][1] = {} +defs["structs"]["ImGuiSelectionRequest"][1]["name"] = "Type" +defs["structs"]["ImGuiSelectionRequest"][1]["type"] = "ImGuiSelectionRequestType" +defs["structs"]["ImGuiSelectionRequest"][2] = {} +defs["structs"]["ImGuiSelectionRequest"][2]["name"] = "Selected" +defs["structs"]["ImGuiSelectionRequest"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionRequest"][3] = {} +defs["structs"]["ImGuiSelectionRequest"][3]["name"] = "RangeDirection" +defs["structs"]["ImGuiSelectionRequest"][3]["type"] = "ImS8" +defs["structs"]["ImGuiSelectionRequest"][4] = {} +defs["structs"]["ImGuiSelectionRequest"][4]["name"] = "RangeFirstItem" +defs["structs"]["ImGuiSelectionRequest"][4]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiSelectionRequest"][5] = {} +defs["structs"]["ImGuiSelectionRequest"][5]["name"] = "RangeLastItem" +defs["structs"]["ImGuiSelectionRequest"][5]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiSizeCallbackData"] = {} defs["structs"]["ImGuiSizeCallbackData"][1] = {} defs["structs"]["ImGuiSizeCallbackData"][1]["name"] = "UserData" @@ -3404,42 +3836,78 @@ defs["structs"]["ImGuiStyle"][29] = {} defs["structs"]["ImGuiStyle"][29]["name"] = "TabMinWidthForCloseButton" defs["structs"]["ImGuiStyle"][29]["type"] = "float" defs["structs"]["ImGuiStyle"][30] = {} -defs["structs"]["ImGuiStyle"][30]["name"] = "ColorButtonPosition" -defs["structs"]["ImGuiStyle"][30]["type"] = "ImGuiDir" +defs["structs"]["ImGuiStyle"][30]["name"] = "TabBarBorderSize" +defs["structs"]["ImGuiStyle"][30]["type"] = "float" defs["structs"]["ImGuiStyle"][31] = {} -defs["structs"]["ImGuiStyle"][31]["name"] = "ButtonTextAlign" -defs["structs"]["ImGuiStyle"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][31]["name"] = "TabBarOverlineSize" +defs["structs"]["ImGuiStyle"][31]["type"] = "float" defs["structs"]["ImGuiStyle"][32] = {} -defs["structs"]["ImGuiStyle"][32]["name"] = "SelectableTextAlign" -defs["structs"]["ImGuiStyle"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][32]["name"] = "TableAngledHeadersAngle" +defs["structs"]["ImGuiStyle"][32]["type"] = "float" defs["structs"]["ImGuiStyle"][33] = {} -defs["structs"]["ImGuiStyle"][33]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][33]["name"] = "TableAngledHeadersTextAlign" defs["structs"]["ImGuiStyle"][33]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][34] = {} -defs["structs"]["ImGuiStyle"][34]["name"] = "DisplaySafeAreaPadding" -defs["structs"]["ImGuiStyle"][34]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][34]["name"] = "ColorButtonPosition" +defs["structs"]["ImGuiStyle"][34]["type"] = "ImGuiDir" defs["structs"]["ImGuiStyle"][35] = {} -defs["structs"]["ImGuiStyle"][35]["name"] = "MouseCursorScale" -defs["structs"]["ImGuiStyle"][35]["type"] = "float" +defs["structs"]["ImGuiStyle"][35]["name"] = "ButtonTextAlign" +defs["structs"]["ImGuiStyle"][35]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][36] = {} -defs["structs"]["ImGuiStyle"][36]["name"] = "AntiAliasedLines" -defs["structs"]["ImGuiStyle"][36]["type"] = "bool" +defs["structs"]["ImGuiStyle"][36]["name"] = "SelectableTextAlign" +defs["structs"]["ImGuiStyle"][36]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][37] = {} -defs["structs"]["ImGuiStyle"][37]["name"] = "AntiAliasedLinesUseTex" -defs["structs"]["ImGuiStyle"][37]["type"] = "bool" +defs["structs"]["ImGuiStyle"][37]["name"] = "SeparatorTextBorderSize" +defs["structs"]["ImGuiStyle"][37]["type"] = "float" defs["structs"]["ImGuiStyle"][38] = {} -defs["structs"]["ImGuiStyle"][38]["name"] = "AntiAliasedFill" -defs["structs"]["ImGuiStyle"][38]["type"] = "bool" +defs["structs"]["ImGuiStyle"][38]["name"] = "SeparatorTextAlign" +defs["structs"]["ImGuiStyle"][38]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][39] = {} -defs["structs"]["ImGuiStyle"][39]["name"] = "CurveTessellationTol" -defs["structs"]["ImGuiStyle"][39]["type"] = "float" +defs["structs"]["ImGuiStyle"][39]["name"] = "SeparatorTextPadding" +defs["structs"]["ImGuiStyle"][39]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][40] = {} -defs["structs"]["ImGuiStyle"][40]["name"] = "CircleTessellationMaxError" -defs["structs"]["ImGuiStyle"][40]["type"] = "float" +defs["structs"]["ImGuiStyle"][40]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][40]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][41] = {} -defs["structs"]["ImGuiStyle"][41]["name"] = "Colors[ImGuiCol_COUNT]" -defs["structs"]["ImGuiStyle"][41]["size"] = 53 -defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][41]["name"] = "DisplaySafeAreaPadding" +defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][42] = {} +defs["structs"]["ImGuiStyle"][42]["name"] = "MouseCursorScale" +defs["structs"]["ImGuiStyle"][42]["type"] = "float" +defs["structs"]["ImGuiStyle"][43] = {} +defs["structs"]["ImGuiStyle"][43]["name"] = "AntiAliasedLines" +defs["structs"]["ImGuiStyle"][43]["type"] = "bool" +defs["structs"]["ImGuiStyle"][44] = {} +defs["structs"]["ImGuiStyle"][44]["name"] = "AntiAliasedLinesUseTex" +defs["structs"]["ImGuiStyle"][44]["type"] = "bool" +defs["structs"]["ImGuiStyle"][45] = {} +defs["structs"]["ImGuiStyle"][45]["name"] = "AntiAliasedFill" +defs["structs"]["ImGuiStyle"][45]["type"] = "bool" +defs["structs"]["ImGuiStyle"][46] = {} +defs["structs"]["ImGuiStyle"][46]["name"] = "CurveTessellationTol" +defs["structs"]["ImGuiStyle"][46]["type"] = "float" +defs["structs"]["ImGuiStyle"][47] = {} +defs["structs"]["ImGuiStyle"][47]["name"] = "CircleTessellationMaxError" +defs["structs"]["ImGuiStyle"][47]["type"] = "float" +defs["structs"]["ImGuiStyle"][48] = {} +defs["structs"]["ImGuiStyle"][48]["name"] = "Colors[ImGuiCol_COUNT]" +defs["structs"]["ImGuiStyle"][48]["size"] = 56 +defs["structs"]["ImGuiStyle"][48]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][49] = {} +defs["structs"]["ImGuiStyle"][49]["name"] = "HoverStationaryDelay" +defs["structs"]["ImGuiStyle"][49]["type"] = "float" +defs["structs"]["ImGuiStyle"][50] = {} +defs["structs"]["ImGuiStyle"][50]["name"] = "HoverDelayShort" +defs["structs"]["ImGuiStyle"][50]["type"] = "float" +defs["structs"]["ImGuiStyle"][51] = {} +defs["structs"]["ImGuiStyle"][51]["name"] = "HoverDelayNormal" +defs["structs"]["ImGuiStyle"][51]["type"] = "float" +defs["structs"]["ImGuiStyle"][52] = {} +defs["structs"]["ImGuiStyle"][52]["name"] = "HoverFlagsForTooltipMouse" +defs["structs"]["ImGuiStyle"][52]["type"] = "ImGuiHoveredFlags" +defs["structs"]["ImGuiStyle"][53] = {} +defs["structs"]["ImGuiStyle"][53]["name"] = "HoverFlagsForTooltipNav" +defs["structs"]["ImGuiStyle"][53]["type"] = "ImGuiHoveredFlags" defs["structs"]["ImGuiTableColumnSortSpecs"] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][1] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][1]["name"] = "ColumnUserID" @@ -3451,7 +3919,6 @@ defs["structs"]["ImGuiTableColumnSortSpecs"][3] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][3]["name"] = "SortOrder" defs["structs"]["ImGuiTableColumnSortSpecs"][3]["type"] = "ImS16" defs["structs"]["ImGuiTableColumnSortSpecs"][4] = {} -defs["structs"]["ImGuiTableColumnSortSpecs"][4]["bitfield"] = "8" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["type"] = "ImGuiSortDirection" defs["structs"]["ImGuiTableSortSpecs"] = {} @@ -3490,23 +3957,29 @@ defs["structs"]["ImGuiTextRange"][2]["name"] = "e" defs["structs"]["ImGuiTextRange"][2]["type"] = "const char*" defs["structs"]["ImGuiViewport"] = {} defs["structs"]["ImGuiViewport"][1] = {} -defs["structs"]["ImGuiViewport"][1]["name"] = "Flags" -defs["structs"]["ImGuiViewport"][1]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiViewport"][1]["name"] = "ID" +defs["structs"]["ImGuiViewport"][1]["type"] = "ImGuiID" defs["structs"]["ImGuiViewport"][2] = {} -defs["structs"]["ImGuiViewport"][2]["name"] = "Pos" -defs["structs"]["ImGuiViewport"][2]["type"] = "ImVec2" +defs["structs"]["ImGuiViewport"][2]["name"] = "Flags" +defs["structs"]["ImGuiViewport"][2]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiViewport"][3] = {} -defs["structs"]["ImGuiViewport"][3]["name"] = "Size" +defs["structs"]["ImGuiViewport"][3]["name"] = "Pos" defs["structs"]["ImGuiViewport"][3]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][4] = {} -defs["structs"]["ImGuiViewport"][4]["name"] = "WorkPos" +defs["structs"]["ImGuiViewport"][4]["name"] = "Size" defs["structs"]["ImGuiViewport"][4]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][5] = {} -defs["structs"]["ImGuiViewport"][5]["name"] = "WorkSize" +defs["structs"]["ImGuiViewport"][5]["name"] = "WorkPos" defs["structs"]["ImGuiViewport"][5]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][6] = {} -defs["structs"]["ImGuiViewport"][6]["name"] = "PlatformHandleRaw" -defs["structs"]["ImGuiViewport"][6]["type"] = "void*" +defs["structs"]["ImGuiViewport"][6]["name"] = "WorkSize" +defs["structs"]["ImGuiViewport"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiViewport"][7] = {} +defs["structs"]["ImGuiViewport"][7]["name"] = "PlatformHandle" +defs["structs"]["ImGuiViewport"][7]["type"] = "void*" +defs["structs"]["ImGuiViewport"][8] = {} +defs["structs"]["ImGuiViewport"][8]["name"] = "PlatformHandleRaw" +defs["structs"]["ImGuiViewport"][8]["type"] = "void*" defs["structs"]["ImVec2"] = {} defs["structs"]["ImVec2"][1] = {} defs["structs"]["ImVec2"][1]["name"] = "x" @@ -3543,11 +4016,13 @@ defs["templates_done"]["ImVector"] = {} defs["templates_done"]["ImVector"]["ImDrawChannel"] = true defs["templates_done"]["ImVector"]["ImDrawCmd"] = true defs["templates_done"]["ImVector"]["ImDrawIdx"] = true +defs["templates_done"]["ImVector"]["ImDrawList*"] = true defs["templates_done"]["ImVector"]["ImDrawVert"] = true defs["templates_done"]["ImVector"]["ImFont*"] = true defs["templates_done"]["ImVector"]["ImFontAtlasCustomRect"] = true defs["templates_done"]["ImVector"]["ImFontConfig"] = true defs["templates_done"]["ImVector"]["ImFontGlyph"] = true +defs["templates_done"]["ImVector"]["ImGuiSelectionRequest"] = true defs["templates_done"]["ImVector"]["ImGuiStoragePair"] = true defs["templates_done"]["ImVector"]["ImGuiTextRange"] = true defs["templates_done"]["ImVector"]["ImTextureID"] = true diff --git a/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.json b/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.json index 9ae0cc2..0c82782 100644 --- a/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.json +++ b/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.json @@ -22,6 +22,7 @@ "ImFontGlyphRangesBuilder": "struct ImFontGlyphRangesBuilder", "ImGuiBackendFlags": "int", "ImGuiButtonFlags": "int", + "ImGuiChildFlags": "int", "ImGuiCol": "int", "ImGuiColorEditFlags": "int", "ImGuiComboFlags": "int", @@ -29,15 +30,16 @@ "ImGuiConfigFlags": "int", "ImGuiContext": "struct ImGuiContext", "ImGuiDataType": "int", - "ImGuiDir": "int", "ImGuiDragDropFlags": "int", "ImGuiFocusedFlags": "int", "ImGuiHoveredFlags": "int", "ImGuiID": "unsigned int", "ImGuiIO": "struct ImGuiIO", + "ImGuiInputFlags": "int", "ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);", "ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData", "ImGuiInputTextFlags": "int", + "ImGuiItemFlags": "int", "ImGuiKeyChord": "int", "ImGuiKeyData": "struct ImGuiKeyData", "ImGuiListClipper": "struct ImGuiListClipper", @@ -45,15 +47,21 @@ "ImGuiMemFreeFunc": "void(*)(void* ptr,void* user_data);", "ImGuiMouseButton": "int", "ImGuiMouseCursor": "int", + "ImGuiMultiSelectFlags": "int", + "ImGuiMultiSelectIO": "struct ImGuiMultiSelectIO", "ImGuiOnceUponAFrame": "struct ImGuiOnceUponAFrame", "ImGuiPayload": "struct ImGuiPayload", + "ImGuiPlatformIO": "struct ImGuiPlatformIO", "ImGuiPlatformImeData": "struct ImGuiPlatformImeData", "ImGuiPopupFlags": "int", "ImGuiSelectableFlags": "int", + "ImGuiSelectionBasicStorage": "struct ImGuiSelectionBasicStorage", + "ImGuiSelectionExternalStorage": "struct ImGuiSelectionExternalStorage", + "ImGuiSelectionRequest": "struct ImGuiSelectionRequest", + "ImGuiSelectionUserData": "ImS64", "ImGuiSizeCallback": "void(*)(ImGuiSizeCallbackData* data);", "ImGuiSizeCallbackData": "struct ImGuiSizeCallbackData", "ImGuiSliderFlags": "int", - "ImGuiSortDirection": "int", "ImGuiStorage": "struct ImGuiStorage", "ImGuiStoragePair": "struct ImGuiStoragePair", "ImGuiStyle": "struct ImGuiStyle", diff --git a/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.lua b/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.lua index 5deb107..5454cef 100644 --- a/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.lua +++ b/imgui-sys/third-party/imgui-master-freetype/typedefs_dict.lua @@ -22,6 +22,7 @@ defs["ImFontGlyph"] = "struct ImFontGlyph" defs["ImFontGlyphRangesBuilder"] = "struct ImFontGlyphRangesBuilder" defs["ImGuiBackendFlags"] = "int" defs["ImGuiButtonFlags"] = "int" +defs["ImGuiChildFlags"] = "int" defs["ImGuiCol"] = "int" defs["ImGuiColorEditFlags"] = "int" defs["ImGuiComboFlags"] = "int" @@ -29,15 +30,16 @@ defs["ImGuiCond"] = "int" defs["ImGuiConfigFlags"] = "int" defs["ImGuiContext"] = "struct ImGuiContext" defs["ImGuiDataType"] = "int" -defs["ImGuiDir"] = "int" defs["ImGuiDragDropFlags"] = "int" defs["ImGuiFocusedFlags"] = "int" defs["ImGuiHoveredFlags"] = "int" defs["ImGuiID"] = "unsigned int" defs["ImGuiIO"] = "struct ImGuiIO" +defs["ImGuiInputFlags"] = "int" defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);" defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData" defs["ImGuiInputTextFlags"] = "int" +defs["ImGuiItemFlags"] = "int" defs["ImGuiKeyChord"] = "int" defs["ImGuiKeyData"] = "struct ImGuiKeyData" defs["ImGuiListClipper"] = "struct ImGuiListClipper" @@ -45,15 +47,21 @@ defs["ImGuiMemAllocFunc"] = "void*(*)(size_t sz,void* user_data);" defs["ImGuiMemFreeFunc"] = "void(*)(void* ptr,void* user_data);" defs["ImGuiMouseButton"] = "int" defs["ImGuiMouseCursor"] = "int" +defs["ImGuiMultiSelectFlags"] = "int" +defs["ImGuiMultiSelectIO"] = "struct ImGuiMultiSelectIO" defs["ImGuiOnceUponAFrame"] = "struct ImGuiOnceUponAFrame" defs["ImGuiPayload"] = "struct ImGuiPayload" +defs["ImGuiPlatformIO"] = "struct ImGuiPlatformIO" defs["ImGuiPlatformImeData"] = "struct ImGuiPlatformImeData" defs["ImGuiPopupFlags"] = "int" defs["ImGuiSelectableFlags"] = "int" +defs["ImGuiSelectionBasicStorage"] = "struct ImGuiSelectionBasicStorage" +defs["ImGuiSelectionExternalStorage"] = "struct ImGuiSelectionExternalStorage" +defs["ImGuiSelectionRequest"] = "struct ImGuiSelectionRequest" +defs["ImGuiSelectionUserData"] = "ImS64" defs["ImGuiSizeCallback"] = "void(*)(ImGuiSizeCallbackData* data);" defs["ImGuiSizeCallbackData"] = "struct ImGuiSizeCallbackData" defs["ImGuiSliderFlags"] = "int" -defs["ImGuiSortDirection"] = "int" defs["ImGuiStorage"] = "struct ImGuiStorage" defs["ImGuiStoragePair"] = "struct ImGuiStoragePair" defs["ImGuiStyle"] = "struct ImGuiStyle" diff --git a/imgui-sys/third-party/imgui-master/cimgui.cpp b/imgui-sys/third-party/imgui-master/cimgui.cpp index 555227c..5df2ade 100644 --- a/imgui-sys/third-party/imgui-master/cimgui.cpp +++ b/imgui-sys/third-party/imgui-master/cimgui.cpp @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui #ifdef IMGUI_ENABLE_FREETYPE #ifndef CIMGUI_FREETYPE #error "IMGUI_FREETYPE should be defined for Freetype linking" @@ -62,6 +62,10 @@ CIMGUI_API ImGuiIO* igGetIO() { return &ImGui::GetIO(); } +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO() +{ + return &ImGui::GetPlatformIO(); +} CIMGUI_API ImGuiStyle* igGetStyle() { return &ImGui::GetStyle(); @@ -94,9 +98,9 @@ CIMGUI_API void igShowDebugLogWindow(bool* p_open) { return ImGui::ShowDebugLogWindow(p_open); } -CIMGUI_API void igShowStackToolWindow(bool* p_open) +CIMGUI_API void igShowIDStackToolWindow(bool* p_open) { - return ImGui::ShowStackToolWindow(p_open); + return ImGui::ShowIDStackToolWindow(p_open); } CIMGUI_API void igShowAboutWindow(bool* p_open) { @@ -142,13 +146,13 @@ CIMGUI_API void igEnd() { return ImGui::End(); } -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(str_id,size,border,flags); + return ImGui::BeginChild(str_id,size,child_flags,window_flags); } -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags) +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags) { - return ImGui::BeginChild(id,size,border,flags); + return ImGui::BeginChild(id,size,child_flags,window_flags); } CIMGUI_API void igEndChild() { @@ -258,22 +262,6 @@ CIMGUI_API void igSetWindowFocus_Str(const char* name) { return ImGui::SetWindowFocus(name); } -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionAvail(); -} -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetContentRegionMax(); -} -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMin(); -} -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut) -{ - *pOut = ImGui::GetWindowContentRegionMax(); -} CIMGUI_API float igGetScrollX() { return ImGui::GetScrollX(); @@ -342,25 +330,25 @@ CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val) { return ImGui::PushStyleVar(idx,val); } +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x) +{ + return ImGui::PushStyleVarX(idx,val_x); +} +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y) +{ + return ImGui::PushStyleVarY(idx,val_y); +} CIMGUI_API void igPopStyleVar(int count) { return ImGui::PopStyleVar(count); } -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus) +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled) { - return ImGui::PushAllowKeyboardFocus(allow_keyboard_focus); + return ImGui::PushItemFlag(option,enabled); } -CIMGUI_API void igPopAllowKeyboardFocus() +CIMGUI_API void igPopItemFlag() { - return ImGui::PopAllowKeyboardFocus(); -} -CIMGUI_API void igPushButtonRepeat(bool repeat) -{ - return ImGui::PushButtonRepeat(repeat); -} -CIMGUI_API void igPopButtonRepeat() -{ - return ImGui::PopButtonRepeat(); + return ImGui::PopItemFlag(); } CIMGUI_API void igPushItemWidth(float item_width) { @@ -406,14 +394,54 @@ CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col) { return ImGui::GetColorU32(col); } -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col) +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul) { - return ImGui::GetColorU32(col); + return ImGui::GetColorU32(col,alpha_mul); } CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx) { return &ImGui::GetStyleColorVec4(idx); } +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorScreenPos(); +} +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) +{ + return ImGui::SetCursorScreenPos(pos); +} +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut) +{ + *pOut = ImGui::GetContentRegionAvail(); +} +CIMGUI_API void igGetCursorPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorPos(); +} +CIMGUI_API float igGetCursorPosX() +{ + return ImGui::GetCursorPosX(); +} +CIMGUI_API float igGetCursorPosY() +{ + return ImGui::GetCursorPosY(); +} +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) +{ + return ImGui::SetCursorPos(local_pos); +} +CIMGUI_API void igSetCursorPosX(float local_x) +{ + return ImGui::SetCursorPosX(local_x); +} +CIMGUI_API void igSetCursorPosY(float local_y) +{ + return ImGui::SetCursorPosY(local_y); +} +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) +{ + *pOut = ImGui::GetCursorStartPos(); +} CIMGUI_API void igSeparator() { return ImGui::Separator(); @@ -450,42 +478,6 @@ CIMGUI_API void igEndGroup() { return ImGui::EndGroup(); } -CIMGUI_API void igGetCursorPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorPos(); -} -CIMGUI_API float igGetCursorPosX() -{ - return ImGui::GetCursorPosX(); -} -CIMGUI_API float igGetCursorPosY() -{ - return ImGui::GetCursorPosY(); -} -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos) -{ - return ImGui::SetCursorPos(local_pos); -} -CIMGUI_API void igSetCursorPosX(float local_x) -{ - return ImGui::SetCursorPosX(local_x); -} -CIMGUI_API void igSetCursorPosY(float local_y) -{ - return ImGui::SetCursorPosY(local_y); -} -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorStartPos(); -} -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut) -{ - *pOut = ImGui::GetCursorScreenPos(); -} -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos) -{ - return ImGui::SetCursorScreenPos(pos); -} CIMGUI_API void igAlignTextToFramePadding() { return ImGui::AlignTextToFramePadding(); @@ -538,6 +530,10 @@ CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id) { return ImGui::GetID(ptr_id); } +CIMGUI_API ImGuiID igGetID_Int(int int_id) +{ + return ImGui::GetID(int_id); +} CIMGUI_API void igTextUnformatted(const char* text,const char* text_end) { return ImGui::TextUnformatted(text,text_end); @@ -608,6 +604,10 @@ CIMGUI_API void igBulletTextV(const char* fmt,va_list args) { return ImGui::BulletTextV(fmt,args); } +CIMGUI_API void igSeparatorText(const char* label) +{ + return ImGui::SeparatorText(label); +} CIMGUI_API bool igButton(const char* label,const ImVec2 size) { return ImGui::Button(label,size); @@ -652,13 +652,21 @@ CIMGUI_API void igBullet() { return ImGui::Bullet(); } -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +CIMGUI_API bool igTextLink(const char* label) { - return ImGui::Image(user_texture_id,size,uv0,uv1,tint_col,border_col); + return ImGui::TextLink(label); } -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url) { - return ImGui::ImageButton(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col); + return ImGui::TextLinkOpenURL(label,url); +} +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col) +{ + return ImGui::Image(user_texture_id,image_size,uv0,uv1,tint_col,border_col); +} +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col) +{ + return ImGui::ImageButton(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col); } CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags) { @@ -676,9 +684,9 @@ CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* item { return ImGui::Combo(label,current_item,items_separated_by_zeros,popup_max_height_in_items); } -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items) +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items) { - return ImGui::Combo(label,current_item,items_getter,data,items_count,popup_max_height_in_items); + return ImGui::Combo(label,current_item,getter,user_data,items_count,popup_max_height_in_items); } CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags) { @@ -948,6 +956,10 @@ CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond) { return ImGui::SetNextItemOpen(is_open,cond); } +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id) +{ + return ImGui::SetNextItemStorageID(storage_id); +} CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size) { return ImGui::Selectable(label,selected,flags,size); @@ -956,6 +968,22 @@ CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSel { return ImGui::Selectable(label,p_selected,flags,size); } +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count) +{ + return ImGui::BeginMultiSelect(flags,selection_size,items_count); +} +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect() +{ + return ImGui::EndMultiSelect(); +} +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data) +{ + return ImGui::SetNextItemSelectionUserData(selection_user_data); +} +CIMGUI_API bool igIsItemToggledSelection() +{ + return ImGui::IsItemToggledSelection(); +} CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size) { return ImGui::BeginListBox(label,size); @@ -968,9 +996,9 @@ CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char { return ImGui::ListBox(label,current_item,items,items_count,height_in_items); } -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items) +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items) { - return ImGui::ListBox(label,current_item,items_getter,data,items_count,height_in_items); + return ImGui::ListBox(label,current_item,getter,user_data,items_count,height_in_items); } CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride) { @@ -1036,7 +1064,7 @@ CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* { return ImGui::MenuItem(label,shortcut,p_selected,enabled); } -CIMGUI_API void igBeginTooltip() +CIMGUI_API bool igBeginTooltip() { return ImGui::BeginTooltip(); } @@ -1055,6 +1083,21 @@ CIMGUI_API void igSetTooltipV(const char* fmt,va_list args) { return ImGui::SetTooltipV(fmt,args); } +CIMGUI_API bool igBeginItemTooltip() +{ + return ImGui::BeginItemTooltip(); +} +CIMGUI_API void igSetItemTooltip(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::SetItemTooltipV(fmt,args); + va_end(args); +} +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args) +{ + return ImGui::SetItemTooltipV(fmt,args); +} CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags) { return ImGui::BeginPopup(str_id,flags); @@ -1099,9 +1142,9 @@ CIMGUI_API bool igIsPopupOpen(const char* str_id,ImGuiPopupFlags flags) { return ImGui::IsPopupOpen(str_id,flags); } -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width) { - return ImGui::BeginTable(str_id,column,flags,outer_size,inner_width); + return ImGui::BeginTable(str_id,columns,flags,outer_size,inner_width); } CIMGUI_API void igEndTable() { @@ -1127,13 +1170,17 @@ CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows) { return ImGui::TableSetupScrollFreeze(cols,rows); } +CIMGUI_API void igTableHeader(const char* label) +{ + return ImGui::TableHeader(label); +} CIMGUI_API void igTableHeadersRow() { return ImGui::TableHeadersRow(); } -CIMGUI_API void igTableHeader(const char* label) +CIMGUI_API void igTableAngledHeadersRow() { - return ImGui::TableHeader(label); + return ImGui::TableAngledHeadersRow(); } CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs() { @@ -1163,13 +1210,17 @@ CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v) { return ImGui::TableSetColumnEnabled(column_n,v); } +CIMGUI_API int igTableGetHoveredColumn() +{ + return ImGui::TableGetHoveredColumn(); +} CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n) { return ImGui::TableSetBgColor(target,color,column_n); } -CIMGUI_API void igColumns(int count,const char* id,bool border) +CIMGUI_API void igColumns(int count,const char* id,bool borders) { - return ImGui::Columns(count,id,border); + return ImGui::Columns(count,id,borders); } CIMGUI_API void igNextColumn() { @@ -1299,6 +1350,10 @@ CIMGUI_API void igSetKeyboardFocusHere(int offset) { return ImGui::SetKeyboardFocusHere(offset); } +CIMGUI_API void igSetNextItemAllowOverlap() +{ + return ImGui::SetNextItemAllowOverlap(); +} CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags) { return ImGui::IsItemHovered(flags); @@ -1367,10 +1422,6 @@ CIMGUI_API void igGetItemRectSize(ImVec2 *pOut) { *pOut = ImGui::GetItemRectSize(); } -CIMGUI_API void igSetItemAllowOverlap() -{ - return ImGui::SetItemAllowOverlap(); -} CIMGUI_API ImGuiViewport* igGetMainViewport() { return ImGui::GetMainViewport(); @@ -1415,14 +1466,6 @@ CIMGUI_API ImGuiStorage* igGetStateStorage() { return ImGui::GetStateStorage(); } -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags) -{ - return ImGui::BeginChildFrame(id,size,flags); -} -CIMGUI_API void igEndChildFrame() -{ - return ImGui::EndChildFrame(); -} CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width) { *pOut = ImGui::CalcTextSize(text,text_end,hide_text_after_double_hash,wrap_width); @@ -1455,6 +1498,10 @@ CIMGUI_API bool igIsKeyReleased(ImGuiKey key) { return ImGui::IsKeyReleased(key); } +CIMGUI_API bool igIsKeyChordPressed(ImGuiKeyChord key_chord) +{ + return ImGui::IsKeyChordPressed(key_chord); +} CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate) { return ImGui::GetKeyPressedAmount(key,repeat_delay,rate); @@ -1467,6 +1514,18 @@ CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) { return ImGui::SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } +CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::Shortcut(key_chord,flags); +} +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags) +{ + return ImGui::SetNextItemShortcut(key_chord,flags); +} +CIMGUI_API void igSetItemKeyOwner(ImGuiKey key) +{ + return ImGui::SetItemKeyOwner(key); +} CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button) { return ImGui::IsMouseDown(button); @@ -1559,10 +1618,29 @@ CIMGUI_API void igDebugTextEncoding(const char* text) { return ImGui::DebugTextEncoding(text); } +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx) +{ + return ImGui::DebugFlashStyleColor(idx); +} +CIMGUI_API void igDebugStartItemPicker() +{ + return ImGui::DebugStartItemPicker(); +} CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx) { return ImGui::DebugCheckVersionAndDataLayout(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx); } +CIMGUI_API void igDebugLog(const char* fmt,...) +{ + va_list args; + va_start(args, fmt); + ImGui::DebugLogV(fmt,args); + va_end(args); +} +CIMGUI_API void igDebugLogV(const char* fmt,va_list args) +{ + return ImGui::DebugLogV(fmt,args); +} CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data) { return ImGui::SetAllocatorFunctions(alloc_func,free_func,user_data); @@ -1579,6 +1657,22 @@ CIMGUI_API void igMemFree(void* ptr) { return ImGui::MemFree(ptr); } +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) +{ + return IM_NEW(ImGuiTableSortSpecs)(); +} +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) +{ + IM_DELETE(self); +} +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) +{ + return IM_NEW(ImGuiTableColumnSortSpecs)(); +} +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void) { return IM_NEW(ImGuiStyle)(); @@ -1607,9 +1701,13 @@ CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down) { return self->AddMouseButtonEvent(button,down); } -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y) +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y) { - return self->AddMouseWheelEvent(wh_x,wh_y); + return self->AddMouseWheelEvent(wheel_x,wheel_y); +} +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source) +{ + return self->AddMouseSourceEvent(source); } CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused) { @@ -1635,14 +1733,18 @@ CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_event { return self->SetAppAcceptingEvents(accepting_events); } -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self) +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self) { - return self->ClearInputCharacters(); + return self->ClearEventsQueue(); } CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self) { return self->ClearInputKeys(); } +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self) +{ + return self->ClearInputMouse(); +} CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void) { return IM_NEW(ImGuiIO)(); @@ -1703,22 +1805,6 @@ CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self) { return self->IsDelivery(); } -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void) -{ - return IM_NEW(ImGuiTableColumnSortSpecs)(); -} -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self) -{ - IM_DELETE(self); -} -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void) -{ - return IM_NEW(ImGuiTableSortSpecs)(); -} -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self) -{ - IM_DELETE(self); -} CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void) { return IM_NEW(ImGuiOnceUponAFrame)(); @@ -1819,21 +1905,21 @@ CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,v { return self->appendfv(fmt,args); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_i); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self) { IM_DELETE(self); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_f); + return IM_NEW(ImGuiStoragePair)(_key,_val); } -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p) +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val) { - return IM_NEW(ImGuiStoragePair)(_key,_val_p); + return IM_NEW(ImGuiStoragePair)(_key,_val); } CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self) { @@ -1887,14 +1973,14 @@ CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void { return self->GetVoidPtrRef(key,default_val); } -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) -{ - return self->SetAllInt(val); -} CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self) { return self->BuildSortByKey(); } +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val) +{ + return self->SetAllInt(val); +} CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void) { return IM_NEW(ImGuiListClipper)(); @@ -1915,9 +2001,17 @@ CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self) { return self->Step(); } -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max) +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index) { - return self->ForceDisplayRangeByIndices(item_min,item_max); + return self->IncludeItemByIndex(item_index); +} +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end) +{ + return self->IncludeItemsByIndex(item_begin,item_end); +} +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index) +{ + return self->SeekCursorForItem(item_index); } CIMGUI_API ImColor* ImColor_ImColor_Nil(void) { @@ -1951,6 +2045,54 @@ CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a) { *pOut = ImColor::HSV(h,s,v,a); } +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void) +{ + return IM_NEW(ImGuiSelectionBasicStorage)(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id) +{ + return self->Contains(id); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self) +{ + return self->Clear(); +} +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r) +{ + return self->Swap(*r); +} +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected) +{ + return self->SetItemSelected(id,selected); +} +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id) +{ + return self->GetNextSelectedItem(opaque_it,out_id); +} +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx) +{ + return self->GetStorageIdFromIndex(idx); +} +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void) +{ + return IM_NEW(ImGuiSelectionExternalStorage)(); +} +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self) +{ + IM_DELETE(self); +} +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io) +{ + return self->ApplyRequests(ms_io); +} CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void) { return IM_NEW(ImDrawCmd)(); @@ -2075,6 +2217,14 @@ CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,fl { return self->AddNgonFilled(center,radius,col,num_segments); } +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness) +{ + return self->AddEllipse(center,radius,col,rot,num_segments,thickness); +} +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments) +{ + return self->AddEllipseFilled(center,radius,col,rot,num_segments); +} CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end) { return self->AddText(pos,col,text_begin,text_end); @@ -2083,6 +2233,14 @@ CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,f { return self->AddText(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect); } +CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); +} +CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) +{ + return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); +} CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness) { return self->AddPolyline(points,num_points,col,flags,thickness); @@ -2091,13 +2249,9 @@ CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* po { return self->AddConvexPolyFilled(points,num_points,col); } -CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments) +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col) { - return self->AddBezierCubic(p1,p2,p3,p4,col,thickness,num_segments); -} -CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments) -{ - return self->AddBezierQuadratic(p1,p2,p3,col,thickness,num_segments); + return self->AddConcavePolyFilled(points,num_points,col); } CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col) { @@ -2127,6 +2281,10 @@ CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col) { return self->PathFillConvex(col); } +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col) +{ + return self->PathFillConcave(col); +} CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness) { return self->PathStroke(col,flags,thickness); @@ -2139,6 +2297,10 @@ CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,fl { return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12); } +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments) +{ + return self->PathEllipticalArcTo(center,radius,rot,a_min,a_max,num_segments); +} CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments) { return self->PathBezierCubicCurveTo(p2,p3,p4,num_segments); @@ -2235,6 +2397,10 @@ CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self) { return self->_OnChangedVtxOffset(); } +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id) +{ + return self->_SetTextureID(texture_id); +} CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius) { return self->_CalcCircleAutoSegmentCount(radius); @@ -2259,6 +2425,10 @@ CIMGUI_API void ImDrawData_Clear(ImDrawData* self) { return self->Clear(); } +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list) +{ + return self->AddDrawList(draw_list); +} CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self) { return self->DeIndexAllBuffers(); @@ -2343,13 +2513,13 @@ CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* { return self->AddFontFromFileTTF(filename,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryTTF(font_data,font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryTTF(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges); } -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { - return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges); + return self->AddFontFromMemoryCompressedTTF(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges); } CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges) { @@ -2535,6 +2705,14 @@ CIMGUI_API void ImGuiViewport_GetWorkCenter(ImVec2 *pOut,ImGuiViewport* self) { *pOut = self->GetWorkCenter(); } +CIMGUI_API ImGuiPlatformIO* ImGuiPlatformIO_ImGuiPlatformIO(void) +{ + return IM_NEW(ImGuiPlatformIO)(); +} +CIMGUI_API void ImGuiPlatformIO_destroy(ImGuiPlatformIO* self) +{ + IM_DELETE(self); +} CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void) { return IM_NEW(ImGuiPlatformImeData)(); @@ -2543,10 +2721,6 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self) { IM_DELETE(self); } -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key) -{ - return ImGui::GetKeyIndex(key); -} @@ -2620,7 +2794,7 @@ CimguiStorage& GetCimguiStorage() ImGuiIO& io = ImGui::GetIO(); if (io.BackendLanguageUserData == NULL) { - io.BackendLanguageUserData = new CimguiStorage(); + io.BackendLanguageUserData = IM_NEW(CimguiStorage)(); } return *(CimguiStorage*)io.BackendLanguageUserData; diff --git a/imgui-sys/third-party/imgui-master/cimgui.h b/imgui-sys/third-party/imgui-master/cimgui.h index 0de20c1..6df5c7c 100644 --- a/imgui-sys/third-party/imgui-master/cimgui.h +++ b/imgui-sys/third-party/imgui-master/cimgui.h @@ -1,5 +1,5 @@ //This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui -//based on imgui.h file version "1.89.2" 18920 from Dear ImGui https://github.com/ocornut/imgui +//based on imgui.h file version "1.91.2" 19120 from Dear ImGui https://github.com/ocornut/imgui #ifndef CIMGUI_INCLUDED #define CIMGUI_INCLUDED #include @@ -58,17 +58,32 @@ typedef struct ImGuiIO ImGuiIO; typedef struct ImGuiInputTextCallbackData ImGuiInputTextCallbackData; typedef struct ImGuiKeyData ImGuiKeyData; typedef struct ImGuiListClipper ImGuiListClipper; +typedef struct ImGuiMultiSelectIO ImGuiMultiSelectIO; typedef struct ImGuiOnceUponAFrame ImGuiOnceUponAFrame; typedef struct ImGuiPayload ImGuiPayload; +typedef struct ImGuiPlatformIO ImGuiPlatformIO; typedef struct ImGuiPlatformImeData ImGuiPlatformImeData; +typedef struct ImGuiSelectionBasicStorage ImGuiSelectionBasicStorage; +typedef struct ImGuiSelectionExternalStorage ImGuiSelectionExternalStorage; +typedef struct ImGuiSelectionRequest ImGuiSelectionRequest; typedef struct ImGuiSizeCallbackData ImGuiSizeCallbackData; typedef struct ImGuiStorage ImGuiStorage; +typedef struct ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiStyle ImGuiStyle; typedef struct ImGuiTableSortSpecs ImGuiTableSortSpecs; typedef struct ImGuiTableColumnSortSpecs ImGuiTableColumnSortSpecs; typedef struct ImGuiTextBuffer ImGuiTextBuffer; typedef struct ImGuiTextFilter ImGuiTextFilter; typedef struct ImGuiViewport ImGuiViewport; +typedef unsigned int ImGuiID; +typedef signed char ImS8; +typedef unsigned char ImU8; +typedef signed short ImS16; +typedef unsigned short ImU16; +typedef signed int ImS32; +typedef unsigned int ImU32; +typedef signed long long ImS64; +typedef unsigned long long ImU64; struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; @@ -88,11 +103,17 @@ struct ImGuiIO; struct ImGuiInputTextCallbackData; struct ImGuiKeyData; struct ImGuiListClipper; +struct ImGuiMultiSelectIO; struct ImGuiOnceUponAFrame; struct ImGuiPayload; +struct ImGuiPlatformIO; struct ImGuiPlatformImeData; +struct ImGuiSelectionBasicStorage; +struct ImGuiSelectionExternalStorage; +struct ImGuiSelectionRequest; struct ImGuiSizeCallbackData; struct ImGuiStorage; +struct ImGuiStoragePair; struct ImGuiStyle; struct ImGuiTableSortSpecs; struct ImGuiTableColumnSortSpecs; @@ -102,10 +123,8 @@ struct ImGuiViewport; typedef int ImGuiCol; typedef int ImGuiCond; typedef int ImGuiDataType; -typedef int ImGuiDir; typedef int ImGuiMouseButton; typedef int ImGuiMouseCursor; -typedef int ImGuiSortDirection; typedef int ImGuiStyleVar; typedef int ImGuiTableBgTarget; typedef int ImDrawFlags; @@ -113,15 +132,19 @@ typedef int ImDrawListFlags; typedef int ImFontAtlasFlags; typedef int ImGuiBackendFlags; typedef int ImGuiButtonFlags; +typedef int ImGuiChildFlags; typedef int ImGuiColorEditFlags; typedef int ImGuiConfigFlags; typedef int ImGuiComboFlags; typedef int ImGuiDragDropFlags; typedef int ImGuiFocusedFlags; typedef int ImGuiHoveredFlags; +typedef int ImGuiInputFlags; typedef int ImGuiInputTextFlags; +typedef int ImGuiItemFlags; typedef int ImGuiKeyChord; typedef int ImGuiPopupFlags; +typedef int ImGuiMultiSelectFlags; typedef int ImGuiSelectableFlags; typedef int ImGuiSliderFlags; typedef int ImGuiTabBarFlags; @@ -134,18 +157,10 @@ typedef int ImGuiViewportFlags; typedef int ImGuiWindowFlags; typedef void* ImTextureID; typedef unsigned short ImDrawIdx; -typedef unsigned int ImGuiID; -typedef signed char ImS8; -typedef unsigned char ImU8; -typedef signed short ImS16; -typedef unsigned short ImU16; -typedef signed int ImS32; -typedef unsigned int ImU32; -typedef signed long long ImS64; -typedef unsigned long long ImU64; -typedef unsigned short ImWchar16; typedef unsigned int ImWchar32; +typedef unsigned short ImWchar16; typedef ImWchar32 ImWchar; +typedef ImS64 ImGuiSelectionUserData; typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData* data); typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data); typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); @@ -178,49 +193,70 @@ typedef enum { ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, - ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 16, - ImGuiWindowFlags_NoNavInputs = 1 << 18, - ImGuiWindowFlags_NoNavFocus = 1 << 19, - ImGuiWindowFlags_UnsavedDocument = 1 << 20, + ImGuiWindowFlags_NoNavInputs = 1 << 16, + ImGuiWindowFlags_NoNavFocus = 1 << 17, + ImGuiWindowFlags_UnsavedDocument = 1 << 18, ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, - ImGuiWindowFlags_NavFlattened = 1 << 23, ImGuiWindowFlags_ChildWindow = 1 << 24, ImGuiWindowFlags_Tooltip = 1 << 25, ImGuiWindowFlags_Popup = 1 << 26, ImGuiWindowFlags_Modal = 1 << 27, ImGuiWindowFlags_ChildMenu = 1 << 28, }ImGuiWindowFlags_; +typedef enum { + ImGuiChildFlags_None = 0, + ImGuiChildFlags_Borders = 1 << 0, + ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, + ImGuiChildFlags_ResizeX = 1 << 2, + ImGuiChildFlags_ResizeY = 1 << 3, + ImGuiChildFlags_AutoResizeX = 1 << 4, + ImGuiChildFlags_AutoResizeY = 1 << 5, + ImGuiChildFlags_AlwaysAutoResize = 1 << 6, + ImGuiChildFlags_FrameStyle = 1 << 7, + ImGuiChildFlags_NavFlattened = 1 << 8, +}ImGuiChildFlags_; +typedef enum { + ImGuiItemFlags_None = 0, + ImGuiItemFlags_NoTabStop = 1 << 0, + ImGuiItemFlags_NoNav = 1 << 1, + ImGuiItemFlags_NoNavDefaultFocus = 1 << 2, + ImGuiItemFlags_ButtonRepeat = 1 << 3, + ImGuiItemFlags_AutoClosePopups = 1 << 4, + ImGuiItemFlags_AllowDuplicateId = 1 << 5, +}ImGuiItemFlags_; typedef enum { ImGuiInputTextFlags_None = 0, ImGuiInputTextFlags_CharsDecimal = 1 << 0, ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, - ImGuiInputTextFlags_CharsUppercase = 1 << 2, - ImGuiInputTextFlags_CharsNoBlank = 1 << 3, - ImGuiInputTextFlags_AutoSelectAll = 1 << 4, - ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, - ImGuiInputTextFlags_CallbackCompletion = 1 << 6, - ImGuiInputTextFlags_CallbackHistory = 1 << 7, - ImGuiInputTextFlags_CallbackAlways = 1 << 8, - ImGuiInputTextFlags_CallbackCharFilter = 1 << 9, - ImGuiInputTextFlags_AllowTabInput = 1 << 10, - ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 11, - ImGuiInputTextFlags_NoHorizontalScroll = 1 << 12, - ImGuiInputTextFlags_AlwaysOverwrite = 1 << 13, - ImGuiInputTextFlags_ReadOnly = 1 << 14, - ImGuiInputTextFlags_Password = 1 << 15, + ImGuiInputTextFlags_CharsScientific = 1 << 2, + ImGuiInputTextFlags_CharsUppercase = 1 << 3, + ImGuiInputTextFlags_CharsNoBlank = 1 << 4, + ImGuiInputTextFlags_AllowTabInput = 1 << 5, + ImGuiInputTextFlags_EnterReturnsTrue = 1 << 6, + ImGuiInputTextFlags_EscapeClearsAll = 1 << 7, + ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 8, + ImGuiInputTextFlags_ReadOnly = 1 << 9, + ImGuiInputTextFlags_Password = 1 << 10, + ImGuiInputTextFlags_AlwaysOverwrite = 1 << 11, + ImGuiInputTextFlags_AutoSelectAll = 1 << 12, + ImGuiInputTextFlags_ParseEmptyRefVal = 1 << 13, + ImGuiInputTextFlags_DisplayEmptyRefVal = 1 << 14, + ImGuiInputTextFlags_NoHorizontalScroll = 1 << 15, ImGuiInputTextFlags_NoUndoRedo = 1 << 16, - ImGuiInputTextFlags_CharsScientific = 1 << 17, - ImGuiInputTextFlags_CallbackResize = 1 << 18, - ImGuiInputTextFlags_CallbackEdit = 1 << 19, - ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, + ImGuiInputTextFlags_CallbackCompletion = 1 << 17, + ImGuiInputTextFlags_CallbackHistory = 1 << 18, + ImGuiInputTextFlags_CallbackAlways = 1 << 19, + ImGuiInputTextFlags_CallbackCharFilter = 1 << 20, + ImGuiInputTextFlags_CallbackResize = 1 << 21, + ImGuiInputTextFlags_CallbackEdit = 1 << 22, }ImGuiInputTextFlags_; typedef enum { ImGuiTreeNodeFlags_None = 0, ImGuiTreeNodeFlags_Selected = 1 << 0, ImGuiTreeNodeFlags_Framed = 1 << 1, - ImGuiTreeNodeFlags_AllowItemOverlap = 1 << 2, + ImGuiTreeNodeFlags_AllowOverlap = 1 << 2, ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, @@ -231,7 +267,9 @@ typedef enum { ImGuiTreeNodeFlags_FramePadding = 1 << 10, ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, - ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, + ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13, + ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, + ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15, ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, }ImGuiTreeNodeFlags_; typedef enum { @@ -241,19 +279,21 @@ typedef enum { ImGuiPopupFlags_MouseButtonMiddle = 2, ImGuiPopupFlags_MouseButtonMask_ = 0x1F, ImGuiPopupFlags_MouseButtonDefault_ = 1, - ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5, - ImGuiPopupFlags_NoOpenOverItems = 1 << 6, - ImGuiPopupFlags_AnyPopupId = 1 << 7, - ImGuiPopupFlags_AnyPopupLevel = 1 << 8, + ImGuiPopupFlags_NoReopen = 1 << 5, + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7, + ImGuiPopupFlags_NoOpenOverItems = 1 << 8, + ImGuiPopupFlags_AnyPopupId = 1 << 10, + ImGuiPopupFlags_AnyPopupLevel = 1 << 11, ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, }ImGuiPopupFlags_; typedef enum { ImGuiSelectableFlags_None = 0, - ImGuiSelectableFlags_DontClosePopups = 1 << 0, + ImGuiSelectableFlags_NoAutoClosePopups = 1 << 0, ImGuiSelectableFlags_SpanAllColumns = 1 << 1, ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, ImGuiSelectableFlags_Disabled = 1 << 3, - ImGuiSelectableFlags_AllowItemOverlap = 1 << 4, + ImGuiSelectableFlags_AllowOverlap = 1 << 4, + ImGuiSelectableFlags_Highlight = 1 << 5, }ImGuiSelectableFlags_; typedef enum { ImGuiComboFlags_None = 0, @@ -264,6 +304,7 @@ typedef enum { ImGuiComboFlags_HeightLargest = 1 << 4, ImGuiComboFlags_NoArrowButton = 1 << 5, ImGuiComboFlags_NoPreview = 1 << 6, + ImGuiComboFlags_WidthFitPreview = 1 << 7, ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, }ImGuiComboFlags_; typedef enum { @@ -274,8 +315,9 @@ typedef enum { ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, ImGuiTabBarFlags_NoTooltip = 1 << 5, - ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, - ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, + ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6, + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7, + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8, ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, }ImGuiTabBarFlags_; @@ -289,84 +331,8 @@ typedef enum { ImGuiTabItemFlags_NoReorder = 1 << 5, ImGuiTabItemFlags_Leading = 1 << 6, ImGuiTabItemFlags_Trailing = 1 << 7, + ImGuiTabItemFlags_NoAssumedClosure = 1 << 8, }ImGuiTabItemFlags_; -typedef enum { - ImGuiTableFlags_None = 0, - ImGuiTableFlags_Resizable = 1 << 0, - ImGuiTableFlags_Reorderable = 1 << 1, - ImGuiTableFlags_Hideable = 1 << 2, - ImGuiTableFlags_Sortable = 1 << 3, - ImGuiTableFlags_NoSavedSettings = 1 << 4, - ImGuiTableFlags_ContextMenuInBody = 1 << 5, - ImGuiTableFlags_RowBg = 1 << 6, - ImGuiTableFlags_BordersInnerH = 1 << 7, - ImGuiTableFlags_BordersOuterH = 1 << 8, - ImGuiTableFlags_BordersInnerV = 1 << 9, - ImGuiTableFlags_BordersOuterV = 1 << 10, - ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, - ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, - ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, - ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, - ImGuiTableFlags_NoBordersInBody = 1 << 11, - ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, - ImGuiTableFlags_SizingFixedFit = 1 << 13, - ImGuiTableFlags_SizingFixedSame = 2 << 13, - ImGuiTableFlags_SizingStretchProp = 3 << 13, - ImGuiTableFlags_SizingStretchSame = 4 << 13, - ImGuiTableFlags_NoHostExtendX = 1 << 16, - ImGuiTableFlags_NoHostExtendY = 1 << 17, - ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, - ImGuiTableFlags_PreciseWidths = 1 << 19, - ImGuiTableFlags_NoClip = 1 << 20, - ImGuiTableFlags_PadOuterX = 1 << 21, - ImGuiTableFlags_NoPadOuterX = 1 << 22, - ImGuiTableFlags_NoPadInnerX = 1 << 23, - ImGuiTableFlags_ScrollX = 1 << 24, - ImGuiTableFlags_ScrollY = 1 << 25, - ImGuiTableFlags_SortMulti = 1 << 26, - ImGuiTableFlags_SortTristate = 1 << 27, - ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, -}ImGuiTableFlags_; -typedef enum { - ImGuiTableColumnFlags_None = 0, - ImGuiTableColumnFlags_Disabled = 1 << 0, - ImGuiTableColumnFlags_DefaultHide = 1 << 1, - ImGuiTableColumnFlags_DefaultSort = 1 << 2, - ImGuiTableColumnFlags_WidthStretch = 1 << 3, - ImGuiTableColumnFlags_WidthFixed = 1 << 4, - ImGuiTableColumnFlags_NoResize = 1 << 5, - ImGuiTableColumnFlags_NoReorder = 1 << 6, - ImGuiTableColumnFlags_NoHide = 1 << 7, - ImGuiTableColumnFlags_NoClip = 1 << 8, - ImGuiTableColumnFlags_NoSort = 1 << 9, - ImGuiTableColumnFlags_NoSortAscending = 1 << 10, - ImGuiTableColumnFlags_NoSortDescending = 1 << 11, - ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, - ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, - ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, - ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, - ImGuiTableColumnFlags_IndentEnable = 1 << 16, - ImGuiTableColumnFlags_IndentDisable = 1 << 17, - ImGuiTableColumnFlags_IsEnabled = 1 << 24, - ImGuiTableColumnFlags_IsVisible = 1 << 25, - ImGuiTableColumnFlags_IsSorted = 1 << 26, - ImGuiTableColumnFlags_IsHovered = 1 << 27, - ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, - ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, - ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, - ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, -}ImGuiTableColumnFlags_; -typedef enum { - ImGuiTableRowFlags_None = 0, - ImGuiTableRowFlags_Headers = 1 << 0, -}ImGuiTableRowFlags_; -typedef enum { - ImGuiTableBgTarget_None = 0, - ImGuiTableBgTarget_RowBg0 = 1, - ImGuiTableBgTarget_RowBg1 = 2, - ImGuiTableBgTarget_CellBg = 3, -}ImGuiTableBgTarget_; typedef enum { ImGuiFocusedFlags_None = 0, ImGuiFocusedFlags_ChildWindows = 1 << 0, @@ -383,14 +349,19 @@ typedef enum { ImGuiHoveredFlags_NoPopupHierarchy = 1 << 3, ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 5, ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 7, - ImGuiHoveredFlags_AllowWhenOverlapped = 1 << 8, - ImGuiHoveredFlags_AllowWhenDisabled = 1 << 9, - ImGuiHoveredFlags_NoNavOverride = 1 << 10, + ImGuiHoveredFlags_AllowWhenOverlappedByItem = 1 << 8, + ImGuiHoveredFlags_AllowWhenOverlappedByWindow = 1 << 9, + ImGuiHoveredFlags_AllowWhenDisabled = 1 << 10, + ImGuiHoveredFlags_NoNavOverride = 1 << 11, + ImGuiHoveredFlags_AllowWhenOverlapped = ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow, ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, - ImGuiHoveredFlags_DelayNormal = 1 << 11, - ImGuiHoveredFlags_DelayShort = 1 << 12, - ImGuiHoveredFlags_NoSharedDelay = 1 << 13, + ImGuiHoveredFlags_ForTooltip = 1 << 12, + ImGuiHoveredFlags_Stationary = 1 << 13, + ImGuiHoveredFlags_DelayNone = 1 << 14, + ImGuiHoveredFlags_DelayShort = 1 << 15, + ImGuiHoveredFlags_DelayNormal = 1 << 16, + ImGuiHoveredFlags_NoSharedDelay = 1 << 17, }ImGuiHoveredFlags_; typedef enum { ImGuiDragDropFlags_None = 0, @@ -399,7 +370,9 @@ typedef enum { ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, ImGuiDragDropFlags_SourceExtern = 1 << 4, - ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, + ImGuiDragDropFlags_PayloadAutoExpire = 1 << 5, + ImGuiDragDropFlags_PayloadNoCrossContext = 1 << 6, + ImGuiDragDropFlags_PayloadNoCrossProcess = 1 << 7, ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, @@ -416,21 +389,22 @@ typedef enum { ImGuiDataType_U64, ImGuiDataType_Float, ImGuiDataType_Double, + ImGuiDataType_Bool, ImGuiDataType_COUNT }ImGuiDataType_; typedef enum { - ImGuiDir_None = -1, - ImGuiDir_Left = 0, - ImGuiDir_Right = 1, - ImGuiDir_Up = 2, - ImGuiDir_Down = 3, - ImGuiDir_COUNT -}ImGuiDir_; +ImGuiDir_None=-1, +ImGuiDir_Left=0, +ImGuiDir_Right=1, +ImGuiDir_Up=2, +ImGuiDir_Down=3, +ImGuiDir_COUNT=4, +}ImGuiDir; typedef enum { - ImGuiSortDirection_None = 0, - ImGuiSortDirection_Ascending = 1, - ImGuiSortDirection_Descending = 2 -}ImGuiSortDirection_; +ImGuiSortDirection_None=0, +ImGuiSortDirection_Ascending=1, +ImGuiSortDirection_Descending=2, +}ImGuiSortDirection; typedef enum { ImGuiKey_None=0, ImGuiKey_Tab=512, @@ -505,93 +479,114 @@ ImGuiKey_F9=580, ImGuiKey_F10=581, ImGuiKey_F11=582, ImGuiKey_F12=583, -ImGuiKey_Apostrophe=584, -ImGuiKey_Comma=585, -ImGuiKey_Minus=586, -ImGuiKey_Period=587, -ImGuiKey_Slash=588, -ImGuiKey_Semicolon=589, -ImGuiKey_Equal=590, -ImGuiKey_LeftBracket=591, -ImGuiKey_Backslash=592, -ImGuiKey_RightBracket=593, -ImGuiKey_GraveAccent=594, -ImGuiKey_CapsLock=595, -ImGuiKey_ScrollLock=596, -ImGuiKey_NumLock=597, -ImGuiKey_PrintScreen=598, -ImGuiKey_Pause=599, -ImGuiKey_Keypad0=600, -ImGuiKey_Keypad1=601, -ImGuiKey_Keypad2=602, -ImGuiKey_Keypad3=603, -ImGuiKey_Keypad4=604, -ImGuiKey_Keypad5=605, -ImGuiKey_Keypad6=606, -ImGuiKey_Keypad7=607, -ImGuiKey_Keypad8=608, -ImGuiKey_Keypad9=609, -ImGuiKey_KeypadDecimal=610, -ImGuiKey_KeypadDivide=611, -ImGuiKey_KeypadMultiply=612, -ImGuiKey_KeypadSubtract=613, -ImGuiKey_KeypadAdd=614, -ImGuiKey_KeypadEnter=615, -ImGuiKey_KeypadEqual=616, -ImGuiKey_GamepadStart=617, -ImGuiKey_GamepadBack=618, -ImGuiKey_GamepadFaceLeft=619, -ImGuiKey_GamepadFaceRight=620, -ImGuiKey_GamepadFaceUp=621, -ImGuiKey_GamepadFaceDown=622, -ImGuiKey_GamepadDpadLeft=623, -ImGuiKey_GamepadDpadRight=624, -ImGuiKey_GamepadDpadUp=625, -ImGuiKey_GamepadDpadDown=626, -ImGuiKey_GamepadL1=627, -ImGuiKey_GamepadR1=628, -ImGuiKey_GamepadL2=629, -ImGuiKey_GamepadR2=630, -ImGuiKey_GamepadL3=631, -ImGuiKey_GamepadR3=632, -ImGuiKey_GamepadLStickLeft=633, -ImGuiKey_GamepadLStickRight=634, -ImGuiKey_GamepadLStickUp=635, -ImGuiKey_GamepadLStickDown=636, -ImGuiKey_GamepadRStickLeft=637, -ImGuiKey_GamepadRStickRight=638, -ImGuiKey_GamepadRStickUp=639, -ImGuiKey_GamepadRStickDown=640, -ImGuiKey_MouseLeft=641, -ImGuiKey_MouseRight=642, -ImGuiKey_MouseMiddle=643, -ImGuiKey_MouseX1=644, -ImGuiKey_MouseX2=645, -ImGuiKey_MouseWheelX=646, -ImGuiKey_MouseWheelY=647, -ImGuiKey_ReservedForModCtrl=648, -ImGuiKey_ReservedForModShift=649, -ImGuiKey_ReservedForModAlt=650, -ImGuiKey_ReservedForModSuper=651, -ImGuiKey_COUNT=652, +ImGuiKey_F13=584, +ImGuiKey_F14=585, +ImGuiKey_F15=586, +ImGuiKey_F16=587, +ImGuiKey_F17=588, +ImGuiKey_F18=589, +ImGuiKey_F19=590, +ImGuiKey_F20=591, +ImGuiKey_F21=592, +ImGuiKey_F22=593, +ImGuiKey_F23=594, +ImGuiKey_F24=595, +ImGuiKey_Apostrophe=596, +ImGuiKey_Comma=597, +ImGuiKey_Minus=598, +ImGuiKey_Period=599, +ImGuiKey_Slash=600, +ImGuiKey_Semicolon=601, +ImGuiKey_Equal=602, +ImGuiKey_LeftBracket=603, +ImGuiKey_Backslash=604, +ImGuiKey_RightBracket=605, +ImGuiKey_GraveAccent=606, +ImGuiKey_CapsLock=607, +ImGuiKey_ScrollLock=608, +ImGuiKey_NumLock=609, +ImGuiKey_PrintScreen=610, +ImGuiKey_Pause=611, +ImGuiKey_Keypad0=612, +ImGuiKey_Keypad1=613, +ImGuiKey_Keypad2=614, +ImGuiKey_Keypad3=615, +ImGuiKey_Keypad4=616, +ImGuiKey_Keypad5=617, +ImGuiKey_Keypad6=618, +ImGuiKey_Keypad7=619, +ImGuiKey_Keypad8=620, +ImGuiKey_Keypad9=621, +ImGuiKey_KeypadDecimal=622, +ImGuiKey_KeypadDivide=623, +ImGuiKey_KeypadMultiply=624, +ImGuiKey_KeypadSubtract=625, +ImGuiKey_KeypadAdd=626, +ImGuiKey_KeypadEnter=627, +ImGuiKey_KeypadEqual=628, +ImGuiKey_AppBack=629, +ImGuiKey_AppForward=630, +ImGuiKey_GamepadStart=631, +ImGuiKey_GamepadBack=632, +ImGuiKey_GamepadFaceLeft=633, +ImGuiKey_GamepadFaceRight=634, +ImGuiKey_GamepadFaceUp=635, +ImGuiKey_GamepadFaceDown=636, +ImGuiKey_GamepadDpadLeft=637, +ImGuiKey_GamepadDpadRight=638, +ImGuiKey_GamepadDpadUp=639, +ImGuiKey_GamepadDpadDown=640, +ImGuiKey_GamepadL1=641, +ImGuiKey_GamepadR1=642, +ImGuiKey_GamepadL2=643, +ImGuiKey_GamepadR2=644, +ImGuiKey_GamepadL3=645, +ImGuiKey_GamepadR3=646, +ImGuiKey_GamepadLStickLeft=647, +ImGuiKey_GamepadLStickRight=648, +ImGuiKey_GamepadLStickUp=649, +ImGuiKey_GamepadLStickDown=650, +ImGuiKey_GamepadRStickLeft=651, +ImGuiKey_GamepadRStickRight=652, +ImGuiKey_GamepadRStickUp=653, +ImGuiKey_GamepadRStickDown=654, +ImGuiKey_MouseLeft=655, +ImGuiKey_MouseRight=656, +ImGuiKey_MouseMiddle=657, +ImGuiKey_MouseX1=658, +ImGuiKey_MouseX2=659, +ImGuiKey_MouseWheelX=660, +ImGuiKey_MouseWheelY=661, +ImGuiKey_ReservedForModCtrl=662, +ImGuiKey_ReservedForModShift=663, +ImGuiKey_ReservedForModAlt=664, +ImGuiKey_ReservedForModSuper=665, +ImGuiKey_COUNT=666, ImGuiMod_None=0, ImGuiMod_Ctrl=1 << 12, ImGuiMod_Shift=1 << 13, ImGuiMod_Alt=1 << 14, ImGuiMod_Super=1 << 15, -ImGuiMod_Shortcut=1 << 11, -ImGuiMod_Mask_=0xF800, +ImGuiMod_Mask_=0xF000, ImGuiKey_NamedKey_BEGIN=512, ImGuiKey_NamedKey_END=ImGuiKey_COUNT, ImGuiKey_NamedKey_COUNT=ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, -ImGuiKey_KeysData_SIZE=ImGuiKey_COUNT, -ImGuiKey_KeysData_OFFSET=0, +ImGuiKey_KeysData_SIZE=ImGuiKey_NamedKey_COUNT, +ImGuiKey_KeysData_OFFSET=ImGuiKey_NamedKey_BEGIN, }ImGuiKey; typedef enum { - ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, - ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, - ImGuiNavInput_COUNT, -}ImGuiNavInput; + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, + ImGuiInputFlags_RouteActive = 1 << 10, + ImGuiInputFlags_RouteFocused = 1 << 11, + ImGuiInputFlags_RouteGlobal = 1 << 12, + ImGuiInputFlags_RouteAlways = 1 << 13, + ImGuiInputFlags_RouteOverFocused = 1 << 14, + ImGuiInputFlags_RouteOverActive = 1 << 15, + ImGuiInputFlags_RouteUnlessBgFocused = 1 << 16, + ImGuiInputFlags_RouteFromRootWindow = 1 << 17, + ImGuiInputFlags_Tooltip = 1 << 18, +}ImGuiInputFlags_; typedef enum { ImGuiConfigFlags_None = 0, ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, @@ -600,6 +595,7 @@ typedef enum { ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, ImGuiConfigFlags_NoMouse = 1 << 4, ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, + ImGuiConfigFlags_NoKeyboard = 1 << 6, ImGuiConfigFlags_IsSRGB = 1 << 20, ImGuiConfigFlags_IsTouchScreen = 1 << 21, }ImGuiConfigFlags_; @@ -644,11 +640,13 @@ typedef enum { ImGuiCol_ResizeGrip, ImGuiCol_ResizeGripHovered, ImGuiCol_ResizeGripActive, - ImGuiCol_Tab, ImGuiCol_TabHovered, - ImGuiCol_TabActive, - ImGuiCol_TabUnfocused, - ImGuiCol_TabUnfocusedActive, + ImGuiCol_Tab, + ImGuiCol_TabSelected, + ImGuiCol_TabSelectedOverline, + ImGuiCol_TabDimmed, + ImGuiCol_TabDimmedSelected, + ImGuiCol_TabDimmedSelectedOverline, ImGuiCol_PlotLines, ImGuiCol_PlotLinesHovered, ImGuiCol_PlotHistogram, @@ -658,13 +656,14 @@ typedef enum { ImGuiCol_TableBorderLight, ImGuiCol_TableRowBg, ImGuiCol_TableRowBgAlt, + ImGuiCol_TextLink, ImGuiCol_TextSelectedBg, ImGuiCol_DragDropTarget, ImGuiCol_NavHighlight, ImGuiCol_NavWindowingHighlight, ImGuiCol_NavWindowingDimBg, ImGuiCol_ModalWindowDimBg, - ImGuiCol_COUNT + ImGuiCol_COUNT, }ImGuiCol_; typedef enum { ImGuiStyleVar_Alpha, @@ -690,8 +689,16 @@ typedef enum { ImGuiStyleVar_GrabMinSize, ImGuiStyleVar_GrabRounding, ImGuiStyleVar_TabRounding, + ImGuiStyleVar_TabBorderSize, + ImGuiStyleVar_TabBarBorderSize, + ImGuiStyleVar_TabBarOverlineSize, + ImGuiStyleVar_TableAngledHeadersAngle, + ImGuiStyleVar_TableAngledHeadersTextAlign, ImGuiStyleVar_ButtonTextAlign, ImGuiStyleVar_SelectableTextAlign, + ImGuiStyleVar_SeparatorTextBorderSize, + ImGuiStyleVar_SeparatorTextAlign, + ImGuiStyleVar_SeparatorTextPadding, ImGuiStyleVar_COUNT }ImGuiStyleVar_; typedef enum { @@ -700,7 +707,6 @@ typedef enum { ImGuiButtonFlags_MouseButtonRight = 1 << 1, ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, - ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, }ImGuiButtonFlags_; typedef enum { ImGuiColorEditFlags_None = 0, @@ -739,6 +745,7 @@ typedef enum { ImGuiSliderFlags_Logarithmic = 1 << 5, ImGuiSliderFlags_NoRoundToFormat = 1 << 6, ImGuiSliderFlags_NoInput = 1 << 7, + ImGuiSliderFlags_WrapAround = 1 << 8, ImGuiSliderFlags_InvalidMask_ = 0x7000000F, }ImGuiSliderFlags_; typedef enum { @@ -760,6 +767,12 @@ typedef enum { ImGuiMouseCursor_NotAllowed, ImGuiMouseCursor_COUNT }ImGuiMouseCursor_; +typedef enum { +ImGuiMouseSource_Mouse=0, +ImGuiMouseSource_TouchScreen=1, +ImGuiMouseSource_Pen=2, +ImGuiMouseSource_COUNT=3, +}ImGuiMouseSource; typedef enum { ImGuiCond_None = 0, ImGuiCond_Always = 1 << 0, @@ -767,6 +780,98 @@ typedef enum { ImGuiCond_FirstUseEver = 1 << 2, ImGuiCond_Appearing = 1 << 3, }ImGuiCond_; +typedef enum { + ImGuiTableFlags_None = 0, + ImGuiTableFlags_Resizable = 1 << 0, + ImGuiTableFlags_Reorderable = 1 << 1, + ImGuiTableFlags_Hideable = 1 << 2, + ImGuiTableFlags_Sortable = 1 << 3, + ImGuiTableFlags_NoSavedSettings = 1 << 4, + ImGuiTableFlags_ContextMenuInBody = 1 << 5, + ImGuiTableFlags_RowBg = 1 << 6, + ImGuiTableFlags_BordersInnerH = 1 << 7, + ImGuiTableFlags_BordersOuterH = 1 << 8, + ImGuiTableFlags_BordersInnerV = 1 << 9, + ImGuiTableFlags_BordersOuterV = 1 << 10, + ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, + ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, + ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, + ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, + ImGuiTableFlags_NoBordersInBody = 1 << 11, + ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, + ImGuiTableFlags_SizingFixedFit = 1 << 13, + ImGuiTableFlags_SizingFixedSame = 2 << 13, + ImGuiTableFlags_SizingStretchProp = 3 << 13, + ImGuiTableFlags_SizingStretchSame = 4 << 13, + ImGuiTableFlags_NoHostExtendX = 1 << 16, + ImGuiTableFlags_NoHostExtendY = 1 << 17, + ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, + ImGuiTableFlags_PreciseWidths = 1 << 19, + ImGuiTableFlags_NoClip = 1 << 20, + ImGuiTableFlags_PadOuterX = 1 << 21, + ImGuiTableFlags_NoPadOuterX = 1 << 22, + ImGuiTableFlags_NoPadInnerX = 1 << 23, + ImGuiTableFlags_ScrollX = 1 << 24, + ImGuiTableFlags_ScrollY = 1 << 25, + ImGuiTableFlags_SortMulti = 1 << 26, + ImGuiTableFlags_SortTristate = 1 << 27, + ImGuiTableFlags_HighlightHoveredColumn = 1 << 28, + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, +}ImGuiTableFlags_; +typedef enum { + ImGuiTableColumnFlags_None = 0, + ImGuiTableColumnFlags_Disabled = 1 << 0, + ImGuiTableColumnFlags_DefaultHide = 1 << 1, + ImGuiTableColumnFlags_DefaultSort = 1 << 2, + ImGuiTableColumnFlags_WidthStretch = 1 << 3, + ImGuiTableColumnFlags_WidthFixed = 1 << 4, + ImGuiTableColumnFlags_NoResize = 1 << 5, + ImGuiTableColumnFlags_NoReorder = 1 << 6, + ImGuiTableColumnFlags_NoHide = 1 << 7, + ImGuiTableColumnFlags_NoClip = 1 << 8, + ImGuiTableColumnFlags_NoSort = 1 << 9, + ImGuiTableColumnFlags_NoSortAscending = 1 << 10, + ImGuiTableColumnFlags_NoSortDescending = 1 << 11, + ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, + ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, + ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, + ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, + ImGuiTableColumnFlags_IndentEnable = 1 << 16, + ImGuiTableColumnFlags_IndentDisable = 1 << 17, + ImGuiTableColumnFlags_AngledHeader = 1 << 18, + ImGuiTableColumnFlags_IsEnabled = 1 << 24, + ImGuiTableColumnFlags_IsVisible = 1 << 25, + ImGuiTableColumnFlags_IsSorted = 1 << 26, + ImGuiTableColumnFlags_IsHovered = 1 << 27, + ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, + ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, + ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, +}ImGuiTableColumnFlags_; +typedef enum { + ImGuiTableRowFlags_None = 0, + ImGuiTableRowFlags_Headers = 1 << 0, +}ImGuiTableRowFlags_; +typedef enum { + ImGuiTableBgTarget_None = 0, + ImGuiTableBgTarget_RowBg0 = 1, + ImGuiTableBgTarget_RowBg1 = 2, + ImGuiTableBgTarget_CellBg = 3, +}ImGuiTableBgTarget_; +struct ImGuiTableSortSpecs +{ + const ImGuiTableColumnSortSpecs* Specs; + int SpecsCount; + bool SpecsDirty; +}; +struct ImGuiTableColumnSortSpecs +{ + ImGuiID ColumnUserID; + ImS16 ColumnIndex; + ImS16 SortOrder; + ImGuiSortDirection SortDirection; +}; struct ImGuiStyle { float Alpha; @@ -798,9 +903,16 @@ struct ImGuiStyle float TabRounding; float TabBorderSize; float TabMinWidthForCloseButton; + float TabBarBorderSize; + float TabBarOverlineSize; + float TableAngledHeadersAngle; + ImVec2 TableAngledHeadersTextAlign; ImGuiDir ColorButtonPosition; ImVec2 ButtonTextAlign; ImVec2 SelectableTextAlign; + float SeparatorTextBorderSize; + ImVec2 SeparatorTextAlign; + ImVec2 SeparatorTextPadding; ImVec2 DisplayWindowPadding; ImVec2 DisplaySafeAreaPadding; float MouseCursorScale; @@ -810,6 +922,11 @@ struct ImGuiStyle float CurveTessellationTol; float CircleTessellationMaxError; ImVec4 Colors[ImGuiCol_COUNT]; + float HoverStationaryDelay; + float HoverDelayShort; + float HoverDelayNormal; + ImGuiHoveredFlags HoverFlagsForTooltipMouse; + ImGuiHoveredFlags HoverFlagsForTooltipNav; }; struct ImGuiKeyData { @@ -829,13 +946,6 @@ struct ImGuiIO float IniSavingRate; const char* IniFilename; const char* LogFilename; - float MouseDoubleClickTime; - float MouseDoubleClickMaxDist; - float MouseDragThreshold; - float KeyRepeatDelay; - float KeyRepeatRate; - float HoverDelayNormal; - float HoverDelayShort; void* UserData; ImFontAtlas*Fonts; float FontGlobalScale; @@ -844,6 +954,7 @@ struct ImGuiIO ImVec2 DisplayFramebufferScale; bool MouseDrawCursor; bool ConfigMacOSXBehaviors; + bool ConfigNavSwapGamepadButtons; bool ConfigInputTrickleEventQueue; bool ConfigInputTextCursorBlink; bool ConfigInputTextEnterKeepActive; @@ -851,16 +962,22 @@ struct ImGuiIO bool ConfigWindowsResizeFromEdges; bool ConfigWindowsMoveFromTitleBarOnly; float ConfigMemoryCompactTimer; + float MouseDoubleClickTime; + float MouseDoubleClickMaxDist; + float MouseDragThreshold; + float KeyRepeatDelay; + float KeyRepeatRate; + bool ConfigDebugIsDebuggerPresent; + bool ConfigDebugHighlightIdConflicts; + bool ConfigDebugBeginReturnValueOnce; + bool ConfigDebugBeginReturnValueLoop; + bool ConfigDebugIgnoreFocusLoss; + bool ConfigDebugIniSettings; const char* BackendPlatformName; const char* BackendRendererName; void* BackendPlatformUserData; void* BackendRendererUserData; void* BackendLanguageUserData; - const char* (*GetClipboardTextFn)(void* user_data); - void (*SetClipboardTextFn)(void* user_data, const char* text); - void* ClipboardUserData; - void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data); - void* _UnusedPadding; bool WantCaptureMouse; bool WantCaptureKeyboard; bool WantTextInput; @@ -873,15 +990,13 @@ struct ImGuiIO int MetricsRenderIndices; int MetricsRenderWindows; int MetricsActiveWindows; - int MetricsActiveAllocations; ImVec2 MouseDelta; - int KeyMap[ImGuiKey_COUNT]; - bool KeysDown[ImGuiKey_COUNT]; - float NavInputs[ImGuiNavInput_COUNT]; + ImGuiContext* Ctx; ImVec2 MousePos; bool MouseDown[5]; float MouseWheel; float MouseWheelH; + ImGuiMouseSource MouseSource; bool KeyCtrl; bool KeyShift; bool KeyAlt; @@ -899,6 +1014,8 @@ struct ImGuiIO bool MouseReleased[5]; bool MouseDownOwned[5]; bool MouseDownOwnedUnlessPopupClose[5]; + bool MouseWheelRequestAxisSwap; + bool MouseCtrlLeftAsRightClick; float MouseDownDuration[5]; float MouseDownDurationPrev[5]; float MouseDragMaxDistanceSqr[5]; @@ -912,6 +1029,7 @@ struct ImGuiIO }; struct ImGuiInputTextCallbackData { + ImGuiContext* Ctx; ImGuiInputTextFlags EventFlag; ImGuiInputTextFlags Flags; void* UserData; @@ -943,19 +1061,6 @@ struct ImGuiPayload bool Preview; bool Delivery; }; -struct ImGuiTableColumnSortSpecs -{ - ImGuiID ColumnUserID; - ImS16 ColumnIndex; - ImS16 SortOrder; - ImGuiSortDirection SortDirection : 8; -}; -struct ImGuiTableSortSpecs -{ - const ImGuiTableColumnSortSpecs* Specs; - int SpecsCount; - bool SpecsDirty; -}; struct ImGuiOnceUponAFrame { int RefFrame; @@ -984,31 +1089,87 @@ struct ImGuiTextBuffer }; struct ImGuiStoragePair { - ImGuiID key; - union { int val_i; float val_f; void* val_p; }; + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; - typedef struct ImVector_ImGuiStoragePair {int Size;int Capacity;ImGuiStoragePair* Data;} ImVector_ImGuiStoragePair; struct ImGuiStorage { ImVector_ImGuiStoragePair Data; }; -typedef struct ImGuiStoragePair ImGuiStoragePair; struct ImGuiListClipper { + ImGuiContext* Ctx; int DisplayStart; int DisplayEnd; int ItemsCount; float ItemsHeight; float StartPosY; + double StartSeekOffsetY; void* TempData; }; struct ImColor { ImVec4 Value; }; +typedef enum { + ImGuiMultiSelectFlags_None = 0, + ImGuiMultiSelectFlags_SingleSelect = 1 << 0, + ImGuiMultiSelectFlags_NoSelectAll = 1 << 1, + ImGuiMultiSelectFlags_NoRangeSelect = 1 << 2, + ImGuiMultiSelectFlags_NoAutoSelect = 1 << 3, + ImGuiMultiSelectFlags_NoAutoClear = 1 << 4, + ImGuiMultiSelectFlags_NoAutoClearOnReselect = 1 << 5, + ImGuiMultiSelectFlags_BoxSelect1d = 1 << 6, + ImGuiMultiSelectFlags_BoxSelect2d = 1 << 7, + ImGuiMultiSelectFlags_BoxSelectNoScroll = 1 << 8, + ImGuiMultiSelectFlags_ClearOnEscape = 1 << 9, + ImGuiMultiSelectFlags_ClearOnClickVoid = 1 << 10, + ImGuiMultiSelectFlags_ScopeWindow = 1 << 11, + ImGuiMultiSelectFlags_ScopeRect = 1 << 12, + ImGuiMultiSelectFlags_SelectOnClick = 1 << 13, + ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14, + ImGuiMultiSelectFlags_NavWrapX = 1 << 16, +}ImGuiMultiSelectFlags_; +typedef struct ImVector_ImGuiSelectionRequest {int Size;int Capacity;ImGuiSelectionRequest* Data;} ImVector_ImGuiSelectionRequest; + +struct ImGuiMultiSelectIO +{ + ImVector_ImGuiSelectionRequest Requests; + ImGuiSelectionUserData RangeSrcItem; + ImGuiSelectionUserData NavIdItem; + bool NavIdSelected; + bool RangeSrcReset; + int ItemsCount; +}; +typedef enum { + ImGuiSelectionRequestType_None = 0, + ImGuiSelectionRequestType_SetAll, + ImGuiSelectionRequestType_SetRange, +}ImGuiSelectionRequestType; +struct ImGuiSelectionRequest +{ + ImGuiSelectionRequestType Type; + bool Selected; + ImS8 RangeDirection; + ImGuiSelectionUserData RangeFirstItem; + ImGuiSelectionUserData RangeLastItem; +}; +struct ImGuiSelectionBasicStorage +{ + int Size; + bool PreserveOrder; + void* UserData; + ImGuiID (*AdapterIndexToStorageId)(ImGuiSelectionBasicStorage* self, int idx); + int _SelectionOrder; + ImGuiStorage _Storage; +}; +struct ImGuiSelectionExternalStorage +{ + void* UserData; + void (*AdapterSetItemSelected)(ImGuiSelectionExternalStorage* self, int idx, bool selected); +}; typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); struct ImDrawCmd { @@ -1075,12 +1236,12 @@ typedef enum { }ImDrawListFlags_; typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert; +typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; + typedef struct ImVector_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4; typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID; -typedef struct ImVector_ImVec2 {int Size;int Capacity;ImVec2* Data;} ImVector_ImVec2; - struct ImDrawList { ImVector_ImDrawCmd CmdBuffer; @@ -1089,26 +1250,29 @@ struct ImDrawList ImDrawListFlags Flags; unsigned int _VtxCurrentIdx; ImDrawListSharedData* _Data; - const char* _OwnerName; ImDrawVert* _VtxWritePtr; ImDrawIdx* _IdxWritePtr; - ImVector_ImVec4 _ClipRectStack; - ImVector_ImTextureID _TextureIdStack; ImVector_ImVec2 _Path; ImDrawCmdHeader _CmdHeader; ImDrawListSplitter _Splitter; + ImVector_ImVec4 _ClipRectStack; + ImVector_ImTextureID _TextureIdStack; float _FringeScale; + const char* _OwnerName; }; +typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr; + struct ImDrawData { bool Valid; int CmdListsCount; int TotalIdxCount; int TotalVtxCount; - ImDrawList** CmdLists; + ImVector_ImDrawListPtr CmdLists; ImVec2 DisplayPos; ImVec2 DisplaySize; ImVec2 FramebufferScale; + ImGuiViewport* OwnerViewport; }; struct ImFontConfig { @@ -1128,6 +1292,7 @@ struct ImFontConfig bool MergeMode; unsigned int FontBuilderFlags; float RasterizerMultiply; + float RasterizerDensity; ImWchar EllipsisChar; char Name[40]; ImFont* DstFont; @@ -1211,7 +1376,9 @@ struct ImFont short ConfigDataCount; ImWchar FallbackChar; ImWchar EllipsisChar; - ImWchar DotChar; + short EllipsisCharCount; + float EllipsisWidth; + float EllipsisCharStep; bool DirtyLookupTables; float Scale; float Ascent, Descent; @@ -1226,19 +1393,34 @@ typedef enum { }ImGuiViewportFlags_; struct ImGuiViewport { + ImGuiID ID; ImGuiViewportFlags Flags; ImVec2 Pos; ImVec2 Size; ImVec2 WorkPos; ImVec2 WorkSize; + void* PlatformHandle; void* PlatformHandleRaw; }; +struct ImGuiPlatformIO +{ + const char* (*Platform_GetClipboardTextFn)(ImGuiContext* ctx); + void (*Platform_SetClipboardTextFn)(ImGuiContext* ctx, const char* text); + void* Platform_ClipboardUserData; + bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); + void* Platform_OpenInShellUserData; + void (*Platform_SetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + void* Platform_ImeUserData; + ImWchar Platform_LocaleDecimalPoint; +}; struct ImGuiPlatformImeData { bool WantVisible; ImVec2 InputPos; float InputLineHeight; }; +#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8) + #else struct GLFWwindow; struct SDL_Window; @@ -1246,16 +1428,17 @@ typedef union SDL_Event SDL_Event; #endif // CIMGUI_DEFINE_ENUMS_AND_STRUCTS #ifndef CIMGUI_DEFINE_ENUMS_AND_STRUCTS -typedef struct ImGuiStorage::ImGuiStoragePair ImGuiStoragePair; typedef struct ImGuiTextFilter::ImGuiTextRange ImGuiTextRange; typedef ImVector ImVector_ImDrawChannel; typedef ImVector ImVector_ImDrawCmd; typedef ImVector ImVector_ImDrawIdx; +typedef ImVector ImVector_ImDrawListPtr; typedef ImVector ImVector_ImDrawVert; typedef ImVector ImVector_ImFontPtr; typedef ImVector ImVector_ImFontAtlasCustomRect; typedef ImVector ImVector_ImFontConfig; typedef ImVector ImVector_ImFontGlyph; +typedef ImVector ImVector_ImGuiSelectionRequest; typedef ImVector ImVector_ImGuiStoragePair; typedef ImVector ImVector_ImGuiTextRange; typedef ImVector ImVector_ImTextureID; @@ -1277,6 +1460,7 @@ CIMGUI_API void igDestroyContext(ImGuiContext* ctx); CIMGUI_API ImGuiContext* igGetCurrentContext(void); CIMGUI_API void igSetCurrentContext(ImGuiContext* ctx); CIMGUI_API ImGuiIO* igGetIO(void); +CIMGUI_API ImGuiPlatformIO* igGetPlatformIO(void); CIMGUI_API ImGuiStyle* igGetStyle(void); CIMGUI_API void igNewFrame(void); CIMGUI_API void igEndFrame(void); @@ -1285,7 +1469,7 @@ CIMGUI_API ImDrawData* igGetDrawData(void); CIMGUI_API void igShowDemoWindow(bool* p_open); CIMGUI_API void igShowMetricsWindow(bool* p_open); CIMGUI_API void igShowDebugLogWindow(bool* p_open); -CIMGUI_API void igShowStackToolWindow(bool* p_open); +CIMGUI_API void igShowIDStackToolWindow(bool* p_open); CIMGUI_API void igShowAboutWindow(bool* p_open); CIMGUI_API void igShowStyleEditor(ImGuiStyle* ref); CIMGUI_API bool igShowStyleSelector(const char* label); @@ -1297,8 +1481,8 @@ CIMGUI_API void igStyleColorsLight(ImGuiStyle* dst); CIMGUI_API void igStyleColorsClassic(ImGuiStyle* dst); CIMGUI_API bool igBegin(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEnd(void); -CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags); -CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags); +CIMGUI_API bool igBeginChild_Str(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); +CIMGUI_API bool igBeginChild_ID(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags); CIMGUI_API void igEndChild(void); CIMGUI_API bool igIsWindowAppearing(void); CIMGUI_API bool igIsWindowCollapsed(void); @@ -1326,10 +1510,6 @@ CIMGUI_API void igSetWindowPos_Str(const char* name,const ImVec2 pos,ImGuiCond c CIMGUI_API void igSetWindowSize_Str(const char* name,const ImVec2 size,ImGuiCond cond); CIMGUI_API void igSetWindowCollapsed_Str(const char* name,bool collapsed,ImGuiCond cond); CIMGUI_API void igSetWindowFocus_Str(const char* name); -CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); -CIMGUI_API void igGetContentRegionMax(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMin(ImVec2 *pOut); -CIMGUI_API void igGetWindowContentRegionMax(ImVec2 *pOut); CIMGUI_API float igGetScrollX(void); CIMGUI_API float igGetScrollY(void); CIMGUI_API void igSetScrollX(float scroll_x); @@ -1347,11 +1527,11 @@ CIMGUI_API void igPushStyleColor_Vec4(ImGuiCol idx,const ImVec4 col); CIMGUI_API void igPopStyleColor(int count); CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val); CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val); +CIMGUI_API void igPushStyleVarX(ImGuiStyleVar idx,float val_x); +CIMGUI_API void igPushStyleVarY(ImGuiStyleVar idx,float val_y); CIMGUI_API void igPopStyleVar(int count); -CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus); -CIMGUI_API void igPopAllowKeyboardFocus(void); -CIMGUI_API void igPushButtonRepeat(bool repeat); -CIMGUI_API void igPopButtonRepeat(void); +CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled); +CIMGUI_API void igPopItemFlag(void); CIMGUI_API void igPushItemWidth(float item_width); CIMGUI_API void igPopItemWidth(void); CIMGUI_API void igSetNextItemWidth(float item_width); @@ -1363,8 +1543,18 @@ CIMGUI_API float igGetFontSize(void); CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut); CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul); CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col); -CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col); +CIMGUI_API ImU32 igGetColorU32_U32(ImU32 col,float alpha_mul); CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx); +CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); +CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); +CIMGUI_API void igGetContentRegionAvail(ImVec2 *pOut); +CIMGUI_API void igGetCursorPos(ImVec2 *pOut); +CIMGUI_API float igGetCursorPosX(void); +CIMGUI_API float igGetCursorPosY(void); +CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); +CIMGUI_API void igSetCursorPosX(float local_x); +CIMGUI_API void igSetCursorPosY(float local_y); +CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); CIMGUI_API void igSeparator(void); CIMGUI_API void igSameLine(float offset_from_start_x,float spacing); CIMGUI_API void igNewLine(void); @@ -1374,15 +1564,6 @@ CIMGUI_API void igIndent(float indent_w); CIMGUI_API void igUnindent(float indent_w); CIMGUI_API void igBeginGroup(void); CIMGUI_API void igEndGroup(void); -CIMGUI_API void igGetCursorPos(ImVec2 *pOut); -CIMGUI_API float igGetCursorPosX(void); -CIMGUI_API float igGetCursorPosY(void); -CIMGUI_API void igSetCursorPos(const ImVec2 local_pos); -CIMGUI_API void igSetCursorPosX(float local_x); -CIMGUI_API void igSetCursorPosY(float local_y); -CIMGUI_API void igGetCursorStartPos(ImVec2 *pOut); -CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut); -CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos); CIMGUI_API void igAlignTextToFramePadding(void); CIMGUI_API float igGetTextLineHeight(void); CIMGUI_API float igGetTextLineHeightWithSpacing(void); @@ -1396,6 +1577,7 @@ CIMGUI_API void igPopID(void); CIMGUI_API ImGuiID igGetID_Str(const char* str_id); CIMGUI_API ImGuiID igGetID_StrStr(const char* str_id_begin,const char* str_id_end); CIMGUI_API ImGuiID igGetID_Ptr(const void* ptr_id); +CIMGUI_API ImGuiID igGetID_Int(int int_id); CIMGUI_API void igTextUnformatted(const char* text,const char* text_end); CIMGUI_API void igText(const char* fmt,...); CIMGUI_API void igTextV(const char* fmt,va_list args); @@ -1409,6 +1591,7 @@ CIMGUI_API void igLabelText(const char* label,const char* fmt,...); CIMGUI_API void igLabelTextV(const char* label,const char* fmt,va_list args); CIMGUI_API void igBulletText(const char* fmt,...); CIMGUI_API void igBulletTextV(const char* fmt,va_list args); +CIMGUI_API void igSeparatorText(const char* label); CIMGUI_API bool igButton(const char* label,const ImVec2 size); CIMGUI_API bool igSmallButton(const char* label); CIMGUI_API bool igInvisibleButton(const char* str_id,const ImVec2 size,ImGuiButtonFlags flags); @@ -1420,13 +1603,15 @@ CIMGUI_API bool igRadioButton_Bool(const char* label,bool active); CIMGUI_API bool igRadioButton_IntPtr(const char* label,int* v,int v_button); CIMGUI_API void igProgressBar(float fraction,const ImVec2 size_arg,const char* overlay); CIMGUI_API void igBullet(void); -CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); -CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); +CIMGUI_API bool igTextLink(const char* label); +CIMGUI_API void igTextLinkOpenURL(const char* label,const char* url); +CIMGUI_API void igImage(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col); +CIMGUI_API bool igImageButton(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col); CIMGUI_API bool igBeginCombo(const char* label,const char* preview_value,ImGuiComboFlags flags); CIMGUI_API void igEndCombo(void); CIMGUI_API bool igCombo_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int popup_max_height_in_items); CIMGUI_API bool igCombo_Str(const char* label,int* current_item,const char* items_separated_by_zeros,int popup_max_height_in_items); -CIMGUI_API bool igCombo_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items); +CIMGUI_API bool igCombo_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items); CIMGUI_API bool igDragFloat(const char* label,float* v,float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat2(const char* label,float v[2],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); CIMGUI_API bool igDragFloat3(const char* label,float v[3],float v_speed,float v_min,float v_max,const char* format,ImGuiSliderFlags flags); @@ -1490,12 +1675,17 @@ CIMGUI_API float igGetTreeNodeToLabelSpacing(void); CIMGUI_API bool igCollapsingHeader_TreeNodeFlags(const char* label,ImGuiTreeNodeFlags flags); CIMGUI_API bool igCollapsingHeader_BoolPtr(const char* label,bool* p_visible,ImGuiTreeNodeFlags flags); CIMGUI_API void igSetNextItemOpen(bool is_open,ImGuiCond cond); +CIMGUI_API void igSetNextItemStorageID(ImGuiID storage_id); CIMGUI_API bool igSelectable_Bool(const char* label,bool selected,ImGuiSelectableFlags flags,const ImVec2 size); CIMGUI_API bool igSelectable_BoolPtr(const char* label,bool* p_selected,ImGuiSelectableFlags flags,const ImVec2 size); +CIMGUI_API ImGuiMultiSelectIO* igBeginMultiSelect(ImGuiMultiSelectFlags flags,int selection_size,int items_count); +CIMGUI_API ImGuiMultiSelectIO* igEndMultiSelect(void); +CIMGUI_API void igSetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data); +CIMGUI_API bool igIsItemToggledSelection(void); CIMGUI_API bool igBeginListBox(const char* label,const ImVec2 size); CIMGUI_API void igEndListBox(void); CIMGUI_API bool igListBox_Str_arr(const char* label,int* current_item,const char* const items[],int items_count,int height_in_items); -CIMGUI_API bool igListBox_FnBoolPtr(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items); +CIMGUI_API bool igListBox_FnStrPtr(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items); CIMGUI_API void igPlotLines_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); CIMGUI_API void igPlotLines_FnFloatPtr(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size); CIMGUI_API void igPlotHistogram_FloatPtr(const char* label,const float* values,int values_count,int values_offset,const char* overlay_text,float scale_min,float scale_max,ImVec2 graph_size,int stride); @@ -1512,10 +1702,13 @@ CIMGUI_API bool igBeginMenu(const char* label,bool enabled); CIMGUI_API void igEndMenu(void); CIMGUI_API bool igMenuItem_Bool(const char* label,const char* shortcut,bool selected,bool enabled); CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* p_selected,bool enabled); -CIMGUI_API void igBeginTooltip(void); +CIMGUI_API bool igBeginTooltip(void); CIMGUI_API void igEndTooltip(void); CIMGUI_API void igSetTooltip(const char* fmt,...); CIMGUI_API void igSetTooltipV(const char* fmt,va_list args); +CIMGUI_API bool igBeginItemTooltip(void); +CIMGUI_API void igSetItemTooltip(const char* fmt,...); +CIMGUI_API void igSetItemTooltipV(const char* fmt,va_list args); CIMGUI_API bool igBeginPopup(const char* str_id,ImGuiWindowFlags flags); CIMGUI_API bool igBeginPopupModal(const char* name,bool* p_open,ImGuiWindowFlags flags); CIMGUI_API void igEndPopup(void); @@ -1527,15 +1720,16 @@ CIMGUI_API bool igBeginPopupContextItem(const char* str_id,ImGuiPopupFlags popup CIMGUI_API bool igBeginPopupContextWindow(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igBeginPopupContextVoid(const char* str_id,ImGuiPopupFlags popup_flags); CIMGUI_API bool igIsPopupOpen(const char* str_id,ImGuiPopupFlags flags); -CIMGUI_API bool igBeginTable(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); +CIMGUI_API bool igBeginTable(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width); CIMGUI_API void igEndTable(void); CIMGUI_API void igTableNextRow(ImGuiTableRowFlags row_flags,float min_row_height); CIMGUI_API bool igTableNextColumn(void); CIMGUI_API bool igTableSetColumnIndex(int column_n); CIMGUI_API void igTableSetupColumn(const char* label,ImGuiTableColumnFlags flags,float init_width_or_weight,ImGuiID user_id); CIMGUI_API void igTableSetupScrollFreeze(int cols,int rows); -CIMGUI_API void igTableHeadersRow(void); CIMGUI_API void igTableHeader(const char* label); +CIMGUI_API void igTableHeadersRow(void); +CIMGUI_API void igTableAngledHeadersRow(void); CIMGUI_API ImGuiTableSortSpecs* igTableGetSortSpecs(void); CIMGUI_API int igTableGetColumnCount(void); CIMGUI_API int igTableGetColumnIndex(void); @@ -1543,8 +1737,9 @@ CIMGUI_API int igTableGetRowIndex(void); CIMGUI_API const char* igTableGetColumnName(int column_n); CIMGUI_API ImGuiTableColumnFlags igTableGetColumnFlags(int column_n); CIMGUI_API void igTableSetColumnEnabled(int column_n,bool v); +CIMGUI_API int igTableGetHoveredColumn(void); CIMGUI_API void igTableSetBgColor(ImGuiTableBgTarget target,ImU32 color,int column_n); -CIMGUI_API void igColumns(int count,const char* id,bool border); +CIMGUI_API void igColumns(int count,const char* id,bool borders); CIMGUI_API void igNextColumn(void); CIMGUI_API int igGetColumnIndex(void); CIMGUI_API float igGetColumnWidth(int column_index); @@ -1577,6 +1772,7 @@ CIMGUI_API void igPushClipRect(const ImVec2 clip_rect_min,const ImVec2 clip_rect CIMGUI_API void igPopClipRect(void); CIMGUI_API void igSetItemDefaultFocus(void); CIMGUI_API void igSetKeyboardFocusHere(int offset); +CIMGUI_API void igSetNextItemAllowOverlap(void); CIMGUI_API bool igIsItemHovered(ImGuiHoveredFlags flags); CIMGUI_API bool igIsItemActive(void); CIMGUI_API bool igIsItemFocused(void); @@ -1594,7 +1790,6 @@ CIMGUI_API ImGuiID igGetItemID(void); CIMGUI_API void igGetItemRectMin(ImVec2 *pOut); CIMGUI_API void igGetItemRectMax(ImVec2 *pOut); CIMGUI_API void igGetItemRectSize(ImVec2 *pOut); -CIMGUI_API void igSetItemAllowOverlap(void); CIMGUI_API ImGuiViewport* igGetMainViewport(void); CIMGUI_API ImDrawList* igGetBackgroundDrawList(void); CIMGUI_API ImDrawList* igGetForegroundDrawList(void); @@ -1606,8 +1801,6 @@ CIMGUI_API ImDrawListSharedData* igGetDrawListSharedData(void); CIMGUI_API const char* igGetStyleColorName(ImGuiCol idx); CIMGUI_API void igSetStateStorage(ImGuiStorage* storage); CIMGUI_API ImGuiStorage* igGetStateStorage(void); -CIMGUI_API bool igBeginChildFrame(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags); -CIMGUI_API void igEndChildFrame(void); CIMGUI_API void igCalcTextSize(ImVec2 *pOut,const char* text,const char* text_end,bool hide_text_after_double_hash,float wrap_width); CIMGUI_API void igColorConvertU32ToFloat4(ImVec4 *pOut,ImU32 in); CIMGUI_API ImU32 igColorConvertFloat4ToU32(const ImVec4 in); @@ -1616,9 +1809,13 @@ CIMGUI_API void igColorConvertHSVtoRGB(float h,float s,float v,float* out_r,floa CIMGUI_API bool igIsKeyDown(ImGuiKey key); CIMGUI_API bool igIsKeyPressed(ImGuiKey key,bool repeat); CIMGUI_API bool igIsKeyReleased(ImGuiKey key); +CIMGUI_API bool igIsKeyChordPressed(ImGuiKeyChord key_chord); CIMGUI_API int igGetKeyPressedAmount(ImGuiKey key,float repeat_delay,float rate); CIMGUI_API const char* igGetKeyName(ImGuiKey key); CIMGUI_API void igSetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); +CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord,ImGuiInputFlags flags); +CIMGUI_API void igSetItemKeyOwner(ImGuiKey key); CIMGUI_API bool igIsMouseDown(ImGuiMouseButton button); CIMGUI_API bool igIsMouseClicked(ImGuiMouseButton button,bool repeat); CIMGUI_API bool igIsMouseReleased(ImGuiMouseButton button); @@ -1642,11 +1839,19 @@ CIMGUI_API void igLoadIniSettingsFromMemory(const char* ini_data,size_t ini_size CIMGUI_API void igSaveIniSettingsToDisk(const char* ini_filename); CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size); CIMGUI_API void igDebugTextEncoding(const char* text); +CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx); +CIMGUI_API void igDebugStartItemPicker(void); CIMGUI_API bool igDebugCheckVersionAndDataLayout(const char* version_str,size_t sz_io,size_t sz_style,size_t sz_vec2,size_t sz_vec4,size_t sz_drawvert,size_t sz_drawidx); +CIMGUI_API void igDebugLog(const char* fmt,...); +CIMGUI_API void igDebugLogV(const char* fmt,va_list args); CIMGUI_API void igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data); CIMGUI_API void igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data); CIMGUI_API void* igMemAlloc(size_t size); CIMGUI_API void igMemFree(void* ptr); +CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); +CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); +CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); +CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); CIMGUI_API ImGuiStyle* ImGuiStyle_ImGuiStyle(void); CIMGUI_API void ImGuiStyle_destroy(ImGuiStyle* self); CIMGUI_API void ImGuiStyle_ScaleAllSizes(ImGuiStyle* self,float scale_factor); @@ -1654,15 +1859,17 @@ CIMGUI_API void ImGuiIO_AddKeyEvent(ImGuiIO* self,ImGuiKey key,bool down); CIMGUI_API void ImGuiIO_AddKeyAnalogEvent(ImGuiIO* self,ImGuiKey key,bool down,float v); CIMGUI_API void ImGuiIO_AddMousePosEvent(ImGuiIO* self,float x,float y); CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down); -CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wh_x,float wh_y); +CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y); +CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source); CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused); CIMGUI_API void ImGuiIO_AddInputCharacter(ImGuiIO* self,unsigned int c); CIMGUI_API void ImGuiIO_AddInputCharacterUTF16(ImGuiIO* self,ImWchar16 c); CIMGUI_API void ImGuiIO_AddInputCharactersUTF8(ImGuiIO* self,const char* str); CIMGUI_API void ImGuiIO_SetKeyEventNativeData(ImGuiIO* self,ImGuiKey key,int native_keycode,int native_scancode,int native_legacy_index); CIMGUI_API void ImGuiIO_SetAppAcceptingEvents(ImGuiIO* self,bool accepting_events); -CIMGUI_API void ImGuiIO_ClearInputCharacters(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearEventsQueue(ImGuiIO* self); CIMGUI_API void ImGuiIO_ClearInputKeys(ImGuiIO* self); +CIMGUI_API void ImGuiIO_ClearInputMouse(ImGuiIO* self); CIMGUI_API ImGuiIO* ImGuiIO_ImGuiIO(void); CIMGUI_API void ImGuiIO_destroy(ImGuiIO* self); CIMGUI_API ImGuiInputTextCallbackData* ImGuiInputTextCallbackData_ImGuiInputTextCallbackData(void); @@ -1678,10 +1885,6 @@ CIMGUI_API void ImGuiPayload_Clear(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDataType(ImGuiPayload* self,const char* type); CIMGUI_API bool ImGuiPayload_IsPreview(ImGuiPayload* self); CIMGUI_API bool ImGuiPayload_IsDelivery(ImGuiPayload* self); -CIMGUI_API ImGuiTableColumnSortSpecs* ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs(void); -CIMGUI_API void ImGuiTableColumnSortSpecs_destroy(ImGuiTableColumnSortSpecs* self); -CIMGUI_API ImGuiTableSortSpecs* ImGuiTableSortSpecs_ImGuiTableSortSpecs(void); -CIMGUI_API void ImGuiTableSortSpecs_destroy(ImGuiTableSortSpecs* self); CIMGUI_API ImGuiOnceUponAFrame* ImGuiOnceUponAFrame_ImGuiOnceUponAFrame(void); CIMGUI_API void ImGuiOnceUponAFrame_destroy(ImGuiOnceUponAFrame* self); CIMGUI_API ImGuiTextFilter* ImGuiTextFilter_ImGuiTextFilter(const char* default_filter); @@ -1707,10 +1910,10 @@ CIMGUI_API void ImGuiTextBuffer_reserve(ImGuiTextBuffer* self,int capacity); CIMGUI_API const char* ImGuiTextBuffer_c_str(ImGuiTextBuffer* self); CIMGUI_API void ImGuiTextBuffer_append(ImGuiTextBuffer* self,const char* str,const char* str_end); CIMGUI_API void ImGuiTextBuffer_appendfv(ImGuiTextBuffer* self,const char* fmt,va_list args); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val_i); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Int(ImGuiID _key,int _val); CIMGUI_API void ImGuiStoragePair_destroy(ImGuiStoragePair* self); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val_f); -CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val_p); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Float(ImGuiID _key,float _val); +CIMGUI_API ImGuiStoragePair* ImGuiStoragePair_ImGuiStoragePair_Ptr(ImGuiID _key,void* _val); CIMGUI_API void ImGuiStorage_Clear(ImGuiStorage* self); CIMGUI_API int ImGuiStorage_GetInt(ImGuiStorage* self,ImGuiID key,int default_val); CIMGUI_API void ImGuiStorage_SetInt(ImGuiStorage* self,ImGuiID key,int val); @@ -1724,14 +1927,16 @@ CIMGUI_API int* ImGuiStorage_GetIntRef(ImGuiStorage* self,ImGuiID key,int defaul CIMGUI_API bool* ImGuiStorage_GetBoolRef(ImGuiStorage* self,ImGuiID key,bool default_val); CIMGUI_API float* ImGuiStorage_GetFloatRef(ImGuiStorage* self,ImGuiID key,float default_val); CIMGUI_API void** ImGuiStorage_GetVoidPtrRef(ImGuiStorage* self,ImGuiID key,void* default_val); -CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API void ImGuiStorage_BuildSortByKey(ImGuiStorage* self); +CIMGUI_API void ImGuiStorage_SetAllInt(ImGuiStorage* self,int val); CIMGUI_API ImGuiListClipper* ImGuiListClipper_ImGuiListClipper(void); CIMGUI_API void ImGuiListClipper_destroy(ImGuiListClipper* self); CIMGUI_API void ImGuiListClipper_Begin(ImGuiListClipper* self,int items_count,float items_height); CIMGUI_API void ImGuiListClipper_End(ImGuiListClipper* self); CIMGUI_API bool ImGuiListClipper_Step(ImGuiListClipper* self); -CIMGUI_API void ImGuiListClipper_ForceDisplayRangeByIndices(ImGuiListClipper* self,int item_min,int item_max); +CIMGUI_API void ImGuiListClipper_IncludeItemByIndex(ImGuiListClipper* self,int item_index); +CIMGUI_API void ImGuiListClipper_IncludeItemsByIndex(ImGuiListClipper* self,int item_begin,int item_end); +CIMGUI_API void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* self,int item_index); CIMGUI_API ImColor* ImColor_ImColor_Nil(void); CIMGUI_API void ImColor_destroy(ImColor* self); CIMGUI_API ImColor* ImColor_ImColor_Float(float r,float g,float b,float a); @@ -1740,6 +1945,18 @@ CIMGUI_API ImColor* ImColor_ImColor_Int(int r,int g,int b,int a); CIMGUI_API ImColor* ImColor_ImColor_U32(ImU32 rgba); CIMGUI_API void ImColor_SetHSV(ImColor* self,float h,float s,float v,float a); CIMGUI_API void ImColor_HSV(ImColor *pOut,float h,float s,float v,float a); +CIMGUI_API ImGuiSelectionBasicStorage* ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage(void); +CIMGUI_API void ImGuiSelectionBasicStorage_destroy(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_ApplyRequests(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io); +CIMGUI_API bool ImGuiSelectionBasicStorage_Contains(ImGuiSelectionBasicStorage* self,ImGuiID id); +CIMGUI_API void ImGuiSelectionBasicStorage_Clear(ImGuiSelectionBasicStorage* self); +CIMGUI_API void ImGuiSelectionBasicStorage_Swap(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r); +CIMGUI_API void ImGuiSelectionBasicStorage_SetItemSelected(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected); +CIMGUI_API bool ImGuiSelectionBasicStorage_GetNextSelectedItem(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id); +CIMGUI_API ImGuiID ImGuiSelectionBasicStorage_GetStorageIdFromIndex(ImGuiSelectionBasicStorage* self,int idx); +CIMGUI_API ImGuiSelectionExternalStorage* ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage(void); +CIMGUI_API void ImGuiSelectionExternalStorage_destroy(ImGuiSelectionExternalStorage* self); +CIMGUI_API void ImGuiSelectionExternalStorage_ApplyRequests(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io); CIMGUI_API ImDrawCmd* ImDrawCmd_ImDrawCmd(void); CIMGUI_API void ImDrawCmd_destroy(ImDrawCmd* self); CIMGUI_API ImTextureID ImDrawCmd_GetTexID(ImDrawCmd* self); @@ -1771,12 +1988,15 @@ CIMGUI_API void ImDrawList_AddCircle(ImDrawList* self,const ImVec2 center,float CIMGUI_API void ImDrawList_AddCircleFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); CIMGUI_API void ImDrawList_AddNgon(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments,float thickness); CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments); +CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness); +CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments); CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end); CIMGUI_API void ImDrawList_AddText_FontPtr(ImDrawList* self,const ImFont* font,float font_size,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end,float wrap_width,const ImVec4* cpu_fine_clip_rect); -CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); -CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddBezierCubic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,ImU32 col,float thickness,int num_segments); CIMGUI_API void ImDrawList_AddBezierQuadratic(ImDrawList* self,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,ImU32 col,float thickness,int num_segments); +CIMGUI_API void ImDrawList_AddPolyline(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col,ImDrawFlags flags,float thickness); +CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); +CIMGUI_API void ImDrawList_AddConcavePolyFilled(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col); CIMGUI_API void ImDrawList_AddImage(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col); CIMGUI_API void ImDrawList_AddImageQuad(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p1,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,const ImVec2 uv1,const ImVec2 uv2,const ImVec2 uv3,const ImVec2 uv4,ImU32 col); CIMGUI_API void ImDrawList_AddImageRounded(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col,float rounding,ImDrawFlags flags); @@ -1784,9 +2004,11 @@ CIMGUI_API void ImDrawList_PathClear(ImDrawList* self); CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(ImDrawList* self,const ImVec2 pos); CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col); +CIMGUI_API void ImDrawList_PathFillConcave(ImDrawList* self,ImU32 col); CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness); CIMGUI_API void ImDrawList_PathArcTo(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,float radius,int a_min_of_12,int a_max_of_12); +CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments); CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments); CIMGUI_API void ImDrawList_PathBezierQuadraticCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,int num_segments); CIMGUI_API void ImDrawList_PathRect(ImDrawList* self,const ImVec2 rect_min,const ImVec2 rect_max,float rounding,ImDrawFlags flags); @@ -1811,12 +2033,14 @@ CIMGUI_API void ImDrawList__TryMergeDrawCmds(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedClipRect(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedTextureID(ImDrawList* self); CIMGUI_API void ImDrawList__OnChangedVtxOffset(ImDrawList* self); +CIMGUI_API void ImDrawList__SetTextureID(ImDrawList* self,ImTextureID texture_id); CIMGUI_API int ImDrawList__CalcCircleAutoSegmentCount(ImDrawList* self,float radius); CIMGUI_API void ImDrawList__PathArcToFastEx(ImDrawList* self,const ImVec2 center,float radius,int a_min_sample,int a_max_sample,int a_step); CIMGUI_API void ImDrawList__PathArcToN(ImDrawList* self,const ImVec2 center,float radius,float a_min,float a_max,int num_segments); CIMGUI_API ImDrawData* ImDrawData_ImDrawData(void); CIMGUI_API void ImDrawData_destroy(ImDrawData* self); CIMGUI_API void ImDrawData_Clear(ImDrawData* self); +CIMGUI_API void ImDrawData_AddDrawList(ImDrawData* self,ImDrawList* draw_list); CIMGUI_API void ImDrawData_DeIndexAllBuffers(ImDrawData* self); CIMGUI_API void ImDrawData_ScaleClipRects(ImDrawData* self,const ImVec2 fb_scale); CIMGUI_API ImFontConfig* ImFontConfig_ImFontConfig(void); @@ -1838,8 +2062,8 @@ CIMGUI_API void ImFontAtlas_destroy(ImFontAtlas* self); CIMGUI_API ImFont* ImFontAtlas_AddFont(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontDefault(ImFontAtlas* self,const ImFontConfig* font_cfg); CIMGUI_API ImFont* ImFontAtlas_AddFontFromFileTTF(ImFontAtlas* self,const char* filename,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); -CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryTTF(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); +CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedTTF(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API ImFont* ImFontAtlas_AddFontFromMemoryCompressedBase85TTF(ImFontAtlas* self,const char* compressed_font_data_base85,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges); CIMGUI_API void ImFontAtlas_ClearInputData(ImFontAtlas* self); CIMGUI_API void ImFontAtlas_ClearTexData(ImFontAtlas* self); @@ -1886,9 +2110,10 @@ CIMGUI_API ImGuiViewport* ImGuiViewport_ImGuiViewport(void); CIMGUI_API void ImGuiViewport_destroy(ImGuiViewport* self); CIMGUI_API void ImGuiViewport_GetCenter(ImVec2 *pOut,ImGuiViewport* self); CIMGUI_API void ImGuiViewport_GetWorkCenter(ImVec2 *pOut,ImGuiViewport* self); +CIMGUI_API ImGuiPlatformIO* ImGuiPlatformIO_ImGuiPlatformIO(void); +CIMGUI_API void ImGuiPlatformIO_destroy(ImGuiPlatformIO* self); CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void); CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self); -CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key); /////////////////////////hand written functions @@ -1907,6 +2132,10 @@ CIMGUI_API void ImVector_ImWchar_destroy(ImVector_ImWchar* self); CIMGUI_API void ImVector_ImWchar_Init(ImVector_ImWchar* p); CIMGUI_API void ImVector_ImWchar_UnInit(ImVector_ImWchar* p); +#ifdef IMGUI_HAS_DOCK +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowPos(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_pos)); +CIMGUI_API void ImGuiPlatformIO_Set_Platform_GetWindowSize(ImGuiPlatformIO* platform_io, void(*user_callback)(ImGuiViewport* vp, ImVec2* out_size)); +#endif #endif //CIMGUI_INCLUDED diff --git a/imgui-sys/third-party/imgui-master/cimgui_impl.h b/imgui-sys/third-party/imgui-master/cimgui_impl.h index 597cca0..223f7bc 100644 --- a/imgui-sys/third-party/imgui-master/cimgui_impl.h +++ b/imgui-sys/third-party/imgui-master/cimgui_impl.h @@ -10,6 +10,7 @@ CIMGUI_API void ImGui_ImplGlfw_Shutdown(void); CIMGUI_API void ImGui_ImplGlfw_NewFrame(void); CIMGUI_API void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window); CIMGUI_API void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window); +CIMGUI_API void ImGui_ImplGlfw_SetCallbacksChainForAllWindows(bool chain_for_all_windows); CIMGUI_API void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window,int focused); CIMGUI_API void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window,int entered); CIMGUI_API void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window,double x,double y); @@ -18,6 +19,7 @@ CIMGUI_API void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window,double xoffset, CIMGUI_API void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window,int key,int scancode,int action,int mods); CIMGUI_API void ImGui_ImplGlfw_CharCallback(GLFWwindow* window,unsigned int c); CIMGUI_API void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor,int event); +CIMGUI_API void ImGui_ImplGlfw_Sleep(int milliseconds); #endif #ifdef CIMGUI_USE_OPENGL3 @@ -42,19 +44,24 @@ CIMGUI_API bool ImGui_ImplOpenGL2_CreateDeviceObjects(void); CIMGUI_API void ImGui_ImplOpenGL2_DestroyDeviceObjects(void); #endif -#ifdef CIMGUI_USE_SDL +#ifdef CIMGUI_USE_SDL2 typedef struct SDL_Window SDL_Window; typedef struct SDL_Renderer SDL_Renderer; +typedef struct _SDL_GameController _SDL_GameController; struct SDL_Window; struct SDL_Renderer; -typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); +struct _SDL_GameController; +typedef union SDL_Event SDL_Event; +typedef enum { ImGui_ImplSDL2_GamepadMode_AutoFirst, ImGui_ImplSDL2_GamepadMode_AutoAll, ImGui_ImplSDL2_GamepadMode_Manual }ImGui_ImplSDL2_GamepadMode;CIMGUI_API bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window,void* sdl_gl_context); CIMGUI_API bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForMetal(SDL_Window* window); CIMGUI_API bool ImGui_ImplSDL2_InitForSDLRenderer(SDL_Window* window,SDL_Renderer* renderer); +CIMGUI_API bool ImGui_ImplSDL2_InitForOther(SDL_Window* window); CIMGUI_API void ImGui_ImplSDL2_Shutdown(void); CIMGUI_API void ImGui_ImplSDL2_NewFrame(void); CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event); +CIMGUI_API void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count); #endif diff --git a/imgui-sys/third-party/imgui-master/definitions.json b/imgui-sys/third-party/imgui-master/definitions.json index 033eb0f..336b377 100644 --- a/imgui-sys/third-party/imgui-master/definitions.json +++ b/imgui-sys/third-party/imgui-master/definitions.json @@ -32,7 +32,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui:2358", + "location": "imgui:2744", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -50,7 +50,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2348", + "location": "imgui:2734", "ov_cimguiname": "ImColor_ImColor_Nil", "signature": "()", "stname": "ImColor" @@ -83,7 +83,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui:2349", + "location": "imgui:2735", "ov_cimguiname": "ImColor_ImColor_Float", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -102,7 +102,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2350", + "location": "imgui:2736", "ov_cimguiname": "ImColor_ImColor_Vec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -135,7 +135,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui:2351", + "location": "imgui:2737", "ov_cimguiname": "ImColor_ImColor_Int", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -154,7 +154,7 @@ "constructor": true, "defaults": {}, "funcname": "ImColor", - "location": "imgui:2352", + "location": "imgui:2738", "ov_cimguiname": "ImColor_ImColor_U32", "signature": "(ImU32)", "stname": "ImColor" @@ -192,7 +192,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui:2357", + "location": "imgui:2743", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -232,7 +232,7 @@ "cimguiname": "ImDrawCmd_GetTexID", "defaults": {}, "funcname": "GetTexID", - "location": "imgui:2406", + "location": "imgui:2940", "ov_cimguiname": "ImDrawCmd_GetTexID", "ret": "ImTextureID", "signature": "()const", @@ -249,7 +249,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawCmd", - "location": "imgui:2403", + "location": "imgui:2937", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -274,6 +274,31 @@ "stname": "ImDrawCmd" } ], + "ImDrawData_AddDrawList": [ + { + "args": "(ImDrawData* self,ImDrawList* draw_list)", + "argsT": [ + { + "name": "self", + "type": "ImDrawData*" + }, + { + "name": "draw_list", + "type": "ImDrawList*" + } + ], + "argsoriginal": "(ImDrawList* draw_list)", + "call_args": "(draw_list)", + "cimguiname": "ImDrawData_AddDrawList", + "defaults": {}, + "funcname": "AddDrawList", + "location": "imgui:3188", + "ov_cimguiname": "ImDrawData_AddDrawList", + "ret": "void", + "signature": "(ImDrawList*)", + "stname": "ImDrawData" + } + ], "ImDrawData_Clear": [ { "args": "(ImDrawData* self)", @@ -288,7 +313,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2639", + "location": "imgui:3187", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -309,7 +334,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": {}, "funcname": "DeIndexAllBuffers", - "location": "imgui:2640", + "location": "imgui:3189", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -326,7 +351,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawData", - "location": "imgui:2638", + "location": "imgui:3186", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -350,7 +375,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": {}, "funcname": "ScaleClipRects", - "location": "imgui:2641", + "location": "imgui:3190", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -390,7 +415,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2451", + "location": "imgui:2985", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -411,7 +436,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": {}, "funcname": "ClearFreeMemory", - "location": "imgui:2452", + "location": "imgui:2986", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -428,7 +453,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawListSplitter", - "location": "imgui:2449", + "location": "imgui:2983", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -452,7 +477,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": {}, "funcname": "Merge", - "location": "imgui:2454", + "location": "imgui:2988", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -481,7 +506,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": {}, "funcname": "SetCurrentChannel", - "location": "imgui:2455", + "location": "imgui:2989", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -510,7 +535,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": {}, "funcname": "Split", - "location": "imgui:2453", + "location": "imgui:2987", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -530,7 +555,7 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2450", + "location": "imgui:2984", "ov_cimguiname": "ImDrawListSplitter_destroy", "realdestructor": true, "ret": "void", @@ -582,7 +607,7 @@ "num_segments": "0" }, "funcname": "AddBezierCubic", - "location": "imgui:2554", + "location": "imgui:3088", "ov_cimguiname": "ImDrawList_AddBezierCubic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -629,7 +654,7 @@ "num_segments": "0" }, "funcname": "AddBezierQuadratic", - "location": "imgui:2555", + "location": "imgui:3089", "ov_cimguiname": "ImDrawList_AddBezierQuadratic", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -658,7 +683,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": {}, "funcname": "AddCallback", - "location": "imgui:2579", + "location": "imgui:3123", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -702,7 +727,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui:2546", + "location": "imgui:3080", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -741,13 +766,46 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui:2547", + "location": "imgui:3081", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", "stname": "ImDrawList" } ], + "ImDrawList_AddConcavePolyFilled": [ + { + "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "points", + "type": "const ImVec2*" + }, + { + "name": "num_points", + "type": "int" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(const ImVec2* points,int num_points,ImU32 col)", + "call_args": "(points,num_points,col)", + "cimguiname": "ImDrawList_AddConcavePolyFilled", + "defaults": {}, + "funcname": "AddConcavePolyFilled", + "location": "imgui:3096", + "ov_cimguiname": "ImDrawList_AddConcavePolyFilled", + "ret": "void", + "signature": "(const ImVec2*,int,ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddConvexPolyFilled": [ { "args": "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)", @@ -774,7 +832,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": {}, "funcname": "AddConvexPolyFilled", - "location": "imgui:2553", + "location": "imgui:3095", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -795,13 +853,106 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": {}, "funcname": "AddDrawCmd", - "location": "imgui:2580", + "location": "imgui:3124", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_AddEllipse": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + }, + { + "name": "thickness", + "type": "float" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)", + "call_args": "(center,radius,col,rot,num_segments,thickness)", + "cimguiname": "ImDrawList_AddEllipse", + "defaults": { + "num_segments": "0", + "rot": "0.0f", + "thickness": "1.0f" + }, + "funcname": "AddEllipse", + "location": "imgui:3084", + "ov_cimguiname": "ImDrawList_AddEllipse", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int,float)", + "stname": "ImDrawList" + } + ], + "ImDrawList_AddEllipseFilled": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "col", + "type": "ImU32" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)", + "call_args": "(center,radius,col,rot,num_segments)", + "cimguiname": "ImDrawList_AddEllipseFilled", + "defaults": { + "num_segments": "0", + "rot": "0.0f" + }, + "funcname": "AddEllipseFilled", + "location": "imgui:3085", + "ov_cimguiname": "ImDrawList_AddEllipseFilled", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,ImU32,float,int)", + "stname": "ImDrawList" + } + ], "ImDrawList_AddImage": [ { "args": "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)", @@ -844,7 +995,7 @@ "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui:2561", + "location": "imgui:3102", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -911,7 +1062,7 @@ "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui:2562", + "location": "imgui:3103", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -966,7 +1117,7 @@ "flags": "0" }, "funcname": "AddImageRounded", - "location": "imgui:2563", + "location": "imgui:3104", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1005,7 +1156,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui:2538", + "location": "imgui:3072", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1048,7 +1199,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui:2548", + "location": "imgui:3082", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1085,7 +1236,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": {}, "funcname": "AddNgonFilled", - "location": "imgui:2549", + "location": "imgui:3083", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1126,7 +1277,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": {}, "funcname": "AddPolyline", - "location": "imgui:2552", + "location": "imgui:3094", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,ImDrawFlags,float)", @@ -1173,7 +1324,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui:2542", + "location": "imgui:3076", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1214,7 +1365,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": {}, "funcname": "AddQuadFilled", - "location": "imgui:2543", + "location": "imgui:3077", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1263,7 +1414,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui:2539", + "location": "imgui:3073", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)", @@ -1307,7 +1458,7 @@ "rounding": "0.0f" }, "funcname": "AddRectFilled", - "location": "imgui:2540", + "location": "imgui:3074", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)", @@ -1352,7 +1503,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": {}, "funcname": "AddRectFilledMultiColor", - "location": "imgui:2541", + "location": "imgui:3075", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1391,7 +1542,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2550", + "location": "imgui:3086", "ov_cimguiname": "ImDrawList_AddText_Vec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -1446,7 +1597,7 @@ "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui:2551", + "location": "imgui:3087", "ov_cimguiname": "ImDrawList_AddText_FontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1489,7 +1640,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui:2544", + "location": "imgui:3078", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1526,7 +1677,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": {}, "funcname": "AddTriangleFilled", - "location": "imgui:2545", + "location": "imgui:3079", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1547,7 +1698,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": {}, "funcname": "ChannelsMerge", - "location": "imgui:2590", + "location": "imgui:3134", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -1572,7 +1723,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": {}, "funcname": "ChannelsSetCurrent", - "location": "imgui:2591", + "location": "imgui:3135", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -1597,7 +1748,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": {}, "funcname": "ChannelsSplit", - "location": "imgui:2589", + "location": "imgui:3133", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -1618,7 +1769,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": {}, "funcname": "CloneOutput", - "location": "imgui:2581", + "location": "imgui:3125", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -1643,7 +1794,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": {}, "funcname": "GetClipRectMax", - "location": "imgui:2529", + "location": "imgui:3063", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -1669,7 +1820,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": {}, "funcname": "GetClipRectMin", - "location": "imgui:2528", + "location": "imgui:3062", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -1692,7 +1843,7 @@ "constructor": true, "defaults": {}, "funcname": "ImDrawList", - "location": "imgui:2520", + "location": "imgui:3054", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(ImDrawListSharedData*)", "stname": "ImDrawList" @@ -1734,7 +1885,7 @@ "num_segments": "0" }, "funcname": "PathArcTo", - "location": "imgui:2572", + "location": "imgui:3115", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -1771,7 +1922,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": {}, "funcname": "PathArcToFast", - "location": "imgui:2573", + "location": "imgui:3116", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -1810,7 +1961,7 @@ "num_segments": "0" }, "funcname": "PathBezierCubicCurveTo", - "location": "imgui:2574", + "location": "imgui:3118", "ov_cimguiname": "ImDrawList_PathBezierCubicCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -1845,7 +1996,7 @@ "num_segments": "0" }, "funcname": "PathBezierQuadraticCurveTo", - "location": "imgui:2575", + "location": "imgui:3119", "ov_cimguiname": "ImDrawList_PathBezierQuadraticCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,int)", @@ -1866,13 +2017,85 @@ "cimguiname": "ImDrawList_PathClear", "defaults": {}, "funcname": "PathClear", - "location": "imgui:2567", + "location": "imgui:3109", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList_PathEllipticalArcTo": [ + { + "args": "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "center", + "type": "const ImVec2" + }, + { + "name": "radius", + "type": "const ImVec2" + }, + { + "name": "rot", + "type": "float" + }, + { + "name": "a_min", + "type": "float" + }, + { + "name": "a_max", + "type": "float" + }, + { + "name": "num_segments", + "type": "int" + } + ], + "argsoriginal": "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)", + "call_args": "(center,radius,rot,a_min,a_max,num_segments)", + "cimguiname": "ImDrawList_PathEllipticalArcTo", + "defaults": { + "num_segments": "0" + }, + "funcname": "PathEllipticalArcTo", + "location": "imgui:3117", + "ov_cimguiname": "ImDrawList_PathEllipticalArcTo", + "ret": "void", + "signature": "(const ImVec2,const ImVec2,float,float,float,int)", + "stname": "ImDrawList" + } + ], + "ImDrawList_PathFillConcave": [ + { + "args": "(ImDrawList* self,ImU32 col)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "col", + "type": "ImU32" + } + ], + "argsoriginal": "(ImU32 col)", + "call_args": "(col)", + "cimguiname": "ImDrawList_PathFillConcave", + "defaults": {}, + "funcname": "PathFillConcave", + "location": "imgui:3113", + "ov_cimguiname": "ImDrawList_PathFillConcave", + "ret": "void", + "signature": "(ImU32)", + "stname": "ImDrawList" + } + ], "ImDrawList_PathFillConvex": [ { "args": "(ImDrawList* self,ImU32 col)", @@ -1891,7 +2114,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": {}, "funcname": "PathFillConvex", - "location": "imgui:2570", + "location": "imgui:3112", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -1916,7 +2139,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": {}, "funcname": "PathLineTo", - "location": "imgui:2568", + "location": "imgui:3110", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -1941,7 +2164,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": {}, "funcname": "PathLineToMergeDuplicate", - "location": "imgui:2569", + "location": "imgui:3111", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -1981,7 +2204,7 @@ "rounding": "0.0f" }, "funcname": "PathRect", - "location": "imgui:2576", + "location": "imgui:3120", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawFlags)", @@ -2017,7 +2240,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui:2571", + "location": "imgui:3114", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,ImDrawFlags,float)", @@ -2038,7 +2261,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:2525", + "location": "imgui:3059", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2059,7 +2282,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": {}, "funcname": "PopTextureID", - "location": "imgui:2527", + "location": "imgui:3061", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2116,7 +2339,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": {}, "funcname": "PrimQuadUV", - "location": "imgui:2600", + "location": "imgui:3144", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2149,7 +2372,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": {}, "funcname": "PrimRect", - "location": "imgui:2598", + "location": "imgui:3142", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2190,7 +2413,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": {}, "funcname": "PrimRectUV", - "location": "imgui:2599", + "location": "imgui:3143", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2219,7 +2442,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": {}, "funcname": "PrimReserve", - "location": "imgui:2596", + "location": "imgui:3140", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2248,7 +2471,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": {}, "funcname": "PrimUnreserve", - "location": "imgui:2597", + "location": "imgui:3141", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -2281,7 +2504,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": {}, "funcname": "PrimVtx", - "location": "imgui:2603", + "location": "imgui:3147", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2306,7 +2529,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": {}, "funcname": "PrimWriteIdx", - "location": "imgui:2602", + "location": "imgui:3146", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -2339,7 +2562,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": {}, "funcname": "PrimWriteVtx", - "location": "imgui:2601", + "location": "imgui:3145", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2374,7 +2597,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui:2523", + "location": "imgui:3057", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,bool)", @@ -2395,7 +2618,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": {}, "funcname": "PushClipRectFullScreen", - "location": "imgui:2524", + "location": "imgui:3058", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -2420,7 +2643,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": {}, "funcname": "PushTextureID", - "location": "imgui:2526", + "location": "imgui:3060", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -2445,7 +2668,7 @@ "cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "defaults": {}, "funcname": "_CalcCircleAutoSegmentCount", - "location": "imgui:2618", + "location": "imgui:3165", "ov_cimguiname": "ImDrawList__CalcCircleAutoSegmentCount", "ret": "int", "signature": "(float)const", @@ -2466,7 +2689,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": {}, "funcname": "_ClearFreeMemory", - "location": "imgui:2612", + "location": "imgui:3158", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -2487,7 +2710,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": {}, "funcname": "_OnChangedClipRect", - "location": "imgui:2615", + "location": "imgui:3161", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -2508,7 +2731,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": {}, "funcname": "_OnChangedTextureID", - "location": "imgui:2616", + "location": "imgui:3162", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -2529,7 +2752,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": {}, "funcname": "_OnChangedVtxOffset", - "location": "imgui:2617", + "location": "imgui:3163", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -2570,7 +2793,7 @@ "cimguiname": "ImDrawList__PathArcToFastEx", "defaults": {}, "funcname": "_PathArcToFastEx", - "location": "imgui:2619", + "location": "imgui:3166", "ov_cimguiname": "ImDrawList__PathArcToFastEx", "ret": "void", "signature": "(const ImVec2,float,int,int,int)", @@ -2611,7 +2834,7 @@ "cimguiname": "ImDrawList__PathArcToN", "defaults": {}, "funcname": "_PathArcToN", - "location": "imgui:2620", + "location": "imgui:3167", "ov_cimguiname": "ImDrawList__PathArcToN", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2632,7 +2855,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": {}, "funcname": "_PopUnusedDrawCmd", - "location": "imgui:2613", + "location": "imgui:3159", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -2653,13 +2876,38 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": {}, "funcname": "_ResetForNewFrame", - "location": "imgui:2611", + "location": "imgui:3157", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", "stname": "ImDrawList" } ], + "ImDrawList__SetTextureID": [ + { + "args": "(ImDrawList* self,ImTextureID texture_id)", + "argsT": [ + { + "name": "self", + "type": "ImDrawList*" + }, + { + "name": "texture_id", + "type": "ImTextureID" + } + ], + "argsoriginal": "(ImTextureID texture_id)", + "call_args": "(texture_id)", + "cimguiname": "ImDrawList__SetTextureID", + "defaults": {}, + "funcname": "_SetTextureID", + "location": "imgui:3164", + "ov_cimguiname": "ImDrawList__SetTextureID", + "ret": "void", + "signature": "(ImTextureID)", + "stname": "ImDrawList" + } + ], "ImDrawList__TryMergeDrawCmds": [ { "args": "(ImDrawList* self)", @@ -2674,7 +2922,7 @@ "cimguiname": "ImDrawList__TryMergeDrawCmds", "defaults": {}, "funcname": "_TryMergeDrawCmds", - "location": "imgui:2614", + "location": "imgui:3160", "ov_cimguiname": "ImDrawList__TryMergeDrawCmds", "ret": "void", "signature": "()", @@ -2694,7 +2942,7 @@ "cimguiname": "ImDrawList_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2522", + "location": "imgui:3056", "ov_cimguiname": "ImDrawList_destroy", "realdestructor": true, "ret": "void", @@ -2712,7 +2960,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlasCustomRect", - "location": "imgui:2712", + "location": "imgui:3262", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -2732,7 +2980,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": {}, "funcname": "IsPacked", - "location": "imgui:2713", + "location": "imgui:3263", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -2798,7 +3046,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui:2797", + "location": "imgui:3348", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -2827,7 +3075,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": {}, "funcname": "AddCustomRectRegular", - "location": "imgui:2796", + "location": "imgui:3347", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -2852,7 +3100,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": {}, "funcname": "AddFont", - "location": "imgui:2746", + "location": "imgui:3296", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -2879,7 +3127,7 @@ "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui:2747", + "location": "imgui:3297", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -2919,7 +3167,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui:2748", + "location": "imgui:3298", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -2959,7 +3207,7 @@ "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui:2751", + "location": "imgui:3301", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -2968,7 +3216,7 @@ ], "ImFontAtlas_AddFontFromMemoryCompressedTTF": [ { - "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -2979,7 +3227,7 @@ "type": "const void*" }, { - "name": "compressed_font_size", + "name": "compressed_font_data_size", "type": "int" }, { @@ -2995,15 +3243,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui:2750", + "location": "imgui:3300", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3012,7 +3260,7 @@ ], "ImFontAtlas_AddFontFromMemoryTTF": [ { - "args": "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", + "args": "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)", "argsT": [ { "name": "self", @@ -3023,7 +3271,7 @@ "type": "void*" }, { - "name": "font_size", + "name": "font_data_size", "type": "int" }, { @@ -3039,15 +3287,15 @@ "type": "const ImWchar*" } ], - "argsoriginal": "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", - "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", + "argsoriginal": "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))", + "call_args": "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "defaults": { "font_cfg": "NULL", "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui:2749", + "location": "imgui:3299", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3068,7 +3316,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2762", + "location": "imgui:3312", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3101,7 +3349,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": {}, "funcname": "CalcCustomRectUV", - "location": "imgui:2801", + "location": "imgui:3352", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3122,7 +3370,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2755", + "location": "imgui:3305", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3143,7 +3391,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": {}, "funcname": "ClearFonts", - "location": "imgui:2754", + "location": "imgui:3304", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3164,7 +3412,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": {}, "funcname": "ClearInputData", - "location": "imgui:2752", + "location": "imgui:3302", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3185,7 +3433,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": {}, "funcname": "ClearTexData", - "location": "imgui:2753", + "location": "imgui:3303", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3210,7 +3458,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": {}, "funcname": "GetCustomRectByIndex", - "location": "imgui:2798", + "location": "imgui:3349", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3231,7 +3479,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": {}, "funcname": "GetGlyphRangesChineseFull", - "location": "imgui:2779", + "location": "imgui:3330", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3252,7 +3500,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": {}, "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui:2780", + "location": "imgui:3331", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3273,7 +3521,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": {}, "funcname": "GetGlyphRangesCyrillic", - "location": "imgui:2781", + "location": "imgui:3332", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -3294,7 +3542,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": {}, "funcname": "GetGlyphRangesDefault", - "location": "imgui:2775", + "location": "imgui:3326", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -3315,7 +3563,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "defaults": {}, "funcname": "GetGlyphRangesGreek", - "location": "imgui:2776", + "location": "imgui:3327", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesGreek", "ret": "const ImWchar*", "signature": "()", @@ -3336,7 +3584,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": {}, "funcname": "GetGlyphRangesJapanese", - "location": "imgui:2778", + "location": "imgui:3329", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -3357,7 +3605,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": {}, "funcname": "GetGlyphRangesKorean", - "location": "imgui:2777", + "location": "imgui:3328", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -3378,7 +3626,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": {}, "funcname": "GetGlyphRangesThai", - "location": "imgui:2782", + "location": "imgui:3333", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -3399,7 +3647,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": {}, "funcname": "GetGlyphRangesVietnamese", - "location": "imgui:2783", + "location": "imgui:3334", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -3440,7 +3688,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": {}, "funcname": "GetMouseCursorTexData", - "location": "imgui:2802", + "location": "imgui:3353", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -3479,7 +3727,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui:2763", + "location": "imgui:3313", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3518,7 +3766,7 @@ "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui:2764", + "location": "imgui:3314", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3535,7 +3783,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontAtlas", - "location": "imgui:2744", + "location": "imgui:3294", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -3555,7 +3803,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": {}, "funcname": "IsBuilt", - "location": "imgui:2765", + "location": "imgui:3315", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -3580,7 +3828,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": {}, "funcname": "SetTexID", - "location": "imgui:2766", + "location": "imgui:3316", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -3600,7 +3848,7 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2745", + "location": "imgui:3295", "ov_cimguiname": "ImFontAtlas_destroy", "realdestructor": true, "ret": "void", @@ -3618,7 +3866,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontConfig", - "location": "imgui:2672", + "location": "imgui:3222", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -3661,7 +3909,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": {}, "funcname": "AddChar", - "location": "imgui:2697", + "location": "imgui:3247", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -3686,7 +3934,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": {}, "funcname": "AddRanges", - "location": "imgui:2699", + "location": "imgui:3249", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -3717,7 +3965,7 @@ "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui:2698", + "location": "imgui:3248", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -3742,7 +3990,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": {}, "funcname": "BuildRanges", - "location": "imgui:2700", + "location": "imgui:3250", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -3763,7 +4011,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2694", + "location": "imgui:3244", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -3788,7 +4036,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": {}, "funcname": "GetBit", - "location": "imgui:2695", + "location": "imgui:3245", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -3805,7 +4053,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui:2693", + "location": "imgui:3243", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -3829,7 +4077,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": {}, "funcname": "SetBit", - "location": "imgui:2696", + "location": "imgui:3246", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -3913,7 +4161,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": {}, "funcname": "AddGlyph", - "location": "imgui:2890", + "location": "imgui:3443", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -3948,7 +4196,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui:2891", + "location": "imgui:3444", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -3969,7 +4217,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": {}, "funcname": "BuildLookupTable", - "location": "imgui:2887", + "location": "imgui:3440", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4021,7 +4269,7 @@ "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui:2881", + "location": "imgui:3434", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4059,7 +4307,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": {}, "funcname": "CalcWordWrapPositionA", - "location": "imgui:2882", + "location": "imgui:3435", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4080,7 +4328,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": {}, "funcname": "ClearOutputData", - "location": "imgui:2888", + "location": "imgui:3441", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4105,7 +4353,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": {}, "funcname": "FindGlyph", - "location": "imgui:2873", + "location": "imgui:3426", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4130,7 +4378,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": {}, "funcname": "FindGlyphNoFallback", - "location": "imgui:2874", + "location": "imgui:3427", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4155,7 +4403,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": {}, "funcname": "GetCharAdvance", - "location": "imgui:2875", + "location": "imgui:3428", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4176,7 +4424,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": {}, "funcname": "GetDebugName", - "location": "imgui:2877", + "location": "imgui:3430", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4201,7 +4449,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": {}, "funcname": "GrowIndex", - "location": "imgui:2889", + "location": "imgui:3442", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4218,7 +4466,7 @@ "constructor": true, "defaults": {}, "funcname": "ImFont", - "location": "imgui:2871", + "location": "imgui:3424", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4246,7 +4494,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": {}, "funcname": "IsGlyphRangeUnused", - "location": "imgui:2893", + "location": "imgui:3446", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4267,7 +4515,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": {}, "funcname": "IsLoaded", - "location": "imgui:2876", + "location": "imgui:3429", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -4308,7 +4556,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": {}, "funcname": "RenderChar", - "location": "imgui:2883", + "location": "imgui:3436", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const", @@ -4368,7 +4616,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui:2884", + "location": "imgui:3437", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -4397,7 +4645,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": {}, "funcname": "SetGlyphVisible", - "location": "imgui:2892", + "location": "imgui:3445", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -4417,7 +4665,7 @@ "cimguiname": "ImFont_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2872", + "location": "imgui:3425", "ov_cimguiname": "ImFont_destroy", "realdestructor": true, "ret": "void", @@ -4443,7 +4691,7 @@ "cimguiname": "ImGuiIO_AddFocusEvent", "defaults": {}, "funcname": "AddFocusEvent", - "location": "imgui:1972", + "location": "imgui:2317", "ov_cimguiname": "ImGuiIO_AddFocusEvent", "ret": "void", "signature": "(bool)", @@ -4468,7 +4716,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": {}, "funcname": "AddInputCharacter", - "location": "imgui:1973", + "location": "imgui:2318", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -4493,7 +4741,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": {}, "funcname": "AddInputCharacterUTF16", - "location": "imgui:1974", + "location": "imgui:2319", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -4518,7 +4766,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": {}, "funcname": "AddInputCharactersUTF8", - "location": "imgui:1975", + "location": "imgui:2320", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -4551,7 +4799,7 @@ "cimguiname": "ImGuiIO_AddKeyAnalogEvent", "defaults": {}, "funcname": "AddKeyAnalogEvent", - "location": "imgui:1968", + "location": "imgui:2312", "ov_cimguiname": "ImGuiIO_AddKeyAnalogEvent", "ret": "void", "signature": "(ImGuiKey,bool,float)", @@ -4580,7 +4828,7 @@ "cimguiname": "ImGuiIO_AddKeyEvent", "defaults": {}, "funcname": "AddKeyEvent", - "location": "imgui:1967", + "location": "imgui:2311", "ov_cimguiname": "ImGuiIO_AddKeyEvent", "ret": "void", "signature": "(ImGuiKey,bool)", @@ -4609,7 +4857,7 @@ "cimguiname": "ImGuiIO_AddMouseButtonEvent", "defaults": {}, "funcname": "AddMouseButtonEvent", - "location": "imgui:1970", + "location": "imgui:2314", "ov_cimguiname": "ImGuiIO_AddMouseButtonEvent", "ret": "void", "signature": "(int,bool)", @@ -4638,43 +4886,68 @@ "cimguiname": "ImGuiIO_AddMousePosEvent", "defaults": {}, "funcname": "AddMousePosEvent", - "location": "imgui:1969", + "location": "imgui:2313", "ov_cimguiname": "ImGuiIO_AddMousePosEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], - "ImGuiIO_AddMouseWheelEvent": [ + "ImGuiIO_AddMouseSourceEvent": [ { - "args": "(ImGuiIO* self,float wh_x,float wh_y)", + "args": "(ImGuiIO* self,ImGuiMouseSource source)", "argsT": [ { "name": "self", "type": "ImGuiIO*" }, { - "name": "wh_x", + "name": "source", + "type": "ImGuiMouseSource" + } + ], + "argsoriginal": "(ImGuiMouseSource source)", + "call_args": "(source)", + "cimguiname": "ImGuiIO_AddMouseSourceEvent", + "defaults": {}, + "funcname": "AddMouseSourceEvent", + "location": "imgui:2316", + "ov_cimguiname": "ImGuiIO_AddMouseSourceEvent", + "ret": "void", + "signature": "(ImGuiMouseSource)", + "stname": "ImGuiIO" + } + ], + "ImGuiIO_AddMouseWheelEvent": [ + { + "args": "(ImGuiIO* self,float wheel_x,float wheel_y)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + }, + { + "name": "wheel_x", "type": "float" }, { - "name": "wh_y", + "name": "wheel_y", "type": "float" } ], - "argsoriginal": "(float wh_x,float wh_y)", - "call_args": "(wh_x,wh_y)", + "argsoriginal": "(float wheel_x,float wheel_y)", + "call_args": "(wheel_x,wheel_y)", "cimguiname": "ImGuiIO_AddMouseWheelEvent", "defaults": {}, "funcname": "AddMouseWheelEvent", - "location": "imgui:1971", + "location": "imgui:2315", "ov_cimguiname": "ImGuiIO_AddMouseWheelEvent", "ret": "void", "signature": "(float,float)", "stname": "ImGuiIO" } ], - "ImGuiIO_ClearInputCharacters": [ + "ImGuiIO_ClearEventsQueue": [ { "args": "(ImGuiIO* self)", "argsT": [ @@ -4685,11 +4958,11 @@ ], "argsoriginal": "()", "call_args": "()", - "cimguiname": "ImGuiIO_ClearInputCharacters", + "cimguiname": "ImGuiIO_ClearEventsQueue", "defaults": {}, - "funcname": "ClearInputCharacters", - "location": "imgui:1979", - "ov_cimguiname": "ImGuiIO_ClearInputCharacters", + "funcname": "ClearEventsQueue", + "location": "imgui:2324", + "ov_cimguiname": "ImGuiIO_ClearEventsQueue", "ret": "void", "signature": "()", "stname": "ImGuiIO" @@ -4709,13 +4982,34 @@ "cimguiname": "ImGuiIO_ClearInputKeys", "defaults": {}, "funcname": "ClearInputKeys", - "location": "imgui:1980", + "location": "imgui:2325", "ov_cimguiname": "ImGuiIO_ClearInputKeys", "ret": "void", "signature": "()", "stname": "ImGuiIO" } ], + "ImGuiIO_ClearInputMouse": [ + { + "args": "(ImGuiIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiIO*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiIO_ClearInputMouse", + "defaults": {}, + "funcname": "ClearInputMouse", + "location": "imgui:2326", + "ov_cimguiname": "ImGuiIO_ClearInputMouse", + "ret": "void", + "signature": "()", + "stname": "ImGuiIO" + } + ], "ImGuiIO_ImGuiIO": [ { "args": "()", @@ -4726,7 +5020,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiIO", - "location": "imgui:2053", + "location": "imgui:2415", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -4750,7 +5044,7 @@ "cimguiname": "ImGuiIO_SetAppAcceptingEvents", "defaults": {}, "funcname": "SetAppAcceptingEvents", - "location": "imgui:1978", + "location": "imgui:2323", "ov_cimguiname": "ImGuiIO_SetAppAcceptingEvents", "ret": "void", "signature": "(bool)", @@ -4789,7 +5083,7 @@ "native_legacy_index": "-1" }, "funcname": "SetKeyEventNativeData", - "location": "imgui:1977", + "location": "imgui:2322", "ov_cimguiname": "ImGuiIO_SetKeyEventNativeData", "ret": "void", "signature": "(ImGuiKey,int,int,int)", @@ -4829,7 +5123,7 @@ "cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "defaults": {}, "funcname": "ClearSelection", - "location": "imgui:2094", + "location": "imgui:2459", "ov_cimguiname": "ImGuiInputTextCallbackData_ClearSelection", "ret": "void", "signature": "()", @@ -4858,7 +5152,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": {}, "funcname": "DeleteChars", - "location": "imgui:2091", + "location": "imgui:2456", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -4879,7 +5173,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": {}, "funcname": "HasSelection", - "location": "imgui:2095", + "location": "imgui:2460", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -4896,7 +5190,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiInputTextCallbackData", - "location": "imgui:2090", + "location": "imgui:2455", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -4930,7 +5224,7 @@ "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui:2092", + "location": "imgui:2457", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -4951,7 +5245,7 @@ "cimguiname": "ImGuiInputTextCallbackData_SelectAll", "defaults": {}, "funcname": "SelectAll", - "location": "imgui:2093", + "location": "imgui:2458", "ov_cimguiname": "ImGuiInputTextCallbackData_SelectAll", "ret": "void", "signature": "()", @@ -5001,7 +5295,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui:2306", + "location": "imgui:2653", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -5022,42 +5316,13 @@ "cimguiname": "ImGuiListClipper_End", "defaults": {}, "funcname": "End", - "location": "imgui:2307", + "location": "imgui:2654", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", "stname": "ImGuiListClipper" } ], - "ImGuiListClipper_ForceDisplayRangeByIndices": [ - { - "args": "(ImGuiListClipper* self,int item_min,int item_max)", - "argsT": [ - { - "name": "self", - "type": "ImGuiListClipper*" - }, - { - "name": "item_min", - "type": "int" - }, - { - "name": "item_max", - "type": "int" - } - ], - "argsoriginal": "(int item_min,int item_max)", - "call_args": "(item_min,item_max)", - "cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "defaults": {}, - "funcname": "ForceDisplayRangeByIndices", - "location": "imgui:2311", - "ov_cimguiname": "ImGuiListClipper_ForceDisplayRangeByIndices", - "ret": "void", - "signature": "(int,int)", - "stname": "ImGuiListClipper" - } - ], "ImGuiListClipper_ImGuiListClipper": [ { "args": "()", @@ -5068,12 +5333,91 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiListClipper", - "location": "imgui:2304", + "location": "imgui:2651", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "()", "stname": "ImGuiListClipper" } ], + "ImGuiListClipper_IncludeItemByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "defaults": {}, + "funcname": "IncludeItemByIndex", + "location": "imgui:2659", + "ov_cimguiname": "ImGuiListClipper_IncludeItemByIndex", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_IncludeItemsByIndex": [ + { + "args": "(ImGuiListClipper* self,int item_begin,int item_end)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_begin", + "type": "int" + }, + { + "name": "item_end", + "type": "int" + } + ], + "argsoriginal": "(int item_begin,int item_end)", + "call_args": "(item_begin,item_end)", + "cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "defaults": {}, + "funcname": "IncludeItemsByIndex", + "location": "imgui:2660", + "ov_cimguiname": "ImGuiListClipper_IncludeItemsByIndex", + "ret": "void", + "signature": "(int,int)", + "stname": "ImGuiListClipper" + } + ], + "ImGuiListClipper_SeekCursorForItem": [ + { + "args": "(ImGuiListClipper* self,int item_index)", + "argsT": [ + { + "name": "self", + "type": "ImGuiListClipper*" + }, + { + "name": "item_index", + "type": "int" + } + ], + "argsoriginal": "(int item_index)", + "call_args": "(item_index)", + "cimguiname": "ImGuiListClipper_SeekCursorForItem", + "defaults": {}, + "funcname": "SeekCursorForItem", + "location": "imgui:2665", + "ov_cimguiname": "ImGuiListClipper_SeekCursorForItem", + "ret": "void", + "signature": "(int)", + "stname": "ImGuiListClipper" + } + ], "ImGuiListClipper_Step": [ { "args": "(ImGuiListClipper* self)", @@ -5088,7 +5432,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": {}, "funcname": "Step", - "location": "imgui:2308", + "location": "imgui:2655", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -5108,7 +5452,7 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": {}, "destructor": true, - "location": "imgui:2305", + "location": "imgui:2652", "ov_cimguiname": "ImGuiListClipper_destroy", "realdestructor": true, "ret": "void", @@ -5126,7 +5470,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiOnceUponAFrame", - "location": "imgui:2170", + "location": "imgui:2511", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -5165,7 +5509,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2124", + "location": "imgui:2489", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -5182,7 +5526,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPayload", - "location": "imgui:2123", + "location": "imgui:2488", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -5206,7 +5550,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": {}, "funcname": "IsDataType", - "location": "imgui:2125", + "location": "imgui:2490", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -5227,7 +5571,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": {}, "funcname": "IsDelivery", - "location": "imgui:2127", + "location": "imgui:2492", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -5248,7 +5592,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": {}, "funcname": "IsPreview", - "location": "imgui:2126", + "location": "imgui:2491", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -5274,6 +5618,41 @@ "stname": "ImGuiPayload" } ], + "ImGuiPlatformIO_ImGuiPlatformIO": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiPlatformIO", + "location": "imgui:3496", + "ov_cimguiname": "ImGuiPlatformIO_ImGuiPlatformIO", + "signature": "()", + "stname": "ImGuiPlatformIO" + } + ], + "ImGuiPlatformIO_destroy": [ + { + "args": "(ImGuiPlatformIO* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiPlatformIO*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiPlatformIO_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiPlatformIO_destroy", + "ret": "void", + "signature": "(ImGuiPlatformIO*)", + "stname": "ImGuiPlatformIO" + } + ], "ImGuiPlatformImeData_ImGuiPlatformImeData": [ { "args": "()", @@ -5284,7 +5663,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiPlatformImeData", - "location": "imgui:2945", + "location": "imgui:3531", "ov_cimguiname": "ImGuiPlatformImeData_ImGuiPlatformImeData", "signature": "()", "stname": "ImGuiPlatformImeData" @@ -5309,72 +5688,347 @@ "stname": "ImGuiPlatformImeData" } ], + "ImGuiSelectionBasicStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:2873", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Clear": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_Clear", + "defaults": {}, + "funcname": "Clear", + "location": "imgui:2875", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Clear", + "ret": "void", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Contains": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID id)", + "call_args": "(id)", + "cimguiname": "ImGuiSelectionBasicStorage_Contains", + "defaults": {}, + "funcname": "Contains", + "location": "imgui:2874", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Contains", + "ret": "bool", + "signature": "(ImGuiID)const", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetNextSelectedItem": [ + { + "args": "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "opaque_it", + "type": "void**" + }, + { + "name": "out_id", + "type": "ImGuiID*" + } + ], + "argsoriginal": "(void** opaque_it,ImGuiID* out_id)", + "call_args": "(opaque_it,out_id)", + "cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "defaults": {}, + "funcname": "GetNextSelectedItem", + "location": "imgui:2878", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetNextSelectedItem", + "ret": "bool", + "signature": "(void**,ImGuiID*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_GetStorageIdFromIndex": [ + { + "args": "(ImGuiSelectionBasicStorage* self,int idx)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "idx", + "type": "int" + } + ], + "argsoriginal": "(int idx)", + "call_args": "(idx)", + "cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "defaults": {}, + "funcname": "GetStorageIdFromIndex", + "location": "imgui:2879", + "ov_cimguiname": "ImGuiSelectionBasicStorage_GetStorageIdFromIndex", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionBasicStorage", + "location": "imgui:2872", + "ov_cimguiname": "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage", + "signature": "()", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_SetItemSelected": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "id", + "type": "ImGuiID" + }, + { + "name": "selected", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiID id,bool selected)", + "call_args": "(id,selected)", + "cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "defaults": {}, + "funcname": "SetItemSelected", + "location": "imgui:2877", + "ov_cimguiname": "ImGuiSelectionBasicStorage_SetItemSelected", + "ret": "void", + "signature": "(ImGuiID,bool)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_Swap": [ + { + "args": "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + }, + { + "name": "r", + "reftoptr": true, + "type": "ImGuiSelectionBasicStorage*" + } + ], + "argsoriginal": "(ImGuiSelectionBasicStorage& r)", + "call_args": "(*r)", + "cimguiname": "ImGuiSelectionBasicStorage_Swap", + "defaults": {}, + "funcname": "Swap", + "location": "imgui:2876", + "ov_cimguiname": "ImGuiSelectionBasicStorage_Swap", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionBasicStorage_destroy": [ + { + "args": "(ImGuiSelectionBasicStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionBasicStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionBasicStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionBasicStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionBasicStorage*)", + "stname": "ImGuiSelectionBasicStorage" + } + ], + "ImGuiSelectionExternalStorage_ApplyRequests": [ + { + "args": "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + }, + { + "name": "ms_io", + "type": "ImGuiMultiSelectIO*" + } + ], + "argsoriginal": "(ImGuiMultiSelectIO* ms_io)", + "call_args": "(ms_io)", + "cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "defaults": {}, + "funcname": "ApplyRequests", + "location": "imgui:2892", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ApplyRequests", + "ret": "void", + "signature": "(ImGuiMultiSelectIO*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "constructor": true, + "defaults": {}, + "funcname": "ImGuiSelectionExternalStorage", + "location": "imgui:2891", + "ov_cimguiname": "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage", + "signature": "()", + "stname": "ImGuiSelectionExternalStorage" + } + ], + "ImGuiSelectionExternalStorage_destroy": [ + { + "args": "(ImGuiSelectionExternalStorage* self)", + "argsT": [ + { + "name": "self", + "type": "ImGuiSelectionExternalStorage*" + } + ], + "call_args": "(self)", + "cimguiname": "ImGuiSelectionExternalStorage_destroy", + "defaults": {}, + "destructor": true, + "ov_cimguiname": "ImGuiSelectionExternalStorage_destroy", + "ret": "void", + "signature": "(ImGuiSelectionExternalStorage*)", + "stname": "ImGuiSelectionExternalStorage" + } + ], "ImGuiStoragePair_ImGuiStoragePair": [ { - "args": "(ImGuiID _key,int _val_i)", + "args": "(ImGuiID _key,int _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_i", + "name": "_val", "type": "int" } ], - "argsoriginal": "(ImGuiID _key,int _val_i)", - "call_args": "(_key,_val_i)", + "argsoriginal": "(ImGuiID _key,int _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2237", + "location": "imgui:2568", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Int", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,float _val_f)", + "args": "(ImGuiID _key,float _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_f", + "name": "_val", "type": "float" } ], - "argsoriginal": "(ImGuiID _key,float _val_f)", - "call_args": "(_key,_val_f)", + "argsoriginal": "(ImGuiID _key,float _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2238", + "location": "imgui:2569", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Float", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" }, { - "args": "(ImGuiID _key,void* _val_p)", + "args": "(ImGuiID _key,void* _val)", "argsT": [ { "name": "_key", "type": "ImGuiID" }, { - "name": "_val_p", + "name": "_val", "type": "void*" } ], - "argsoriginal": "(ImGuiID _key,void* _val_p)", - "call_args": "(_key,_val_p)", + "argsoriginal": "(ImGuiID _key,void* _val)", + "call_args": "(_key,_val)", "cimguiname": "ImGuiStoragePair_ImGuiStoragePair", "constructor": true, "defaults": {}, "funcname": "ImGuiStoragePair", - "location": "imgui:2239", + "location": "imgui:2570", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePair_Ptr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -5413,7 +6067,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": {}, "funcname": "BuildSortByKey", - "location": "imgui:2270", + "location": "imgui:2609", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -5434,7 +6088,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2247", + "location": "imgui:2589", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -5465,7 +6119,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui:2250", + "location": "imgui:2592", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -5496,7 +6150,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui:2262", + "location": "imgui:2604", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -5527,7 +6181,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui:2252", + "location": "imgui:2594", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -5558,7 +6212,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui:2263", + "location": "imgui:2605", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -5589,7 +6243,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui:2248", + "location": "imgui:2590", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -5620,7 +6274,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui:2261", + "location": "imgui:2603", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -5645,7 +6299,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": {}, "funcname": "GetVoidPtr", - "location": "imgui:2254", + "location": "imgui:2596", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -5676,7 +6330,7 @@ "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui:2264", + "location": "imgui:2606", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -5701,7 +6355,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": {}, "funcname": "SetAllInt", - "location": "imgui:2267", + "location": "imgui:2611", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -5730,7 +6384,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": {}, "funcname": "SetBool", - "location": "imgui:2251", + "location": "imgui:2593", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -5759,7 +6413,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": {}, "funcname": "SetFloat", - "location": "imgui:2253", + "location": "imgui:2595", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -5788,7 +6442,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": {}, "funcname": "SetInt", - "location": "imgui:2249", + "location": "imgui:2591", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -5817,7 +6471,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": {}, "funcname": "SetVoidPtr", - "location": "imgui:2255", + "location": "imgui:2597", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -5834,7 +6488,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiStyle", - "location": "imgui:1875", + "location": "imgui:2194", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -5858,7 +6512,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": {}, "funcname": "ScaleAllSizes", - "location": "imgui:1876", + "location": "imgui:2195", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -5894,7 +6548,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableColumnSortSpecs", - "location": "imgui:2138", + "location": "imgui:2018", "ov_cimguiname": "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs", "signature": "()", "stname": "ImGuiTableColumnSortSpecs" @@ -5929,7 +6583,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTableSortSpecs", - "location": "imgui:2151", + "location": "imgui:2007", "ov_cimguiname": "ImGuiTableSortSpecs_ImGuiTableSortSpecs", "signature": "()", "stname": "ImGuiTableSortSpecs" @@ -5964,7 +6618,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextBuffer", - "location": "imgui:2208", + "location": "imgui:2549", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -5994,7 +6648,7 @@ "str_end": "NULL" }, "funcname": "append", - "location": "imgui:2217", + "location": "imgui:2558", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -6024,7 +6678,7 @@ "defaults": {}, "funcname": "appendf", "isvararg": "...)", - "location": "imgui:2218", + "location": "imgui:2559", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -6054,7 +6708,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": {}, "funcname": "appendfv", - "location": "imgui:2219", + "location": "imgui:2560", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -6075,7 +6729,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:2210", + "location": "imgui:2551", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -6096,7 +6750,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": {}, "funcname": "c_str", - "location": "imgui:2216", + "location": "imgui:2557", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -6117,7 +6771,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:2214", + "location": "imgui:2555", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -6157,7 +6811,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2213", + "location": "imgui:2554", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -6178,7 +6832,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": {}, "funcname": "end", - "location": "imgui:2211", + "location": "imgui:2552", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -6203,7 +6857,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:2215", + "location": "imgui:2556", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -6224,7 +6878,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": {}, "funcname": "size", - "location": "imgui:2212", + "location": "imgui:2553", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -6245,7 +6899,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": {}, "funcname": "Build", - "location": "imgui:2181", + "location": "imgui:2522", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -6266,7 +6920,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": {}, "funcname": "Clear", - "location": "imgui:2182", + "location": "imgui:2523", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -6298,7 +6952,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui:2179", + "location": "imgui:2520", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -6322,7 +6976,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui:2178", + "location": "imgui:2519", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -6342,7 +6996,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": {}, "funcname": "IsActive", - "location": "imgui:2183", + "location": "imgui:2524", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -6373,7 +7027,7 @@ "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui:2180", + "location": "imgui:2521", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -6409,7 +7063,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2191", + "location": "imgui:2532", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Nil", "signature": "()", "stname": "ImGuiTextRange" @@ -6432,7 +7086,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiTextRange", - "location": "imgui:2192", + "location": "imgui:2533", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRange_Str", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -6471,7 +7125,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:2193", + "location": "imgui:2534", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -6500,7 +7154,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": {}, "funcname": "split", - "location": "imgui:2194", + "location": "imgui:2535", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -6525,7 +7179,7 @@ "cimguiname": "ImGuiViewport_GetCenter", "defaults": {}, "funcname": "GetCenter", - "location": "imgui:2930", + "location": "imgui:3485", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetCenter", "ret": "void", @@ -6551,7 +7205,7 @@ "cimguiname": "ImGuiViewport_GetWorkCenter", "defaults": {}, "funcname": "GetWorkCenter", - "location": "imgui:2931", + "location": "imgui:3486", "nonUDT": 1, "ov_cimguiname": "ImGuiViewport_GetWorkCenter", "ret": "void", @@ -6569,7 +7223,7 @@ "constructor": true, "defaults": {}, "funcname": "ImGuiViewport", - "location": "imgui:2927", + "location": "imgui:3482", "ov_cimguiname": "ImGuiViewport_ImGuiViewport", "signature": "()", "stname": "ImGuiViewport" @@ -6604,7 +7258,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:256", + "location": "imgui:291", "ov_cimguiname": "ImVec2_ImVec2_Nil", "signature": "()", "stname": "ImVec2" @@ -6627,7 +7281,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec2", - "location": "imgui:257", + "location": "imgui:292", "ov_cimguiname": "ImVec2_ImVec2_Float", "signature": "(float,float)", "stname": "ImVec2" @@ -6662,7 +7316,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:269", + "location": "imgui:304", "ov_cimguiname": "ImVec4_ImVec4_Nil", "signature": "()", "stname": "ImVec4" @@ -6693,7 +7347,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVec4", - "location": "imgui:270", + "location": "imgui:305", "ov_cimguiname": "ImVec4_ImVec4_Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -6728,7 +7382,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1772", + "location": "imgui:2075", "ov_cimguiname": "ImVector_ImVector_Nil", "signature": "()", "stname": "ImVector", @@ -6748,7 +7402,7 @@ "constructor": true, "defaults": {}, "funcname": "ImVector", - "location": "imgui:1773", + "location": "imgui:2076", "ov_cimguiname": "ImVector_ImVector_Vector_T_", "signature": "(const ImVector_T )", "stname": "ImVector", @@ -6773,7 +7427,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": {}, "funcname": "_grow_capacity", - "location": "imgui:1799", + "location": "imgui:2102", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -6795,7 +7449,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1795", + "location": "imgui:2098", "ov_cimguiname": "ImVector_back_Nil", "ret": "T*", "retref": "&", @@ -6816,7 +7470,7 @@ "cimguiname": "ImVector_back", "defaults": {}, "funcname": "back", - "location": "imgui:1796", + "location": "imgui:2099", "ov_cimguiname": "ImVector_back__const", "ret": "const T*", "retref": "&", @@ -6839,7 +7493,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1789", + "location": "imgui:2092", "ov_cimguiname": "ImVector_begin_Nil", "ret": "T*", "signature": "()", @@ -6859,7 +7513,7 @@ "cimguiname": "ImVector_begin", "defaults": {}, "funcname": "begin", - "location": "imgui:1790", + "location": "imgui:2093", "ov_cimguiname": "ImVector_begin__const", "ret": "const T*", "signature": "()const", @@ -6881,7 +7535,7 @@ "cimguiname": "ImVector_capacity", "defaults": {}, "funcname": "capacity", - "location": "imgui:1785", + "location": "imgui:2088", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -6903,7 +7557,7 @@ "cimguiname": "ImVector_clear", "defaults": {}, "funcname": "clear", - "location": "imgui:1777", + "location": "imgui:2080", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -6925,7 +7579,7 @@ "cimguiname": "ImVector_clear_delete", "defaults": {}, "funcname": "clear_delete", - "location": "imgui:1778", + "location": "imgui:2081", "ov_cimguiname": "ImVector_clear_delete", "ret": "void", "signature": "()", @@ -6947,7 +7601,7 @@ "cimguiname": "ImVector_clear_destruct", "defaults": {}, "funcname": "clear_destruct", - "location": "imgui:1779", + "location": "imgui:2082", "ov_cimguiname": "ImVector_clear_destruct", "ret": "void", "signature": "()", @@ -6973,7 +7627,7 @@ "cimguiname": "ImVector_contains", "defaults": {}, "funcname": "contains", - "location": "imgui:1814", + "location": "imgui:2117", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -6994,7 +7648,7 @@ "cimguiname": "ImVector_destroy", "defaults": {}, "destructor": true, - "location": "imgui:1775", + "location": "imgui:2078", "ov_cimguiname": "ImVector_destroy", "realdestructor": true, "ret": "void", @@ -7017,7 +7671,7 @@ "cimguiname": "ImVector_empty", "defaults": {}, "funcname": "empty", - "location": "imgui:1781", + "location": "imgui:2084", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -7039,7 +7693,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1791", + "location": "imgui:2094", "ov_cimguiname": "ImVector_end_Nil", "ret": "T*", "signature": "()", @@ -7059,7 +7713,7 @@ "cimguiname": "ImVector_end", "defaults": {}, "funcname": "end", - "location": "imgui:1792", + "location": "imgui:2095", "ov_cimguiname": "ImVector_end__const", "ret": "const T*", "signature": "()const", @@ -7085,7 +7739,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1810", + "location": "imgui:2113", "ov_cimguiname": "ImVector_erase_Nil", "ret": "T*", "signature": "(const T*)", @@ -7113,7 +7767,7 @@ "cimguiname": "ImVector_erase", "defaults": {}, "funcname": "erase", - "location": "imgui:1811", + "location": "imgui:2114", "ov_cimguiname": "ImVector_erase_TPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -7139,7 +7793,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": {}, "funcname": "erase_unsorted", - "location": "imgui:1812", + "location": "imgui:2115", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -7165,7 +7819,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1815", + "location": "imgui:2118", "ov_cimguiname": "ImVector_find_Nil", "ret": "T*", "signature": "(const T)", @@ -7189,7 +7843,7 @@ "cimguiname": "ImVector_find", "defaults": {}, "funcname": "find", - "location": "imgui:1816", + "location": "imgui:2119", "ov_cimguiname": "ImVector_find__const", "ret": "const T*", "signature": "(const T)const", @@ -7215,7 +7869,7 @@ "cimguiname": "ImVector_find_erase", "defaults": {}, "funcname": "find_erase", - "location": "imgui:1817", + "location": "imgui:2121", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -7241,7 +7895,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": {}, "funcname": "find_erase_unsorted", - "location": "imgui:1818", + "location": "imgui:2122", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -7249,6 +7903,32 @@ "templated": true } ], + "ImVector_find_index": [ + { + "args": "(ImVector* self,const T v)", + "argsT": [ + { + "name": "self", + "type": "ImVector*" + }, + { + "name": "v", + "type": "const T" + } + ], + "argsoriginal": "(const T& v)", + "call_args": "(v)", + "cimguiname": "ImVector_find_index", + "defaults": {}, + "funcname": "find_index", + "location": "imgui:2120", + "ov_cimguiname": "ImVector_find_index", + "ret": "int", + "signature": "(const T)const", + "stname": "ImVector", + "templated": true + } + ], "ImVector_front": [ { "args": "(ImVector* self)", @@ -7263,7 +7943,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1793", + "location": "imgui:2096", "ov_cimguiname": "ImVector_front_Nil", "ret": "T*", "retref": "&", @@ -7284,7 +7964,7 @@ "cimguiname": "ImVector_front", "defaults": {}, "funcname": "front", - "location": "imgui:1794", + "location": "imgui:2097", "ov_cimguiname": "ImVector_front__const", "ret": "const T*", "retref": "&", @@ -7311,7 +7991,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": {}, "funcname": "index_from_ptr", - "location": "imgui:1819", + "location": "imgui:2123", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -7341,7 +8021,7 @@ "cimguiname": "ImVector_insert", "defaults": {}, "funcname": "insert", - "location": "imgui:1813", + "location": "imgui:2116", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -7363,7 +8043,7 @@ "cimguiname": "ImVector_max_size", "defaults": {}, "funcname": "max_size", - "location": "imgui:1784", + "location": "imgui:2087", "ov_cimguiname": "ImVector_max_size", "ret": "int", "signature": "()const", @@ -7385,7 +8065,7 @@ "cimguiname": "ImVector_pop_back", "defaults": {}, "funcname": "pop_back", - "location": "imgui:1808", + "location": "imgui:2111", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -7411,7 +8091,7 @@ "cimguiname": "ImVector_push_back", "defaults": {}, "funcname": "push_back", - "location": "imgui:1807", + "location": "imgui:2110", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -7437,7 +8117,7 @@ "cimguiname": "ImVector_push_front", "defaults": {}, "funcname": "push_front", - "location": "imgui:1809", + "location": "imgui:2112", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -7463,7 +8143,7 @@ "cimguiname": "ImVector_reserve", "defaults": {}, "funcname": "reserve", - "location": "imgui:1803", + "location": "imgui:2106", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -7489,7 +8169,7 @@ "cimguiname": "ImVector_reserve_discard", "defaults": {}, "funcname": "reserve_discard", - "location": "imgui:1804", + "location": "imgui:2107", "ov_cimguiname": "ImVector_reserve_discard", "ret": "void", "signature": "(int)", @@ -7515,7 +8195,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1800", + "location": "imgui:2103", "ov_cimguiname": "ImVector_resize_Nil", "ret": "void", "signature": "(int)", @@ -7543,7 +8223,7 @@ "cimguiname": "ImVector_resize", "defaults": {}, "funcname": "resize", - "location": "imgui:1801", + "location": "imgui:2104", "ov_cimguiname": "ImVector_resize_T", "ret": "void", "signature": "(int,const T)", @@ -7569,7 +8249,7 @@ "cimguiname": "ImVector_shrink", "defaults": {}, "funcname": "shrink", - "location": "imgui:1802", + "location": "imgui:2105", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -7591,7 +8271,7 @@ "cimguiname": "ImVector_size", "defaults": {}, "funcname": "size", - "location": "imgui:1782", + "location": "imgui:2085", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -7613,7 +8293,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": {}, "funcname": "size_in_bytes", - "location": "imgui:1783", + "location": "imgui:2086", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -7640,7 +8320,7 @@ "cimguiname": "ImVector_swap", "defaults": {}, "funcname": "swap", - "location": "imgui:1797", + "location": "imgui:2100", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector_T *)", @@ -7668,7 +8348,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui:812", + "location": "imgui:883", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -7685,7 +8365,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": {}, "funcname": "AlignTextToFramePadding", - "location": "imgui:456", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -7711,7 +8391,7 @@ "cimguiname": "igArrowButton", "defaults": {}, "funcname": "ArrowButton", - "location": "imgui:503", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -7744,7 +8424,7 @@ "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui:330", + "location": "imgui:366", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -7754,7 +8434,7 @@ ], "igBeginChild": [ { - "args": "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "str_id", @@ -7765,32 +8445,32 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(str_id,size,border,flags)", + "argsoriginal": "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(str_id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:341", + "location": "imgui:387", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_Str", "ret": "bool", - "signature": "(const char*,const ImVec2,bool,ImGuiWindowFlags)", + "signature": "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" }, { - "args": "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)", + "args": "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)", "argsT": [ { "name": "id", @@ -7801,60 +8481,28 @@ "type": "const ImVec2" }, { - "name": "border", - "type": "bool" + "name": "child_flags", + "type": "ImGuiChildFlags" }, { - "name": "flags", + "name": "window_flags", "type": "ImGuiWindowFlags" } ], - "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,border,flags)", + "argsoriginal": "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)", + "call_args": "(id,size,child_flags,window_flags)", "cimguiname": "igBeginChild", "defaults": { - "border": "false", - "flags": "0", - "size": "ImVec2(0,0)" + "child_flags": "0", + "size": "ImVec2(0,0)", + "window_flags": "0" }, "funcname": "BeginChild", - "location": "imgui:342", + "location": "imgui:388", "namespace": "ImGui", "ov_cimguiname": "igBeginChild_ID", "ret": "bool", - "signature": "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)", - "stname": "" - } - ], - "igBeginChildFrame": [ - { - "args": "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)", - "argsT": [ - { - "name": "id", - "type": "ImGuiID" - }, - { - "name": "size", - "type": "const ImVec2" - }, - { - "name": "flags", - "type": "ImGuiWindowFlags" - } - ], - "argsoriginal": "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)", - "call_args": "(id,size,flags)", - "cimguiname": "igBeginChildFrame", - "defaults": { - "flags": "0" - }, - "funcname": "BeginChildFrame", - "location": "imgui:874", - "namespace": "ImGui", - "ov_cimguiname": "igBeginChildFrame", - "ret": "bool", - "signature": "(ImGuiID,const ImVec2,ImGuiWindowFlags)", + "signature": "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)", "stname": "" } ], @@ -7882,7 +8530,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui:520", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -7906,7 +8554,7 @@ "disabled": "true" }, "funcname": "BeginDisabled", - "location": "imgui:820", + "location": "imgui:892", "namespace": "ImGui", "ov_cimguiname": "igBeginDisabled", "ret": "void", @@ -7930,7 +8578,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui:808", + "location": "imgui:879", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -7947,7 +8595,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": {}, "funcname": "BeginDragDropTarget", - "location": "imgui:811", + "location": "imgui:882", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -7964,7 +8612,7 @@ "cimguiname": "igBeginGroup", "defaults": {}, "funcname": "BeginGroup", - "location": "imgui:445", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -7972,6 +8620,23 @@ "stname": "" } ], + "igBeginItemTooltip": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igBeginItemTooltip", + "defaults": {}, + "funcname": "BeginItemTooltip", + "location": "imgui:741", + "namespace": "ImGui", + "ov_cimguiname": "igBeginItemTooltip", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igBeginListBox": [ { "args": "(const char* label,const ImVec2 size)", @@ -7992,7 +8657,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginListBox", - "location": "imgui:632", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igBeginListBox", "ret": "bool", @@ -8009,7 +8674,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": {}, "funcname": "BeginMainMenuBar", - "location": "imgui:658", + "location": "imgui:721", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -8037,7 +8702,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui:660", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -8054,7 +8719,7 @@ "cimguiname": "igBeginMenuBar", "defaults": {}, "funcname": "BeginMenuBar", - "location": "imgui:656", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -8062,6 +8727,39 @@ "stname": "" } ], + "igBeginMultiSelect": [ + { + "args": "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)", + "argsT": [ + { + "name": "flags", + "type": "ImGuiMultiSelectFlags" + }, + { + "name": "selection_size", + "type": "int" + }, + { + "name": "items_count", + "type": "int" + } + ], + "argsoriginal": "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)", + "call_args": "(flags,selection_size,items_count)", + "cimguiname": "igBeginMultiSelect", + "defaults": { + "items_count": "-1", + "selection_size": "-1" + }, + "funcname": "BeginMultiSelect", + "location": "imgui:684", + "namespace": "ImGui", + "ov_cimguiname": "igBeginMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "(ImGuiMultiSelectFlags,int,int)", + "stname": "" + } + ], "igBeginPopup": [ { "args": "(const char* str_id,ImGuiWindowFlags flags)", @@ -8082,7 +8780,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui:684", + "location": "imgui:755", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -8111,7 +8809,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui:706", + "location": "imgui:777", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -8140,7 +8838,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui:708", + "location": "imgui:779", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -8169,7 +8867,7 @@ "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui:707", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -8202,7 +8900,7 @@ "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui:685", + "location": "imgui:756", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -8230,7 +8928,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui:786", + "location": "imgui:857", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -8263,7 +8961,7 @@ "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui:788", + "location": "imgui:859", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -8273,14 +8971,14 @@ ], "igBeginTable": [ { - "args": "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", + "args": "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)", "argsT": [ { "name": "str_id", "type": "const char*" }, { - "name": "column", + "name": "columns", "type": "int" }, { @@ -8296,8 +8994,8 @@ "type": "float" } ], - "argsoriginal": "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", - "call_args": "(str_id,column,flags,outer_size,inner_width)", + "argsoriginal": "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)", + "call_args": "(str_id,columns,flags,outer_size,inner_width)", "cimguiname": "igBeginTable", "defaults": { "flags": "0", @@ -8305,7 +9003,7 @@ "outer_size": "ImVec2(0.0f,0.0f)" }, "funcname": "BeginTable", - "location": "imgui:739", + "location": "imgui:808", "namespace": "ImGui", "ov_cimguiname": "igBeginTable", "ret": "bool", @@ -8322,10 +9020,10 @@ "cimguiname": "igBeginTooltip", "defaults": {}, "funcname": "BeginTooltip", - "location": "imgui:667", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", - "ret": "void", + "ret": "bool", "signature": "()", "stname": "" } @@ -8339,7 +9037,7 @@ "cimguiname": "igBullet", "defaults": {}, "funcname": "Bullet", - "location": "imgui:510", + "location": "imgui:556", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -8366,7 +9064,7 @@ "defaults": {}, "funcname": "BulletText", "isvararg": "...)", - "location": "imgui:494", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -8392,7 +9090,7 @@ "cimguiname": "igBulletTextV", "defaults": {}, "funcname": "BulletTextV", - "location": "imgui:495", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -8420,7 +9118,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui:500", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -8437,7 +9135,7 @@ "cimguiname": "igCalcItemWidth", "defaults": {}, "funcname": "CalcItemWidth", - "location": "imgui:417", + "location": "imgui:455", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -8479,7 +9177,7 @@ "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui:878", + "location": "imgui:950", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -8506,7 +9204,7 @@ "cimguiname": "igCheckbox", "defaults": {}, "funcname": "Checkbox", - "location": "imgui:504", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -8536,7 +9234,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:505", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_IntPtr", "ret": "bool", @@ -8564,7 +9262,7 @@ "cimguiname": "igCheckboxFlags", "defaults": {}, "funcname": "CheckboxFlags", - "location": "imgui:506", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags_UintPtr", "ret": "bool", @@ -8581,7 +9279,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": {}, "funcname": "CloseCurrentPopup", - "location": "imgui:699", + "location": "imgui:770", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -8609,7 +9307,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:616", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_TreeNodeFlags", "ret": "bool", @@ -8639,7 +9337,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui:617", + "location": "imgui:667", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeader_BoolPtr", "ret": "bool", @@ -8676,7 +9374,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui:597", + "location": "imgui:647", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -8698,7 +9396,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": {}, "funcname": "ColorConvertFloat4ToU32", - "location": "imgui:882", + "location": "imgui:954", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -8743,7 +9441,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": {}, "funcname": "ColorConvertHSVtoRGB", - "location": "imgui:884", + "location": "imgui:956", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -8788,7 +9486,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": {}, "funcname": "ColorConvertRGBtoHSV", - "location": "imgui:883", + "location": "imgui:955", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -8814,7 +9512,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": {}, "funcname": "ColorConvertU32ToFloat4", - "location": "imgui:881", + "location": "imgui:953", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -8847,7 +9545,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui:593", + "location": "imgui:643", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -8879,7 +9577,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui:594", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -8911,7 +9609,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui:595", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -8948,7 +9646,7 @@ "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui:596", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -8958,7 +9656,7 @@ ], "igColumns": [ { - "args": "(int count,const char* id,bool border)", + "args": "(int count,const char* id,bool borders)", "argsT": [ { "name": "count", @@ -8969,20 +9667,20 @@ "type": "const char*" }, { - "name": "border", + "name": "borders", "type": "bool" } ], - "argsoriginal": "(int count=1,const char* id=((void*)0),bool border=true)", - "call_args": "(count,id,border)", + "argsoriginal": "(int count=1,const char* id=((void*)0),bool borders=true)", + "call_args": "(count,id,borders)", "cimguiname": "igColumns", "defaults": { - "border": "true", + "borders": "true", "count": "1", "id": "NULL" }, "funcname": "Columns", - "location": "imgui:775", + "location": "imgui:846", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -9022,7 +9720,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:522", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str_arr", "ret": "bool", @@ -9056,7 +9754,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:523", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igCombo_Str", "ret": "bool", @@ -9064,7 +9762,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)", "argsT": [ { "name": "label", @@ -9075,13 +9773,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -9093,18 +9791,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)", "cimguiname": "igCombo", "defaults": { "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui:524", + "location": "imgui:574", "namespace": "ImGui", - "ov_cimguiname": "igCombo_FnBoolPtr", + "ov_cimguiname": "igCombo_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -9124,7 +9822,7 @@ "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui:288", + "location": "imgui:323", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -9170,7 +9868,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": {}, "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui:935", + "location": "imgui:1037", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -9178,6 +9876,98 @@ "stname": "" } ], + "igDebugFlashStyleColor": [ + { + "args": "(ImGuiCol idx)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiCol" + } + ], + "argsoriginal": "(ImGuiCol idx)", + "call_args": "(idx)", + "cimguiname": "igDebugFlashStyleColor", + "defaults": {}, + "funcname": "DebugFlashStyleColor", + "location": "imgui:1035", + "namespace": "ImGui", + "ov_cimguiname": "igDebugFlashStyleColor", + "ret": "void", + "signature": "(ImGuiCol)", + "stname": "" + } + ], + "igDebugLog": [ + { + "args": "(const char* fmt,...)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "...", + "type": "..." + } + ], + "argsoriginal": "(const char* fmt,...)", + "call_args": "(fmt,...)", + "cimguiname": "igDebugLog", + "defaults": {}, + "funcname": "DebugLog", + "isvararg": "...)", + "location": "imgui:1039", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLog", + "ret": "void", + "signature": "(const char*,...)", + "stname": "" + } + ], + "igDebugLogV": [ + { + "args": "(const char* fmt,va_list args)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "args", + "type": "va_list" + } + ], + "argsoriginal": "(const char* fmt,va_list args)", + "call_args": "(fmt,args)", + "cimguiname": "igDebugLogV", + "defaults": {}, + "funcname": "DebugLogV", + "location": "imgui:1040", + "namespace": "ImGui", + "ov_cimguiname": "igDebugLogV", + "ret": "void", + "signature": "(const char*,va_list)", + "stname": "" + } + ], + "igDebugStartItemPicker": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igDebugStartItemPicker", + "defaults": {}, + "funcname": "DebugStartItemPicker", + "location": "imgui:1036", + "namespace": "ImGui", + "ov_cimguiname": "igDebugStartItemPicker", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igDebugTextEncoding": [ { "args": "(const char* text)", @@ -9192,7 +9982,7 @@ "cimguiname": "igDebugTextEncoding", "defaults": {}, "funcname": "DebugTextEncoding", - "location": "imgui:934", + "location": "imgui:1034", "namespace": "ImGui", "ov_cimguiname": "igDebugTextEncoding", "ret": "void", @@ -9216,7 +10006,7 @@ "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui:289", + "location": "imgui:324", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -9268,7 +10058,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui:538", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -9320,7 +10110,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui:539", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -9372,7 +10162,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui:540", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -9424,7 +10214,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui:541", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -9485,7 +10275,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui:542", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -9537,7 +10327,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui:543", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -9589,7 +10379,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui:544", + "location": "imgui:594", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -9641,7 +10431,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui:545", + "location": "imgui:595", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -9693,7 +10483,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui:546", + "location": "imgui:596", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -9754,7 +10544,7 @@ "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui:547", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -9810,7 +10600,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalar", - "location": "imgui:548", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -9870,7 +10660,7 @@ "v_speed": "1.0f" }, "funcname": "DragScalarN", - "location": "imgui:549", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -9892,7 +10682,7 @@ "cimguiname": "igDummy", "defaults": {}, "funcname": "Dummy", - "location": "imgui:442", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -9909,7 +10699,7 @@ "cimguiname": "igEnd", "defaults": {}, "funcname": "End", - "location": "imgui:331", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -9926,7 +10716,7 @@ "cimguiname": "igEndChild", "defaults": {}, "funcname": "EndChild", - "location": "imgui:343", + "location": "imgui:389", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -9934,23 +10724,6 @@ "stname": "" } ], - "igEndChildFrame": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igEndChildFrame", - "defaults": {}, - "funcname": "EndChildFrame", - "location": "imgui:875", - "namespace": "ImGui", - "ov_cimguiname": "igEndChildFrame", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igEndCombo": [ { "args": "()", @@ -9960,7 +10733,7 @@ "cimguiname": "igEndCombo", "defaults": {}, "funcname": "EndCombo", - "location": "imgui:521", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -9977,7 +10750,7 @@ "cimguiname": "igEndDisabled", "defaults": {}, "funcname": "EndDisabled", - "location": "imgui:821", + "location": "imgui:893", "namespace": "ImGui", "ov_cimguiname": "igEndDisabled", "ret": "void", @@ -9994,7 +10767,7 @@ "cimguiname": "igEndDragDropSource", "defaults": {}, "funcname": "EndDragDropSource", - "location": "imgui:810", + "location": "imgui:881", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -10011,7 +10784,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": {}, "funcname": "EndDragDropTarget", - "location": "imgui:813", + "location": "imgui:884", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -10028,7 +10801,7 @@ "cimguiname": "igEndFrame", "defaults": {}, "funcname": "EndFrame", - "location": "imgui:297", + "location": "imgui:333", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -10045,7 +10818,7 @@ "cimguiname": "igEndGroup", "defaults": {}, "funcname": "EndGroup", - "location": "imgui:446", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -10062,7 +10835,7 @@ "cimguiname": "igEndListBox", "defaults": {}, "funcname": "EndListBox", - "location": "imgui:633", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igEndListBox", "ret": "void", @@ -10079,7 +10852,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": {}, "funcname": "EndMainMenuBar", - "location": "imgui:659", + "location": "imgui:722", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -10096,7 +10869,7 @@ "cimguiname": "igEndMenu", "defaults": {}, "funcname": "EndMenu", - "location": "imgui:661", + "location": "imgui:724", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -10113,7 +10886,7 @@ "cimguiname": "igEndMenuBar", "defaults": {}, "funcname": "EndMenuBar", - "location": "imgui:657", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -10121,6 +10894,23 @@ "stname": "" } ], + "igEndMultiSelect": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igEndMultiSelect", + "defaults": {}, + "funcname": "EndMultiSelect", + "location": "imgui:685", + "namespace": "ImGui", + "ov_cimguiname": "igEndMultiSelect", + "ret": "ImGuiMultiSelectIO*", + "signature": "()", + "stname": "" + } + ], "igEndPopup": [ { "args": "()", @@ -10130,7 +10920,7 @@ "cimguiname": "igEndPopup", "defaults": {}, "funcname": "EndPopup", - "location": "imgui:686", + "location": "imgui:757", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -10147,7 +10937,7 @@ "cimguiname": "igEndTabBar", "defaults": {}, "funcname": "EndTabBar", - "location": "imgui:787", + "location": "imgui:858", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -10164,7 +10954,7 @@ "cimguiname": "igEndTabItem", "defaults": {}, "funcname": "EndTabItem", - "location": "imgui:789", + "location": "imgui:860", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -10181,7 +10971,7 @@ "cimguiname": "igEndTable", "defaults": {}, "funcname": "EndTable", - "location": "imgui:740", + "location": "imgui:809", "namespace": "ImGui", "ov_cimguiname": "igEndTable", "ret": "void", @@ -10198,7 +10988,7 @@ "cimguiname": "igEndTooltip", "defaults": {}, "funcname": "EndTooltip", - "location": "imgui:668", + "location": "imgui:733", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -10228,7 +11018,7 @@ "cimguiname": "igGetAllocatorFunctions", "defaults": {}, "funcname": "GetAllocatorFunctions", - "location": "imgui:942", + "location": "imgui:1048", "namespace": "ImGui", "ov_cimguiname": "igGetAllocatorFunctions", "ret": "void", @@ -10245,7 +11035,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": {}, "funcname": "GetBackgroundDrawList", - "location": "imgui:862", + "location": "imgui:936", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -10262,7 +11052,7 @@ "cimguiname": "igGetClipboardText", "defaults": {}, "funcname": "GetClipboardText", - "location": "imgui:921", + "location": "imgui:1020", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -10290,7 +11080,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui:426", + "location": "imgui:464", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Col", "ret": "ImU32", @@ -10310,7 +11100,7 @@ "cimguiname": "igGetColorU32", "defaults": {}, "funcname": "GetColorU32", - "location": "imgui:427", + "location": "imgui:465", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_Vec4", "ret": "ImU32", @@ -10318,23 +11108,29 @@ "stname": "" }, { - "args": "(ImU32 col)", + "args": "(ImU32 col,float alpha_mul)", "argsT": [ { "name": "col", "type": "ImU32" + }, + { + "name": "alpha_mul", + "type": "float" } ], - "argsoriginal": "(ImU32 col)", - "call_args": "(col)", + "argsoriginal": "(ImU32 col,float alpha_mul=1.0f)", + "call_args": "(col,alpha_mul)", "cimguiname": "igGetColorU32", - "defaults": {}, + "defaults": { + "alpha_mul": "1.0f" + }, "funcname": "GetColorU32", - "location": "imgui:428", + "location": "imgui:466", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32_U32", "ret": "ImU32", - "signature": "(ImU32)", + "signature": "(ImU32,float)", "stname": "" } ], @@ -10347,7 +11143,7 @@ "cimguiname": "igGetColumnIndex", "defaults": {}, "funcname": "GetColumnIndex", - "location": "imgui:777", + "location": "imgui:848", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -10371,7 +11167,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui:780", + "location": "imgui:851", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -10395,7 +11191,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui:778", + "location": "imgui:849", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -10412,7 +11208,7 @@ "cimguiname": "igGetColumnsCount", "defaults": {}, "funcname": "GetColumnsCount", - "location": "imgui:782", + "location": "imgui:853", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -10434,7 +11230,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": {}, "funcname": "GetContentRegionAvail", - "location": "imgui:380", + "location": "imgui:481", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -10443,29 +11239,6 @@ "stname": "" } ], - "igGetContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetContentRegionMax", - "defaults": {}, - "funcname": "GetContentRegionMax", - "location": "imgui:381", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetCurrentContext": [ { "args": "()", @@ -10475,7 +11248,7 @@ "cimguiname": "igGetCurrentContext", "defaults": {}, "funcname": "GetCurrentContext", - "location": "imgui:290", + "location": "imgui:325", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -10497,7 +11270,7 @@ "cimguiname": "igGetCursorPos", "defaults": {}, "funcname": "GetCursorPos", - "location": "imgui:447", + "location": "imgui:482", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -10515,7 +11288,7 @@ "cimguiname": "igGetCursorPosX", "defaults": {}, "funcname": "GetCursorPosX", - "location": "imgui:448", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -10532,7 +11305,7 @@ "cimguiname": "igGetCursorPosY", "defaults": {}, "funcname": "GetCursorPosY", - "location": "imgui:449", + "location": "imgui:484", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -10554,7 +11327,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": {}, "funcname": "GetCursorScreenPos", - "location": "imgui:454", + "location": "imgui:479", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -10577,7 +11350,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": {}, "funcname": "GetCursorStartPos", - "location": "imgui:453", + "location": "imgui:488", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -10595,7 +11368,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": {}, "funcname": "GetDragDropPayload", - "location": "imgui:814", + "location": "imgui:885", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -10612,7 +11385,7 @@ "cimguiname": "igGetDrawData", "defaults": {}, "funcname": "GetDrawData", - "location": "imgui:299", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -10629,7 +11402,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": {}, "funcname": "GetDrawListSharedData", - "location": "imgui:870", + "location": "imgui:944", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -10646,7 +11419,7 @@ "cimguiname": "igGetFont", "defaults": {}, "funcname": "GetFont", - "location": "imgui:423", + "location": "imgui:461", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -10663,7 +11436,7 @@ "cimguiname": "igGetFontSize", "defaults": {}, "funcname": "GetFontSize", - "location": "imgui:424", + "location": "imgui:462", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -10685,7 +11458,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": {}, "funcname": "GetFontTexUvWhitePixel", - "location": "imgui:425", + "location": "imgui:463", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -10703,7 +11476,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": {}, "funcname": "GetForegroundDrawList", - "location": "imgui:863", + "location": "imgui:937", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawList", "ret": "ImDrawList*", @@ -10720,7 +11493,7 @@ "cimguiname": "igGetFrameCount", "defaults": {}, "funcname": "GetFrameCount", - "location": "imgui:869", + "location": "imgui:943", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -10737,7 +11510,7 @@ "cimguiname": "igGetFrameHeight", "defaults": {}, "funcname": "GetFrameHeight", - "location": "imgui:459", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -10754,7 +11527,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": {}, "funcname": "GetFrameHeightWithSpacing", - "location": "imgui:460", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -10776,7 +11549,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:478", + "location": "imgui:522", "namespace": "ImGui", "ov_cimguiname": "igGetID_Str", "ret": "ImGuiID", @@ -10800,7 +11573,7 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:479", + "location": "imgui:523", "namespace": "ImGui", "ov_cimguiname": "igGetID_StrStr", "ret": "ImGuiID", @@ -10820,12 +11593,32 @@ "cimguiname": "igGetID", "defaults": {}, "funcname": "GetID", - "location": "imgui:480", + "location": "imgui:524", "namespace": "ImGui", "ov_cimguiname": "igGetID_Ptr", "ret": "ImGuiID", "signature": "(const void*)", "stname": "" + }, + { + "args": "(int int_id)", + "argsT": [ + { + "name": "int_id", + "type": "int" + } + ], + "argsoriginal": "(int int_id)", + "call_args": "(int_id)", + "cimguiname": "igGetID", + "defaults": {}, + "funcname": "GetID", + "location": "imgui:525", + "namespace": "ImGui", + "ov_cimguiname": "igGetID_Int", + "ret": "ImGuiID", + "signature": "(int)", + "stname": "" } ], "igGetIO": [ @@ -10837,7 +11630,7 @@ "cimguiname": "igGetIO", "defaults": {}, "funcname": "GetIO", - "location": "imgui:294", + "location": "imgui:329", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -10855,7 +11648,7 @@ "cimguiname": "igGetItemID", "defaults": {}, "funcname": "GetItemID", - "location": "imgui:849", + "location": "imgui:924", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -10877,7 +11670,7 @@ "cimguiname": "igGetItemRectMax", "defaults": {}, "funcname": "GetItemRectMax", - "location": "imgui:851", + "location": "imgui:926", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -10900,7 +11693,7 @@ "cimguiname": "igGetItemRectMin", "defaults": {}, "funcname": "GetItemRectMin", - "location": "imgui:850", + "location": "imgui:925", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -10923,7 +11716,7 @@ "cimguiname": "igGetItemRectSize", "defaults": {}, "funcname": "GetItemRectSize", - "location": "imgui:852", + "location": "imgui:927", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -10932,28 +11725,6 @@ "stname": "" } ], - "igGetKeyIndex": [ - { - "args": "(ImGuiKey key)", - "argsT": [ - { - "name": "key", - "type": "ImGuiKey" - } - ], - "argsoriginal": "(ImGuiKey key)", - "call_args": "(key)", - "cimguiname": "igGetKeyIndex", - "defaults": {}, - "funcname": "GetKeyIndex", - "location": "imgui:2957", - "namespace": "ImGui", - "ov_cimguiname": "igGetKeyIndex", - "ret": "ImGuiKey", - "signature": "(ImGuiKey)", - "stname": "" - } - ], "igGetKeyName": [ { "args": "(ImGuiKey key)", @@ -10968,7 +11739,7 @@ "cimguiname": "igGetKeyName", "defaults": {}, "funcname": "GetKeyName", - "location": "imgui:895", + "location": "imgui:968", "namespace": "ImGui", "ov_cimguiname": "igGetKeyName", "ret": "const char*", @@ -10998,7 +11769,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": {}, "funcname": "GetKeyPressedAmount", - "location": "imgui:894", + "location": "imgui:967", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -11015,7 +11786,7 @@ "cimguiname": "igGetMainViewport", "defaults": {}, "funcname": "GetMainViewport", - "location": "imgui:859", + "location": "imgui:933", "namespace": "ImGui", "ov_cimguiname": "igGetMainViewport", "ret": "ImGuiViewport*", @@ -11037,7 +11808,7 @@ "cimguiname": "igGetMouseClickedCount", "defaults": {}, "funcname": "GetMouseClickedCount", - "location": "imgui:906", + "location": "imgui:1005", "namespace": "ImGui", "ov_cimguiname": "igGetMouseClickedCount", "ret": "int", @@ -11054,7 +11825,7 @@ "cimguiname": "igGetMouseCursor", "defaults": {}, "funcname": "GetMouseCursor", - "location": "imgui:915", + "location": "imgui:1014", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -11087,7 +11858,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui:913", + "location": "imgui:1012", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -11110,7 +11881,7 @@ "cimguiname": "igGetMousePos", "defaults": {}, "funcname": "GetMousePos", - "location": "imgui:910", + "location": "imgui:1009", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -11133,7 +11904,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": {}, "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui:911", + "location": "imgui:1010", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -11142,6 +11913,24 @@ "stname": "" } ], + "igGetPlatformIO": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igGetPlatformIO", + "defaults": {}, + "funcname": "GetPlatformIO", + "location": "imgui:330", + "namespace": "ImGui", + "ov_cimguiname": "igGetPlatformIO", + "ret": "ImGuiPlatformIO*", + "retref": "&", + "signature": "()", + "stname": "" + } + ], "igGetScrollMaxX": [ { "args": "()", @@ -11151,7 +11940,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": {}, "funcname": "GetScrollMaxX", - "location": "imgui:392", + "location": "imgui:430", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -11168,7 +11957,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": {}, "funcname": "GetScrollMaxY", - "location": "imgui:393", + "location": "imgui:431", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -11185,7 +11974,7 @@ "cimguiname": "igGetScrollX", "defaults": {}, "funcname": "GetScrollX", - "location": "imgui:388", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -11202,7 +11991,7 @@ "cimguiname": "igGetScrollY", "defaults": {}, "funcname": "GetScrollY", - "location": "imgui:389", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -11219,7 +12008,7 @@ "cimguiname": "igGetStateStorage", "defaults": {}, "funcname": "GetStateStorage", - "location": "imgui:873", + "location": "imgui:947", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -11236,7 +12025,7 @@ "cimguiname": "igGetStyle", "defaults": {}, "funcname": "GetStyle", - "location": "imgui:295", + "location": "imgui:331", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -11259,7 +12048,7 @@ "cimguiname": "igGetStyleColorName", "defaults": {}, "funcname": "GetStyleColorName", - "location": "imgui:871", + "location": "imgui:945", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -11281,7 +12070,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": {}, "funcname": "GetStyleColorVec4", - "location": "imgui:429", + "location": "imgui:467", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -11299,7 +12088,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": {}, "funcname": "GetTextLineHeight", - "location": "imgui:457", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -11316,7 +12105,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": {}, "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui:458", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -11333,7 +12122,7 @@ "cimguiname": "igGetTime", "defaults": {}, "funcname": "GetTime", - "location": "imgui:868", + "location": "imgui:942", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -11350,7 +12139,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": {}, "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui:615", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -11367,7 +12156,7 @@ "cimguiname": "igGetVersion", "defaults": {}, "funcname": "GetVersion", - "location": "imgui:311", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -11375,52 +12164,6 @@ "stname": "" } ], - "igGetWindowContentRegionMax": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMax", - "defaults": {}, - "funcname": "GetWindowContentRegionMax", - "location": "imgui:383", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMax", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igGetWindowContentRegionMin": [ - { - "args": "(ImVec2 *pOut)", - "argsT": [ - { - "name": "pOut", - "type": "ImVec2*" - } - ], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igGetWindowContentRegionMin", - "defaults": {}, - "funcname": "GetWindowContentRegionMin", - "location": "imgui:382", - "namespace": "ImGui", - "nonUDT": 1, - "ov_cimguiname": "igGetWindowContentRegionMin", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igGetWindowDrawList": [ { "args": "()", @@ -11430,7 +12173,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": {}, "funcname": "GetWindowDrawList", - "location": "imgui:351", + "location": "imgui:397", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -11447,7 +12190,7 @@ "cimguiname": "igGetWindowHeight", "defaults": {}, "funcname": "GetWindowHeight", - "location": "imgui:355", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -11469,7 +12212,7 @@ "cimguiname": "igGetWindowPos", "defaults": {}, "funcname": "GetWindowPos", - "location": "imgui:352", + "location": "imgui:398", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -11492,7 +12235,7 @@ "cimguiname": "igGetWindowSize", "defaults": {}, "funcname": "GetWindowSize", - "location": "imgui:353", + "location": "imgui:399", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -11510,7 +12253,7 @@ "cimguiname": "igGetWindowWidth", "defaults": {}, "funcname": "GetWindowWidth", - "location": "imgui:354", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -11520,14 +12263,14 @@ ], "igImage": [ { - "args": "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", + "args": "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)", "argsT": [ { "name": "user_texture_id", "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -11547,8 +12290,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", - "call_args": "(user_texture_id,size,uv0,uv1,tint_col,border_col)", + "argsoriginal": "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))", + "call_args": "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)", "cimguiname": "igImage", "defaults": { "border_col": "ImVec4(0,0,0,0)", @@ -11557,7 +12300,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui:514", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -11567,7 +12310,7 @@ ], "igImageButton": [ { - "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", + "args": "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)", "argsT": [ { "name": "str_id", @@ -11578,7 +12321,7 @@ "type": "ImTextureID" }, { - "name": "size", + "name": "image_size", "type": "const ImVec2" }, { @@ -11598,8 +12341,8 @@ "type": "const ImVec4" } ], - "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", - "call_args": "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)", + "argsoriginal": "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))", + "call_args": "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)", "cimguiname": "igImageButton", "defaults": { "bg_col": "ImVec4(0,0,0,0)", @@ -11608,7 +12351,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui:515", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -11632,7 +12375,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui:443", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -11679,7 +12422,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui:586", + "location": "imgui:636", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -11726,7 +12469,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui:578", + "location": "imgui:628", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -11763,7 +12506,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui:579", + "location": "imgui:629", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -11800,7 +12543,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui:580", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -11837,7 +12580,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui:581", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -11879,7 +12622,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui:582", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -11911,7 +12654,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui:583", + "location": "imgui:633", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -11943,7 +12686,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui:584", + "location": "imgui:634", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -11975,7 +12718,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui:585", + "location": "imgui:635", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -12026,7 +12769,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui:587", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -12081,7 +12824,7 @@ "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui:588", + "location": "imgui:638", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -12127,7 +12870,7 @@ "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui:575", + "location": "imgui:625", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -12178,7 +12921,7 @@ "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui:576", + "location": "imgui:626", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -12228,7 +12971,7 @@ "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui:577", + "location": "imgui:627", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -12260,7 +13003,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui:502", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -12277,7 +13020,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": {}, "funcname": "IsAnyItemActive", - "location": "imgui:847", + "location": "imgui:922", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -12294,7 +13037,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": {}, "funcname": "IsAnyItemFocused", - "location": "imgui:848", + "location": "imgui:923", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -12311,7 +13054,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": {}, "funcname": "IsAnyItemHovered", - "location": "imgui:846", + "location": "imgui:921", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -12328,7 +13071,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": {}, "funcname": "IsAnyMouseDown", - "location": "imgui:909", + "location": "imgui:1008", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -12345,7 +13088,7 @@ "cimguiname": "igIsItemActivated", "defaults": {}, "funcname": "IsItemActivated", - "location": "imgui:842", + "location": "imgui:917", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -12362,7 +13105,7 @@ "cimguiname": "igIsItemActive", "defaults": {}, "funcname": "IsItemActive", - "location": "imgui:837", + "location": "imgui:912", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -12386,7 +13129,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui:839", + "location": "imgui:914", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -12403,7 +13146,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": {}, "funcname": "IsItemDeactivated", - "location": "imgui:843", + "location": "imgui:918", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -12420,7 +13163,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": {}, "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui:844", + "location": "imgui:919", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -12437,7 +13180,7 @@ "cimguiname": "igIsItemEdited", "defaults": {}, "funcname": "IsItemEdited", - "location": "imgui:841", + "location": "imgui:916", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -12454,7 +13197,7 @@ "cimguiname": "igIsItemFocused", "defaults": {}, "funcname": "IsItemFocused", - "location": "imgui:838", + "location": "imgui:913", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -12478,7 +13221,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui:836", + "location": "imgui:911", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -12495,7 +13238,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": {}, "funcname": "IsItemToggledOpen", - "location": "imgui:845", + "location": "imgui:920", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -12503,6 +13246,23 @@ "stname": "" } ], + "igIsItemToggledSelection": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igIsItemToggledSelection", + "defaults": {}, + "funcname": "IsItemToggledSelection", + "location": "imgui:687", + "namespace": "ImGui", + "ov_cimguiname": "igIsItemToggledSelection", + "ret": "bool", + "signature": "()", + "stname": "" + } + ], "igIsItemVisible": [ { "args": "()", @@ -12512,7 +13272,7 @@ "cimguiname": "igIsItemVisible", "defaults": {}, "funcname": "IsItemVisible", - "location": "imgui:840", + "location": "imgui:915", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -12520,6 +13280,28 @@ "stname": "" } ], + "igIsKeyChordPressed": [ + { + "args": "(ImGuiKeyChord key_chord)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord)", + "call_args": "(key_chord)", + "cimguiname": "igIsKeyChordPressed", + "defaults": {}, + "funcname": "IsKeyChordPressed", + "location": "imgui:966", + "namespace": "ImGui", + "ov_cimguiname": "igIsKeyChordPressed", + "ret": "bool", + "signature": "(ImGuiKeyChord)", + "stname": "" + } + ], "igIsKeyDown": [ { "args": "(ImGuiKey key)", @@ -12534,7 +13316,7 @@ "cimguiname": "igIsKeyDown", "defaults": {}, "funcname": "IsKeyDown", - "location": "imgui:891", + "location": "imgui:963", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -12562,7 +13344,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui:892", + "location": "imgui:964", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -12584,7 +13366,7 @@ "cimguiname": "igIsKeyReleased", "defaults": {}, "funcname": "IsKeyReleased", - "location": "imgui:893", + "location": "imgui:965", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -12612,7 +13394,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui:903", + "location": "imgui:1002", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -12634,7 +13416,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": {}, "funcname": "IsMouseDoubleClicked", - "location": "imgui:905", + "location": "imgui:1004", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -12656,7 +13438,7 @@ "cimguiname": "igIsMouseDown", "defaults": {}, "funcname": "IsMouseDown", - "location": "imgui:902", + "location": "imgui:1001", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -12684,7 +13466,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui:912", + "location": "imgui:1011", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -12716,7 +13498,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui:907", + "location": "imgui:1006", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -12740,7 +13522,7 @@ "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui:908", + "location": "imgui:1007", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -12762,7 +13544,7 @@ "cimguiname": "igIsMouseReleased", "defaults": {}, "funcname": "IsMouseReleased", - "location": "imgui:904", + "location": "imgui:1003", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -12790,7 +13572,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui:714", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpen", "ret": "bool", @@ -12812,7 +13594,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:866", + "location": "imgui:940", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Nil", "ret": "bool", @@ -12836,7 +13618,7 @@ "cimguiname": "igIsRectVisible", "defaults": {}, "funcname": "IsRectVisible", - "location": "imgui:867", + "location": "imgui:941", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisible_Vec2", "ret": "bool", @@ -12853,7 +13635,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": {}, "funcname": "IsWindowAppearing", - "location": "imgui:347", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -12870,7 +13652,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": {}, "funcname": "IsWindowCollapsed", - "location": "imgui:348", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -12894,7 +13676,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui:349", + "location": "imgui:395", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -12918,7 +13700,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui:350", + "location": "imgui:396", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -12949,7 +13731,7 @@ "defaults": {}, "funcname": "LabelText", "isvararg": "...)", - "location": "imgui:492", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -12979,7 +13761,7 @@ "cimguiname": "igLabelTextV", "defaults": {}, "funcname": "LabelTextV", - "location": "imgui:493", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -13019,7 +13801,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:634", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igListBox_Str_arr", "ret": "bool", @@ -13027,7 +13809,7 @@ "stname": "" }, { - "args": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)", + "args": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)", "argsT": [ { "name": "label", @@ -13038,13 +13820,13 @@ "type": "int*" }, { - "name": "items_getter", - "ret": "bool", - "signature": "(void* data,int idx,const char** out_text)", - "type": "bool(*)(void* data,int idx,const char** out_text)" + "name": "getter", + "ret": "const char*", + "signature": "(void* user_data,int idx)", + "type": "const char*(*)(void* user_data,int idx)" }, { - "name": "data", + "name": "user_data", "type": "void*" }, { @@ -13056,18 +13838,18 @@ "type": "int" } ], - "argsoriginal": "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)", - "call_args": "(label,current_item,items_getter,data,items_count,height_in_items)", + "argsoriginal": "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)", + "call_args": "(label,current_item,getter,user_data,items_count,height_in_items)", "cimguiname": "igListBox", "defaults": { "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui:635", + "location": "imgui:698", "namespace": "ImGui", - "ov_cimguiname": "igListBox_FnBoolPtr", + "ov_cimguiname": "igListBox_FnStrPtr", "ret": "bool", - "signature": "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)", + "signature": "(const char*,int*,const char*(*)(void*,int),void*,int,int)", "stname": "" } ], @@ -13085,7 +13867,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": {}, "funcname": "LoadIniSettingsFromDisk", - "location": "imgui:928", + "location": "imgui:1027", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -13113,7 +13895,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui:929", + "location": "imgui:1028", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -13130,7 +13912,7 @@ "cimguiname": "igLogButtons", "defaults": {}, "funcname": "LogButtons", - "location": "imgui:799", + "location": "imgui:870", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -13147,7 +13929,7 @@ "cimguiname": "igLogFinish", "defaults": {}, "funcname": "LogFinish", - "location": "imgui:798", + "location": "imgui:869", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -13174,7 +13956,7 @@ "defaults": {}, "funcname": "LogText", "isvararg": "...)", - "location": "imgui:800", + "location": "imgui:871", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -13201,7 +13983,7 @@ "cimguiname": "igLogTextV", "defaults": {}, "funcname": "LogTextV", - "location": "imgui:801", + "location": "imgui:872", "namespace": "ImGui", "ov_cimguiname": "igLogTextV", "ret": "void", @@ -13225,7 +14007,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui:797", + "location": "imgui:868", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -13254,7 +14036,7 @@ "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui:796", + "location": "imgui:867", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -13278,7 +14060,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui:795", + "location": "imgui:866", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -13300,7 +14082,7 @@ "cimguiname": "igMemAlloc", "defaults": {}, "funcname": "MemAlloc", - "location": "imgui:943", + "location": "imgui:1049", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -13322,7 +14104,7 @@ "cimguiname": "igMemFree", "defaults": {}, "funcname": "MemFree", - "location": "imgui:944", + "location": "imgui:1050", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -13360,7 +14142,7 @@ "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui:662", + "location": "imgui:725", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_Bool", "ret": "bool", @@ -13394,7 +14176,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui:663", + "location": "imgui:726", "namespace": "ImGui", "ov_cimguiname": "igMenuItem_BoolPtr", "ret": "bool", @@ -13411,7 +14193,7 @@ "cimguiname": "igNewFrame", "defaults": {}, "funcname": "NewFrame", - "location": "imgui:296", + "location": "imgui:332", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -13428,7 +14210,7 @@ "cimguiname": "igNewLine", "defaults": {}, "funcname": "NewLine", - "location": "imgui:440", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -13445,7 +14227,7 @@ "cimguiname": "igNextColumn", "defaults": {}, "funcname": "NextColumn", - "location": "imgui:776", + "location": "imgui:847", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -13473,7 +14255,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:696", + "location": "imgui:767", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_Str", "ret": "void", @@ -13499,7 +14281,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui:697", + "location": "imgui:768", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup_ID", "ret": "void", @@ -13528,7 +14310,7 @@ "str_id": "NULL" }, "funcname": "OpenPopupOnItemClick", - "location": "imgui:698", + "location": "imgui:769", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupOnItemClick", "ret": "void", @@ -13577,7 +14359,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotHistogram", "defaults": { @@ -13589,7 +14371,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:641", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FloatPtr", "ret": "void", @@ -13638,7 +14420,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotHistogram", "defaults": { @@ -13649,7 +14431,7 @@ "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui:642", + "location": "imgui:705", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogram_FnFloatPtr", "ret": "void", @@ -13698,7 +14480,7 @@ "type": "int" } ], - "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", + "argsoriginal": "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))", "call_args": "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)", "cimguiname": "igPlotLines", "defaults": { @@ -13710,7 +14492,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:639", + "location": "imgui:702", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FloatPtr", "ret": "void", @@ -13759,7 +14541,7 @@ "type": "ImVec2" } ], - "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))", + "argsoriginal": "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))", "call_args": "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)", "cimguiname": "igPlotLines", "defaults": { @@ -13770,7 +14552,7 @@ "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui:640", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igPlotLines_FnFloatPtr", "ret": "void", @@ -13778,40 +14560,6 @@ "stname": "" } ], - "igPopAllowKeyboardFocus": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopAllowKeyboardFocus", - "defaults": {}, - "funcname": "PopAllowKeyboardFocus", - "location": "imgui:409", - "namespace": "ImGui", - "ov_cimguiname": "igPopAllowKeyboardFocus", - "ret": "void", - "signature": "()", - "stname": "" - } - ], - "igPopButtonRepeat": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igPopButtonRepeat", - "defaults": {}, - "funcname": "PopButtonRepeat", - "location": "imgui:411", - "namespace": "ImGui", - "ov_cimguiname": "igPopButtonRepeat", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igPopClipRect": [ { "args": "()", @@ -13821,7 +14569,7 @@ "cimguiname": "igPopClipRect", "defaults": {}, "funcname": "PopClipRect", - "location": "imgui:826", + "location": "imgui:898", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -13838,7 +14586,7 @@ "cimguiname": "igPopFont", "defaults": {}, "funcname": "PopFont", - "location": "imgui:401", + "location": "imgui:439", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -13855,7 +14603,7 @@ "cimguiname": "igPopID", "defaults": {}, "funcname": "PopID", - "location": "imgui:477", + "location": "imgui:521", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -13863,6 +14611,23 @@ "stname": "" } ], + "igPopItemFlag": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igPopItemFlag", + "defaults": {}, + "funcname": "PopItemFlag", + "location": "imgui:449", + "namespace": "ImGui", + "ov_cimguiname": "igPopItemFlag", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igPopItemWidth": [ { "args": "()", @@ -13872,7 +14637,7 @@ "cimguiname": "igPopItemWidth", "defaults": {}, "funcname": "PopItemWidth", - "location": "imgui:415", + "location": "imgui:453", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -13896,7 +14661,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui:404", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -13920,7 +14685,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui:407", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -13937,7 +14702,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": {}, "funcname": "PopTextWrapPos", - "location": "imgui:419", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -13962,7 +14727,7 @@ "type": "const char*" } ], - "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))", + "argsoriginal": "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))", "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "defaults": { @@ -13970,7 +14735,7 @@ "size_arg": "ImVec2(-FLT_MIN,0)" }, "funcname": "ProgressBar", - "location": "imgui:509", + "location": "imgui:555", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -13978,50 +14743,6 @@ "stname": "" } ], - "igPushAllowKeyboardFocus": [ - { - "args": "(bool allow_keyboard_focus)", - "argsT": [ - { - "name": "allow_keyboard_focus", - "type": "bool" - } - ], - "argsoriginal": "(bool allow_keyboard_focus)", - "call_args": "(allow_keyboard_focus)", - "cimguiname": "igPushAllowKeyboardFocus", - "defaults": {}, - "funcname": "PushAllowKeyboardFocus", - "location": "imgui:408", - "namespace": "ImGui", - "ov_cimguiname": "igPushAllowKeyboardFocus", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], - "igPushButtonRepeat": [ - { - "args": "(bool repeat)", - "argsT": [ - { - "name": "repeat", - "type": "bool" - } - ], - "argsoriginal": "(bool repeat)", - "call_args": "(repeat)", - "cimguiname": "igPushButtonRepeat", - "defaults": {}, - "funcname": "PushButtonRepeat", - "location": "imgui:410", - "namespace": "ImGui", - "ov_cimguiname": "igPushButtonRepeat", - "ret": "void", - "signature": "(bool)", - "stname": "" - } - ], "igPushClipRect": [ { "args": "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)", @@ -14044,7 +14765,7 @@ "cimguiname": "igPushClipRect", "defaults": {}, "funcname": "PushClipRect", - "location": "imgui:825", + "location": "imgui:897", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -14066,7 +14787,7 @@ "cimguiname": "igPushFont", "defaults": {}, "funcname": "PushFont", - "location": "imgui:400", + "location": "imgui:438", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -14088,7 +14809,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:473", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igPushID_Str", "ret": "void", @@ -14112,7 +14833,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:474", + "location": "imgui:518", "namespace": "ImGui", "ov_cimguiname": "igPushID_StrStr", "ret": "void", @@ -14132,7 +14853,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:475", + "location": "imgui:519", "namespace": "ImGui", "ov_cimguiname": "igPushID_Ptr", "ret": "void", @@ -14152,7 +14873,7 @@ "cimguiname": "igPushID", "defaults": {}, "funcname": "PushID", - "location": "imgui:476", + "location": "imgui:520", "namespace": "ImGui", "ov_cimguiname": "igPushID_Int", "ret": "void", @@ -14160,6 +14881,32 @@ "stname": "" } ], + "igPushItemFlag": [ + { + "args": "(ImGuiItemFlags option,bool enabled)", + "argsT": [ + { + "name": "option", + "type": "ImGuiItemFlags" + }, + { + "name": "enabled", + "type": "bool" + } + ], + "argsoriginal": "(ImGuiItemFlags option,bool enabled)", + "call_args": "(option,enabled)", + "cimguiname": "igPushItemFlag", + "defaults": {}, + "funcname": "PushItemFlag", + "location": "imgui:448", + "namespace": "ImGui", + "ov_cimguiname": "igPushItemFlag", + "ret": "void", + "signature": "(ImGuiItemFlags,bool)", + "stname": "" + } + ], "igPushItemWidth": [ { "args": "(float item_width)", @@ -14174,7 +14921,7 @@ "cimguiname": "igPushItemWidth", "defaults": {}, "funcname": "PushItemWidth", - "location": "imgui:414", + "location": "imgui:452", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -14200,7 +14947,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:402", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_U32", "ret": "void", @@ -14224,7 +14971,7 @@ "cimguiname": "igPushStyleColor", "defaults": {}, "funcname": "PushStyleColor", - "location": "imgui:403", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColor_Vec4", "ret": "void", @@ -14250,7 +14997,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:405", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Float", "ret": "void", @@ -14274,7 +15021,7 @@ "cimguiname": "igPushStyleVar", "defaults": {}, "funcname": "PushStyleVar", - "location": "imgui:406", + "location": "imgui:444", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVar_Vec2", "ret": "void", @@ -14282,6 +15029,58 @@ "stname": "" } ], + "igPushStyleVarX": [ + { + "args": "(ImGuiStyleVar idx,float val_x)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_x", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_x)", + "call_args": "(idx,val_x)", + "cimguiname": "igPushStyleVarX", + "defaults": {}, + "funcname": "PushStyleVarX", + "location": "imgui:445", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarX", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], + "igPushStyleVarY": [ + { + "args": "(ImGuiStyleVar idx,float val_y)", + "argsT": [ + { + "name": "idx", + "type": "ImGuiStyleVar" + }, + { + "name": "val_y", + "type": "float" + } + ], + "argsoriginal": "(ImGuiStyleVar idx,float val_y)", + "call_args": "(idx,val_y)", + "cimguiname": "igPushStyleVarY", + "defaults": {}, + "funcname": "PushStyleVarY", + "location": "imgui:446", + "namespace": "ImGui", + "ov_cimguiname": "igPushStyleVarY", + "ret": "void", + "signature": "(ImGuiStyleVar,float)", + "stname": "" + } + ], "igPushTextWrapPos": [ { "args": "(float wrap_local_pos_x)", @@ -14298,7 +15097,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui:418", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -14324,7 +15123,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:507", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_Bool", "ret": "bool", @@ -14352,7 +15151,7 @@ "cimguiname": "igRadioButton", "defaults": {}, "funcname": "RadioButton", - "location": "imgui:508", + "location": "imgui:554", "namespace": "ImGui", "ov_cimguiname": "igRadioButton_IntPtr", "ret": "bool", @@ -14369,7 +15168,7 @@ "cimguiname": "igRender", "defaults": {}, "funcname": "Render", - "location": "imgui:298", + "location": "imgui:334", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -14393,7 +15192,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui:914", + "location": "imgui:1013", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -14422,7 +15221,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui:439", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -14444,7 +15243,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": {}, "funcname": "SaveIniSettingsToDisk", - "location": "imgui:930", + "location": "imgui:1029", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -14468,7 +15267,7 @@ "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui:931", + "location": "imgui:1030", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -14506,7 +15305,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:623", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igSelectable_Bool", "ret": "bool", @@ -14541,7 +15340,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui:624", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igSelectable_BoolPtr", "ret": "bool", @@ -14558,7 +15357,7 @@ "cimguiname": "igSeparator", "defaults": {}, "funcname": "Separator", - "location": "imgui:438", + "location": "imgui:491", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -14566,6 +15365,28 @@ "stname": "" } ], + "igSeparatorText": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igSeparatorText", + "defaults": {}, + "funcname": "SeparatorText", + "location": "imgui:541", + "namespace": "ImGui", + "ov_cimguiname": "igSeparatorText", + "ret": "void", + "signature": "(const char*)", + "stname": "" + } + ], "igSetAllocatorFunctions": [ { "args": "(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data)", @@ -14590,7 +15411,7 @@ "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui:941", + "location": "imgui:1047", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -14612,7 +15433,7 @@ "cimguiname": "igSetClipboardText", "defaults": {}, "funcname": "SetClipboardText", - "location": "imgui:922", + "location": "imgui:1021", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -14634,7 +15455,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": {}, "funcname": "SetColorEditOptions", - "location": "imgui:598", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -14660,7 +15481,7 @@ "cimguiname": "igSetColumnOffset", "defaults": {}, "funcname": "SetColumnOffset", - "location": "imgui:781", + "location": "imgui:852", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -14686,7 +15507,7 @@ "cimguiname": "igSetColumnWidth", "defaults": {}, "funcname": "SetColumnWidth", - "location": "imgui:779", + "location": "imgui:850", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -14708,7 +15529,7 @@ "cimguiname": "igSetCurrentContext", "defaults": {}, "funcname": "SetCurrentContext", - "location": "imgui:291", + "location": "imgui:326", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -14730,7 +15551,7 @@ "cimguiname": "igSetCursorPos", "defaults": {}, "funcname": "SetCursorPos", - "location": "imgui:450", + "location": "imgui:485", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -14752,7 +15573,7 @@ "cimguiname": "igSetCursorPosX", "defaults": {}, "funcname": "SetCursorPosX", - "location": "imgui:451", + "location": "imgui:486", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -14774,7 +15595,7 @@ "cimguiname": "igSetCursorPosY", "defaults": {}, "funcname": "SetCursorPosY", - "location": "imgui:452", + "location": "imgui:487", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -14796,7 +15617,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": {}, "funcname": "SetCursorScreenPos", - "location": "imgui:455", + "location": "imgui:480", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -14832,7 +15653,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui:809", + "location": "imgui:880", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -14840,23 +15661,6 @@ "stname": "" } ], - "igSetItemAllowOverlap": [ - { - "args": "()", - "argsT": [], - "argsoriginal": "()", - "call_args": "()", - "cimguiname": "igSetItemAllowOverlap", - "defaults": {}, - "funcname": "SetItemAllowOverlap", - "location": "imgui:853", - "namespace": "ImGui", - "ov_cimguiname": "igSetItemAllowOverlap", - "ret": "void", - "signature": "()", - "stname": "" - } - ], "igSetItemDefaultFocus": [ { "args": "()", @@ -14866,7 +15670,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": {}, "funcname": "SetItemDefaultFocus", - "location": "imgui:830", + "location": "imgui:902", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -14874,6 +15678,81 @@ "stname": "" } ], + "igSetItemKeyOwner": [ + { + "args": "(ImGuiKey key)", + "argsT": [ + { + "name": "key", + "type": "ImGuiKey" + } + ], + "argsoriginal": "(ImGuiKey key)", + "call_args": "(key)", + "cimguiname": "igSetItemKeyOwner", + "defaults": {}, + "funcname": "SetItemKeyOwner", + "location": "imgui:995", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemKeyOwner", + "ret": "void", + "signature": "(ImGuiKey)", + "stname": "" + } + ], + "igSetItemTooltip": [ + { + "args": "(const char* fmt,...)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "...", + "type": "..." + } + ], + "argsoriginal": "(const char* fmt,...)", + "call_args": "(fmt,...)", + "cimguiname": "igSetItemTooltip", + "defaults": {}, + "funcname": "SetItemTooltip", + "isvararg": "...)", + "location": "imgui:742", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltip", + "ret": "void", + "signature": "(const char*,...)", + "stname": "" + } + ], + "igSetItemTooltipV": [ + { + "args": "(const char* fmt,va_list args)", + "argsT": [ + { + "name": "fmt", + "type": "const char*" + }, + { + "name": "args", + "type": "va_list" + } + ], + "argsoriginal": "(const char* fmt,va_list args)", + "call_args": "(fmt,args)", + "cimguiname": "igSetItemTooltipV", + "defaults": {}, + "funcname": "SetItemTooltipV", + "location": "imgui:743", + "namespace": "ImGui", + "ov_cimguiname": "igSetItemTooltipV", + "ret": "void", + "signature": "(const char*,va_list)", + "stname": "" + } + ], "igSetKeyboardFocusHere": [ { "args": "(int offset)", @@ -14890,7 +15769,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui:831", + "location": "imgui:903", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -14912,7 +15791,7 @@ "cimguiname": "igSetMouseCursor", "defaults": {}, "funcname": "SetMouseCursor", - "location": "imgui:916", + "location": "imgui:1015", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -14934,7 +15813,7 @@ "cimguiname": "igSetNextFrameWantCaptureKeyboard", "defaults": {}, "funcname": "SetNextFrameWantCaptureKeyboard", - "location": "imgui:896", + "location": "imgui:969", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureKeyboard", "ret": "void", @@ -14956,7 +15835,7 @@ "cimguiname": "igSetNextFrameWantCaptureMouse", "defaults": {}, "funcname": "SetNextFrameWantCaptureMouse", - "location": "imgui:917", + "location": "imgui:1016", "namespace": "ImGui", "ov_cimguiname": "igSetNextFrameWantCaptureMouse", "ret": "void", @@ -14964,6 +15843,23 @@ "stname": "" } ], + "igSetNextItemAllowOverlap": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igSetNextItemAllowOverlap", + "defaults": {}, + "funcname": "SetNextItemAllowOverlap", + "location": "imgui:906", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemAllowOverlap", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igSetNextItemOpen": [ { "args": "(bool is_open,ImGuiCond cond)", @@ -14984,7 +15880,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui:618", + "location": "imgui:668", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -14992,6 +15888,78 @@ "stname": "" } ], + "igSetNextItemSelectionUserData": [ + { + "args": "(ImGuiSelectionUserData selection_user_data)", + "argsT": [ + { + "name": "selection_user_data", + "type": "ImGuiSelectionUserData" + } + ], + "argsoriginal": "(ImGuiSelectionUserData selection_user_data)", + "call_args": "(selection_user_data)", + "cimguiname": "igSetNextItemSelectionUserData", + "defaults": {}, + "funcname": "SetNextItemSelectionUserData", + "location": "imgui:686", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemSelectionUserData", + "ret": "void", + "signature": "(ImGuiSelectionUserData)", + "stname": "" + } + ], + "igSetNextItemShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", + "cimguiname": "igSetNextItemShortcut", + "defaults": { + "flags": "0" + }, + "funcname": "SetNextItemShortcut", + "location": "imgui:987", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemShortcut", + "ret": "void", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + } + ], + "igSetNextItemStorageID": [ + { + "args": "(ImGuiID storage_id)", + "argsT": [ + { + "name": "storage_id", + "type": "ImGuiID" + } + ], + "argsoriginal": "(ImGuiID storage_id)", + "call_args": "(storage_id)", + "cimguiname": "igSetNextItemStorageID", + "defaults": {}, + "funcname": "SetNextItemStorageID", + "location": "imgui:669", + "namespace": "ImGui", + "ov_cimguiname": "igSetNextItemStorageID", + "ret": "void", + "signature": "(ImGuiID)", + "stname": "" + } + ], "igSetNextItemWidth": [ { "args": "(float item_width)", @@ -15006,7 +15974,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": {}, "funcname": "SetNextItemWidth", - "location": "imgui:416", + "location": "imgui:454", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -15028,7 +15996,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": {}, "funcname": "SetNextWindowBgAlpha", - "location": "imgui:366", + "location": "imgui:412", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -15056,7 +16024,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui:363", + "location": "imgui:409", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -15078,7 +16046,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": {}, "funcname": "SetNextWindowContentSize", - "location": "imgui:362", + "location": "imgui:408", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -15095,7 +16063,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": {}, "funcname": "SetNextWindowFocus", - "location": "imgui:364", + "location": "imgui:410", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -15128,7 +16096,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui:359", + "location": "imgui:405", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -15150,7 +16118,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": {}, "funcname": "SetNextWindowScroll", - "location": "imgui:365", + "location": "imgui:411", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -15178,7 +16146,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui:360", + "location": "imgui:406", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -15215,7 +16183,7 @@ "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui:361", + "location": "imgui:407", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -15243,7 +16211,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui:396", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosX", "ret": "void", @@ -15271,7 +16239,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui:397", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosY", "ret": "void", @@ -15295,7 +16263,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui:394", + "location": "imgui:432", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -15319,7 +16287,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui:395", + "location": "imgui:433", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -15341,7 +16309,7 @@ "cimguiname": "igSetScrollX", "defaults": {}, "funcname": "SetScrollX", - "location": "imgui:390", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igSetScrollX", "ret": "void", @@ -15363,7 +16331,7 @@ "cimguiname": "igSetScrollY", "defaults": {}, "funcname": "SetScrollY", - "location": "imgui:391", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igSetScrollY", "ret": "void", @@ -15385,7 +16353,7 @@ "cimguiname": "igSetStateStorage", "defaults": {}, "funcname": "SetStateStorage", - "location": "imgui:872", + "location": "imgui:946", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -15407,7 +16375,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": {}, "funcname": "SetTabItemClosed", - "location": "imgui:791", + "location": "imgui:862", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -15434,7 +16402,7 @@ "defaults": {}, "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui:669", + "location": "imgui:734", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -15460,7 +16428,7 @@ "cimguiname": "igSetTooltipV", "defaults": {}, "funcname": "SetTooltipV", - "location": "imgui:670", + "location": "imgui:735", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -15488,7 +16456,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:369", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Bool", "ret": "void", @@ -15518,7 +16486,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui:374", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsed_Str", "ret": "void", @@ -15535,7 +16503,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:370", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Nil", "ret": "void", @@ -15555,7 +16523,7 @@ "cimguiname": "igSetWindowFocus", "defaults": {}, "funcname": "SetWindowFocus", - "location": "imgui:375", + "location": "imgui:421", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocus_Str", "ret": "void", @@ -15577,7 +16545,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": {}, "funcname": "SetWindowFontScale", - "location": "imgui:371", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -15605,7 +16573,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:367", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Vec2", "ret": "void", @@ -15635,7 +16603,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui:372", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPos_Str", "ret": "void", @@ -15663,7 +16631,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:368", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Vec2", "ret": "void", @@ -15693,7 +16661,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui:373", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSize_Str", "ret": "void", @@ -15701,6 +16669,34 @@ "stname": "" } ], + "igShortcut": [ + { + "args": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)", + "argsT": [ + { + "name": "key_chord", + "type": "ImGuiKeyChord" + }, + { + "name": "flags", + "type": "ImGuiInputFlags" + } + ], + "argsoriginal": "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)", + "call_args": "(key_chord,flags)", + "cimguiname": "igShortcut", + "defaults": { + "flags": "0" + }, + "funcname": "Shortcut", + "location": "imgui:986", + "namespace": "ImGui", + "ov_cimguiname": "igShortcut", + "ret": "bool", + "signature": "(ImGuiKeyChord,ImGuiInputFlags)", + "stname": "" + } + ], "igShowAboutWindow": [ { "args": "(bool* p_open)", @@ -15717,7 +16713,7 @@ "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui:306", + "location": "imgui:342", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -15741,7 +16737,7 @@ "p_open": "NULL" }, "funcname": "ShowDebugLogWindow", - "location": "imgui:304", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igShowDebugLogWindow", "ret": "void", @@ -15765,7 +16761,7 @@ "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui:302", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -15787,7 +16783,7 @@ "cimguiname": "igShowFontSelector", "defaults": {}, "funcname": "ShowFontSelector", - "location": "imgui:309", + "location": "imgui:345", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -15795,6 +16791,30 @@ "stname": "" } ], + "igShowIDStackToolWindow": [ + { + "args": "(bool* p_open)", + "argsT": [ + { + "name": "p_open", + "type": "bool*" + } + ], + "argsoriginal": "(bool* p_open=((void*)0))", + "call_args": "(p_open)", + "cimguiname": "igShowIDStackToolWindow", + "defaults": { + "p_open": "NULL" + }, + "funcname": "ShowIDStackToolWindow", + "location": "imgui:341", + "namespace": "ImGui", + "ov_cimguiname": "igShowIDStackToolWindow", + "ret": "void", + "signature": "(bool*)", + "stname": "" + } + ], "igShowMetricsWindow": [ { "args": "(bool* p_open)", @@ -15811,7 +16831,7 @@ "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui:303", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -15819,30 +16839,6 @@ "stname": "" } ], - "igShowStackToolWindow": [ - { - "args": "(bool* p_open)", - "argsT": [ - { - "name": "p_open", - "type": "bool*" - } - ], - "argsoriginal": "(bool* p_open=((void*)0))", - "call_args": "(p_open)", - "cimguiname": "igShowStackToolWindow", - "defaults": { - "p_open": "NULL" - }, - "funcname": "ShowStackToolWindow", - "location": "imgui:305", - "namespace": "ImGui", - "ov_cimguiname": "igShowStackToolWindow", - "ret": "void", - "signature": "(bool*)", - "stname": "" - } - ], "igShowStyleEditor": [ { "args": "(ImGuiStyle* ref)", @@ -15859,7 +16855,7 @@ "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui:307", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -15881,7 +16877,7 @@ "cimguiname": "igShowStyleSelector", "defaults": {}, "funcname": "ShowStyleSelector", - "location": "imgui:308", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -15898,7 +16894,7 @@ "cimguiname": "igShowUserGuide", "defaults": {}, "funcname": "ShowUserGuide", - "location": "imgui:310", + "location": "imgui:346", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -15945,7 +16941,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui:561", + "location": "imgui:611", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -15990,7 +16986,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui:557", + "location": "imgui:607", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -16035,7 +17031,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui:558", + "location": "imgui:608", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -16080,7 +17076,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui:559", + "location": "imgui:609", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -16125,7 +17121,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui:560", + "location": "imgui:610", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -16170,7 +17166,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui:562", + "location": "imgui:612", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -16215,7 +17211,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui:563", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -16260,7 +17256,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui:564", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -16305,7 +17301,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui:565", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -16354,7 +17350,7 @@ "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui:566", + "location": "imgui:616", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -16407,7 +17403,7 @@ "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui:567", + "location": "imgui:617", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -16429,7 +17425,7 @@ "cimguiname": "igSmallButton", "defaults": {}, "funcname": "SmallButton", - "location": "imgui:501", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -16446,7 +17442,7 @@ "cimguiname": "igSpacing", "defaults": {}, "funcname": "Spacing", - "location": "imgui:441", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -16470,7 +17466,7 @@ "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui:316", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -16494,7 +17490,7 @@ "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui:314", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -16518,7 +17514,7 @@ "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui:315", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -16546,7 +17542,7 @@ "flags": "0" }, "funcname": "TabItemButton", - "location": "imgui:790", + "location": "imgui:861", "namespace": "ImGui", "ov_cimguiname": "igTabItemButton", "ret": "bool", @@ -16554,6 +17550,23 @@ "stname": "" } ], + "igTableAngledHeadersRow": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableAngledHeadersRow", + "defaults": {}, + "funcname": "TableAngledHeadersRow", + "location": "imgui:826", + "namespace": "ImGui", + "ov_cimguiname": "igTableAngledHeadersRow", + "ret": "void", + "signature": "()", + "stname": "" + } + ], "igTableGetColumnCount": [ { "args": "()", @@ -16563,7 +17576,7 @@ "cimguiname": "igTableGetColumnCount", "defaults": {}, "funcname": "TableGetColumnCount", - "location": "imgui:765", + "location": "imgui:835", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnCount", "ret": "int", @@ -16587,7 +17600,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnFlags", - "location": "imgui:769", + "location": "imgui:839", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnFlags", "ret": "ImGuiTableColumnFlags", @@ -16604,7 +17617,7 @@ "cimguiname": "igTableGetColumnIndex", "defaults": {}, "funcname": "TableGetColumnIndex", - "location": "imgui:766", + "location": "imgui:836", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnIndex", "ret": "int", @@ -16628,7 +17641,7 @@ "column_n": "-1" }, "funcname": "TableGetColumnName", - "location": "imgui:768", + "location": "imgui:838", "namespace": "ImGui", "ov_cimguiname": "igTableGetColumnName", "ret": "const char*", @@ -16636,6 +17649,23 @@ "stname": "" } ], + "igTableGetHoveredColumn": [ + { + "args": "()", + "argsT": [], + "argsoriginal": "()", + "call_args": "()", + "cimguiname": "igTableGetHoveredColumn", + "defaults": {}, + "funcname": "TableGetHoveredColumn", + "location": "imgui:841", + "namespace": "ImGui", + "ov_cimguiname": "igTableGetHoveredColumn", + "ret": "int", + "signature": "()", + "stname": "" + } + ], "igTableGetRowIndex": [ { "args": "()", @@ -16645,7 +17675,7 @@ "cimguiname": "igTableGetRowIndex", "defaults": {}, "funcname": "TableGetRowIndex", - "location": "imgui:767", + "location": "imgui:837", "namespace": "ImGui", "ov_cimguiname": "igTableGetRowIndex", "ret": "int", @@ -16662,7 +17692,7 @@ "cimguiname": "igTableGetSortSpecs", "defaults": {}, "funcname": "TableGetSortSpecs", - "location": "imgui:764", + "location": "imgui:834", "namespace": "ImGui", "ov_cimguiname": "igTableGetSortSpecs", "ret": "ImGuiTableSortSpecs*", @@ -16684,7 +17714,7 @@ "cimguiname": "igTableHeader", "defaults": {}, "funcname": "TableHeader", - "location": "imgui:756", + "location": "imgui:824", "namespace": "ImGui", "ov_cimguiname": "igTableHeader", "ret": "void", @@ -16701,7 +17731,7 @@ "cimguiname": "igTableHeadersRow", "defaults": {}, "funcname": "TableHeadersRow", - "location": "imgui:755", + "location": "imgui:825", "namespace": "ImGui", "ov_cimguiname": "igTableHeadersRow", "ret": "void", @@ -16718,7 +17748,7 @@ "cimguiname": "igTableNextColumn", "defaults": {}, "funcname": "TableNextColumn", - "location": "imgui:742", + "location": "imgui:811", "namespace": "ImGui", "ov_cimguiname": "igTableNextColumn", "ret": "bool", @@ -16747,7 +17777,7 @@ "row_flags": "0" }, "funcname": "TableNextRow", - "location": "imgui:741", + "location": "imgui:810", "namespace": "ImGui", "ov_cimguiname": "igTableNextRow", "ret": "void", @@ -16779,7 +17809,7 @@ "column_n": "-1" }, "funcname": "TableSetBgColor", - "location": "imgui:771", + "location": "imgui:842", "namespace": "ImGui", "ov_cimguiname": "igTableSetBgColor", "ret": "void", @@ -16805,7 +17835,7 @@ "cimguiname": "igTableSetColumnEnabled", "defaults": {}, "funcname": "TableSetColumnEnabled", - "location": "imgui:770", + "location": "imgui:840", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnEnabled", "ret": "void", @@ -16827,7 +17857,7 @@ "cimguiname": "igTableSetColumnIndex", "defaults": {}, "funcname": "TableSetColumnIndex", - "location": "imgui:743", + "location": "imgui:812", "namespace": "ImGui", "ov_cimguiname": "igTableSetColumnIndex", "ret": "bool", @@ -16865,7 +17895,7 @@ "user_id": "0" }, "funcname": "TableSetupColumn", - "location": "imgui:753", + "location": "imgui:822", "namespace": "ImGui", "ov_cimguiname": "igTableSetupColumn", "ret": "void", @@ -16891,7 +17921,7 @@ "cimguiname": "igTableSetupScrollFreeze", "defaults": {}, "funcname": "TableSetupScrollFreeze", - "location": "imgui:754", + "location": "imgui:823", "namespace": "ImGui", "ov_cimguiname": "igTableSetupScrollFreeze", "ret": "void", @@ -16918,7 +17948,7 @@ "defaults": {}, "funcname": "Text", "isvararg": "...)", - "location": "imgui:484", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -16949,7 +17979,7 @@ "defaults": {}, "funcname": "TextColored", "isvararg": "...)", - "location": "imgui:486", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -16979,7 +18009,7 @@ "cimguiname": "igTextColoredV", "defaults": {}, "funcname": "TextColoredV", - "location": "imgui:487", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -17006,7 +18036,7 @@ "defaults": {}, "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui:488", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -17032,7 +18062,7 @@ "cimguiname": "igTextDisabledV", "defaults": {}, "funcname": "TextDisabledV", - "location": "imgui:489", + "location": "imgui:534", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -17040,6 +18070,56 @@ "stname": "" } ], + "igTextLink": [ + { + "args": "(const char* label)", + "argsT": [ + { + "name": "label", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label)", + "call_args": "(label)", + "cimguiname": "igTextLink", + "defaults": {}, + "funcname": "TextLink", + "location": "imgui:557", + "namespace": "ImGui", + "ov_cimguiname": "igTextLink", + "ret": "bool", + "signature": "(const char*)", + "stname": "" + } + ], + "igTextLinkOpenURL": [ + { + "args": "(const char* label,const char* url)", + "argsT": [ + { + "name": "label", + "type": "const char*" + }, + { + "name": "url", + "type": "const char*" + } + ], + "argsoriginal": "(const char* label,const char* url=((void*)0))", + "call_args": "(label,url)", + "cimguiname": "igTextLinkOpenURL", + "defaults": { + "url": "NULL" + }, + "funcname": "TextLinkOpenURL", + "location": "imgui:558", + "namespace": "ImGui", + "ov_cimguiname": "igTextLinkOpenURL", + "ret": "void", + "signature": "(const char*,const char*)", + "stname": "" + } + ], "igTextUnformatted": [ { "args": "(const char* text,const char* text_end)", @@ -17060,7 +18140,7 @@ "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui:483", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -17086,7 +18166,7 @@ "cimguiname": "igTextV", "defaults": {}, "funcname": "TextV", - "location": "imgui:485", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -17113,7 +18193,7 @@ "defaults": {}, "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui:490", + "location": "imgui:535", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -17139,7 +18219,7 @@ "cimguiname": "igTextWrappedV", "defaults": {}, "funcname": "TextWrappedV", - "location": "imgui:491", + "location": "imgui:536", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -17161,7 +18241,7 @@ "cimguiname": "igTreeNode", "defaults": {}, "funcname": "TreeNode", - "location": "imgui:602", + "location": "imgui:652", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Str", "ret": "bool", @@ -17190,7 +18270,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:603", + "location": "imgui:653", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_StrStr", "ret": "bool", @@ -17219,7 +18299,7 @@ "defaults": {}, "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui:604", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igTreeNode_Ptr", "ret": "bool", @@ -17247,7 +18327,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui:607", + "location": "imgui:657", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Str", "ret": "bool", @@ -17280,7 +18360,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:608", + "location": "imgui:658", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_StrStr", "ret": "bool", @@ -17313,7 +18393,7 @@ "defaults": {}, "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui:609", + "location": "imgui:659", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeEx_Ptr", "ret": "bool", @@ -17347,7 +18427,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:610", + "location": "imgui:660", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Str", "ret": "bool", @@ -17379,7 +18459,7 @@ "cimguiname": "igTreeNodeExV", "defaults": {}, "funcname": "TreeNodeExV", - "location": "imgui:611", + "location": "imgui:661", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExV_Ptr", "ret": "bool", @@ -17409,7 +18489,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:605", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Str", "ret": "bool", @@ -17437,7 +18517,7 @@ "cimguiname": "igTreeNodeV", "defaults": {}, "funcname": "TreeNodeV", - "location": "imgui:606", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeV_Ptr", "ret": "bool", @@ -17454,7 +18534,7 @@ "cimguiname": "igTreePop", "defaults": {}, "funcname": "TreePop", - "location": "imgui:614", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -17476,7 +18556,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:612", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Str", "ret": "void", @@ -17496,7 +18576,7 @@ "cimguiname": "igTreePush", "defaults": {}, "funcname": "TreePush", - "location": "imgui:613", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igTreePush_Ptr", "ret": "void", @@ -17520,7 +18600,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui:444", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -17569,7 +18649,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui:568", + "location": "imgui:618", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -17618,7 +18698,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui:569", + "location": "imgui:619", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -17671,7 +18751,7 @@ "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui:570", + "location": "imgui:620", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -17697,7 +18777,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:646", + "location": "imgui:709", "namespace": "ImGui", "ov_cimguiname": "igValue_Bool", "ret": "void", @@ -17721,7 +18801,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:647", + "location": "imgui:710", "namespace": "ImGui", "ov_cimguiname": "igValue_Int", "ret": "void", @@ -17745,7 +18825,7 @@ "cimguiname": "igValue", "defaults": {}, "funcname": "Value", - "location": "imgui:648", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igValue_Uint", "ret": "void", @@ -17775,7 +18855,7 @@ "float_format": "NULL" }, "funcname": "Value", - "location": "imgui:649", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igValue_Float", "ret": "void", diff --git a/imgui-sys/third-party/imgui-master/definitions.lua b/imgui-sys/third-party/imgui-master/definitions.lua index 06772e3..ec401e0 100644 --- a/imgui-sys/third-party/imgui-master/definitions.lua +++ b/imgui-sys/third-party/imgui-master/definitions.lua @@ -25,7 +25,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui:2358" +defs["ImColor_HSV"][1]["location"] = "imgui:2744" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -42,7 +42,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui:2348" +defs["ImColor_ImColor"][1]["location"] = "imgui:2734" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColor_Nil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -68,7 +68,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui:2349" +defs["ImColor_ImColor"][2]["location"] = "imgui:2735" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColor_Float" defs["ImColor_ImColor"][2]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -84,7 +84,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui:2350" +defs["ImColor_ImColor"][3]["location"] = "imgui:2736" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColor_Vec4" defs["ImColor_ImColor"][3]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -110,7 +110,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "255" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui:2351" +defs["ImColor_ImColor"][4]["location"] = "imgui:2737" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColor_Int" defs["ImColor_ImColor"][4]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -126,7 +126,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui:2352" +defs["ImColor_ImColor"][5]["location"] = "imgui:2738" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColor_U32" defs["ImColor_ImColor"][5]["signature"] = "(ImU32)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -160,7 +160,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui:2357" +defs["ImColor_SetHSV"][1]["location"] = "imgui:2743" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -194,7 +194,7 @@ defs["ImDrawCmd_GetTexID"][1]["call_args"] = "()" defs["ImDrawCmd_GetTexID"][1]["cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["defaults"] = {} defs["ImDrawCmd_GetTexID"][1]["funcname"] = "GetTexID" -defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2406" +defs["ImDrawCmd_GetTexID"][1]["location"] = "imgui:2940" defs["ImDrawCmd_GetTexID"][1]["ov_cimguiname"] = "ImDrawCmd_GetTexID" defs["ImDrawCmd_GetTexID"][1]["ret"] = "ImTextureID" defs["ImDrawCmd_GetTexID"][1]["signature"] = "()const" @@ -210,7 +210,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2403" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:2937" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -231,6 +231,27 @@ defs["ImDrawCmd_destroy"][1]["ret"] = "void" defs["ImDrawCmd_destroy"][1]["signature"] = "(ImDrawCmd*)" defs["ImDrawCmd_destroy"][1]["stname"] = "ImDrawCmd" defs["ImDrawCmd_destroy"]["(ImDrawCmd*)"] = defs["ImDrawCmd_destroy"][1] +defs["ImDrawData_AddDrawList"] = {} +defs["ImDrawData_AddDrawList"][1] = {} +defs["ImDrawData_AddDrawList"][1]["args"] = "(ImDrawData* self,ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["argsT"] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["name"] = "self" +defs["ImDrawData_AddDrawList"][1]["argsT"][1]["type"] = "ImDrawData*" +defs["ImDrawData_AddDrawList"][1]["argsT"][2] = {} +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["name"] = "draw_list" +defs["ImDrawData_AddDrawList"][1]["argsT"][2]["type"] = "ImDrawList*" +defs["ImDrawData_AddDrawList"][1]["argsoriginal"] = "(ImDrawList* draw_list)" +defs["ImDrawData_AddDrawList"][1]["call_args"] = "(draw_list)" +defs["ImDrawData_AddDrawList"][1]["cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["defaults"] = {} +defs["ImDrawData_AddDrawList"][1]["funcname"] = "AddDrawList" +defs["ImDrawData_AddDrawList"][1]["location"] = "imgui:3188" +defs["ImDrawData_AddDrawList"][1]["ov_cimguiname"] = "ImDrawData_AddDrawList" +defs["ImDrawData_AddDrawList"][1]["ret"] = "void" +defs["ImDrawData_AddDrawList"][1]["signature"] = "(ImDrawList*)" +defs["ImDrawData_AddDrawList"][1]["stname"] = "ImDrawData" +defs["ImDrawData_AddDrawList"]["(ImDrawList*)"] = defs["ImDrawData_AddDrawList"][1] defs["ImDrawData_Clear"] = {} defs["ImDrawData_Clear"][1] = {} defs["ImDrawData_Clear"][1]["args"] = "(ImDrawData* self)" @@ -243,7 +264,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui:2639" +defs["ImDrawData_Clear"][1]["location"] = "imgui:3187" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -261,7 +282,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2640" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:3189" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -277,7 +298,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2638" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:3186" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -297,7 +318,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2641" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:3190" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -331,7 +352,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2451" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2985" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -349,7 +370,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2452" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2986" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -365,7 +386,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2449" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2983" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -385,7 +406,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2454" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2988" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -409,7 +430,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2455" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2989" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -433,7 +454,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2453" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2987" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -450,7 +471,7 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true -defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2450" +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2984" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" @@ -491,7 +512,7 @@ defs["ImDrawList_AddBezierCubic"][1]["cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["defaults"] = {} defs["ImDrawList_AddBezierCubic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCubic"][1]["funcname"] = "AddBezierCubic" -defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:2554" +defs["ImDrawList_AddBezierCubic"][1]["location"] = "imgui:3088" defs["ImDrawList_AddBezierCubic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCubic" defs["ImDrawList_AddBezierCubic"][1]["ret"] = "void" defs["ImDrawList_AddBezierCubic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -528,7 +549,7 @@ defs["ImDrawList_AddBezierQuadratic"][1]["cimguiname"] = "ImDrawList_AddBezierQu defs["ImDrawList_AddBezierQuadratic"][1]["defaults"] = {} defs["ImDrawList_AddBezierQuadratic"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierQuadratic"][1]["funcname"] = "AddBezierQuadratic" -defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:2555" +defs["ImDrawList_AddBezierQuadratic"][1]["location"] = "imgui:3089" defs["ImDrawList_AddBezierQuadratic"][1]["ov_cimguiname"] = "ImDrawList_AddBezierQuadratic" defs["ImDrawList_AddBezierQuadratic"][1]["ret"] = "void" defs["ImDrawList_AddBezierQuadratic"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -552,7 +573,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2579" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:3123" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -587,7 +608,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2546" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:3080" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -618,12 +639,39 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2547" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:3081" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" defs["ImDrawList_AddCircleFilled"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddCircleFilled"]["(const ImVec2,float,ImU32,int)"] = defs["ImDrawList_AddCircleFilled"][1] +defs["ImDrawList_AddConcavePolyFilled"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["name"] = "points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][2]["type"] = "const ImVec2*" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["name"] = "num_points" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][3]["type"] = "int" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddConcavePolyFilled"][1]["argsoriginal"] = "(const ImVec2* points,int num_points,ImU32 col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["call_args"] = "(points,num_points,col)" +defs["ImDrawList_AddConcavePolyFilled"][1]["cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["defaults"] = {} +defs["ImDrawList_AddConcavePolyFilled"][1]["funcname"] = "AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["location"] = "imgui:3096" +defs["ImDrawList_AddConcavePolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConcavePolyFilled" +defs["ImDrawList_AddConcavePolyFilled"][1]["ret"] = "void" +defs["ImDrawList_AddConcavePolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" +defs["ImDrawList_AddConcavePolyFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddConcavePolyFilled"]["(const ImVec2*,int,ImU32)"] = defs["ImDrawList_AddConcavePolyFilled"][1] defs["ImDrawList_AddConvexPolyFilled"] = {} defs["ImDrawList_AddConvexPolyFilled"][1] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["args"] = "(ImDrawList* self,const ImVec2* points,int num_points,ImU32 col)" @@ -645,7 +693,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2553" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:3095" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -663,12 +711,86 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2580" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:3124" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" defs["ImDrawList_AddDrawCmd"][1]["stname"] = "ImDrawList" defs["ImDrawList_AddDrawCmd"]["()"] = defs["ImDrawList_AddDrawCmd"][1] +defs["ImDrawList_AddEllipse"] = {} +defs["ImDrawList_AddEllipse"][1] = {} +defs["ImDrawList_AddEllipse"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments,float thickness)" +defs["ImDrawList_AddEllipse"][1]["argsT"] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipse"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipse"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipse"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipse"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipse"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipse"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipse"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipse"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipse"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipse"][1]["argsT"][7] = {} +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["name"] = "thickness" +defs["ImDrawList_AddEllipse"][1]["argsT"][7]["type"] = "float" +defs["ImDrawList_AddEllipse"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0,float thickness=1.0f)" +defs["ImDrawList_AddEllipse"][1]["call_args"] = "(center,radius,col,rot,num_segments,thickness)" +defs["ImDrawList_AddEllipse"][1]["cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["defaults"] = {} +defs["ImDrawList_AddEllipse"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipse"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipse"][1]["defaults"]["thickness"] = "1.0f" +defs["ImDrawList_AddEllipse"][1]["funcname"] = "AddEllipse" +defs["ImDrawList_AddEllipse"][1]["location"] = "imgui:3084" +defs["ImDrawList_AddEllipse"][1]["ov_cimguiname"] = "ImDrawList_AddEllipse" +defs["ImDrawList_AddEllipse"][1]["ret"] = "void" +defs["ImDrawList_AddEllipse"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int,float)" +defs["ImDrawList_AddEllipse"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipse"]["(const ImVec2,const ImVec2,ImU32,float,int,float)"] = defs["ImDrawList_AddEllipse"][1] +defs["ImDrawList_AddEllipseFilled"] = {} +defs["ImDrawList_AddEllipseFilled"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,ImU32 col,float rot,int num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["name"] = "col" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][4]["type"] = "ImU32" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["name"] = "rot" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6] = {} +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["name"] = "num_segments" +defs["ImDrawList_AddEllipseFilled"][1]["argsT"][6]["type"] = "int" +defs["ImDrawList_AddEllipseFilled"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,ImU32 col,float rot=0.0f,int num_segments=0)" +defs["ImDrawList_AddEllipseFilled"][1]["call_args"] = "(center,radius,col,rot,num_segments)" +defs["ImDrawList_AddEllipseFilled"][1]["cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"] = {} +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_AddEllipseFilled"][1]["defaults"]["rot"] = "0.0f" +defs["ImDrawList_AddEllipseFilled"][1]["funcname"] = "AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["location"] = "imgui:3085" +defs["ImDrawList_AddEllipseFilled"][1]["ov_cimguiname"] = "ImDrawList_AddEllipseFilled" +defs["ImDrawList_AddEllipseFilled"][1]["ret"] = "void" +defs["ImDrawList_AddEllipseFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,int)" +defs["ImDrawList_AddEllipseFilled"][1]["stname"] = "ImDrawList" +defs["ImDrawList_AddEllipseFilled"]["(const ImVec2,const ImVec2,ImU32,float,int)"] = defs["ImDrawList_AddEllipseFilled"][1] defs["ImDrawList_AddImage"] = {} defs["ImDrawList_AddImage"][1] = {} defs["ImDrawList_AddImage"][1]["args"] = "(ImDrawList* self,ImTextureID user_texture_id,const ImVec2 p_min,const ImVec2 p_max,const ImVec2 uv_min,const ImVec2 uv_max,ImU32 col)" @@ -702,7 +824,7 @@ defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui:2561" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:3102" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -755,7 +877,7 @@ defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2562" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:3103" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -798,7 +920,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2563" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:3104" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -829,7 +951,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui:2538" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:3072" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -863,7 +985,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2548" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:3082" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -893,7 +1015,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2549" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:3083" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -926,7 +1048,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,flags,t defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2552" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:3094" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,ImDrawFlags,float)" @@ -963,7 +1085,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2542" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:3076" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -996,7 +1118,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2543" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:3077" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1035,7 +1157,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui:2539" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:3073" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags,float)" @@ -1070,7 +1192,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["flags"] = "0" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2540" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:3074" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawFlags)" @@ -1106,7 +1228,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2541" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:3075" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1137,7 +1259,7 @@ defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui:2550" +defs["ImDrawList_AddText"][1]["location"] = "imgui:3086" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddText_Vec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1180,7 +1302,7 @@ defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui:2551" +defs["ImDrawList_AddText"][2]["location"] = "imgui:3087" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddText_FontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1215,7 +1337,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2544" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:3078" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1245,7 +1367,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2545" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:3079" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1263,7 +1385,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2590" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:3134" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1284,7 +1406,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2591" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:3135" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1305,7 +1427,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2589" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:3133" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1323,7 +1445,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2581" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:3125" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1344,7 +1466,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2529" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:3063" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1366,7 +1488,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2528" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:3062" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -1386,7 +1508,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2520" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:3054" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -1419,7 +1541,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2572" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:3115" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -1449,7 +1571,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2573" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:3116" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -1480,7 +1602,7 @@ defs["ImDrawList_PathBezierCubicCurveTo"][1]["cimguiname"] = "ImDrawList_PathBez defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCubicCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCubicCurveTo"][1]["funcname"] = "PathBezierCubicCurveTo" -defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:2574" +defs["ImDrawList_PathBezierCubicCurveTo"][1]["location"] = "imgui:3118" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCubicCurveTo" defs["ImDrawList_PathBezierCubicCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCubicCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -1508,7 +1630,7 @@ defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["cimguiname"] = "ImDrawList_Pat defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["funcname"] = "PathBezierQuadraticCurveTo" -defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:2575" +defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["location"] = "imgui:3119" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierQuadraticCurveTo" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierQuadraticCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,int)" @@ -1526,12 +1648,70 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui:2567" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:3109" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" defs["ImDrawList_PathClear"][1]["stname"] = "ImDrawList" defs["ImDrawList_PathClear"]["()"] = defs["ImDrawList_PathClear"][1] +defs["ImDrawList_PathEllipticalArcTo"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["args"] = "(ImDrawList* self,const ImVec2 center,const ImVec2 radius,float rot,float a_min,float a_max,int num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["name"] = "center" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][2]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["name"] = "radius" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][3]["type"] = "const ImVec2" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["name"] = "rot" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][4]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["name"] = "a_min" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][5]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["name"] = "a_max" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][6]["type"] = "float" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["name"] = "num_segments" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsT"][7]["type"] = "int" +defs["ImDrawList_PathEllipticalArcTo"][1]["argsoriginal"] = "(const ImVec2& center,const ImVec2& radius,float rot,float a_min,float a_max,int num_segments=0)" +defs["ImDrawList_PathEllipticalArcTo"][1]["call_args"] = "(center,radius,rot,a_min,a_max,num_segments)" +defs["ImDrawList_PathEllipticalArcTo"][1]["cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"] = {} +defs["ImDrawList_PathEllipticalArcTo"][1]["defaults"]["num_segments"] = "0" +defs["ImDrawList_PathEllipticalArcTo"][1]["funcname"] = "PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["location"] = "imgui:3117" +defs["ImDrawList_PathEllipticalArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathEllipticalArcTo" +defs["ImDrawList_PathEllipticalArcTo"][1]["ret"] = "void" +defs["ImDrawList_PathEllipticalArcTo"][1]["signature"] = "(const ImVec2,const ImVec2,float,float,float,int)" +defs["ImDrawList_PathEllipticalArcTo"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathEllipticalArcTo"]["(const ImVec2,const ImVec2,float,float,float,int)"] = defs["ImDrawList_PathEllipticalArcTo"][1] +defs["ImDrawList_PathFillConcave"] = {} +defs["ImDrawList_PathFillConcave"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["args"] = "(ImDrawList* self,ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["argsT"] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList_PathFillConcave"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2] = {} +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["name"] = "col" +defs["ImDrawList_PathFillConcave"][1]["argsT"][2]["type"] = "ImU32" +defs["ImDrawList_PathFillConcave"][1]["argsoriginal"] = "(ImU32 col)" +defs["ImDrawList_PathFillConcave"][1]["call_args"] = "(col)" +defs["ImDrawList_PathFillConcave"][1]["cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["defaults"] = {} +defs["ImDrawList_PathFillConcave"][1]["funcname"] = "PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["location"] = "imgui:3113" +defs["ImDrawList_PathFillConcave"][1]["ov_cimguiname"] = "ImDrawList_PathFillConcave" +defs["ImDrawList_PathFillConcave"][1]["ret"] = "void" +defs["ImDrawList_PathFillConcave"][1]["signature"] = "(ImU32)" +defs["ImDrawList_PathFillConcave"][1]["stname"] = "ImDrawList" +defs["ImDrawList_PathFillConcave"]["(ImU32)"] = defs["ImDrawList_PathFillConcave"][1] defs["ImDrawList_PathFillConvex"] = {} defs["ImDrawList_PathFillConvex"][1] = {} defs["ImDrawList_PathFillConvex"][1]["args"] = "(ImDrawList* self,ImU32 col)" @@ -1547,7 +1727,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2570" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:3112" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -1568,7 +1748,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2568" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:3110" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -1589,7 +1769,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2569" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:3111" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -1621,7 +1801,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui:2576" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:3120" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawFlags)" @@ -1650,7 +1830,7 @@ defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["flags"] = "0" defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2571" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:3114" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,ImDrawFlags,float)" @@ -1668,7 +1848,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2525" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:3059" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -1686,7 +1866,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2527" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:3061" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -1731,7 +1911,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2600" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:3144" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1758,7 +1938,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2598" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:3142" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1791,7 +1971,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2599" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:3143" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1815,7 +1995,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2596" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:3140" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -1839,7 +2019,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2597" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:3141" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -1866,7 +2046,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2603" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:3147" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1887,7 +2067,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2602" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:3146" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -1914,7 +2094,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2601" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:3145" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -1942,7 +2122,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2523" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:3057" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(const ImVec2,const ImVec2,bool)" @@ -1960,7 +2140,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2524" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:3058" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -1981,7 +2161,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2526" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:3060" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2002,7 +2182,7 @@ defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["call_args"] = "(radius)" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["defaults"] = {} defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["funcname"] = "_CalcCircleAutoSegmentCount" -defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:2618" +defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["location"] = "imgui:3165" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ov_cimguiname"] = "ImDrawList__CalcCircleAutoSegmentCount" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["ret"] = "int" defs["ImDrawList__CalcCircleAutoSegmentCount"][1]["signature"] = "(float)const" @@ -2020,7 +2200,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2612" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:3158" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2038,7 +2218,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2615" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:3161" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2056,7 +2236,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2616" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:3162" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2074,7 +2254,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2617" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:3163" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2107,7 +2287,7 @@ defs["ImDrawList__PathArcToFastEx"][1]["call_args"] = "(center,radius,a_min_samp defs["ImDrawList__PathArcToFastEx"][1]["cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["defaults"] = {} defs["ImDrawList__PathArcToFastEx"][1]["funcname"] = "_PathArcToFastEx" -defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:2619" +defs["ImDrawList__PathArcToFastEx"][1]["location"] = "imgui:3166" defs["ImDrawList__PathArcToFastEx"][1]["ov_cimguiname"] = "ImDrawList__PathArcToFastEx" defs["ImDrawList__PathArcToFastEx"][1]["ret"] = "void" defs["ImDrawList__PathArcToFastEx"][1]["signature"] = "(const ImVec2,float,int,int,int)" @@ -2140,7 +2320,7 @@ defs["ImDrawList__PathArcToN"][1]["call_args"] = "(center,radius,a_min,a_max,num defs["ImDrawList__PathArcToN"][1]["cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["defaults"] = {} defs["ImDrawList__PathArcToN"][1]["funcname"] = "_PathArcToN" -defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:2620" +defs["ImDrawList__PathArcToN"][1]["location"] = "imgui:3167" defs["ImDrawList__PathArcToN"][1]["ov_cimguiname"] = "ImDrawList__PathArcToN" defs["ImDrawList__PathArcToN"][1]["ret"] = "void" defs["ImDrawList__PathArcToN"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -2158,7 +2338,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2613" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:3159" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2176,12 +2356,33 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2611" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:3157" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["stname"] = "ImDrawList" defs["ImDrawList__ResetForNewFrame"]["()"] = defs["ImDrawList__ResetForNewFrame"][1] +defs["ImDrawList__SetTextureID"] = {} +defs["ImDrawList__SetTextureID"][1] = {} +defs["ImDrawList__SetTextureID"][1]["args"] = "(ImDrawList* self,ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["argsT"] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["name"] = "self" +defs["ImDrawList__SetTextureID"][1]["argsT"][1]["type"] = "ImDrawList*" +defs["ImDrawList__SetTextureID"][1]["argsT"][2] = {} +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["name"] = "texture_id" +defs["ImDrawList__SetTextureID"][1]["argsT"][2]["type"] = "ImTextureID" +defs["ImDrawList__SetTextureID"][1]["argsoriginal"] = "(ImTextureID texture_id)" +defs["ImDrawList__SetTextureID"][1]["call_args"] = "(texture_id)" +defs["ImDrawList__SetTextureID"][1]["cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["defaults"] = {} +defs["ImDrawList__SetTextureID"][1]["funcname"] = "_SetTextureID" +defs["ImDrawList__SetTextureID"][1]["location"] = "imgui:3164" +defs["ImDrawList__SetTextureID"][1]["ov_cimguiname"] = "ImDrawList__SetTextureID" +defs["ImDrawList__SetTextureID"][1]["ret"] = "void" +defs["ImDrawList__SetTextureID"][1]["signature"] = "(ImTextureID)" +defs["ImDrawList__SetTextureID"][1]["stname"] = "ImDrawList" +defs["ImDrawList__SetTextureID"]["(ImTextureID)"] = defs["ImDrawList__SetTextureID"][1] defs["ImDrawList__TryMergeDrawCmds"] = {} defs["ImDrawList__TryMergeDrawCmds"][1] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["args"] = "(ImDrawList* self)" @@ -2194,7 +2395,7 @@ defs["ImDrawList__TryMergeDrawCmds"][1]["call_args"] = "()" defs["ImDrawList__TryMergeDrawCmds"][1]["cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["defaults"] = {} defs["ImDrawList__TryMergeDrawCmds"][1]["funcname"] = "_TryMergeDrawCmds" -defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:2614" +defs["ImDrawList__TryMergeDrawCmds"][1]["location"] = "imgui:3160" defs["ImDrawList__TryMergeDrawCmds"][1]["ov_cimguiname"] = "ImDrawList__TryMergeDrawCmds" defs["ImDrawList__TryMergeDrawCmds"][1]["ret"] = "void" defs["ImDrawList__TryMergeDrawCmds"][1]["signature"] = "()" @@ -2211,7 +2412,7 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true -defs["ImDrawList_destroy"][1]["location"] = "imgui:2522" +defs["ImDrawList_destroy"][1]["location"] = "imgui:3056" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" @@ -2228,7 +2429,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2712" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:3262" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2245,7 +2446,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2713" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:3263" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2298,7 +2499,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2797" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:3348" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2322,7 +2523,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2796" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:3347" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2343,7 +2544,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2746" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:3296" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2365,7 +2566,7 @@ defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefaul defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2747" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:3297" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -2397,7 +2598,7 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2748" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:3298" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2429,7 +2630,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2751" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:3301" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2437,7 +2638,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["stname"] = "ImFontA defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"]["(const char*,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1] defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["args"] = "(ImFontAtlas* self,const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][1]["name"] = "self" @@ -2446,7 +2647,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["name"] = "compressed_font_data" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][2]["type"] = "const void*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_size" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["name"] = "compressed_font_data_size" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -2457,14 +2658,14 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][5]["type"] = "con defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const void* compressed_font_data,int compressed_font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2750" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:3300" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2472,7 +2673,7 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["stname"] = "ImFontAtlas" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"]["(const void*,int,float,const ImFontConfig*,const ImWchar*)"] = defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1] defs["ImFontAtlas_AddFontFromMemoryTTF"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["args"] = "(ImFontAtlas* self,void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg,const ImWchar* glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][1]["name"] = "self" @@ -2481,7 +2682,7 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["name"] = "font_data" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][2]["type"] = "void*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_size" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["name"] = "font_data_size" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][3]["type"] = "int" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][4]["name"] = "size_pixels" @@ -2492,14 +2693,14 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][5]["type"] = "const ImFontC defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["name"] = "glyph_ranges" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsT"][6]["type"] = "const ImWchar*" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data,int font_data_size,float size_pixels,const ImFontConfig* font_cfg=((void*)0),const ImWchar* glyph_ranges=((void*)0))" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_data_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2749" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:3299" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2517,7 +2718,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui:2762" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:3312" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -2544,7 +2745,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2801" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:3352" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -2562,7 +2763,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2755" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:3305" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -2580,7 +2781,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2754" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:3304" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -2598,7 +2799,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2752" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:3302" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -2616,7 +2817,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2753" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:3303" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -2637,7 +2838,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2798" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:3349" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -2655,7 +2856,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2779" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:3330" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -2673,7 +2874,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2780" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:3331" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -2691,7 +2892,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2781" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:3332" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -2709,7 +2910,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2775" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:3326" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -2727,7 +2928,7 @@ defs["ImFontAtlas_GetGlyphRangesGreek"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesGreek"][1]["funcname"] = "GetGlyphRangesGreek" -defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:2776" +defs["ImFontAtlas_GetGlyphRangesGreek"][1]["location"] = "imgui:3327" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesGreek" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesGreek"][1]["signature"] = "()" @@ -2745,7 +2946,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2778" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:3329" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -2763,7 +2964,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2777" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:3328" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -2781,7 +2982,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2782" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:3333" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -2799,7 +3000,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2783" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:3334" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -2832,7 +3033,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2802" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:3353" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -2863,7 +3064,7 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2763" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:3313" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2894,7 +3095,7 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDat defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2764" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:3314" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -2910,7 +3111,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2744" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:3294" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -2927,7 +3128,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2765" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:3315" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -2948,7 +3149,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2766" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:3316" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -2965,7 +3166,7 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true -defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2745" +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:3295" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" @@ -2982,7 +3183,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2672" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:3222" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3018,7 +3219,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2697" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:3247" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3039,7 +3240,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2699" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:3249" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3064,7 +3265,7 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBu defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2698" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:3248" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3085,7 +3286,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2700" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:3250" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3103,7 +3304,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2694" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:3244" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3124,7 +3325,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2695" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:3245" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3140,7 +3341,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2693" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:3243" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3160,7 +3361,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2696" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:3246" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3227,7 +3428,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui:2890" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:3443" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(const ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3255,7 +3456,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2891" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:3444" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3273,7 +3474,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2887" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:3440" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3314,7 +3515,7 @@ defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2881" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:3434" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3345,7 +3546,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2882" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:3435" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3363,7 +3564,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2888" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:3441" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3384,7 +3585,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui:2873" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:3426" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -3405,7 +3606,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2874" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:3427" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -3426,7 +3627,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2875" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:3428" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -3444,7 +3645,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui:2877" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:3430" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -3465,7 +3666,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui:2889" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:3442" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -3481,7 +3682,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui:2871" +defs["ImFont_ImFont"][1]["location"] = "imgui:3424" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -3504,7 +3705,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2893" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:3446" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -3522,7 +3723,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui:2876" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:3429" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -3555,7 +3756,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui:2883" +defs["ImFont_RenderChar"][1]["location"] = "imgui:3436" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,ImWchar)const" @@ -3602,7 +3803,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui:2884" +defs["ImFont_RenderText"][1]["location"] = "imgui:3437" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,const ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -3626,7 +3827,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2892" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:3445" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -3643,7 +3844,7 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true -defs["ImFont_destroy"][1]["location"] = "imgui:2872" +defs["ImFont_destroy"][1]["location"] = "imgui:3425" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" @@ -3665,7 +3866,7 @@ defs["ImGuiIO_AddFocusEvent"][1]["call_args"] = "(focused)" defs["ImGuiIO_AddFocusEvent"][1]["cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["defaults"] = {} defs["ImGuiIO_AddFocusEvent"][1]["funcname"] = "AddFocusEvent" -defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:1972" +defs["ImGuiIO_AddFocusEvent"][1]["location"] = "imgui:2317" defs["ImGuiIO_AddFocusEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddFocusEvent" defs["ImGuiIO_AddFocusEvent"][1]["ret"] = "void" defs["ImGuiIO_AddFocusEvent"][1]["signature"] = "(bool)" @@ -3686,7 +3887,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:1973" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:2318" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -3707,7 +3908,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:1974" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:2319" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -3728,7 +3929,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:1975" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:2320" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -3755,7 +3956,7 @@ defs["ImGuiIO_AddKeyAnalogEvent"][1]["call_args"] = "(key,down,v)" defs["ImGuiIO_AddKeyAnalogEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyAnalogEvent"][1]["funcname"] = "AddKeyAnalogEvent" -defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:1968" +defs["ImGuiIO_AddKeyAnalogEvent"][1]["location"] = "imgui:2312" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyAnalogEvent" defs["ImGuiIO_AddKeyAnalogEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyAnalogEvent"][1]["signature"] = "(ImGuiKey,bool,float)" @@ -3779,7 +3980,7 @@ defs["ImGuiIO_AddKeyEvent"][1]["call_args"] = "(key,down)" defs["ImGuiIO_AddKeyEvent"][1]["cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["defaults"] = {} defs["ImGuiIO_AddKeyEvent"][1]["funcname"] = "AddKeyEvent" -defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:1967" +defs["ImGuiIO_AddKeyEvent"][1]["location"] = "imgui:2311" defs["ImGuiIO_AddKeyEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddKeyEvent" defs["ImGuiIO_AddKeyEvent"][1]["ret"] = "void" defs["ImGuiIO_AddKeyEvent"][1]["signature"] = "(ImGuiKey,bool)" @@ -3803,7 +4004,7 @@ defs["ImGuiIO_AddMouseButtonEvent"][1]["call_args"] = "(button,down)" defs["ImGuiIO_AddMouseButtonEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseButtonEvent"][1]["funcname"] = "AddMouseButtonEvent" -defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:1970" +defs["ImGuiIO_AddMouseButtonEvent"][1]["location"] = "imgui:2314" defs["ImGuiIO_AddMouseButtonEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseButtonEvent" defs["ImGuiIO_AddMouseButtonEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseButtonEvent"][1]["signature"] = "(int,bool)" @@ -3827,54 +4028,75 @@ defs["ImGuiIO_AddMousePosEvent"][1]["call_args"] = "(x,y)" defs["ImGuiIO_AddMousePosEvent"][1]["cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMousePosEvent"][1]["funcname"] = "AddMousePosEvent" -defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:1969" +defs["ImGuiIO_AddMousePosEvent"][1]["location"] = "imgui:2313" defs["ImGuiIO_AddMousePosEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMousePosEvent" defs["ImGuiIO_AddMousePosEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMousePosEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMousePosEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMousePosEvent"]["(float,float)"] = defs["ImGuiIO_AddMousePosEvent"][1] +defs["ImGuiIO_AddMouseSourceEvent"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["args"] = "(ImGuiIO* self,ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["name"] = "source" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsT"][2]["type"] = "ImGuiMouseSource" +defs["ImGuiIO_AddMouseSourceEvent"][1]["argsoriginal"] = "(ImGuiMouseSource source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["call_args"] = "(source)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["defaults"] = {} +defs["ImGuiIO_AddMouseSourceEvent"][1]["funcname"] = "AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["location"] = "imgui:2316" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseSourceEvent" +defs["ImGuiIO_AddMouseSourceEvent"][1]["ret"] = "void" +defs["ImGuiIO_AddMouseSourceEvent"][1]["signature"] = "(ImGuiMouseSource)" +defs["ImGuiIO_AddMouseSourceEvent"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_AddMouseSourceEvent"]["(ImGuiMouseSource)"] = defs["ImGuiIO_AddMouseSourceEvent"][1] defs["ImGuiIO_AddMouseWheelEvent"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wh_x,float wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["args"] = "(ImGuiIO* self,float wheel_x,float wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["name"] = "self" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][1]["type"] = "ImGuiIO*" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wh_x" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["name"] = "wheel_x" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][2]["type"] = "float" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3] = {} -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wh_y" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["name"] = "wheel_y" defs["ImGuiIO_AddMouseWheelEvent"][1]["argsT"][3]["type"] = "float" -defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wh_x,float wh_y)" -defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wh_x,wh_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["argsoriginal"] = "(float wheel_x,float wheel_y)" +defs["ImGuiIO_AddMouseWheelEvent"][1]["call_args"] = "(wheel_x,wheel_y)" defs["ImGuiIO_AddMouseWheelEvent"][1]["cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["defaults"] = {} defs["ImGuiIO_AddMouseWheelEvent"][1]["funcname"] = "AddMouseWheelEvent" -defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:1971" +defs["ImGuiIO_AddMouseWheelEvent"][1]["location"] = "imgui:2315" defs["ImGuiIO_AddMouseWheelEvent"][1]["ov_cimguiname"] = "ImGuiIO_AddMouseWheelEvent" defs["ImGuiIO_AddMouseWheelEvent"][1]["ret"] = "void" defs["ImGuiIO_AddMouseWheelEvent"][1]["signature"] = "(float,float)" defs["ImGuiIO_AddMouseWheelEvent"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_AddMouseWheelEvent"]["(float,float)"] = defs["ImGuiIO_AddMouseWheelEvent"][1] -defs["ImGuiIO_ClearInputCharacters"] = {} -defs["ImGuiIO_ClearInputCharacters"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["args"] = "(ImGuiIO* self)" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["name"] = "self" -defs["ImGuiIO_ClearInputCharacters"][1]["argsT"][1]["type"] = "ImGuiIO*" -defs["ImGuiIO_ClearInputCharacters"][1]["argsoriginal"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} -defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:1979" -defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" -defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" -defs["ImGuiIO_ClearInputCharacters"][1]["stname"] = "ImGuiIO" -defs["ImGuiIO_ClearInputCharacters"]["()"] = defs["ImGuiIO_ClearInputCharacters"][1] +defs["ImGuiIO_ClearEventsQueue"] = {} +defs["ImGuiIO_ClearEventsQueue"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearEventsQueue"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearEventsQueue"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["call_args"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["defaults"] = {} +defs["ImGuiIO_ClearEventsQueue"][1]["funcname"] = "ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["location"] = "imgui:2324" +defs["ImGuiIO_ClearEventsQueue"][1]["ov_cimguiname"] = "ImGuiIO_ClearEventsQueue" +defs["ImGuiIO_ClearEventsQueue"][1]["ret"] = "void" +defs["ImGuiIO_ClearEventsQueue"][1]["signature"] = "()" +defs["ImGuiIO_ClearEventsQueue"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearEventsQueue"]["()"] = defs["ImGuiIO_ClearEventsQueue"][1] defs["ImGuiIO_ClearInputKeys"] = {} defs["ImGuiIO_ClearInputKeys"][1] = {} defs["ImGuiIO_ClearInputKeys"][1]["args"] = "(ImGuiIO* self)" @@ -3887,12 +4109,30 @@ defs["ImGuiIO_ClearInputKeys"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["defaults"] = {} defs["ImGuiIO_ClearInputKeys"][1]["funcname"] = "ClearInputKeys" -defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:1980" +defs["ImGuiIO_ClearInputKeys"][1]["location"] = "imgui:2325" defs["ImGuiIO_ClearInputKeys"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputKeys" defs["ImGuiIO_ClearInputKeys"][1]["ret"] = "void" defs["ImGuiIO_ClearInputKeys"][1]["signature"] = "()" defs["ImGuiIO_ClearInputKeys"][1]["stname"] = "ImGuiIO" defs["ImGuiIO_ClearInputKeys"]["()"] = defs["ImGuiIO_ClearInputKeys"][1] +defs["ImGuiIO_ClearInputMouse"] = {} +defs["ImGuiIO_ClearInputMouse"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["args"] = "(ImGuiIO* self)" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1] = {} +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["name"] = "self" +defs["ImGuiIO_ClearInputMouse"][1]["argsT"][1]["type"] = "ImGuiIO*" +defs["ImGuiIO_ClearInputMouse"][1]["argsoriginal"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["call_args"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["defaults"] = {} +defs["ImGuiIO_ClearInputMouse"][1]["funcname"] = "ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["location"] = "imgui:2326" +defs["ImGuiIO_ClearInputMouse"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputMouse" +defs["ImGuiIO_ClearInputMouse"][1]["ret"] = "void" +defs["ImGuiIO_ClearInputMouse"][1]["signature"] = "()" +defs["ImGuiIO_ClearInputMouse"][1]["stname"] = "ImGuiIO" +defs["ImGuiIO_ClearInputMouse"]["()"] = defs["ImGuiIO_ClearInputMouse"][1] defs["ImGuiIO_ImGuiIO"] = {} defs["ImGuiIO_ImGuiIO"][1] = {} defs["ImGuiIO_ImGuiIO"][1]["args"] = "()" @@ -3903,7 +4143,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2053" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:2415" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -3923,7 +4163,7 @@ defs["ImGuiIO_SetAppAcceptingEvents"][1]["call_args"] = "(accepting_events)" defs["ImGuiIO_SetAppAcceptingEvents"][1]["cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["defaults"] = {} defs["ImGuiIO_SetAppAcceptingEvents"][1]["funcname"] = "SetAppAcceptingEvents" -defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:1978" +defs["ImGuiIO_SetAppAcceptingEvents"][1]["location"] = "imgui:2323" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ov_cimguiname"] = "ImGuiIO_SetAppAcceptingEvents" defs["ImGuiIO_SetAppAcceptingEvents"][1]["ret"] = "void" defs["ImGuiIO_SetAppAcceptingEvents"][1]["signature"] = "(bool)" @@ -3954,7 +4194,7 @@ defs["ImGuiIO_SetKeyEventNativeData"][1]["cimguiname"] = "ImGuiIO_SetKeyEventNat defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"] = {} defs["ImGuiIO_SetKeyEventNativeData"][1]["defaults"]["native_legacy_index"] = "-1" defs["ImGuiIO_SetKeyEventNativeData"][1]["funcname"] = "SetKeyEventNativeData" -defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:1977" +defs["ImGuiIO_SetKeyEventNativeData"][1]["location"] = "imgui:2322" defs["ImGuiIO_SetKeyEventNativeData"][1]["ov_cimguiname"] = "ImGuiIO_SetKeyEventNativeData" defs["ImGuiIO_SetKeyEventNativeData"][1]["ret"] = "void" defs["ImGuiIO_SetKeyEventNativeData"][1]["signature"] = "(ImGuiKey,int,int,int)" @@ -3988,7 +4228,7 @@ defs["ImGuiInputTextCallbackData_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2094" +defs["ImGuiInputTextCallbackData_ClearSelection"][1]["location"] = "imgui:2459" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ClearSelection" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_ClearSelection"][1]["signature"] = "()" @@ -4012,7 +4252,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2091" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:2456" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -4030,7 +4270,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2095" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:2460" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -4046,7 +4286,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2090" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:2455" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -4073,7 +4313,7 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTex defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2092" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:2457" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -4091,7 +4331,7 @@ defs["ImGuiInputTextCallbackData_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_SelectAll"][1]["cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2093" +defs["ImGuiInputTextCallbackData_SelectAll"][1]["location"] = "imgui:2458" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_SelectAll" defs["ImGuiInputTextCallbackData_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_SelectAll"][1]["signature"] = "()" @@ -4132,7 +4372,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2306" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:2653" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -4150,36 +4390,12 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui:2307" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:2654" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" defs["ImGuiListClipper_End"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_End"]["()"] = defs["ImGuiListClipper_End"][1] -defs["ImGuiListClipper_ForceDisplayRangeByIndices"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["args"] = "(ImGuiListClipper* self,int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["name"] = "self" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][1]["type"] = "ImGuiListClipper*" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["name"] = "item_min" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][2]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["name"] = "item_max" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsT"][3]["type"] = "int" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["argsoriginal"] = "(int item_min,int item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["call_args"] = "(item_min,item_max)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["defaults"] = {} -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["funcname"] = "ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["location"] = "imgui:2311" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ov_cimguiname"] = "ImGuiListClipper_ForceDisplayRangeByIndices" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["ret"] = "void" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["signature"] = "(int,int)" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1]["stname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ForceDisplayRangeByIndices"]["(int,int)"] = defs["ImGuiListClipper_ForceDisplayRangeByIndices"][1] defs["ImGuiListClipper_ImGuiListClipper"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["args"] = "()" @@ -4190,11 +4406,77 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["cimguiname"] = "ImGuiListClipper_I defs["ImGuiListClipper_ImGuiListClipper"][1]["constructor"] = true defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2304" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:2651" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "()" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"]["()"] = defs["ImGuiListClipper_ImGuiListClipper"][1] +defs["ImGuiListClipper_IncludeItemByIndex"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemByIndex"][1]["funcname"] = "IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["location"] = "imgui:2659" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemByIndex" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["signature"] = "(int)" +defs["ImGuiListClipper_IncludeItemByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemByIndex"]["(int)"] = defs["ImGuiListClipper_IncludeItemByIndex"][1] +defs["ImGuiListClipper_IncludeItemsByIndex"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["args"] = "(ImGuiListClipper* self,int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["name"] = "item_begin" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["name"] = "item_end" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsT"][3]["type"] = "int" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["argsoriginal"] = "(int item_begin,int item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["call_args"] = "(item_begin,item_end)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["defaults"] = {} +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["funcname"] = "IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["location"] = "imgui:2660" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ov_cimguiname"] = "ImGuiListClipper_IncludeItemsByIndex" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["ret"] = "void" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["signature"] = "(int,int)" +defs["ImGuiListClipper_IncludeItemsByIndex"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_IncludeItemsByIndex"]["(int,int)"] = defs["ImGuiListClipper_IncludeItemsByIndex"][1] +defs["ImGuiListClipper_SeekCursorForItem"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["args"] = "(ImGuiListClipper* self,int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][1]["type"] = "ImGuiListClipper*" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["name"] = "item_index" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsT"][2]["type"] = "int" +defs["ImGuiListClipper_SeekCursorForItem"][1]["argsoriginal"] = "(int item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["call_args"] = "(item_index)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["defaults"] = {} +defs["ImGuiListClipper_SeekCursorForItem"][1]["funcname"] = "SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["location"] = "imgui:2665" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ov_cimguiname"] = "ImGuiListClipper_SeekCursorForItem" +defs["ImGuiListClipper_SeekCursorForItem"][1]["ret"] = "void" +defs["ImGuiListClipper_SeekCursorForItem"][1]["signature"] = "(int)" +defs["ImGuiListClipper_SeekCursorForItem"][1]["stname"] = "ImGuiListClipper" +defs["ImGuiListClipper_SeekCursorForItem"]["(int)"] = defs["ImGuiListClipper_SeekCursorForItem"][1] defs["ImGuiListClipper_Step"] = {} defs["ImGuiListClipper_Step"][1] = {} defs["ImGuiListClipper_Step"][1]["args"] = "(ImGuiListClipper* self)" @@ -4207,7 +4489,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2308" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:2655" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -4224,7 +4506,7 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true -defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2305" +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:2652" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" @@ -4241,7 +4523,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2170" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:2511" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -4274,7 +4556,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2124" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:2489" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -4290,7 +4572,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2123" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:2488" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -4310,7 +4592,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2125" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:2490" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -4328,7 +4610,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2127" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:2492" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -4346,7 +4628,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2126" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:2491" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -4368,6 +4650,37 @@ defs["ImGuiPayload_destroy"][1]["ret"] = "void" defs["ImGuiPayload_destroy"][1]["signature"] = "(ImGuiPayload*)" defs["ImGuiPayload_destroy"][1]["stname"] = "ImGuiPayload" defs["ImGuiPayload_destroy"]["(ImGuiPayload*)"] = defs["ImGuiPayload_destroy"][1] +defs["ImGuiPlatformIO_ImGuiPlatformIO"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["args"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["argsT"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["argsoriginal"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["call_args"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["constructor"] = true +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["defaults"] = {} +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["funcname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["location"] = "imgui:3496" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["ov_cimguiname"] = "ImGuiPlatformIO_ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["signature"] = "()" +defs["ImGuiPlatformIO_ImGuiPlatformIO"][1]["stname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_ImGuiPlatformIO"]["()"] = defs["ImGuiPlatformIO_ImGuiPlatformIO"][1] +defs["ImGuiPlatformIO_destroy"] = {} +defs["ImGuiPlatformIO_destroy"][1] = {} +defs["ImGuiPlatformIO_destroy"][1]["args"] = "(ImGuiPlatformIO* self)" +defs["ImGuiPlatformIO_destroy"][1]["argsT"] = {} +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1] = {} +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiPlatformIO_destroy"][1]["argsT"][1]["type"] = "ImGuiPlatformIO*" +defs["ImGuiPlatformIO_destroy"][1]["call_args"] = "(self)" +defs["ImGuiPlatformIO_destroy"][1]["cimguiname"] = "ImGuiPlatformIO_destroy" +defs["ImGuiPlatformIO_destroy"][1]["defaults"] = {} +defs["ImGuiPlatformIO_destroy"][1]["destructor"] = true +defs["ImGuiPlatformIO_destroy"][1]["ov_cimguiname"] = "ImGuiPlatformIO_destroy" +defs["ImGuiPlatformIO_destroy"][1]["ret"] = "void" +defs["ImGuiPlatformIO_destroy"][1]["signature"] = "(ImGuiPlatformIO*)" +defs["ImGuiPlatformIO_destroy"][1]["stname"] = "ImGuiPlatformIO" +defs["ImGuiPlatformIO_destroy"]["(ImGuiPlatformIO*)"] = defs["ImGuiPlatformIO_destroy"][1] defs["ImGuiPlatformImeData_ImGuiPlatformImeData"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["args"] = "()" @@ -4378,7 +4691,7 @@ defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["cimguiname"] = "ImGuiPlatf defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["constructor"] = true defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["defaults"] = {} defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["funcname"] = "ImGuiPlatformImeData" -defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:2945" +defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["location"] = "imgui:3531" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["ov_cimguiname"] = "ImGuiPlatformImeData_ImGuiPlatformImeData" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["signature"] = "()" defs["ImGuiPlatformImeData_ImGuiPlatformImeData"][1]["stname"] = "ImGuiPlatformImeData" @@ -4399,61 +4712,295 @@ defs["ImGuiPlatformImeData_destroy"][1]["ret"] = "void" defs["ImGuiPlatformImeData_destroy"][1]["signature"] = "(ImGuiPlatformImeData*)" defs["ImGuiPlatformImeData_destroy"][1]["stname"] = "ImGuiPlatformImeData" defs["ImGuiPlatformImeData_destroy"]["(ImGuiPlatformImeData*)"] = defs["ImGuiPlatformImeData_destroy"][1] +defs["ImGuiSelectionBasicStorage_ApplyRequests"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["location"] = "imgui:2873" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ApplyRequests" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionBasicStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionBasicStorage_ApplyRequests"][1] +defs["ImGuiSelectionBasicStorage_Clear"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Clear"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Clear"][1]["funcname"] = "Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["location"] = "imgui:2875" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Clear" +defs["ImGuiSelectionBasicStorage_Clear"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Clear"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_Clear"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Clear"]["()"] = defs["ImGuiSelectionBasicStorage_Clear"][1] +defs["ImGuiSelectionBasicStorage_Contains"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_Contains"][1]["argsoriginal"] = "(ImGuiID id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["call_args"] = "(id)" +defs["ImGuiSelectionBasicStorage_Contains"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Contains"][1]["funcname"] = "Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["location"] = "imgui:2874" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Contains" +defs["ImGuiSelectionBasicStorage_Contains"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_Contains"][1]["signature"] = "(ImGuiID)const" +defs["ImGuiSelectionBasicStorage_Contains"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Contains"]["(ImGuiID)const"] = defs["ImGuiSelectionBasicStorage_Contains"][1] +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["args"] = "(ImGuiSelectionBasicStorage* self,void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["name"] = "opaque_it" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][2]["type"] = "void**" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["name"] = "out_id" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsT"][3]["type"] = "ImGuiID*" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["argsoriginal"] = "(void** opaque_it,ImGuiID* out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["call_args"] = "(opaque_it,out_id)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["funcname"] = "GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["location"] = "imgui:2878" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetNextSelectedItem" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["ret"] = "bool" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["signature"] = "(void**,ImGuiID*)" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"]["(void**,ImGuiID*)"] = defs["ImGuiSelectionBasicStorage_GetNextSelectedItem"][1] +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["args"] = "(ImGuiSelectionBasicStorage* self,int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["name"] = "idx" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsT"][2]["type"] = "int" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["argsoriginal"] = "(int idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["call_args"] = "(idx)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["funcname"] = "GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["location"] = "imgui:2879" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_GetStorageIdFromIndex" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["ret"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["signature"] = "(int)" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"]["(int)"] = defs["ImGuiSelectionBasicStorage_GetStorageIdFromIndex"][1] +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["constructor"] = true +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["funcname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["location"] = "imgui:2872" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["signature"] = "()" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"]["()"] = defs["ImGuiSelectionBasicStorage_ImGuiSelectionBasicStorage"][1] +defs["ImGuiSelectionBasicStorage_SetItemSelected"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["name"] = "id" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][2]["type"] = "ImGuiID" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["name"] = "selected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsT"][3]["type"] = "bool" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["argsoriginal"] = "(ImGuiID id,bool selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["call_args"] = "(id,selected)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["funcname"] = "SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["location"] = "imgui:2877" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_SetItemSelected" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["signature"] = "(ImGuiID,bool)" +defs["ImGuiSelectionBasicStorage_SetItemSelected"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_SetItemSelected"]["(ImGuiID,bool)"] = defs["ImGuiSelectionBasicStorage_SetItemSelected"][1] +defs["ImGuiSelectionBasicStorage_Swap"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["args"] = "(ImGuiSelectionBasicStorage* self,ImGuiSelectionBasicStorage* r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["name"] = "r" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["reftoptr"] = true +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsT"][2]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_Swap"][1]["argsoriginal"] = "(ImGuiSelectionBasicStorage& r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["call_args"] = "(*r)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_Swap"][1]["funcname"] = "Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["location"] = "imgui:2876" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_Swap" +defs["ImGuiSelectionBasicStorage_Swap"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_Swap"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_Swap"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_Swap"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_Swap"][1] +defs["ImGuiSelectionBasicStorage_destroy"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["args"] = "(ImGuiSelectionBasicStorage* self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionBasicStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionBasicStorage*" +defs["ImGuiSelectionBasicStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionBasicStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionBasicStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionBasicStorage_destroy" +defs["ImGuiSelectionBasicStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionBasicStorage_destroy"][1]["signature"] = "(ImGuiSelectionBasicStorage*)" +defs["ImGuiSelectionBasicStorage_destroy"][1]["stname"] = "ImGuiSelectionBasicStorage" +defs["ImGuiSelectionBasicStorage_destroy"]["(ImGuiSelectionBasicStorage*)"] = defs["ImGuiSelectionBasicStorage_destroy"][1] +defs["ImGuiSelectionExternalStorage_ApplyRequests"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["args"] = "(ImGuiSelectionExternalStorage* self,ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["name"] = "ms_io" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsT"][2]["type"] = "ImGuiMultiSelectIO*" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["argsoriginal"] = "(ImGuiMultiSelectIO* ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["call_args"] = "(ms_io)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["funcname"] = "ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["location"] = "imgui:2892" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ApplyRequests" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["signature"] = "(ImGuiMultiSelectIO*)" +defs["ImGuiSelectionExternalStorage_ApplyRequests"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ApplyRequests"]["(ImGuiMultiSelectIO*)"] = defs["ImGuiSelectionExternalStorage_ApplyRequests"][1] +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["argsoriginal"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["call_args"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["constructor"] = true +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["funcname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["location"] = "imgui:2891" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["signature"] = "()" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"]["()"] = defs["ImGuiSelectionExternalStorage_ImGuiSelectionExternalStorage"][1] +defs["ImGuiSelectionExternalStorage_destroy"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["args"] = "(ImGuiSelectionExternalStorage* self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["name"] = "self" +defs["ImGuiSelectionExternalStorage_destroy"][1]["argsT"][1]["type"] = "ImGuiSelectionExternalStorage*" +defs["ImGuiSelectionExternalStorage_destroy"][1]["call_args"] = "(self)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["defaults"] = {} +defs["ImGuiSelectionExternalStorage_destroy"][1]["destructor"] = true +defs["ImGuiSelectionExternalStorage_destroy"][1]["ov_cimguiname"] = "ImGuiSelectionExternalStorage_destroy" +defs["ImGuiSelectionExternalStorage_destroy"][1]["ret"] = "void" +defs["ImGuiSelectionExternalStorage_destroy"][1]["signature"] = "(ImGuiSelectionExternalStorage*)" +defs["ImGuiSelectionExternalStorage_destroy"][1]["stname"] = "ImGuiSelectionExternalStorage" +defs["ImGuiSelectionExternalStorage_destroy"]["(ImGuiSelectionExternalStorage*)"] = defs["ImGuiSelectionExternalStorage_destroy"][1] defs["ImGuiStoragePair_ImGuiStoragePair"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["args"] = "(ImGuiID _key,int _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val_i" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsT"][2]["type"] = "int" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val_i)" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val_i)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["argsoriginal"] = "(ImGuiID _key,int _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2237" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:2568" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Int" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["args"] = "(ImGuiID _key,float _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val_f" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsT"][2]["type"] = "float" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val_f)" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val_f)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["argsoriginal"] = "(ImGuiID _key,float _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2238" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:2569" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Float" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["args"] = "(ImGuiID _key,void* _val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["name"] = "_key" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][1]["type"] = "ImGuiID" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2] = {} -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val_p" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["name"] = "_val" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsT"][2]["type"] = "void*" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val_p)" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val_p)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["argsoriginal"] = "(ImGuiID _key,void* _val)" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["call_args"] = "(_key,_val)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2239" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:2570" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePair_Ptr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -4488,7 +5035,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2270" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:2609" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -4506,7 +5053,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2247" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:2589" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -4531,7 +5078,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2250" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:2592" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -4556,7 +5103,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2262" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:2604" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -4581,7 +5128,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2252" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:2594" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -4606,7 +5153,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2263" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:2605" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -4631,7 +5178,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2248" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:2590" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -4656,7 +5203,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2261" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:2603" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -4677,7 +5224,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2254" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:2596" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -4702,7 +5249,7 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRe defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2264" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:2606" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -4723,7 +5270,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2267" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:2611" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -4747,7 +5294,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2251" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:2593" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -4771,7 +5318,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2253" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:2595" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -4795,7 +5342,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2249" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:2591" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -4819,7 +5366,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2255" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:2597" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -4835,7 +5382,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1875" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:2194" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -4855,7 +5402,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1876" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:2195" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -4887,7 +5434,7 @@ defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["cimguiname"] = " defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["constructor"] = true defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["defaults"] = {} defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["funcname"] = "ImGuiTableColumnSortSpecs" -defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2138" +defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["location"] = "imgui:2018" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["signature"] = "()" defs["ImGuiTableColumnSortSpecs_ImGuiTableColumnSortSpecs"][1]["stname"] = "ImGuiTableColumnSortSpecs" @@ -4918,7 +5465,7 @@ defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["cimguiname"] = "ImGuiTableSo defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["constructor"] = true defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["defaults"] = {} defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["funcname"] = "ImGuiTableSortSpecs" -defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2151" +defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["location"] = "imgui:2007" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["ov_cimguiname"] = "ImGuiTableSortSpecs_ImGuiTableSortSpecs" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["signature"] = "()" defs["ImGuiTableSortSpecs_ImGuiTableSortSpecs"][1]["stname"] = "ImGuiTableSortSpecs" @@ -4949,7 +5496,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2208" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:2549" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -4973,7 +5520,7 @@ defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2217" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:2558" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -4998,7 +5545,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2218" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:2559" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -5023,7 +5570,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2219" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:2560" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -5041,7 +5588,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2210" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:2551" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -5059,7 +5606,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2216" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:2557" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -5077,7 +5624,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2214" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:2555" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -5111,7 +5658,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2213" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:2554" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -5129,7 +5676,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2211" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:2552" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -5150,7 +5697,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2215" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:2556" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -5168,7 +5715,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2212" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:2553" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -5186,7 +5733,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2181" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:2522" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -5204,7 +5751,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2182" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:2523" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -5230,7 +5777,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2179" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:2520" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -5250,7 +5797,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2178" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:2519" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -5267,7 +5814,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2183" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:2524" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -5292,7 +5839,7 @@ defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilte defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2180" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:2521" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -5324,7 +5871,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2191" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:2532" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Nil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -5343,7 +5890,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2192" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:2533" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRange_Str" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -5377,7 +5924,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2193" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:2534" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -5401,7 +5948,7 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui:2194" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:2535" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -5422,7 +5969,7 @@ defs["ImGuiViewport_GetCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetCenter"][1]["cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:2930" +defs["ImGuiViewport_GetCenter"][1]["location"] = "imgui:3485" defs["ImGuiViewport_GetCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetCenter" defs["ImGuiViewport_GetCenter"][1]["ret"] = "void" @@ -5444,7 +5991,7 @@ defs["ImGuiViewport_GetWorkCenter"][1]["call_args"] = "()" defs["ImGuiViewport_GetWorkCenter"][1]["cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["defaults"] = {} defs["ImGuiViewport_GetWorkCenter"][1]["funcname"] = "GetWorkCenter" -defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:2931" +defs["ImGuiViewport_GetWorkCenter"][1]["location"] = "imgui:3486" defs["ImGuiViewport_GetWorkCenter"][1]["nonUDT"] = 1 defs["ImGuiViewport_GetWorkCenter"][1]["ov_cimguiname"] = "ImGuiViewport_GetWorkCenter" defs["ImGuiViewport_GetWorkCenter"][1]["ret"] = "void" @@ -5461,7 +6008,7 @@ defs["ImGuiViewport_ImGuiViewport"][1]["cimguiname"] = "ImGuiViewport_ImGuiViewp defs["ImGuiViewport_ImGuiViewport"][1]["constructor"] = true defs["ImGuiViewport_ImGuiViewport"][1]["defaults"] = {} defs["ImGuiViewport_ImGuiViewport"][1]["funcname"] = "ImGuiViewport" -defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:2927" +defs["ImGuiViewport_ImGuiViewport"][1]["location"] = "imgui:3482" defs["ImGuiViewport_ImGuiViewport"][1]["ov_cimguiname"] = "ImGuiViewport_ImGuiViewport" defs["ImGuiViewport_ImGuiViewport"][1]["signature"] = "()" defs["ImGuiViewport_ImGuiViewport"][1]["stname"] = "ImGuiViewport" @@ -5492,7 +6039,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui:256" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:291" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2_Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -5511,7 +6058,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui:257" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:292" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2_Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -5543,7 +6090,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui:269" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:304" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4_Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -5568,7 +6115,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui:270" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:305" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4_Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -5600,7 +6147,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui:1772" +defs["ImVector_ImVector"][1]["location"] = "imgui:2075" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVector_Nil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -5617,7 +6164,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui:1773" +defs["ImVector_ImVector"][2]["location"] = "imgui:2076" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVector_Vector_T_" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector_T )" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -5639,7 +6186,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui:1799" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:2102" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -5658,7 +6205,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui:1795" +defs["ImVector_back"][1]["location"] = "imgui:2098" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_back_Nil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -5676,7 +6223,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui:1796" +defs["ImVector_back"][2]["location"] = "imgui:2099" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back__const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -5697,7 +6244,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui:1789" +defs["ImVector_begin"][1]["location"] = "imgui:2092" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_begin_Nil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -5714,7 +6261,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui:1790" +defs["ImVector_begin"][2]["location"] = "imgui:2093" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin__const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -5734,7 +6281,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui:1785" +defs["ImVector_capacity"][1]["location"] = "imgui:2088" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -5753,7 +6300,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui:1777" +defs["ImVector_clear"][1]["location"] = "imgui:2080" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -5772,7 +6319,7 @@ defs["ImVector_clear_delete"][1]["call_args"] = "()" defs["ImVector_clear_delete"][1]["cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["defaults"] = {} defs["ImVector_clear_delete"][1]["funcname"] = "clear_delete" -defs["ImVector_clear_delete"][1]["location"] = "imgui:1778" +defs["ImVector_clear_delete"][1]["location"] = "imgui:2081" defs["ImVector_clear_delete"][1]["ov_cimguiname"] = "ImVector_clear_delete" defs["ImVector_clear_delete"][1]["ret"] = "void" defs["ImVector_clear_delete"][1]["signature"] = "()" @@ -5791,7 +6338,7 @@ defs["ImVector_clear_destruct"][1]["call_args"] = "()" defs["ImVector_clear_destruct"][1]["cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["defaults"] = {} defs["ImVector_clear_destruct"][1]["funcname"] = "clear_destruct" -defs["ImVector_clear_destruct"][1]["location"] = "imgui:1779" +defs["ImVector_clear_destruct"][1]["location"] = "imgui:2082" defs["ImVector_clear_destruct"][1]["ov_cimguiname"] = "ImVector_clear_destruct" defs["ImVector_clear_destruct"][1]["ret"] = "void" defs["ImVector_clear_destruct"][1]["signature"] = "()" @@ -5813,7 +6360,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui:1814" +defs["ImVector_contains"][1]["location"] = "imgui:2117" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -5831,7 +6378,7 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true -defs["ImVector_destroy"][1]["location"] = "imgui:1775" +defs["ImVector_destroy"][1]["location"] = "imgui:2078" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" @@ -5851,7 +6398,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui:1781" +defs["ImVector_empty"][1]["location"] = "imgui:2084" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -5870,7 +6417,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui:1791" +defs["ImVector_end"][1]["location"] = "imgui:2094" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_end_Nil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -5887,7 +6434,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui:1792" +defs["ImVector_end"][2]["location"] = "imgui:2095" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end__const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -5910,7 +6457,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui:1810" +defs["ImVector_erase"][1]["location"] = "imgui:2113" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_erase_Nil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -5933,7 +6480,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui:1811" +defs["ImVector_erase"][2]["location"] = "imgui:2114" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_erase_TPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -5956,7 +6503,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1812" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:2115" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -5978,7 +6525,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui:1815" +defs["ImVector_find"][1]["location"] = "imgui:2118" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_find_Nil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -5998,7 +6545,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui:1816" +defs["ImVector_find"][2]["location"] = "imgui:2119" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find__const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -6021,7 +6568,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui:1817" +defs["ImVector_find_erase"][1]["location"] = "imgui:2121" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -6043,13 +6590,35 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1818" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:2122" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" defs["ImVector_find_erase_unsorted"][1]["stname"] = "ImVector" defs["ImVector_find_erase_unsorted"][1]["templated"] = true defs["ImVector_find_erase_unsorted"]["(const T)"] = defs["ImVector_find_erase_unsorted"][1] +defs["ImVector_find_index"] = {} +defs["ImVector_find_index"][1] = {} +defs["ImVector_find_index"][1]["args"] = "(ImVector* self,const T v)" +defs["ImVector_find_index"][1]["argsT"] = {} +defs["ImVector_find_index"][1]["argsT"][1] = {} +defs["ImVector_find_index"][1]["argsT"][1]["name"] = "self" +defs["ImVector_find_index"][1]["argsT"][1]["type"] = "ImVector*" +defs["ImVector_find_index"][1]["argsT"][2] = {} +defs["ImVector_find_index"][1]["argsT"][2]["name"] = "v" +defs["ImVector_find_index"][1]["argsT"][2]["type"] = "const T" +defs["ImVector_find_index"][1]["argsoriginal"] = "(const T& v)" +defs["ImVector_find_index"][1]["call_args"] = "(v)" +defs["ImVector_find_index"][1]["cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["defaults"] = {} +defs["ImVector_find_index"][1]["funcname"] = "find_index" +defs["ImVector_find_index"][1]["location"] = "imgui:2120" +defs["ImVector_find_index"][1]["ov_cimguiname"] = "ImVector_find_index" +defs["ImVector_find_index"][1]["ret"] = "int" +defs["ImVector_find_index"][1]["signature"] = "(const T)const" +defs["ImVector_find_index"][1]["stname"] = "ImVector" +defs["ImVector_find_index"][1]["templated"] = true +defs["ImVector_find_index"]["(const T)const"] = defs["ImVector_find_index"][1] defs["ImVector_front"] = {} defs["ImVector_front"][1] = {} defs["ImVector_front"][1]["args"] = "(ImVector* self)" @@ -6062,7 +6631,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui:1793" +defs["ImVector_front"][1]["location"] = "imgui:2096" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_front_Nil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -6080,7 +6649,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui:1794" +defs["ImVector_front"][2]["location"] = "imgui:2097" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front__const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -6104,7 +6673,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1819" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:2123" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -6129,7 +6698,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui:1813" +defs["ImVector_insert"][1]["location"] = "imgui:2116" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -6148,7 +6717,7 @@ defs["ImVector_max_size"][1]["call_args"] = "()" defs["ImVector_max_size"][1]["cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["defaults"] = {} defs["ImVector_max_size"][1]["funcname"] = "max_size" -defs["ImVector_max_size"][1]["location"] = "imgui:1784" +defs["ImVector_max_size"][1]["location"] = "imgui:2087" defs["ImVector_max_size"][1]["ov_cimguiname"] = "ImVector_max_size" defs["ImVector_max_size"][1]["ret"] = "int" defs["ImVector_max_size"][1]["signature"] = "()const" @@ -6167,7 +6736,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui:1808" +defs["ImVector_pop_back"][1]["location"] = "imgui:2111" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -6189,7 +6758,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui:1807" +defs["ImVector_push_back"][1]["location"] = "imgui:2110" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -6211,7 +6780,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui:1809" +defs["ImVector_push_front"][1]["location"] = "imgui:2112" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -6233,7 +6802,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui:1803" +defs["ImVector_reserve"][1]["location"] = "imgui:2106" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -6255,7 +6824,7 @@ defs["ImVector_reserve_discard"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve_discard"][1]["cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["defaults"] = {} defs["ImVector_reserve_discard"][1]["funcname"] = "reserve_discard" -defs["ImVector_reserve_discard"][1]["location"] = "imgui:1804" +defs["ImVector_reserve_discard"][1]["location"] = "imgui:2107" defs["ImVector_reserve_discard"][1]["ov_cimguiname"] = "ImVector_reserve_discard" defs["ImVector_reserve_discard"][1]["ret"] = "void" defs["ImVector_reserve_discard"][1]["signature"] = "(int)" @@ -6277,7 +6846,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui:1800" +defs["ImVector_resize"][1]["location"] = "imgui:2103" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resize_Nil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -6300,7 +6869,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui:1801" +defs["ImVector_resize"][2]["location"] = "imgui:2104" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resize_T" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -6323,7 +6892,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui:1802" +defs["ImVector_shrink"][1]["location"] = "imgui:2105" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -6342,7 +6911,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui:1782" +defs["ImVector_size"][1]["location"] = "imgui:2085" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -6361,7 +6930,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1783" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:2086" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -6384,7 +6953,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui:1797" +defs["ImVector_swap"][1]["location"] = "imgui:2100" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector_T *)" @@ -6407,7 +6976,7 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui:812" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:883" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -6423,7 +6992,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui:456" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:500" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -6445,7 +7014,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui:503" +defs["igArrowButton"][1]["location"] = "imgui:549" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -6472,7 +7041,7 @@ defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui:330" +defs["igBegin"][1]["location"] = "imgui:366" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -6481,7 +7050,7 @@ defs["igBegin"][1]["stname"] = "" defs["igBegin"]["(const char*,bool*,ImGuiWindowFlags)"] = defs["igBegin"][1] defs["igBeginChild"] = {} defs["igBeginChild"][1] = {} -defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][1]["args"] = "(const char* str_id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][1]["argsT"] = {} defs["igBeginChild"][1]["argsT"][1] = {} defs["igBeginChild"][1]["argsT"][1]["name"] = "str_id" @@ -6490,27 +7059,27 @@ defs["igBeginChild"][1]["argsT"][2] = {} defs["igBeginChild"][1]["argsT"][2]["name"] = "size" defs["igBeginChild"][1]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][1]["argsT"][3] = {} -defs["igBeginChild"][1]["argsT"][3]["name"] = "border" -defs["igBeginChild"][1]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][1]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][1]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][1]["argsT"][4] = {} -defs["igBeginChild"][1]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][1]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][1]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][1]["call_args"] = "(str_id,size,border,flags)" +defs["igBeginChild"][1]["argsoriginal"] = "(const char* str_id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][1]["call_args"] = "(str_id,size,child_flags,window_flags)" defs["igBeginChild"][1]["cimguiname"] = "igBeginChild" defs["igBeginChild"][1]["defaults"] = {} -defs["igBeginChild"][1]["defaults"]["border"] = "false" -defs["igBeginChild"][1]["defaults"]["flags"] = "0" +defs["igBeginChild"][1]["defaults"]["child_flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][1]["defaults"]["window_flags"] = "0" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui:341" +defs["igBeginChild"][1]["location"] = "imgui:387" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChild_Str" defs["igBeginChild"][1]["ret"] = "bool" -defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][1]["signature"] = "(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][1]["stname"] = "" defs["igBeginChild"][2] = {} -defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,bool border,ImGuiWindowFlags flags)" +defs["igBeginChild"][2]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiChildFlags child_flags,ImGuiWindowFlags window_flags)" defs["igBeginChild"][2]["argsT"] = {} defs["igBeginChild"][2]["argsT"][1] = {} defs["igBeginChild"][2]["argsT"][1]["name"] = "id" @@ -6519,53 +7088,27 @@ defs["igBeginChild"][2]["argsT"][2] = {} defs["igBeginChild"][2]["argsT"][2]["name"] = "size" defs["igBeginChild"][2]["argsT"][2]["type"] = "const ImVec2" defs["igBeginChild"][2]["argsT"][3] = {} -defs["igBeginChild"][2]["argsT"][3]["name"] = "border" -defs["igBeginChild"][2]["argsT"][3]["type"] = "bool" +defs["igBeginChild"][2]["argsT"][3]["name"] = "child_flags" +defs["igBeginChild"][2]["argsT"][3]["type"] = "ImGuiChildFlags" defs["igBeginChild"][2]["argsT"][4] = {} -defs["igBeginChild"][2]["argsT"][4]["name"] = "flags" +defs["igBeginChild"][2]["argsT"][4]["name"] = "window_flags" defs["igBeginChild"][2]["argsT"][4]["type"] = "ImGuiWindowFlags" -defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),bool border=false,ImGuiWindowFlags flags=0)" -defs["igBeginChild"][2]["call_args"] = "(id,size,border,flags)" +defs["igBeginChild"][2]["argsoriginal"] = "(ImGuiID id,const ImVec2& size=ImVec2(0,0),ImGuiChildFlags child_flags=0,ImGuiWindowFlags window_flags=0)" +defs["igBeginChild"][2]["call_args"] = "(id,size,child_flags,window_flags)" defs["igBeginChild"][2]["cimguiname"] = "igBeginChild" defs["igBeginChild"][2]["defaults"] = {} -defs["igBeginChild"][2]["defaults"]["border"] = "false" -defs["igBeginChild"][2]["defaults"]["flags"] = "0" +defs["igBeginChild"][2]["defaults"]["child_flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" +defs["igBeginChild"][2]["defaults"]["window_flags"] = "0" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui:342" +defs["igBeginChild"][2]["location"] = "imgui:388" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChild_ID" defs["igBeginChild"][2]["ret"] = "bool" -defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)" +defs["igBeginChild"][2]["signature"] = "(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)" defs["igBeginChild"][2]["stname"] = "" -defs["igBeginChild"]["(ImGuiID,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][2] -defs["igBeginChild"]["(const char*,const ImVec2,bool,ImGuiWindowFlags)"] = defs["igBeginChild"][1] -defs["igBeginChildFrame"] = {} -defs["igBeginChildFrame"][1] = {} -defs["igBeginChildFrame"][1]["args"] = "(ImGuiID id,const ImVec2 size,ImGuiWindowFlags flags)" -defs["igBeginChildFrame"][1]["argsT"] = {} -defs["igBeginChildFrame"][1]["argsT"][1] = {} -defs["igBeginChildFrame"][1]["argsT"][1]["name"] = "id" -defs["igBeginChildFrame"][1]["argsT"][1]["type"] = "ImGuiID" -defs["igBeginChildFrame"][1]["argsT"][2] = {} -defs["igBeginChildFrame"][1]["argsT"][2]["name"] = "size" -defs["igBeginChildFrame"][1]["argsT"][2]["type"] = "const ImVec2" -defs["igBeginChildFrame"][1]["argsT"][3] = {} -defs["igBeginChildFrame"][1]["argsT"][3]["name"] = "flags" -defs["igBeginChildFrame"][1]["argsT"][3]["type"] = "ImGuiWindowFlags" -defs["igBeginChildFrame"][1]["argsoriginal"] = "(ImGuiID id,const ImVec2& size,ImGuiWindowFlags flags=0)" -defs["igBeginChildFrame"][1]["call_args"] = "(id,size,flags)" -defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["defaults"] = {} -defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" -defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui:874" -defs["igBeginChildFrame"][1]["namespace"] = "ImGui" -defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" -defs["igBeginChildFrame"][1]["ret"] = "bool" -defs["igBeginChildFrame"][1]["signature"] = "(ImGuiID,const ImVec2,ImGuiWindowFlags)" -defs["igBeginChildFrame"][1]["stname"] = "" -defs["igBeginChildFrame"]["(ImGuiID,const ImVec2,ImGuiWindowFlags)"] = defs["igBeginChildFrame"][1] +defs["igBeginChild"]["(ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][2] +defs["igBeginChild"]["(const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags)"] = defs["igBeginChild"][1] defs["igBeginCombo"] = {} defs["igBeginCombo"][1] = {} defs["igBeginCombo"][1]["args"] = "(const char* label,const char* preview_value,ImGuiComboFlags flags)" @@ -6585,7 +7128,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui:520" +defs["igBeginCombo"][1]["location"] = "imgui:570" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -6605,7 +7148,7 @@ defs["igBeginDisabled"][1]["cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["defaults"] = {} defs["igBeginDisabled"][1]["defaults"]["disabled"] = "true" defs["igBeginDisabled"][1]["funcname"] = "BeginDisabled" -defs["igBeginDisabled"][1]["location"] = "imgui:820" +defs["igBeginDisabled"][1]["location"] = "imgui:892" defs["igBeginDisabled"][1]["namespace"] = "ImGui" defs["igBeginDisabled"][1]["ov_cimguiname"] = "igBeginDisabled" defs["igBeginDisabled"][1]["ret"] = "void" @@ -6625,7 +7168,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui:808" +defs["igBeginDragDropSource"][1]["location"] = "imgui:879" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -6641,7 +7184,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui:811" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:882" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -6657,13 +7200,29 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui:445" +defs["igBeginGroup"][1]["location"] = "imgui:498" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" defs["igBeginGroup"][1]["signature"] = "()" defs["igBeginGroup"][1]["stname"] = "" defs["igBeginGroup"]["()"] = defs["igBeginGroup"][1] +defs["igBeginItemTooltip"] = {} +defs["igBeginItemTooltip"][1] = {} +defs["igBeginItemTooltip"][1]["args"] = "()" +defs["igBeginItemTooltip"][1]["argsT"] = {} +defs["igBeginItemTooltip"][1]["argsoriginal"] = "()" +defs["igBeginItemTooltip"][1]["call_args"] = "()" +defs["igBeginItemTooltip"][1]["cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["defaults"] = {} +defs["igBeginItemTooltip"][1]["funcname"] = "BeginItemTooltip" +defs["igBeginItemTooltip"][1]["location"] = "imgui:741" +defs["igBeginItemTooltip"][1]["namespace"] = "ImGui" +defs["igBeginItemTooltip"][1]["ov_cimguiname"] = "igBeginItemTooltip" +defs["igBeginItemTooltip"][1]["ret"] = "bool" +defs["igBeginItemTooltip"][1]["signature"] = "()" +defs["igBeginItemTooltip"][1]["stname"] = "" +defs["igBeginItemTooltip"]["()"] = defs["igBeginItemTooltip"][1] defs["igBeginListBox"] = {} defs["igBeginListBox"][1] = {} defs["igBeginListBox"][1]["args"] = "(const char* label,const ImVec2 size)" @@ -6680,7 +7239,7 @@ defs["igBeginListBox"][1]["cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["defaults"] = {} defs["igBeginListBox"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginListBox"][1]["funcname"] = "BeginListBox" -defs["igBeginListBox"][1]["location"] = "imgui:632" +defs["igBeginListBox"][1]["location"] = "imgui:695" defs["igBeginListBox"][1]["namespace"] = "ImGui" defs["igBeginListBox"][1]["ov_cimguiname"] = "igBeginListBox" defs["igBeginListBox"][1]["ret"] = "bool" @@ -6696,7 +7255,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui:658" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:721" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -6719,7 +7278,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui:660" +defs["igBeginMenu"][1]["location"] = "imgui:723" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -6735,13 +7294,40 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui:656" +defs["igBeginMenuBar"][1]["location"] = "imgui:719" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" defs["igBeginMenuBar"][1]["signature"] = "()" defs["igBeginMenuBar"][1]["stname"] = "" defs["igBeginMenuBar"]["()"] = defs["igBeginMenuBar"][1] +defs["igBeginMultiSelect"] = {} +defs["igBeginMultiSelect"][1] = {} +defs["igBeginMultiSelect"][1]["args"] = "(ImGuiMultiSelectFlags flags,int selection_size,int items_count)" +defs["igBeginMultiSelect"][1]["argsT"] = {} +defs["igBeginMultiSelect"][1]["argsT"][1] = {} +defs["igBeginMultiSelect"][1]["argsT"][1]["name"] = "flags" +defs["igBeginMultiSelect"][1]["argsT"][1]["type"] = "ImGuiMultiSelectFlags" +defs["igBeginMultiSelect"][1]["argsT"][2] = {} +defs["igBeginMultiSelect"][1]["argsT"][2]["name"] = "selection_size" +defs["igBeginMultiSelect"][1]["argsT"][2]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsT"][3] = {} +defs["igBeginMultiSelect"][1]["argsT"][3]["name"] = "items_count" +defs["igBeginMultiSelect"][1]["argsT"][3]["type"] = "int" +defs["igBeginMultiSelect"][1]["argsoriginal"] = "(ImGuiMultiSelectFlags flags,int selection_size=-1,int items_count=-1)" +defs["igBeginMultiSelect"][1]["call_args"] = "(flags,selection_size,items_count)" +defs["igBeginMultiSelect"][1]["cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["defaults"] = {} +defs["igBeginMultiSelect"][1]["defaults"]["items_count"] = "-1" +defs["igBeginMultiSelect"][1]["defaults"]["selection_size"] = "-1" +defs["igBeginMultiSelect"][1]["funcname"] = "BeginMultiSelect" +defs["igBeginMultiSelect"][1]["location"] = "imgui:684" +defs["igBeginMultiSelect"][1]["namespace"] = "ImGui" +defs["igBeginMultiSelect"][1]["ov_cimguiname"] = "igBeginMultiSelect" +defs["igBeginMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igBeginMultiSelect"][1]["signature"] = "(ImGuiMultiSelectFlags,int,int)" +defs["igBeginMultiSelect"][1]["stname"] = "" +defs["igBeginMultiSelect"]["(ImGuiMultiSelectFlags,int,int)"] = defs["igBeginMultiSelect"][1] defs["igBeginPopup"] = {} defs["igBeginPopup"][1] = {} defs["igBeginPopup"][1]["args"] = "(const char* str_id,ImGuiWindowFlags flags)" @@ -6758,7 +7344,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui:684" +defs["igBeginPopup"][1]["location"] = "imgui:755" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -6782,7 +7368,7 @@ defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui:706" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:777" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -6806,7 +7392,7 @@ defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui:708" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:779" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -6830,7 +7416,7 @@ defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui:707" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:778" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -6857,7 +7443,7 @@ defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui:685" +defs["igBeginPopupModal"][1]["location"] = "imgui:756" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -6880,7 +7466,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui:786" +defs["igBeginTabBar"][1]["location"] = "imgui:857" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -6907,7 +7493,7 @@ defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui:788" +defs["igBeginTabItem"][1]["location"] = "imgui:859" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -6916,13 +7502,13 @@ defs["igBeginTabItem"][1]["stname"] = "" defs["igBeginTabItem"]["(const char*,bool*,ImGuiTabItemFlags)"] = defs["igBeginTabItem"][1] defs["igBeginTable"] = {} defs["igBeginTable"][1] = {} -defs["igBeginTable"][1]["args"] = "(const char* str_id,int column,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" +defs["igBeginTable"][1]["args"] = "(const char* str_id,int columns,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width)" defs["igBeginTable"][1]["argsT"] = {} defs["igBeginTable"][1]["argsT"][1] = {} defs["igBeginTable"][1]["argsT"][1]["name"] = "str_id" defs["igBeginTable"][1]["argsT"][1]["type"] = "const char*" defs["igBeginTable"][1]["argsT"][2] = {} -defs["igBeginTable"][1]["argsT"][2]["name"] = "column" +defs["igBeginTable"][1]["argsT"][2]["name"] = "columns" defs["igBeginTable"][1]["argsT"][2]["type"] = "int" defs["igBeginTable"][1]["argsT"][3] = {} defs["igBeginTable"][1]["argsT"][3]["name"] = "flags" @@ -6933,15 +7519,15 @@ defs["igBeginTable"][1]["argsT"][4]["type"] = "const ImVec2" defs["igBeginTable"][1]["argsT"][5] = {} defs["igBeginTable"][1]["argsT"][5]["name"] = "inner_width" defs["igBeginTable"][1]["argsT"][5]["type"] = "float" -defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int column,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" -defs["igBeginTable"][1]["call_args"] = "(str_id,column,flags,outer_size,inner_width)" +defs["igBeginTable"][1]["argsoriginal"] = "(const char* str_id,int columns,ImGuiTableFlags flags=0,const ImVec2& outer_size=ImVec2(0.0f,0.0f),float inner_width=0.0f)" +defs["igBeginTable"][1]["call_args"] = "(str_id,columns,flags,outer_size,inner_width)" defs["igBeginTable"][1]["cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["defaults"] = {} defs["igBeginTable"][1]["defaults"]["flags"] = "0" defs["igBeginTable"][1]["defaults"]["inner_width"] = "0.0f" defs["igBeginTable"][1]["defaults"]["outer_size"] = "ImVec2(0.0f,0.0f)" defs["igBeginTable"][1]["funcname"] = "BeginTable" -defs["igBeginTable"][1]["location"] = "imgui:739" +defs["igBeginTable"][1]["location"] = "imgui:808" defs["igBeginTable"][1]["namespace"] = "ImGui" defs["igBeginTable"][1]["ov_cimguiname"] = "igBeginTable" defs["igBeginTable"][1]["ret"] = "bool" @@ -6957,10 +7543,10 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui:667" +defs["igBeginTooltip"][1]["location"] = "imgui:732" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" -defs["igBeginTooltip"][1]["ret"] = "void" +defs["igBeginTooltip"][1]["ret"] = "bool" defs["igBeginTooltip"][1]["signature"] = "()" defs["igBeginTooltip"][1]["stname"] = "" defs["igBeginTooltip"]["()"] = defs["igBeginTooltip"][1] @@ -6973,7 +7559,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui:510" +defs["igBullet"][1]["location"] = "imgui:556" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -6996,7 +7582,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui:494" +defs["igBulletText"][1]["location"] = "imgui:539" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -7018,7 +7604,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui:495" +defs["igBulletTextV"][1]["location"] = "imgui:540" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -7041,7 +7627,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui:500" +defs["igButton"][1]["location"] = "imgui:546" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -7057,7 +7643,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui:417" +defs["igCalcItemWidth"][1]["location"] = "imgui:455" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -7091,7 +7677,7 @@ defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui:878" +defs["igCalcTextSize"][1]["location"] = "imgui:950" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -7114,7 +7700,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui:504" +defs["igCheckbox"][1]["location"] = "imgui:550" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -7139,7 +7725,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui:505" +defs["igCheckboxFlags"][1]["location"] = "imgui:551" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags_IntPtr" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -7162,7 +7748,7 @@ defs["igCheckboxFlags"][2]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][2]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][2]["defaults"] = {} defs["igCheckboxFlags"][2]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][2]["location"] = "imgui:506" +defs["igCheckboxFlags"][2]["location"] = "imgui:552" defs["igCheckboxFlags"][2]["namespace"] = "ImGui" defs["igCheckboxFlags"][2]["ov_cimguiname"] = "igCheckboxFlags_UintPtr" defs["igCheckboxFlags"][2]["ret"] = "bool" @@ -7179,7 +7765,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui:699" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:770" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -7202,7 +7788,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui:616" +defs["igCollapsingHeader"][1]["location"] = "imgui:666" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeader_TreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -7226,7 +7812,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui:617" +defs["igCollapsingHeader"][2]["location"] = "imgui:667" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeader_BoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -7257,7 +7843,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui:597" +defs["igColorButton"][1]["location"] = "imgui:647" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -7276,7 +7862,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:882" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:954" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -7313,7 +7899,7 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:884" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:956" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -7350,7 +7936,7 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:883" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:955" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -7372,7 +7958,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:881" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:953" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -7399,7 +7985,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui:593" +defs["igColorEdit3"][1]["location"] = "imgui:643" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -7425,7 +8011,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui:594" +defs["igColorEdit4"][1]["location"] = "imgui:644" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -7451,7 +8037,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui:595" +defs["igColorPicker3"][1]["location"] = "imgui:645" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -7481,7 +8067,7 @@ defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui:596" +defs["igColorPicker4"][1]["location"] = "imgui:646" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -7490,7 +8076,7 @@ defs["igColorPicker4"][1]["stname"] = "" defs["igColorPicker4"]["(const char*,float[4],ImGuiColorEditFlags,const float*)"] = defs["igColorPicker4"][1] defs["igColumns"] = {} defs["igColumns"][1] = {} -defs["igColumns"][1]["args"] = "(int count,const char* id,bool border)" +defs["igColumns"][1]["args"] = "(int count,const char* id,bool borders)" defs["igColumns"][1]["argsT"] = {} defs["igColumns"][1]["argsT"][1] = {} defs["igColumns"][1]["argsT"][1]["name"] = "count" @@ -7499,17 +8085,17 @@ defs["igColumns"][1]["argsT"][2] = {} defs["igColumns"][1]["argsT"][2]["name"] = "id" defs["igColumns"][1]["argsT"][2]["type"] = "const char*" defs["igColumns"][1]["argsT"][3] = {} -defs["igColumns"][1]["argsT"][3]["name"] = "border" +defs["igColumns"][1]["argsT"][3]["name"] = "borders" defs["igColumns"][1]["argsT"][3]["type"] = "bool" -defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool border=true)" -defs["igColumns"][1]["call_args"] = "(count,id,border)" +defs["igColumns"][1]["argsoriginal"] = "(int count=1,const char* id=((void*)0),bool borders=true)" +defs["igColumns"][1]["call_args"] = "(count,id,borders)" defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} -defs["igColumns"][1]["defaults"]["border"] = "true" +defs["igColumns"][1]["defaults"]["borders"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui:775" +defs["igColumns"][1]["location"] = "imgui:846" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -7541,7 +8127,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui:522" +defs["igCombo"][1]["location"] = "imgui:572" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igCombo_Str_arr" defs["igCombo"][1]["ret"] = "bool" @@ -7568,14 +8154,14 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui:523" +defs["igCombo"][2]["location"] = "imgui:573" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igCombo_Str" defs["igCombo"][2]["ret"] = "bool" defs["igCombo"][2]["signature"] = "(const char*,int*,const char*,int)" defs["igCombo"][2]["stname"] = "" defs["igCombo"][3] = {} -defs["igCombo"][3]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items)" +defs["igCombo"][3]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items)" defs["igCombo"][3]["argsT"] = {} defs["igCombo"][3]["argsT"][1] = {} defs["igCombo"][3]["argsT"][1]["name"] = "label" @@ -7584,12 +8170,12 @@ defs["igCombo"][3]["argsT"][2] = {} defs["igCombo"][3]["argsT"][2]["name"] = "current_item" defs["igCombo"][3]["argsT"][2]["type"] = "int*" defs["igCombo"][3]["argsT"][3] = {} -defs["igCombo"][3]["argsT"][3]["name"] = "items_getter" -defs["igCombo"][3]["argsT"][3]["ret"] = "bool" -defs["igCombo"][3]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igCombo"][3]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igCombo"][3]["argsT"][3]["name"] = "getter" +defs["igCombo"][3]["argsT"][3]["ret"] = "const char*" +defs["igCombo"][3]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igCombo"][3]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igCombo"][3]["argsT"][4] = {} -defs["igCombo"][3]["argsT"][4]["name"] = "data" +defs["igCombo"][3]["argsT"][4]["name"] = "user_data" defs["igCombo"][3]["argsT"][4]["type"] = "void*" defs["igCombo"][3]["argsT"][5] = {} defs["igCombo"][3]["argsT"][5]["name"] = "items_count" @@ -7597,20 +8183,20 @@ defs["igCombo"][3]["argsT"][5]["type"] = "int" defs["igCombo"][3]["argsT"][6] = {} defs["igCombo"][3]["argsT"][6]["name"] = "popup_max_height_in_items" defs["igCombo"][3]["argsT"][6]["type"] = "int" -defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int popup_max_height_in_items=-1)" -defs["igCombo"][3]["call_args"] = "(label,current_item,items_getter,data,items_count,popup_max_height_in_items)" +defs["igCombo"][3]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int popup_max_height_in_items=-1)" +defs["igCombo"][3]["call_args"] = "(label,current_item,getter,user_data,items_count,popup_max_height_in_items)" defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui:524" +defs["igCombo"][3]["location"] = "imgui:574" defs["igCombo"][3]["namespace"] = "ImGui" -defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnBoolPtr" +defs["igCombo"][3]["ov_cimguiname"] = "igCombo_FnStrPtr" defs["igCombo"][3]["ret"] = "bool" -defs["igCombo"][3]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igCombo"][3]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igCombo"][3]["stname"] = "" -defs["igCombo"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char* const[],int,int)"] = defs["igCombo"][1] +defs["igCombo"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igCombo"][3] defs["igCombo"]["(const char*,int*,const char*,int)"] = defs["igCombo"][2] defs["igCreateContext"] = {} defs["igCreateContext"][1] = {} @@ -7625,7 +8211,7 @@ defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui:288" +defs["igCreateContext"][1]["location"] = "imgui:323" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -7662,13 +8248,93 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:935" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:1037" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" defs["igDebugCheckVersionAndDataLayout"][1]["signature"] = "(const char*,size_t,size_t,size_t,size_t,size_t,size_t)" defs["igDebugCheckVersionAndDataLayout"][1]["stname"] = "" defs["igDebugCheckVersionAndDataLayout"]["(const char*,size_t,size_t,size_t,size_t,size_t,size_t)"] = defs["igDebugCheckVersionAndDataLayout"][1] +defs["igDebugFlashStyleColor"] = {} +defs["igDebugFlashStyleColor"][1] = {} +defs["igDebugFlashStyleColor"][1]["args"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["argsT"] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1] = {} +defs["igDebugFlashStyleColor"][1]["argsT"][1]["name"] = "idx" +defs["igDebugFlashStyleColor"][1]["argsT"][1]["type"] = "ImGuiCol" +defs["igDebugFlashStyleColor"][1]["argsoriginal"] = "(ImGuiCol idx)" +defs["igDebugFlashStyleColor"][1]["call_args"] = "(idx)" +defs["igDebugFlashStyleColor"][1]["cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["defaults"] = {} +defs["igDebugFlashStyleColor"][1]["funcname"] = "DebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["location"] = "imgui:1035" +defs["igDebugFlashStyleColor"][1]["namespace"] = "ImGui" +defs["igDebugFlashStyleColor"][1]["ov_cimguiname"] = "igDebugFlashStyleColor" +defs["igDebugFlashStyleColor"][1]["ret"] = "void" +defs["igDebugFlashStyleColor"][1]["signature"] = "(ImGuiCol)" +defs["igDebugFlashStyleColor"][1]["stname"] = "" +defs["igDebugFlashStyleColor"]["(ImGuiCol)"] = defs["igDebugFlashStyleColor"][1] +defs["igDebugLog"] = {} +defs["igDebugLog"][1] = {} +defs["igDebugLog"][1]["args"] = "(const char* fmt,...)" +defs["igDebugLog"][1]["argsT"] = {} +defs["igDebugLog"][1]["argsT"][1] = {} +defs["igDebugLog"][1]["argsT"][1]["name"] = "fmt" +defs["igDebugLog"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugLog"][1]["argsT"][2] = {} +defs["igDebugLog"][1]["argsT"][2]["name"] = "..." +defs["igDebugLog"][1]["argsT"][2]["type"] = "..." +defs["igDebugLog"][1]["argsoriginal"] = "(const char* fmt,...)" +defs["igDebugLog"][1]["call_args"] = "(fmt,...)" +defs["igDebugLog"][1]["cimguiname"] = "igDebugLog" +defs["igDebugLog"][1]["defaults"] = {} +defs["igDebugLog"][1]["funcname"] = "DebugLog" +defs["igDebugLog"][1]["isvararg"] = "...)" +defs["igDebugLog"][1]["location"] = "imgui:1039" +defs["igDebugLog"][1]["namespace"] = "ImGui" +defs["igDebugLog"][1]["ov_cimguiname"] = "igDebugLog" +defs["igDebugLog"][1]["ret"] = "void" +defs["igDebugLog"][1]["signature"] = "(const char*,...)" +defs["igDebugLog"][1]["stname"] = "" +defs["igDebugLog"]["(const char*,...)"] = defs["igDebugLog"][1] +defs["igDebugLogV"] = {} +defs["igDebugLogV"][1] = {} +defs["igDebugLogV"][1]["args"] = "(const char* fmt,va_list args)" +defs["igDebugLogV"][1]["argsT"] = {} +defs["igDebugLogV"][1]["argsT"][1] = {} +defs["igDebugLogV"][1]["argsT"][1]["name"] = "fmt" +defs["igDebugLogV"][1]["argsT"][1]["type"] = "const char*" +defs["igDebugLogV"][1]["argsT"][2] = {} +defs["igDebugLogV"][1]["argsT"][2]["name"] = "args" +defs["igDebugLogV"][1]["argsT"][2]["type"] = "va_list" +defs["igDebugLogV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" +defs["igDebugLogV"][1]["call_args"] = "(fmt,args)" +defs["igDebugLogV"][1]["cimguiname"] = "igDebugLogV" +defs["igDebugLogV"][1]["defaults"] = {} +defs["igDebugLogV"][1]["funcname"] = "DebugLogV" +defs["igDebugLogV"][1]["location"] = "imgui:1040" +defs["igDebugLogV"][1]["namespace"] = "ImGui" +defs["igDebugLogV"][1]["ov_cimguiname"] = "igDebugLogV" +defs["igDebugLogV"][1]["ret"] = "void" +defs["igDebugLogV"][1]["signature"] = "(const char*,va_list)" +defs["igDebugLogV"][1]["stname"] = "" +defs["igDebugLogV"]["(const char*,va_list)"] = defs["igDebugLogV"][1] +defs["igDebugStartItemPicker"] = {} +defs["igDebugStartItemPicker"][1] = {} +defs["igDebugStartItemPicker"][1]["args"] = "()" +defs["igDebugStartItemPicker"][1]["argsT"] = {} +defs["igDebugStartItemPicker"][1]["argsoriginal"] = "()" +defs["igDebugStartItemPicker"][1]["call_args"] = "()" +defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" +defs["igDebugStartItemPicker"][1]["defaults"] = {} +defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" +defs["igDebugStartItemPicker"][1]["location"] = "imgui:1036" +defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" +defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" +defs["igDebugStartItemPicker"][1]["ret"] = "void" +defs["igDebugStartItemPicker"][1]["signature"] = "()" +defs["igDebugStartItemPicker"][1]["stname"] = "" +defs["igDebugStartItemPicker"]["()"] = defs["igDebugStartItemPicker"][1] defs["igDebugTextEncoding"] = {} defs["igDebugTextEncoding"][1] = {} defs["igDebugTextEncoding"][1]["args"] = "(const char* text)" @@ -7681,7 +8347,7 @@ defs["igDebugTextEncoding"][1]["call_args"] = "(text)" defs["igDebugTextEncoding"][1]["cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["defaults"] = {} defs["igDebugTextEncoding"][1]["funcname"] = "DebugTextEncoding" -defs["igDebugTextEncoding"][1]["location"] = "imgui:934" +defs["igDebugTextEncoding"][1]["location"] = "imgui:1034" defs["igDebugTextEncoding"][1]["namespace"] = "ImGui" defs["igDebugTextEncoding"][1]["ov_cimguiname"] = "igDebugTextEncoding" defs["igDebugTextEncoding"][1]["ret"] = "void" @@ -7701,7 +8367,7 @@ defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui:289" +defs["igDestroyContext"][1]["location"] = "imgui:324" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -7743,7 +8409,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui:538" +defs["igDragFloat"][1]["location"] = "imgui:588" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -7785,7 +8451,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui:539" +defs["igDragFloat2"][1]["location"] = "imgui:589" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -7827,7 +8493,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui:540" +defs["igDragFloat3"][1]["location"] = "imgui:590" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -7869,7 +8535,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui:541" +defs["igDragFloat4"][1]["location"] = "imgui:591" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -7918,7 +8584,7 @@ defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui:542" +defs["igDragFloatRange2"][1]["location"] = "imgui:592" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -7960,7 +8626,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui:543" +defs["igDragInt"][1]["location"] = "imgui:593" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -8002,7 +8668,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui:544" +defs["igDragInt2"][1]["location"] = "imgui:594" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -8044,7 +8710,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui:545" +defs["igDragInt3"][1]["location"] = "imgui:595" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -8086,7 +8752,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui:546" +defs["igDragInt4"][1]["location"] = "imgui:596" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -8135,7 +8801,7 @@ defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui:547" +defs["igDragIntRange2"][1]["location"] = "imgui:597" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -8180,7 +8846,7 @@ defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui:548" +defs["igDragScalar"][1]["location"] = "imgui:598" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -8228,7 +8894,7 @@ defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui:549" +defs["igDragScalarN"][1]["location"] = "imgui:599" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -8247,7 +8913,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui:442" +defs["igDummy"][1]["location"] = "imgui:495" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -8263,7 +8929,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui:331" +defs["igEnd"][1]["location"] = "imgui:367" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -8279,29 +8945,13 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui:343" +defs["igEndChild"][1]["location"] = "imgui:389" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" defs["igEndChild"][1]["signature"] = "()" defs["igEndChild"][1]["stname"] = "" defs["igEndChild"]["()"] = defs["igEndChild"][1] -defs["igEndChildFrame"] = {} -defs["igEndChildFrame"][1] = {} -defs["igEndChildFrame"][1]["args"] = "()" -defs["igEndChildFrame"][1]["argsT"] = {} -defs["igEndChildFrame"][1]["argsoriginal"] = "()" -defs["igEndChildFrame"][1]["call_args"] = "()" -defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["defaults"] = {} -defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui:875" -defs["igEndChildFrame"][1]["namespace"] = "ImGui" -defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" -defs["igEndChildFrame"][1]["ret"] = "void" -defs["igEndChildFrame"][1]["signature"] = "()" -defs["igEndChildFrame"][1]["stname"] = "" -defs["igEndChildFrame"]["()"] = defs["igEndChildFrame"][1] defs["igEndCombo"] = {} defs["igEndCombo"][1] = {} defs["igEndCombo"][1]["args"] = "()" @@ -8311,7 +8961,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui:521" +defs["igEndCombo"][1]["location"] = "imgui:571" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -8327,7 +8977,7 @@ defs["igEndDisabled"][1]["call_args"] = "()" defs["igEndDisabled"][1]["cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["defaults"] = {} defs["igEndDisabled"][1]["funcname"] = "EndDisabled" -defs["igEndDisabled"][1]["location"] = "imgui:821" +defs["igEndDisabled"][1]["location"] = "imgui:893" defs["igEndDisabled"][1]["namespace"] = "ImGui" defs["igEndDisabled"][1]["ov_cimguiname"] = "igEndDisabled" defs["igEndDisabled"][1]["ret"] = "void" @@ -8343,7 +8993,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui:810" +defs["igEndDragDropSource"][1]["location"] = "imgui:881" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -8359,7 +9009,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui:813" +defs["igEndDragDropTarget"][1]["location"] = "imgui:884" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -8375,7 +9025,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui:297" +defs["igEndFrame"][1]["location"] = "imgui:333" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -8391,7 +9041,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui:446" +defs["igEndGroup"][1]["location"] = "imgui:499" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -8407,7 +9057,7 @@ defs["igEndListBox"][1]["call_args"] = "()" defs["igEndListBox"][1]["cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["defaults"] = {} defs["igEndListBox"][1]["funcname"] = "EndListBox" -defs["igEndListBox"][1]["location"] = "imgui:633" +defs["igEndListBox"][1]["location"] = "imgui:696" defs["igEndListBox"][1]["namespace"] = "ImGui" defs["igEndListBox"][1]["ov_cimguiname"] = "igEndListBox" defs["igEndListBox"][1]["ret"] = "void" @@ -8423,7 +9073,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui:659" +defs["igEndMainMenuBar"][1]["location"] = "imgui:722" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -8439,7 +9089,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui:661" +defs["igEndMenu"][1]["location"] = "imgui:724" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -8455,13 +9105,29 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui:657" +defs["igEndMenuBar"][1]["location"] = "imgui:720" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" defs["igEndMenuBar"][1]["signature"] = "()" defs["igEndMenuBar"][1]["stname"] = "" defs["igEndMenuBar"]["()"] = defs["igEndMenuBar"][1] +defs["igEndMultiSelect"] = {} +defs["igEndMultiSelect"][1] = {} +defs["igEndMultiSelect"][1]["args"] = "()" +defs["igEndMultiSelect"][1]["argsT"] = {} +defs["igEndMultiSelect"][1]["argsoriginal"] = "()" +defs["igEndMultiSelect"][1]["call_args"] = "()" +defs["igEndMultiSelect"][1]["cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["defaults"] = {} +defs["igEndMultiSelect"][1]["funcname"] = "EndMultiSelect" +defs["igEndMultiSelect"][1]["location"] = "imgui:685" +defs["igEndMultiSelect"][1]["namespace"] = "ImGui" +defs["igEndMultiSelect"][1]["ov_cimguiname"] = "igEndMultiSelect" +defs["igEndMultiSelect"][1]["ret"] = "ImGuiMultiSelectIO*" +defs["igEndMultiSelect"][1]["signature"] = "()" +defs["igEndMultiSelect"][1]["stname"] = "" +defs["igEndMultiSelect"]["()"] = defs["igEndMultiSelect"][1] defs["igEndPopup"] = {} defs["igEndPopup"][1] = {} defs["igEndPopup"][1]["args"] = "()" @@ -8471,7 +9137,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui:686" +defs["igEndPopup"][1]["location"] = "imgui:757" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -8487,7 +9153,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui:787" +defs["igEndTabBar"][1]["location"] = "imgui:858" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -8503,7 +9169,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui:789" +defs["igEndTabItem"][1]["location"] = "imgui:860" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -8519,7 +9185,7 @@ defs["igEndTable"][1]["call_args"] = "()" defs["igEndTable"][1]["cimguiname"] = "igEndTable" defs["igEndTable"][1]["defaults"] = {} defs["igEndTable"][1]["funcname"] = "EndTable" -defs["igEndTable"][1]["location"] = "imgui:740" +defs["igEndTable"][1]["location"] = "imgui:809" defs["igEndTable"][1]["namespace"] = "ImGui" defs["igEndTable"][1]["ov_cimguiname"] = "igEndTable" defs["igEndTable"][1]["ret"] = "void" @@ -8535,7 +9201,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui:668" +defs["igEndTooltip"][1]["location"] = "imgui:733" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -8560,7 +9226,7 @@ defs["igGetAllocatorFunctions"][1]["call_args"] = "(p_alloc_func,p_free_func,p_u defs["igGetAllocatorFunctions"][1]["cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["defaults"] = {} defs["igGetAllocatorFunctions"][1]["funcname"] = "GetAllocatorFunctions" -defs["igGetAllocatorFunctions"][1]["location"] = "imgui:942" +defs["igGetAllocatorFunctions"][1]["location"] = "imgui:1048" defs["igGetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igGetAllocatorFunctions"][1]["ov_cimguiname"] = "igGetAllocatorFunctions" defs["igGetAllocatorFunctions"][1]["ret"] = "void" @@ -8576,7 +9242,7 @@ defs["igGetBackgroundDrawList"][1]["call_args"] = "()" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui:862" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:936" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -8592,7 +9258,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui:921" +defs["igGetClipboardText"][1]["location"] = "imgui:1020" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -8615,7 +9281,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui:426" +defs["igGetColorU32"][1]["location"] = "imgui:464" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32_Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -8632,31 +9298,35 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui:427" +defs["igGetColorU32"][2]["location"] = "imgui:465" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32_Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" defs["igGetColorU32"][2]["signature"] = "(const ImVec4)" defs["igGetColorU32"][2]["stname"] = "" defs["igGetColorU32"][3] = {} -defs["igGetColorU32"][3]["args"] = "(ImU32 col)" +defs["igGetColorU32"][3]["args"] = "(ImU32 col,float alpha_mul)" defs["igGetColorU32"][3]["argsT"] = {} defs["igGetColorU32"][3]["argsT"][1] = {} defs["igGetColorU32"][3]["argsT"][1]["name"] = "col" defs["igGetColorU32"][3]["argsT"][1]["type"] = "ImU32" -defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col)" -defs["igGetColorU32"][3]["call_args"] = "(col)" +defs["igGetColorU32"][3]["argsT"][2] = {} +defs["igGetColorU32"][3]["argsT"][2]["name"] = "alpha_mul" +defs["igGetColorU32"][3]["argsT"][2]["type"] = "float" +defs["igGetColorU32"][3]["argsoriginal"] = "(ImU32 col,float alpha_mul=1.0f)" +defs["igGetColorU32"][3]["call_args"] = "(col,alpha_mul)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} +defs["igGetColorU32"][3]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui:428" +defs["igGetColorU32"][3]["location"] = "imgui:466" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32_U32" defs["igGetColorU32"][3]["ret"] = "ImU32" -defs["igGetColorU32"][3]["signature"] = "(ImU32)" +defs["igGetColorU32"][3]["signature"] = "(ImU32,float)" defs["igGetColorU32"][3]["stname"] = "" defs["igGetColorU32"]["(ImGuiCol,float)"] = defs["igGetColorU32"][1] -defs["igGetColorU32"]["(ImU32)"] = defs["igGetColorU32"][3] +defs["igGetColorU32"]["(ImU32,float)"] = defs["igGetColorU32"][3] defs["igGetColorU32"]["(const ImVec4)"] = defs["igGetColorU32"][2] defs["igGetColumnIndex"] = {} defs["igGetColumnIndex"][1] = {} @@ -8667,7 +9337,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui:777" +defs["igGetColumnIndex"][1]["location"] = "imgui:848" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -8687,7 +9357,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui:780" +defs["igGetColumnOffset"][1]["location"] = "imgui:851" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -8707,7 +9377,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui:778" +defs["igGetColumnWidth"][1]["location"] = "imgui:849" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -8723,7 +9393,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui:782" +defs["igGetColumnsCount"][1]["location"] = "imgui:853" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -8742,7 +9412,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui:380" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:481" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -8750,26 +9420,6 @@ defs["igGetContentRegionAvail"][1]["ret"] = "void" defs["igGetContentRegionAvail"][1]["signature"] = "()" defs["igGetContentRegionAvail"][1]["stname"] = "" defs["igGetContentRegionAvail"]["()"] = defs["igGetContentRegionAvail"][1] -defs["igGetContentRegionMax"] = {} -defs["igGetContentRegionMax"][1] = {} -defs["igGetContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetContentRegionMax"][1]["argsT"] = {} -defs["igGetContentRegionMax"][1]["argsT"][1] = {} -defs["igGetContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetContentRegionMax"][1]["call_args"] = "()" -defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["defaults"] = {} -defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui:381" -defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" -defs["igGetContentRegionMax"][1]["ret"] = "void" -defs["igGetContentRegionMax"][1]["signature"] = "()" -defs["igGetContentRegionMax"][1]["stname"] = "" -defs["igGetContentRegionMax"]["()"] = defs["igGetContentRegionMax"][1] defs["igGetCurrentContext"] = {} defs["igGetCurrentContext"][1] = {} defs["igGetCurrentContext"][1]["args"] = "()" @@ -8779,7 +9429,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui:290" +defs["igGetCurrentContext"][1]["location"] = "imgui:325" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -8798,7 +9448,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui:447" +defs["igGetCursorPos"][1]["location"] = "imgui:482" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -8815,7 +9465,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui:448" +defs["igGetCursorPosX"][1]["location"] = "imgui:483" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -8831,7 +9481,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui:449" +defs["igGetCursorPosY"][1]["location"] = "imgui:484" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -8850,7 +9500,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui:454" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:479" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -8870,7 +9520,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui:453" +defs["igGetCursorStartPos"][1]["location"] = "imgui:488" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -8887,7 +9537,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui:814" +defs["igGetDragDropPayload"][1]["location"] = "imgui:885" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -8903,7 +9553,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui:299" +defs["igGetDrawData"][1]["location"] = "imgui:335" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -8919,7 +9569,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui:870" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:944" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -8935,7 +9585,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui:423" +defs["igGetFont"][1]["location"] = "imgui:461" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -8951,7 +9601,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui:424" +defs["igGetFontSize"][1]["location"] = "imgui:462" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -8970,7 +9620,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:425" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:463" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -8987,7 +9637,7 @@ defs["igGetForegroundDrawList"][1]["call_args"] = "()" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui:863" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:937" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -9003,7 +9653,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui:869" +defs["igGetFrameCount"][1]["location"] = "imgui:943" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -9019,7 +9669,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui:459" +defs["igGetFrameHeight"][1]["location"] = "imgui:503" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -9035,7 +9685,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:460" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:504" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -9054,7 +9704,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui:478" +defs["igGetID"][1]["location"] = "imgui:522" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetID_Str" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -9074,7 +9724,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui:479" +defs["igGetID"][2]["location"] = "imgui:523" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetID_StrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -9091,15 +9741,33 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui:480" +defs["igGetID"][3]["location"] = "imgui:524" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetID_Ptr" defs["igGetID"][3]["ret"] = "ImGuiID" defs["igGetID"][3]["signature"] = "(const void*)" defs["igGetID"][3]["stname"] = "" +defs["igGetID"][4] = {} +defs["igGetID"][4]["args"] = "(int int_id)" +defs["igGetID"][4]["argsT"] = {} +defs["igGetID"][4]["argsT"][1] = {} +defs["igGetID"][4]["argsT"][1]["name"] = "int_id" +defs["igGetID"][4]["argsT"][1]["type"] = "int" +defs["igGetID"][4]["argsoriginal"] = "(int int_id)" +defs["igGetID"][4]["call_args"] = "(int_id)" +defs["igGetID"][4]["cimguiname"] = "igGetID" +defs["igGetID"][4]["defaults"] = {} +defs["igGetID"][4]["funcname"] = "GetID" +defs["igGetID"][4]["location"] = "imgui:525" +defs["igGetID"][4]["namespace"] = "ImGui" +defs["igGetID"][4]["ov_cimguiname"] = "igGetID_Int" +defs["igGetID"][4]["ret"] = "ImGuiID" +defs["igGetID"][4]["signature"] = "(int)" +defs["igGetID"][4]["stname"] = "" defs["igGetID"]["(const char*)"] = defs["igGetID"][1] defs["igGetID"]["(const char*,const char*)"] = defs["igGetID"][2] defs["igGetID"]["(const void*)"] = defs["igGetID"][3] +defs["igGetID"]["(int)"] = defs["igGetID"][4] defs["igGetIO"] = {} defs["igGetIO"][1] = {} defs["igGetIO"][1]["args"] = "()" @@ -9109,7 +9777,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui:294" +defs["igGetIO"][1]["location"] = "imgui:329" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -9126,7 +9794,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "imgui:849" +defs["igGetItemID"][1]["location"] = "imgui:924" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -9145,7 +9813,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui:851" +defs["igGetItemRectMax"][1]["location"] = "imgui:926" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -9165,7 +9833,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui:850" +defs["igGetItemRectMin"][1]["location"] = "imgui:925" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -9185,7 +9853,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui:852" +defs["igGetItemRectSize"][1]["location"] = "imgui:927" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -9193,25 +9861,6 @@ defs["igGetItemRectSize"][1]["ret"] = "void" defs["igGetItemRectSize"][1]["signature"] = "()" defs["igGetItemRectSize"][1]["stname"] = "" defs["igGetItemRectSize"]["()"] = defs["igGetItemRectSize"][1] -defs["igGetKeyIndex"] = {} -defs["igGetKeyIndex"][1] = {} -defs["igGetKeyIndex"][1]["args"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["argsT"] = {} -defs["igGetKeyIndex"][1]["argsT"][1] = {} -defs["igGetKeyIndex"][1]["argsT"][1]["name"] = "key" -defs["igGetKeyIndex"][1]["argsT"][1]["type"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["argsoriginal"] = "(ImGuiKey key)" -defs["igGetKeyIndex"][1]["call_args"] = "(key)" -defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["defaults"] = {} -defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui:2957" -defs["igGetKeyIndex"][1]["namespace"] = "ImGui" -defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" -defs["igGetKeyIndex"][1]["ret"] = "ImGuiKey" -defs["igGetKeyIndex"][1]["signature"] = "(ImGuiKey)" -defs["igGetKeyIndex"][1]["stname"] = "" -defs["igGetKeyIndex"]["(ImGuiKey)"] = defs["igGetKeyIndex"][1] defs["igGetKeyName"] = {} defs["igGetKeyName"][1] = {} defs["igGetKeyName"][1]["args"] = "(ImGuiKey key)" @@ -9224,7 +9873,7 @@ defs["igGetKeyName"][1]["call_args"] = "(key)" defs["igGetKeyName"][1]["cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["defaults"] = {} defs["igGetKeyName"][1]["funcname"] = "GetKeyName" -defs["igGetKeyName"][1]["location"] = "imgui:895" +defs["igGetKeyName"][1]["location"] = "imgui:968" defs["igGetKeyName"][1]["namespace"] = "ImGui" defs["igGetKeyName"][1]["ov_cimguiname"] = "igGetKeyName" defs["igGetKeyName"][1]["ret"] = "const char*" @@ -9249,7 +9898,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui:894" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:967" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -9265,7 +9914,7 @@ defs["igGetMainViewport"][1]["call_args"] = "()" defs["igGetMainViewport"][1]["cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["defaults"] = {} defs["igGetMainViewport"][1]["funcname"] = "GetMainViewport" -defs["igGetMainViewport"][1]["location"] = "imgui:859" +defs["igGetMainViewport"][1]["location"] = "imgui:933" defs["igGetMainViewport"][1]["namespace"] = "ImGui" defs["igGetMainViewport"][1]["ov_cimguiname"] = "igGetMainViewport" defs["igGetMainViewport"][1]["ret"] = "ImGuiViewport*" @@ -9284,7 +9933,7 @@ defs["igGetMouseClickedCount"][1]["call_args"] = "(button)" defs["igGetMouseClickedCount"][1]["cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["defaults"] = {} defs["igGetMouseClickedCount"][1]["funcname"] = "GetMouseClickedCount" -defs["igGetMouseClickedCount"][1]["location"] = "imgui:906" +defs["igGetMouseClickedCount"][1]["location"] = "imgui:1005" defs["igGetMouseClickedCount"][1]["namespace"] = "ImGui" defs["igGetMouseClickedCount"][1]["ov_cimguiname"] = "igGetMouseClickedCount" defs["igGetMouseClickedCount"][1]["ret"] = "int" @@ -9300,7 +9949,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui:915" +defs["igGetMouseCursor"][1]["location"] = "imgui:1014" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -9327,7 +9976,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui:913" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:1012" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -9347,7 +9996,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui:910" +defs["igGetMousePos"][1]["location"] = "imgui:1009" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -9367,7 +10016,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:911" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:1010" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -9375,6 +10024,23 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["ret"] = "void" defs["igGetMousePosOnOpeningCurrentPopup"][1]["signature"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["stname"] = "" defs["igGetMousePosOnOpeningCurrentPopup"]["()"] = defs["igGetMousePosOnOpeningCurrentPopup"][1] +defs["igGetPlatformIO"] = {} +defs["igGetPlatformIO"][1] = {} +defs["igGetPlatformIO"][1]["args"] = "()" +defs["igGetPlatformIO"][1]["argsT"] = {} +defs["igGetPlatformIO"][1]["argsoriginal"] = "()" +defs["igGetPlatformIO"][1]["call_args"] = "()" +defs["igGetPlatformIO"][1]["cimguiname"] = "igGetPlatformIO" +defs["igGetPlatformIO"][1]["defaults"] = {} +defs["igGetPlatformIO"][1]["funcname"] = "GetPlatformIO" +defs["igGetPlatformIO"][1]["location"] = "imgui:330" +defs["igGetPlatformIO"][1]["namespace"] = "ImGui" +defs["igGetPlatformIO"][1]["ov_cimguiname"] = "igGetPlatformIO" +defs["igGetPlatformIO"][1]["ret"] = "ImGuiPlatformIO*" +defs["igGetPlatformIO"][1]["retref"] = "&" +defs["igGetPlatformIO"][1]["signature"] = "()" +defs["igGetPlatformIO"][1]["stname"] = "" +defs["igGetPlatformIO"]["()"] = defs["igGetPlatformIO"][1] defs["igGetScrollMaxX"] = {} defs["igGetScrollMaxX"][1] = {} defs["igGetScrollMaxX"][1]["args"] = "()" @@ -9384,7 +10050,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui:392" +defs["igGetScrollMaxX"][1]["location"] = "imgui:430" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -9400,7 +10066,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui:393" +defs["igGetScrollMaxY"][1]["location"] = "imgui:431" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -9416,7 +10082,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui:388" +defs["igGetScrollX"][1]["location"] = "imgui:426" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -9432,7 +10098,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui:389" +defs["igGetScrollY"][1]["location"] = "imgui:427" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -9448,7 +10114,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui:873" +defs["igGetStateStorage"][1]["location"] = "imgui:947" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -9464,7 +10130,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui:295" +defs["igGetStyle"][1]["location"] = "imgui:331" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -9484,7 +10150,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui:871" +defs["igGetStyleColorName"][1]["location"] = "imgui:945" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -9503,7 +10169,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui:429" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:467" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -9520,7 +10186,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui:457" +defs["igGetTextLineHeight"][1]["location"] = "imgui:501" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -9536,7 +10202,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:458" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:502" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -9552,7 +10218,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui:868" +defs["igGetTime"][1]["location"] = "imgui:942" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -9568,7 +10234,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:615" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:665" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -9584,53 +10250,13 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui:311" +defs["igGetVersion"][1]["location"] = "imgui:347" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" defs["igGetVersion"][1]["signature"] = "()" defs["igGetVersion"][1]["stname"] = "" defs["igGetVersion"]["()"] = defs["igGetVersion"][1] -defs["igGetWindowContentRegionMax"] = {} -defs["igGetWindowContentRegionMax"][1] = {} -defs["igGetWindowContentRegionMax"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMax"][1]["argsT"] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMax"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMax"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["defaults"] = {} -defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:383" -defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["ret"] = "void" -defs["igGetWindowContentRegionMax"][1]["signature"] = "()" -defs["igGetWindowContentRegionMax"][1]["stname"] = "" -defs["igGetWindowContentRegionMax"]["()"] = defs["igGetWindowContentRegionMax"][1] -defs["igGetWindowContentRegionMin"] = {} -defs["igGetWindowContentRegionMin"][1] = {} -defs["igGetWindowContentRegionMin"][1]["args"] = "(ImVec2 *pOut)" -defs["igGetWindowContentRegionMin"][1]["argsT"] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1] = {} -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["name"] = "pOut" -defs["igGetWindowContentRegionMin"][1]["argsT"][1]["type"] = "ImVec2*" -defs["igGetWindowContentRegionMin"][1]["argsoriginal"] = "()" -defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" -defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["defaults"] = {} -defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:382" -defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" -defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 -defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["ret"] = "void" -defs["igGetWindowContentRegionMin"][1]["signature"] = "()" -defs["igGetWindowContentRegionMin"][1]["stname"] = "" -defs["igGetWindowContentRegionMin"]["()"] = defs["igGetWindowContentRegionMin"][1] defs["igGetWindowDrawList"] = {} defs["igGetWindowDrawList"][1] = {} defs["igGetWindowDrawList"][1]["args"] = "()" @@ -9640,7 +10266,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui:351" +defs["igGetWindowDrawList"][1]["location"] = "imgui:397" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -9656,7 +10282,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui:355" +defs["igGetWindowHeight"][1]["location"] = "imgui:401" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -9675,7 +10301,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui:352" +defs["igGetWindowPos"][1]["location"] = "imgui:398" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -9695,7 +10321,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui:353" +defs["igGetWindowSize"][1]["location"] = "imgui:399" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -9712,7 +10338,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui:354" +defs["igGetWindowWidth"][1]["location"] = "imgui:400" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -9721,13 +10347,13 @@ defs["igGetWindowWidth"][1]["stname"] = "" defs["igGetWindowWidth"]["()"] = defs["igGetWindowWidth"][1] defs["igImage"] = {} defs["igImage"][1] = {} -defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" +defs["igImage"][1]["args"] = "(ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 tint_col,const ImVec4 border_col)" defs["igImage"][1]["argsT"] = {} defs["igImage"][1]["argsT"][1] = {} defs["igImage"][1]["argsT"][1]["name"] = "user_texture_id" defs["igImage"][1]["argsT"][1]["type"] = "ImTextureID" defs["igImage"][1]["argsT"][2] = {} -defs["igImage"][1]["argsT"][2]["name"] = "size" +defs["igImage"][1]["argsT"][2]["name"] = "image_size" defs["igImage"][1]["argsT"][2]["type"] = "const ImVec2" defs["igImage"][1]["argsT"][3] = {} defs["igImage"][1]["argsT"][3]["name"] = "uv0" @@ -9741,8 +10367,8 @@ defs["igImage"][1]["argsT"][5]["type"] = "const ImVec4" defs["igImage"][1]["argsT"][6] = {} defs["igImage"][1]["argsT"][6]["name"] = "border_col" defs["igImage"][1]["argsT"][6]["type"] = "const ImVec4" -defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" -defs["igImage"][1]["call_args"] = "(user_texture_id,size,uv0,uv1,tint_col,border_col)" +defs["igImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& tint_col=ImVec4(1,1,1,1),const ImVec4& border_col=ImVec4(0,0,0,0))" +defs["igImage"][1]["call_args"] = "(user_texture_id,image_size,uv0,uv1,tint_col,border_col)" defs["igImage"][1]["cimguiname"] = "igImage" defs["igImage"][1]["defaults"] = {} defs["igImage"][1]["defaults"]["border_col"] = "ImVec4(0,0,0,0)" @@ -9750,7 +10376,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui:514" +defs["igImage"][1]["location"] = "imgui:564" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -9759,7 +10385,7 @@ defs["igImage"][1]["stname"] = "" defs["igImage"]["(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec4,const ImVec4)"] = defs["igImage"][1] defs["igImageButton"] = {} defs["igImageButton"][1] = {} -defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" +defs["igImageButton"][1]["args"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2 image_size,const ImVec2 uv0,const ImVec2 uv1,const ImVec4 bg_col,const ImVec4 tint_col)" defs["igImageButton"][1]["argsT"] = {} defs["igImageButton"][1]["argsT"][1] = {} defs["igImageButton"][1]["argsT"][1]["name"] = "str_id" @@ -9768,7 +10394,7 @@ defs["igImageButton"][1]["argsT"][2] = {} defs["igImageButton"][1]["argsT"][2]["name"] = "user_texture_id" defs["igImageButton"][1]["argsT"][2]["type"] = "ImTextureID" defs["igImageButton"][1]["argsT"][3] = {} -defs["igImageButton"][1]["argsT"][3]["name"] = "size" +defs["igImageButton"][1]["argsT"][3]["name"] = "image_size" defs["igImageButton"][1]["argsT"][3]["type"] = "const ImVec2" defs["igImageButton"][1]["argsT"][4] = {} defs["igImageButton"][1]["argsT"][4]["name"] = "uv0" @@ -9782,8 +10408,8 @@ defs["igImageButton"][1]["argsT"][6]["type"] = "const ImVec4" defs["igImageButton"][1]["argsT"][7] = {} defs["igImageButton"][1]["argsT"][7]["name"] = "tint_col" defs["igImageButton"][1]["argsT"][7]["type"] = "const ImVec4" -defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" -defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,size,uv0,uv1,bg_col,tint_col)" +defs["igImageButton"][1]["argsoriginal"] = "(const char* str_id,ImTextureID user_texture_id,const ImVec2& image_size,const ImVec2& uv0=ImVec2(0,0),const ImVec2& uv1=ImVec2(1,1),const ImVec4& bg_col=ImVec4(0,0,0,0),const ImVec4& tint_col=ImVec4(1,1,1,1))" +defs["igImageButton"][1]["call_args"] = "(str_id,user_texture_id,image_size,uv0,uv1,bg_col,tint_col)" defs["igImageButton"][1]["cimguiname"] = "igImageButton" defs["igImageButton"][1]["defaults"] = {} defs["igImageButton"][1]["defaults"]["bg_col"] = "ImVec4(0,0,0,0)" @@ -9791,7 +10417,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui:515" +defs["igImageButton"][1]["location"] = "imgui:565" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -9811,7 +10437,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui:443" +defs["igIndent"][1]["location"] = "imgui:496" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -9849,7 +10475,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui:586" +defs["igInputDouble"][1]["location"] = "imgui:636" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -9887,7 +10513,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui:578" +defs["igInputFloat"][1]["location"] = "imgui:628" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -9917,7 +10543,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui:579" +defs["igInputFloat2"][1]["location"] = "imgui:629" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -9947,7 +10573,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui:580" +defs["igInputFloat3"][1]["location"] = "imgui:630" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -9977,7 +10603,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui:581" +defs["igInputFloat4"][1]["location"] = "imgui:631" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -10011,7 +10637,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui:582" +defs["igInputInt"][1]["location"] = "imgui:632" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -10037,7 +10663,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui:583" +defs["igInputInt2"][1]["location"] = "imgui:633" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -10063,7 +10689,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui:584" +defs["igInputInt3"][1]["location"] = "imgui:634" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -10089,7 +10715,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui:585" +defs["igInputInt4"][1]["location"] = "imgui:635" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -10130,7 +10756,7 @@ defs["igInputScalar"][1]["defaults"]["format"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui:587" +defs["igInputScalar"][1]["location"] = "imgui:637" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -10174,7 +10800,7 @@ defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui:588" +defs["igInputScalarN"][1]["location"] = "imgui:638" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -10211,7 +10837,7 @@ defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui:575" +defs["igInputText"][1]["location"] = "imgui:625" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -10252,7 +10878,7 @@ defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui:576" +defs["igInputTextMultiline"][1]["location"] = "imgui:626" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -10292,7 +10918,7 @@ defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui:577" +defs["igInputTextWithHint"][1]["location"] = "imgui:627" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -10318,7 +10944,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui:502" +defs["igInvisibleButton"][1]["location"] = "imgui:548" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -10334,7 +10960,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui:847" +defs["igIsAnyItemActive"][1]["location"] = "imgui:922" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -10350,7 +10976,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui:848" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:923" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -10366,7 +10992,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui:846" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:921" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -10382,7 +11008,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui:909" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:1008" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -10398,7 +11024,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui:842" +defs["igIsItemActivated"][1]["location"] = "imgui:917" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -10414,7 +11040,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui:837" +defs["igIsItemActive"][1]["location"] = "imgui:912" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -10434,7 +11060,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui:839" +defs["igIsItemClicked"][1]["location"] = "imgui:914" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -10450,7 +11076,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui:843" +defs["igIsItemDeactivated"][1]["location"] = "imgui:918" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -10466,7 +11092,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:844" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:919" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -10482,7 +11108,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui:841" +defs["igIsItemEdited"][1]["location"] = "imgui:916" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -10498,7 +11124,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui:838" +defs["igIsItemFocused"][1]["location"] = "imgui:913" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -10518,7 +11144,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui:836" +defs["igIsItemHovered"][1]["location"] = "imgui:911" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -10534,13 +11160,29 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui:845" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:920" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" defs["igIsItemToggledOpen"][1]["signature"] = "()" defs["igIsItemToggledOpen"][1]["stname"] = "" defs["igIsItemToggledOpen"]["()"] = defs["igIsItemToggledOpen"][1] +defs["igIsItemToggledSelection"] = {} +defs["igIsItemToggledSelection"][1] = {} +defs["igIsItemToggledSelection"][1]["args"] = "()" +defs["igIsItemToggledSelection"][1]["argsT"] = {} +defs["igIsItemToggledSelection"][1]["argsoriginal"] = "()" +defs["igIsItemToggledSelection"][1]["call_args"] = "()" +defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" +defs["igIsItemToggledSelection"][1]["defaults"] = {} +defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" +defs["igIsItemToggledSelection"][1]["location"] = "imgui:687" +defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" +defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" +defs["igIsItemToggledSelection"][1]["ret"] = "bool" +defs["igIsItemToggledSelection"][1]["signature"] = "()" +defs["igIsItemToggledSelection"][1]["stname"] = "" +defs["igIsItemToggledSelection"]["()"] = defs["igIsItemToggledSelection"][1] defs["igIsItemVisible"] = {} defs["igIsItemVisible"][1] = {} defs["igIsItemVisible"][1]["args"] = "()" @@ -10550,13 +11192,32 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui:840" +defs["igIsItemVisible"][1]["location"] = "imgui:915" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" defs["igIsItemVisible"][1]["signature"] = "()" defs["igIsItemVisible"][1]["stname"] = "" defs["igIsItemVisible"]["()"] = defs["igIsItemVisible"][1] +defs["igIsKeyChordPressed"] = {} +defs["igIsKeyChordPressed"][1] = {} +defs["igIsKeyChordPressed"][1]["args"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["argsT"] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1] = {} +defs["igIsKeyChordPressed"][1]["argsT"][1]["name"] = "key_chord" +defs["igIsKeyChordPressed"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igIsKeyChordPressed"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord)" +defs["igIsKeyChordPressed"][1]["call_args"] = "(key_chord)" +defs["igIsKeyChordPressed"][1]["cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["defaults"] = {} +defs["igIsKeyChordPressed"][1]["funcname"] = "IsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["location"] = "imgui:966" +defs["igIsKeyChordPressed"][1]["namespace"] = "ImGui" +defs["igIsKeyChordPressed"][1]["ov_cimguiname"] = "igIsKeyChordPressed" +defs["igIsKeyChordPressed"][1]["ret"] = "bool" +defs["igIsKeyChordPressed"][1]["signature"] = "(ImGuiKeyChord)" +defs["igIsKeyChordPressed"][1]["stname"] = "" +defs["igIsKeyChordPressed"]["(ImGuiKeyChord)"] = defs["igIsKeyChordPressed"][1] defs["igIsKeyDown"] = {} defs["igIsKeyDown"][1] = {} defs["igIsKeyDown"][1]["args"] = "(ImGuiKey key)" @@ -10569,7 +11230,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(key)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui:891" +defs["igIsKeyDown"][1]["location"] = "imgui:963" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -10592,7 +11253,7 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui:892" +defs["igIsKeyPressed"][1]["location"] = "imgui:964" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -10611,7 +11272,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(key)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui:893" +defs["igIsKeyReleased"][1]["location"] = "imgui:965" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -10634,7 +11295,7 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui:903" +defs["igIsMouseClicked"][1]["location"] = "imgui:1002" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -10653,7 +11314,7 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:905" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:1004" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -10672,7 +11333,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui:902" +defs["igIsMouseDown"][1]["location"] = "imgui:1001" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -10695,7 +11356,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui:912" +defs["igIsMouseDragging"][1]["location"] = "imgui:1011" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -10721,7 +11382,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui:907" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:1006" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -10741,7 +11402,7 @@ defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui:908" +defs["igIsMousePosValid"][1]["location"] = "imgui:1007" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -10760,7 +11421,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui:904" +defs["igIsMouseReleased"][1]["location"] = "imgui:1003" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -10783,7 +11444,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui:714" +defs["igIsPopupOpen"][1]["location"] = "imgui:785" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -10802,7 +11463,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui:866" +defs["igIsRectVisible"][1]["location"] = "imgui:940" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisible_Nil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -10822,7 +11483,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui:867" +defs["igIsRectVisible"][2]["location"] = "imgui:941" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisible_Vec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -10839,7 +11500,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui:347" +defs["igIsWindowAppearing"][1]["location"] = "imgui:393" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -10855,7 +11516,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui:348" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:394" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -10875,7 +11536,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui:349" +defs["igIsWindowFocused"][1]["location"] = "imgui:395" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -10895,7 +11556,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui:350" +defs["igIsWindowHovered"][1]["location"] = "imgui:396" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -10921,7 +11582,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui:492" +defs["igLabelText"][1]["location"] = "imgui:537" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -10946,7 +11607,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui:493" +defs["igLabelTextV"][1]["location"] = "imgui:538" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -10978,14 +11639,14 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui:634" +defs["igListBox"][1]["location"] = "imgui:697" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBox_Str_arr" defs["igListBox"][1]["ret"] = "bool" defs["igListBox"][1]["signature"] = "(const char*,int*,const char* const[],int,int)" defs["igListBox"][1]["stname"] = "" defs["igListBox"][2] = {} -defs["igListBox"][2]["args"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items)" +defs["igListBox"][2]["args"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items)" defs["igListBox"][2]["argsT"] = {} defs["igListBox"][2]["argsT"][1] = {} defs["igListBox"][2]["argsT"][1]["name"] = "label" @@ -10994,12 +11655,12 @@ defs["igListBox"][2]["argsT"][2] = {} defs["igListBox"][2]["argsT"][2]["name"] = "current_item" defs["igListBox"][2]["argsT"][2]["type"] = "int*" defs["igListBox"][2]["argsT"][3] = {} -defs["igListBox"][2]["argsT"][3]["name"] = "items_getter" -defs["igListBox"][2]["argsT"][3]["ret"] = "bool" -defs["igListBox"][2]["argsT"][3]["signature"] = "(void* data,int idx,const char** out_text)" -defs["igListBox"][2]["argsT"][3]["type"] = "bool(*)(void* data,int idx,const char** out_text)" +defs["igListBox"][2]["argsT"][3]["name"] = "getter" +defs["igListBox"][2]["argsT"][3]["ret"] = "const char*" +defs["igListBox"][2]["argsT"][3]["signature"] = "(void* user_data,int idx)" +defs["igListBox"][2]["argsT"][3]["type"] = "const char*(*)(void* user_data,int idx)" defs["igListBox"][2]["argsT"][4] = {} -defs["igListBox"][2]["argsT"][4]["name"] = "data" +defs["igListBox"][2]["argsT"][4]["name"] = "user_data" defs["igListBox"][2]["argsT"][4]["type"] = "void*" defs["igListBox"][2]["argsT"][5] = {} defs["igListBox"][2]["argsT"][5]["name"] = "items_count" @@ -11007,20 +11668,20 @@ defs["igListBox"][2]["argsT"][5]["type"] = "int" defs["igListBox"][2]["argsT"][6] = {} defs["igListBox"][2]["argsT"][6]["name"] = "height_in_items" defs["igListBox"][2]["argsT"][6]["type"] = "int" -defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,bool(*items_getter)(void* data,int idx,const char** out_text),void* data,int items_count,int height_in_items=-1)" -defs["igListBox"][2]["call_args"] = "(label,current_item,items_getter,data,items_count,height_in_items)" +defs["igListBox"][2]["argsoriginal"] = "(const char* label,int* current_item,const char*(*getter)(void* user_data,int idx),void* user_data,int items_count,int height_in_items=-1)" +defs["igListBox"][2]["call_args"] = "(label,current_item,getter,user_data,items_count,height_in_items)" defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui:635" +defs["igListBox"][2]["location"] = "imgui:698" defs["igListBox"][2]["namespace"] = "ImGui" -defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnBoolPtr" +defs["igListBox"][2]["ov_cimguiname"] = "igListBox_FnStrPtr" defs["igListBox"][2]["ret"] = "bool" -defs["igListBox"][2]["signature"] = "(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)" +defs["igListBox"][2]["signature"] = "(const char*,int*,const char*(*)(void*,int),void*,int,int)" defs["igListBox"][2]["stname"] = "" -defs["igListBox"]["(const char*,int*,bool(*)(void*,int,const char**),void*,int,int)"] = defs["igListBox"][2] defs["igListBox"]["(const char*,int*,const char* const[],int,int)"] = defs["igListBox"][1] +defs["igListBox"]["(const char*,int*,const char*(*)(void*,int),void*,int,int)"] = defs["igListBox"][2] defs["igLoadIniSettingsFromDisk"] = {} defs["igLoadIniSettingsFromDisk"][1] = {} defs["igLoadIniSettingsFromDisk"][1]["args"] = "(const char* ini_filename)" @@ -11033,7 +11694,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:928" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:1027" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -11056,7 +11717,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:929" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:1028" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -11072,7 +11733,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui:799" +defs["igLogButtons"][1]["location"] = "imgui:870" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -11088,7 +11749,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui:798" +defs["igLogFinish"][1]["location"] = "imgui:869" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -11111,7 +11772,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui:800" +defs["igLogText"][1]["location"] = "imgui:871" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -11134,7 +11795,7 @@ defs["igLogTextV"][1]["call_args"] = "(fmt,args)" defs["igLogTextV"][1]["cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["defaults"] = {} defs["igLogTextV"][1]["funcname"] = "LogTextV" -defs["igLogTextV"][1]["location"] = "imgui:801" +defs["igLogTextV"][1]["location"] = "imgui:872" defs["igLogTextV"][1]["namespace"] = "ImGui" defs["igLogTextV"][1]["ov_cimguiname"] = "igLogTextV" defs["igLogTextV"][1]["ret"] = "void" @@ -11154,7 +11815,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui:797" +defs["igLogToClipboard"][1]["location"] = "imgui:868" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -11178,7 +11839,7 @@ defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui:796" +defs["igLogToFile"][1]["location"] = "imgui:867" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -11198,7 +11859,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui:795" +defs["igLogToTTY"][1]["location"] = "imgui:866" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -11217,7 +11878,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui:943" +defs["igMemAlloc"][1]["location"] = "imgui:1049" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -11236,7 +11897,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui:944" +defs["igMemFree"][1]["location"] = "imgui:1050" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -11267,7 +11928,7 @@ defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui:662" +defs["igMenuItem"][1]["location"] = "imgui:725" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItem_Bool" defs["igMenuItem"][1]["ret"] = "bool" @@ -11294,7 +11955,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui:663" +defs["igMenuItem"][2]["location"] = "imgui:726" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItem_BoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -11311,7 +11972,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui:296" +defs["igNewFrame"][1]["location"] = "imgui:332" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -11327,7 +11988,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui:440" +defs["igNewLine"][1]["location"] = "imgui:493" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -11343,7 +12004,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui:776" +defs["igNextColumn"][1]["location"] = "imgui:847" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -11366,7 +12027,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui:696" +defs["igOpenPopup"][1]["location"] = "imgui:767" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup_Str" defs["igOpenPopup"][1]["ret"] = "void" @@ -11387,7 +12048,7 @@ defs["igOpenPopup"][2]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][2]["defaults"] = {} defs["igOpenPopup"][2]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][2]["funcname"] = "OpenPopup" -defs["igOpenPopup"][2]["location"] = "imgui:697" +defs["igOpenPopup"][2]["location"] = "imgui:768" defs["igOpenPopup"][2]["namespace"] = "ImGui" defs["igOpenPopup"][2]["ov_cimguiname"] = "igOpenPopup_ID" defs["igOpenPopup"][2]["ret"] = "void" @@ -11412,7 +12073,7 @@ defs["igOpenPopupOnItemClick"][1]["defaults"] = {} defs["igOpenPopupOnItemClick"][1]["defaults"]["popup_flags"] = "1" defs["igOpenPopupOnItemClick"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupOnItemClick"][1]["funcname"] = "OpenPopupOnItemClick" -defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:698" +defs["igOpenPopupOnItemClick"][1]["location"] = "imgui:769" defs["igOpenPopupOnItemClick"][1]["namespace"] = "ImGui" defs["igOpenPopupOnItemClick"][1]["ov_cimguiname"] = "igOpenPopupOnItemClick" defs["igOpenPopupOnItemClick"][1]["ret"] = "void" @@ -11450,7 +12111,7 @@ defs["igPlotHistogram"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotHistogram"][1]["argsT"][9] = {} defs["igPlotHistogram"][1]["argsT"][9]["name"] = "stride" defs["igPlotHistogram"][1]["argsT"][9]["type"] = "int" -defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotHistogram"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["defaults"] = {} @@ -11461,7 +12122,7 @@ defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui:641" +defs["igPlotHistogram"][1]["location"] = "imgui:704" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogram_FloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -11499,7 +12160,7 @@ defs["igPlotHistogram"][2]["argsT"][8]["type"] = "float" defs["igPlotHistogram"][2]["argsT"][9] = {} defs["igPlotHistogram"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotHistogram"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotHistogram"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["defaults"] = {} @@ -11509,7 +12170,7 @@ defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui:642" +defs["igPlotHistogram"][2]["location"] = "imgui:705" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogram_FnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -11548,7 +12209,7 @@ defs["igPlotLines"][1]["argsT"][8]["type"] = "ImVec2" defs["igPlotLines"][1]["argsT"][9] = {} defs["igPlotLines"][1]["argsT"][9]["name"] = "stride" defs["igPlotLines"][1]["argsT"][9]["type"] = "int" -defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" +defs["igPlotLines"][1]["argsoriginal"] = "(const char* label,const float* values,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0),int stride=sizeof(float))" defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size,stride)" defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["defaults"] = {} @@ -11559,7 +12220,7 @@ defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui:639" +defs["igPlotLines"][1]["location"] = "imgui:702" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLines_FloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -11597,7 +12258,7 @@ defs["igPlotLines"][2]["argsT"][8]["type"] = "float" defs["igPlotLines"][2]["argsT"][9] = {} defs["igPlotLines"][2]["argsT"][9]["name"] = "graph_size" defs["igPlotLines"][2]["argsT"][9]["type"] = "ImVec2" -defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282346638528859811704183484516925e+38F,float scale_max=3.40282346638528859811704183484516925e+38F,ImVec2 graph_size=ImVec2(0,0))" +defs["igPlotLines"][2]["argsoriginal"] = "(const char* label,float(*values_getter)(void* data,int idx),void* data,int values_count,int values_offset=0,const char* overlay_text=((void*)0),float scale_min=3.40282347e+38F,float scale_max=3.40282347e+38F,ImVec2 graph_size=ImVec2(0,0))" defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,values_offset,overlay_text,scale_min,scale_max,graph_size)" defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["defaults"] = {} @@ -11607,7 +12268,7 @@ defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui:640" +defs["igPlotLines"][2]["location"] = "imgui:703" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLines_FnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -11615,38 +12276,6 @@ defs["igPlotLines"][2]["signature"] = "(const char*,float(*)(void*,int),void*,in defs["igPlotLines"][2]["stname"] = "" defs["igPlotLines"]["(const char*,const float*,int,int,const char*,float,float,ImVec2,int)"] = defs["igPlotLines"][1] defs["igPlotLines"]["(const char*,float(*)(void*,int),void*,int,int,const char*,float,float,ImVec2)"] = defs["igPlotLines"][2] -defs["igPopAllowKeyboardFocus"] = {} -defs["igPopAllowKeyboardFocus"][1] = {} -defs["igPopAllowKeyboardFocus"][1]["args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPopAllowKeyboardFocus"][1]["argsoriginal"] = "()" -defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" -defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:409" -defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPopAllowKeyboardFocus"][1]["signature"] = "()" -defs["igPopAllowKeyboardFocus"][1]["stname"] = "" -defs["igPopAllowKeyboardFocus"]["()"] = defs["igPopAllowKeyboardFocus"][1] -defs["igPopButtonRepeat"] = {} -defs["igPopButtonRepeat"][1] = {} -defs["igPopButtonRepeat"][1]["args"] = "()" -defs["igPopButtonRepeat"][1]["argsT"] = {} -defs["igPopButtonRepeat"][1]["argsoriginal"] = "()" -defs["igPopButtonRepeat"][1]["call_args"] = "()" -defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["defaults"] = {} -defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui:411" -defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" -defs["igPopButtonRepeat"][1]["ret"] = "void" -defs["igPopButtonRepeat"][1]["signature"] = "()" -defs["igPopButtonRepeat"][1]["stname"] = "" -defs["igPopButtonRepeat"]["()"] = defs["igPopButtonRepeat"][1] defs["igPopClipRect"] = {} defs["igPopClipRect"][1] = {} defs["igPopClipRect"][1]["args"] = "()" @@ -11656,7 +12285,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui:826" +defs["igPopClipRect"][1]["location"] = "imgui:898" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -11672,7 +12301,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui:401" +defs["igPopFont"][1]["location"] = "imgui:439" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -11688,13 +12317,29 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui:477" +defs["igPopID"][1]["location"] = "imgui:521" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" defs["igPopID"][1]["signature"] = "()" defs["igPopID"][1]["stname"] = "" defs["igPopID"]["()"] = defs["igPopID"][1] +defs["igPopItemFlag"] = {} +defs["igPopItemFlag"][1] = {} +defs["igPopItemFlag"][1]["args"] = "()" +defs["igPopItemFlag"][1]["argsT"] = {} +defs["igPopItemFlag"][1]["argsoriginal"] = "()" +defs["igPopItemFlag"][1]["call_args"] = "()" +defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" +defs["igPopItemFlag"][1]["defaults"] = {} +defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" +defs["igPopItemFlag"][1]["location"] = "imgui:449" +defs["igPopItemFlag"][1]["namespace"] = "ImGui" +defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" +defs["igPopItemFlag"][1]["ret"] = "void" +defs["igPopItemFlag"][1]["signature"] = "()" +defs["igPopItemFlag"][1]["stname"] = "" +defs["igPopItemFlag"]["()"] = defs["igPopItemFlag"][1] defs["igPopItemWidth"] = {} defs["igPopItemWidth"][1] = {} defs["igPopItemWidth"][1]["args"] = "()" @@ -11704,7 +12349,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui:415" +defs["igPopItemWidth"][1]["location"] = "imgui:453" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -11724,7 +12369,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui:404" +defs["igPopStyleColor"][1]["location"] = "imgui:442" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -11744,7 +12389,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui:407" +defs["igPopStyleVar"][1]["location"] = "imgui:447" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -11760,7 +12405,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui:419" +defs["igPopTextWrapPos"][1]["location"] = "imgui:457" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -11780,58 +12425,20 @@ defs["igProgressBar"][1]["argsT"][2]["type"] = "const ImVec2" defs["igProgressBar"][1]["argsT"][3] = {} defs["igProgressBar"][1]["argsT"][3]["name"] = "overlay" defs["igProgressBar"][1]["argsT"][3]["type"] = "const char*" -defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435082228750796873653722224568e-38F,0),const char* overlay=((void*)0))" +defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_arg=ImVec2(-1.17549435e-38F,0),const char* overlay=((void*)0))" defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["defaults"] = {} defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-FLT_MIN,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui:509" +defs["igProgressBar"][1]["location"] = "imgui:555" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" defs["igProgressBar"][1]["signature"] = "(float,const ImVec2,const char*)" defs["igProgressBar"][1]["stname"] = "" defs["igProgressBar"]["(float,const ImVec2,const char*)"] = defs["igProgressBar"][1] -defs["igPushAllowKeyboardFocus"] = {} -defs["igPushAllowKeyboardFocus"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["args"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["argsT"] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1] = {} -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["name"] = "allow_keyboard_focus" -defs["igPushAllowKeyboardFocus"][1]["argsT"][1]["type"] = "bool" -defs["igPushAllowKeyboardFocus"][1]["argsoriginal"] = "(bool allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" -defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} -defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:408" -defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" -defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" -defs["igPushAllowKeyboardFocus"][1]["signature"] = "(bool)" -defs["igPushAllowKeyboardFocus"][1]["stname"] = "" -defs["igPushAllowKeyboardFocus"]["(bool)"] = defs["igPushAllowKeyboardFocus"][1] -defs["igPushButtonRepeat"] = {} -defs["igPushButtonRepeat"][1] = {} -defs["igPushButtonRepeat"][1]["args"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["argsT"] = {} -defs["igPushButtonRepeat"][1]["argsT"][1] = {} -defs["igPushButtonRepeat"][1]["argsT"][1]["name"] = "repeat" -defs["igPushButtonRepeat"][1]["argsT"][1]["type"] = "bool" -defs["igPushButtonRepeat"][1]["argsoriginal"] = "(bool repeat)" -defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" -defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["defaults"] = {} -defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui:410" -defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" -defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" -defs["igPushButtonRepeat"][1]["ret"] = "void" -defs["igPushButtonRepeat"][1]["signature"] = "(bool)" -defs["igPushButtonRepeat"][1]["stname"] = "" -defs["igPushButtonRepeat"]["(bool)"] = defs["igPushButtonRepeat"][1] defs["igPushClipRect"] = {} defs["igPushClipRect"][1] = {} defs["igPushClipRect"][1]["args"] = "(const ImVec2 clip_rect_min,const ImVec2 clip_rect_max,bool intersect_with_current_clip_rect)" @@ -11850,7 +12457,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui:825" +defs["igPushClipRect"][1]["location"] = "imgui:897" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -11869,7 +12476,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui:400" +defs["igPushFont"][1]["location"] = "imgui:438" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -11888,7 +12495,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui:473" +defs["igPushID"][1]["location"] = "imgui:517" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushID_Str" defs["igPushID"][1]["ret"] = "void" @@ -11908,7 +12515,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui:474" +defs["igPushID"][2]["location"] = "imgui:518" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushID_StrStr" defs["igPushID"][2]["ret"] = "void" @@ -11925,7 +12532,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui:475" +defs["igPushID"][3]["location"] = "imgui:519" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushID_Ptr" defs["igPushID"][3]["ret"] = "void" @@ -11942,7 +12549,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui:476" +defs["igPushID"][4]["location"] = "imgui:520" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushID_Int" defs["igPushID"][4]["ret"] = "void" @@ -11952,6 +12559,28 @@ defs["igPushID"]["(const char*)"] = defs["igPushID"][1] defs["igPushID"]["(const char*,const char*)"] = defs["igPushID"][2] defs["igPushID"]["(const void*)"] = defs["igPushID"][3] defs["igPushID"]["(int)"] = defs["igPushID"][4] +defs["igPushItemFlag"] = {} +defs["igPushItemFlag"][1] = {} +defs["igPushItemFlag"][1]["args"] = "(ImGuiItemFlags option,bool enabled)" +defs["igPushItemFlag"][1]["argsT"] = {} +defs["igPushItemFlag"][1]["argsT"][1] = {} +defs["igPushItemFlag"][1]["argsT"][1]["name"] = "option" +defs["igPushItemFlag"][1]["argsT"][1]["type"] = "ImGuiItemFlags" +defs["igPushItemFlag"][1]["argsT"][2] = {} +defs["igPushItemFlag"][1]["argsT"][2]["name"] = "enabled" +defs["igPushItemFlag"][1]["argsT"][2]["type"] = "bool" +defs["igPushItemFlag"][1]["argsoriginal"] = "(ImGuiItemFlags option,bool enabled)" +defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" +defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" +defs["igPushItemFlag"][1]["defaults"] = {} +defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" +defs["igPushItemFlag"][1]["location"] = "imgui:448" +defs["igPushItemFlag"][1]["namespace"] = "ImGui" +defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" +defs["igPushItemFlag"][1]["ret"] = "void" +defs["igPushItemFlag"][1]["signature"] = "(ImGuiItemFlags,bool)" +defs["igPushItemFlag"][1]["stname"] = "" +defs["igPushItemFlag"]["(ImGuiItemFlags,bool)"] = defs["igPushItemFlag"][1] defs["igPushItemWidth"] = {} defs["igPushItemWidth"][1] = {} defs["igPushItemWidth"][1]["args"] = "(float item_width)" @@ -11964,7 +12593,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui:414" +defs["igPushItemWidth"][1]["location"] = "imgui:452" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -11986,7 +12615,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui:402" +defs["igPushStyleColor"][1]["location"] = "imgui:440" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColor_U32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -12006,7 +12635,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui:403" +defs["igPushStyleColor"][2]["location"] = "imgui:441" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColor_Vec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -12029,7 +12658,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui:405" +defs["igPushStyleVar"][1]["location"] = "imgui:443" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVar_Float" defs["igPushStyleVar"][1]["ret"] = "void" @@ -12049,7 +12678,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui:406" +defs["igPushStyleVar"][2]["location"] = "imgui:444" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVar_Vec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -12057,6 +12686,50 @@ defs["igPushStyleVar"][2]["signature"] = "(ImGuiStyleVar,const ImVec2)" defs["igPushStyleVar"][2]["stname"] = "" defs["igPushStyleVar"]["(ImGuiStyleVar,const ImVec2)"] = defs["igPushStyleVar"][2] defs["igPushStyleVar"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVar"][1] +defs["igPushStyleVarX"] = {} +defs["igPushStyleVarX"][1] = {} +defs["igPushStyleVarX"][1]["args"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["argsT"] = {} +defs["igPushStyleVarX"][1]["argsT"][1] = {} +defs["igPushStyleVarX"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarX"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarX"][1]["argsT"][2] = {} +defs["igPushStyleVarX"][1]["argsT"][2]["name"] = "val_x" +defs["igPushStyleVarX"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarX"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_x)" +defs["igPushStyleVarX"][1]["call_args"] = "(idx,val_x)" +defs["igPushStyleVarX"][1]["cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["defaults"] = {} +defs["igPushStyleVarX"][1]["funcname"] = "PushStyleVarX" +defs["igPushStyleVarX"][1]["location"] = "imgui:445" +defs["igPushStyleVarX"][1]["namespace"] = "ImGui" +defs["igPushStyleVarX"][1]["ov_cimguiname"] = "igPushStyleVarX" +defs["igPushStyleVarX"][1]["ret"] = "void" +defs["igPushStyleVarX"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarX"][1]["stname"] = "" +defs["igPushStyleVarX"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarX"][1] +defs["igPushStyleVarY"] = {} +defs["igPushStyleVarY"][1] = {} +defs["igPushStyleVarY"][1]["args"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["argsT"] = {} +defs["igPushStyleVarY"][1]["argsT"][1] = {} +defs["igPushStyleVarY"][1]["argsT"][1]["name"] = "idx" +defs["igPushStyleVarY"][1]["argsT"][1]["type"] = "ImGuiStyleVar" +defs["igPushStyleVarY"][1]["argsT"][2] = {} +defs["igPushStyleVarY"][1]["argsT"][2]["name"] = "val_y" +defs["igPushStyleVarY"][1]["argsT"][2]["type"] = "float" +defs["igPushStyleVarY"][1]["argsoriginal"] = "(ImGuiStyleVar idx,float val_y)" +defs["igPushStyleVarY"][1]["call_args"] = "(idx,val_y)" +defs["igPushStyleVarY"][1]["cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["defaults"] = {} +defs["igPushStyleVarY"][1]["funcname"] = "PushStyleVarY" +defs["igPushStyleVarY"][1]["location"] = "imgui:446" +defs["igPushStyleVarY"][1]["namespace"] = "ImGui" +defs["igPushStyleVarY"][1]["ov_cimguiname"] = "igPushStyleVarY" +defs["igPushStyleVarY"][1]["ret"] = "void" +defs["igPushStyleVarY"][1]["signature"] = "(ImGuiStyleVar,float)" +defs["igPushStyleVarY"][1]["stname"] = "" +defs["igPushStyleVarY"]["(ImGuiStyleVar,float)"] = defs["igPushStyleVarY"][1] defs["igPushTextWrapPos"] = {} defs["igPushTextWrapPos"][1] = {} defs["igPushTextWrapPos"][1]["args"] = "(float wrap_local_pos_x)" @@ -12070,7 +12743,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui:418" +defs["igPushTextWrapPos"][1]["location"] = "imgui:456" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -12092,7 +12765,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui:507" +defs["igRadioButton"][1]["location"] = "imgui:553" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButton_Bool" defs["igRadioButton"][1]["ret"] = "bool" @@ -12115,7 +12788,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui:508" +defs["igRadioButton"][2]["location"] = "imgui:554" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButton_IntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -12132,7 +12805,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui:298" +defs["igRender"][1]["location"] = "imgui:334" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -12152,7 +12825,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui:914" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:1013" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -12176,7 +12849,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui:439" +defs["igSameLine"][1]["location"] = "imgui:492" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -12195,7 +12868,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:930" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:1029" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -12215,7 +12888,7 @@ defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:931" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:1030" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -12246,7 +12919,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui:623" +defs["igSelectable"][1]["location"] = "imgui:674" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectable_Bool" defs["igSelectable"][1]["ret"] = "bool" @@ -12274,7 +12947,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui:624" +defs["igSelectable"][2]["location"] = "imgui:675" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectable_BoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -12291,13 +12964,32 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui:438" +defs["igSeparator"][1]["location"] = "imgui:491" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" defs["igSeparator"][1]["signature"] = "()" defs["igSeparator"][1]["stname"] = "" defs["igSeparator"]["()"] = defs["igSeparator"][1] +defs["igSeparatorText"] = {} +defs["igSeparatorText"][1] = {} +defs["igSeparatorText"][1]["args"] = "(const char* label)" +defs["igSeparatorText"][1]["argsT"] = {} +defs["igSeparatorText"][1]["argsT"][1] = {} +defs["igSeparatorText"][1]["argsT"][1]["name"] = "label" +defs["igSeparatorText"][1]["argsT"][1]["type"] = "const char*" +defs["igSeparatorText"][1]["argsoriginal"] = "(const char* label)" +defs["igSeparatorText"][1]["call_args"] = "(label)" +defs["igSeparatorText"][1]["cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["defaults"] = {} +defs["igSeparatorText"][1]["funcname"] = "SeparatorText" +defs["igSeparatorText"][1]["location"] = "imgui:541" +defs["igSeparatorText"][1]["namespace"] = "ImGui" +defs["igSeparatorText"][1]["ov_cimguiname"] = "igSeparatorText" +defs["igSeparatorText"][1]["ret"] = "void" +defs["igSeparatorText"][1]["signature"] = "(const char*)" +defs["igSeparatorText"][1]["stname"] = "" +defs["igSeparatorText"]["(const char*)"] = defs["igSeparatorText"][1] defs["igSetAllocatorFunctions"] = {} defs["igSetAllocatorFunctions"][1] = {} defs["igSetAllocatorFunctions"][1]["args"] = "(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data)" @@ -12317,7 +13009,7 @@ defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui:941" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:1047" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -12336,7 +13028,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui:922" +defs["igSetClipboardText"][1]["location"] = "imgui:1021" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -12355,7 +13047,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui:598" +defs["igSetColorEditOptions"][1]["location"] = "imgui:648" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -12377,7 +13069,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui:781" +defs["igSetColumnOffset"][1]["location"] = "imgui:852" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -12399,7 +13091,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui:779" +defs["igSetColumnWidth"][1]["location"] = "imgui:850" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -12418,7 +13110,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui:291" +defs["igSetCurrentContext"][1]["location"] = "imgui:326" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -12437,7 +13129,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui:450" +defs["igSetCursorPos"][1]["location"] = "imgui:485" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -12456,7 +13148,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui:451" +defs["igSetCursorPosX"][1]["location"] = "imgui:486" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -12475,7 +13167,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui:452" +defs["igSetCursorPosY"][1]["location"] = "imgui:487" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -12494,7 +13186,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui:455" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:480" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -12523,29 +13215,13 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui:809" +defs["igSetDragDropPayload"][1]["location"] = "imgui:880" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" defs["igSetDragDropPayload"][1]["signature"] = "(const char*,const void*,size_t,ImGuiCond)" defs["igSetDragDropPayload"][1]["stname"] = "" defs["igSetDragDropPayload"]["(const char*,const void*,size_t,ImGuiCond)"] = defs["igSetDragDropPayload"][1] -defs["igSetItemAllowOverlap"] = {} -defs["igSetItemAllowOverlap"][1] = {} -defs["igSetItemAllowOverlap"][1]["args"] = "()" -defs["igSetItemAllowOverlap"][1]["argsT"] = {} -defs["igSetItemAllowOverlap"][1]["argsoriginal"] = "()" -defs["igSetItemAllowOverlap"][1]["call_args"] = "()" -defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["defaults"] = {} -defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui:853" -defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" -defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["ret"] = "void" -defs["igSetItemAllowOverlap"][1]["signature"] = "()" -defs["igSetItemAllowOverlap"][1]["stname"] = "" -defs["igSetItemAllowOverlap"]["()"] = defs["igSetItemAllowOverlap"][1] defs["igSetItemDefaultFocus"] = {} defs["igSetItemDefaultFocus"][1] = {} defs["igSetItemDefaultFocus"][1]["args"] = "()" @@ -12555,13 +13231,77 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui:830" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:902" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" defs["igSetItemDefaultFocus"][1]["signature"] = "()" defs["igSetItemDefaultFocus"][1]["stname"] = "" defs["igSetItemDefaultFocus"]["()"] = defs["igSetItemDefaultFocus"][1] +defs["igSetItemKeyOwner"] = {} +defs["igSetItemKeyOwner"][1] = {} +defs["igSetItemKeyOwner"][1]["args"] = "(ImGuiKey key)" +defs["igSetItemKeyOwner"][1]["argsT"] = {} +defs["igSetItemKeyOwner"][1]["argsT"][1] = {} +defs["igSetItemKeyOwner"][1]["argsT"][1]["name"] = "key" +defs["igSetItemKeyOwner"][1]["argsT"][1]["type"] = "ImGuiKey" +defs["igSetItemKeyOwner"][1]["argsoriginal"] = "(ImGuiKey key)" +defs["igSetItemKeyOwner"][1]["call_args"] = "(key)" +defs["igSetItemKeyOwner"][1]["cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["defaults"] = {} +defs["igSetItemKeyOwner"][1]["funcname"] = "SetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["location"] = "imgui:995" +defs["igSetItemKeyOwner"][1]["namespace"] = "ImGui" +defs["igSetItemKeyOwner"][1]["ov_cimguiname"] = "igSetItemKeyOwner" +defs["igSetItemKeyOwner"][1]["ret"] = "void" +defs["igSetItemKeyOwner"][1]["signature"] = "(ImGuiKey)" +defs["igSetItemKeyOwner"][1]["stname"] = "" +defs["igSetItemKeyOwner"]["(ImGuiKey)"] = defs["igSetItemKeyOwner"][1] +defs["igSetItemTooltip"] = {} +defs["igSetItemTooltip"][1] = {} +defs["igSetItemTooltip"][1]["args"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["argsT"] = {} +defs["igSetItemTooltip"][1]["argsT"][1] = {} +defs["igSetItemTooltip"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltip"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltip"][1]["argsT"][2] = {} +defs["igSetItemTooltip"][1]["argsT"][2]["name"] = "..." +defs["igSetItemTooltip"][1]["argsT"][2]["type"] = "..." +defs["igSetItemTooltip"][1]["argsoriginal"] = "(const char* fmt,...)" +defs["igSetItemTooltip"][1]["call_args"] = "(fmt,...)" +defs["igSetItemTooltip"][1]["cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["defaults"] = {} +defs["igSetItemTooltip"][1]["funcname"] = "SetItemTooltip" +defs["igSetItemTooltip"][1]["isvararg"] = "...)" +defs["igSetItemTooltip"][1]["location"] = "imgui:742" +defs["igSetItemTooltip"][1]["namespace"] = "ImGui" +defs["igSetItemTooltip"][1]["ov_cimguiname"] = "igSetItemTooltip" +defs["igSetItemTooltip"][1]["ret"] = "void" +defs["igSetItemTooltip"][1]["signature"] = "(const char*,...)" +defs["igSetItemTooltip"][1]["stname"] = "" +defs["igSetItemTooltip"]["(const char*,...)"] = defs["igSetItemTooltip"][1] +defs["igSetItemTooltipV"] = {} +defs["igSetItemTooltipV"][1] = {} +defs["igSetItemTooltipV"][1]["args"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["argsT"] = {} +defs["igSetItemTooltipV"][1]["argsT"][1] = {} +defs["igSetItemTooltipV"][1]["argsT"][1]["name"] = "fmt" +defs["igSetItemTooltipV"][1]["argsT"][1]["type"] = "const char*" +defs["igSetItemTooltipV"][1]["argsT"][2] = {} +defs["igSetItemTooltipV"][1]["argsT"][2]["name"] = "args" +defs["igSetItemTooltipV"][1]["argsT"][2]["type"] = "va_list" +defs["igSetItemTooltipV"][1]["argsoriginal"] = "(const char* fmt,va_list args)" +defs["igSetItemTooltipV"][1]["call_args"] = "(fmt,args)" +defs["igSetItemTooltipV"][1]["cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["defaults"] = {} +defs["igSetItemTooltipV"][1]["funcname"] = "SetItemTooltipV" +defs["igSetItemTooltipV"][1]["location"] = "imgui:743" +defs["igSetItemTooltipV"][1]["namespace"] = "ImGui" +defs["igSetItemTooltipV"][1]["ov_cimguiname"] = "igSetItemTooltipV" +defs["igSetItemTooltipV"][1]["ret"] = "void" +defs["igSetItemTooltipV"][1]["signature"] = "(const char*,va_list)" +defs["igSetItemTooltipV"][1]["stname"] = "" +defs["igSetItemTooltipV"]["(const char*,va_list)"] = defs["igSetItemTooltipV"][1] defs["igSetKeyboardFocusHere"] = {} defs["igSetKeyboardFocusHere"][1] = {} defs["igSetKeyboardFocusHere"][1]["args"] = "(int offset)" @@ -12575,7 +13315,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:831" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:903" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -12594,7 +13334,7 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui:916" +defs["igSetMouseCursor"][1]["location"] = "imgui:1015" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -12613,7 +13353,7 @@ defs["igSetNextFrameWantCaptureKeyboard"][1]["call_args"] = "(want_capture_keybo defs["igSetNextFrameWantCaptureKeyboard"][1]["cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureKeyboard"][1]["funcname"] = "SetNextFrameWantCaptureKeyboard" -defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:896" +defs["igSetNextFrameWantCaptureKeyboard"][1]["location"] = "imgui:969" defs["igSetNextFrameWantCaptureKeyboard"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureKeyboard"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureKeyboard" defs["igSetNextFrameWantCaptureKeyboard"][1]["ret"] = "void" @@ -12632,13 +13372,29 @@ defs["igSetNextFrameWantCaptureMouse"][1]["call_args"] = "(want_capture_mouse)" defs["igSetNextFrameWantCaptureMouse"][1]["cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["defaults"] = {} defs["igSetNextFrameWantCaptureMouse"][1]["funcname"] = "SetNextFrameWantCaptureMouse" -defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:917" +defs["igSetNextFrameWantCaptureMouse"][1]["location"] = "imgui:1016" defs["igSetNextFrameWantCaptureMouse"][1]["namespace"] = "ImGui" defs["igSetNextFrameWantCaptureMouse"][1]["ov_cimguiname"] = "igSetNextFrameWantCaptureMouse" defs["igSetNextFrameWantCaptureMouse"][1]["ret"] = "void" defs["igSetNextFrameWantCaptureMouse"][1]["signature"] = "(bool)" defs["igSetNextFrameWantCaptureMouse"][1]["stname"] = "" defs["igSetNextFrameWantCaptureMouse"]["(bool)"] = defs["igSetNextFrameWantCaptureMouse"][1] +defs["igSetNextItemAllowOverlap"] = {} +defs["igSetNextItemAllowOverlap"][1] = {} +defs["igSetNextItemAllowOverlap"][1]["args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["argsT"] = {} +defs["igSetNextItemAllowOverlap"][1]["argsoriginal"] = "()" +defs["igSetNextItemAllowOverlap"][1]["call_args"] = "()" +defs["igSetNextItemAllowOverlap"][1]["cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["defaults"] = {} +defs["igSetNextItemAllowOverlap"][1]["funcname"] = "SetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["location"] = "imgui:906" +defs["igSetNextItemAllowOverlap"][1]["namespace"] = "ImGui" +defs["igSetNextItemAllowOverlap"][1]["ov_cimguiname"] = "igSetNextItemAllowOverlap" +defs["igSetNextItemAllowOverlap"][1]["ret"] = "void" +defs["igSetNextItemAllowOverlap"][1]["signature"] = "()" +defs["igSetNextItemAllowOverlap"][1]["stname"] = "" +defs["igSetNextItemAllowOverlap"]["()"] = defs["igSetNextItemAllowOverlap"][1] defs["igSetNextItemOpen"] = {} defs["igSetNextItemOpen"][1] = {} defs["igSetNextItemOpen"][1]["args"] = "(bool is_open,ImGuiCond cond)" @@ -12655,13 +13411,74 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui:618" +defs["igSetNextItemOpen"][1]["location"] = "imgui:668" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" defs["igSetNextItemOpen"][1]["signature"] = "(bool,ImGuiCond)" defs["igSetNextItemOpen"][1]["stname"] = "" defs["igSetNextItemOpen"]["(bool,ImGuiCond)"] = defs["igSetNextItemOpen"][1] +defs["igSetNextItemSelectionUserData"] = {} +defs["igSetNextItemSelectionUserData"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["args"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["argsT"] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1] = {} +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["name"] = "selection_user_data" +defs["igSetNextItemSelectionUserData"][1]["argsT"][1]["type"] = "ImGuiSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["argsoriginal"] = "(ImGuiSelectionUserData selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["call_args"] = "(selection_user_data)" +defs["igSetNextItemSelectionUserData"][1]["cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["defaults"] = {} +defs["igSetNextItemSelectionUserData"][1]["funcname"] = "SetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["location"] = "imgui:686" +defs["igSetNextItemSelectionUserData"][1]["namespace"] = "ImGui" +defs["igSetNextItemSelectionUserData"][1]["ov_cimguiname"] = "igSetNextItemSelectionUserData" +defs["igSetNextItemSelectionUserData"][1]["ret"] = "void" +defs["igSetNextItemSelectionUserData"][1]["signature"] = "(ImGuiSelectionUserData)" +defs["igSetNextItemSelectionUserData"][1]["stname"] = "" +defs["igSetNextItemSelectionUserData"]["(ImGuiSelectionUserData)"] = defs["igSetNextItemSelectionUserData"][1] +defs["igSetNextItemShortcut"] = {} +defs["igSetNextItemShortcut"][1] = {} +defs["igSetNextItemShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" +defs["igSetNextItemShortcut"][1]["argsT"] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1] = {} +defs["igSetNextItemShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igSetNextItemShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igSetNextItemShortcut"][1]["argsT"][2] = {} +defs["igSetNextItemShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igSetNextItemShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igSetNextItemShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igSetNextItemShortcut"][1]["call_args"] = "(key_chord,flags)" +defs["igSetNextItemShortcut"][1]["cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["defaults"] = {} +defs["igSetNextItemShortcut"][1]["defaults"]["flags"] = "0" +defs["igSetNextItemShortcut"][1]["funcname"] = "SetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["location"] = "imgui:987" +defs["igSetNextItemShortcut"][1]["namespace"] = "ImGui" +defs["igSetNextItemShortcut"][1]["ov_cimguiname"] = "igSetNextItemShortcut" +defs["igSetNextItemShortcut"][1]["ret"] = "void" +defs["igSetNextItemShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" +defs["igSetNextItemShortcut"][1]["stname"] = "" +defs["igSetNextItemShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igSetNextItemShortcut"][1] +defs["igSetNextItemStorageID"] = {} +defs["igSetNextItemStorageID"][1] = {} +defs["igSetNextItemStorageID"][1]["args"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["argsT"] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1] = {} +defs["igSetNextItemStorageID"][1]["argsT"][1]["name"] = "storage_id" +defs["igSetNextItemStorageID"][1]["argsT"][1]["type"] = "ImGuiID" +defs["igSetNextItemStorageID"][1]["argsoriginal"] = "(ImGuiID storage_id)" +defs["igSetNextItemStorageID"][1]["call_args"] = "(storage_id)" +defs["igSetNextItemStorageID"][1]["cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["defaults"] = {} +defs["igSetNextItemStorageID"][1]["funcname"] = "SetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["location"] = "imgui:669" +defs["igSetNextItemStorageID"][1]["namespace"] = "ImGui" +defs["igSetNextItemStorageID"][1]["ov_cimguiname"] = "igSetNextItemStorageID" +defs["igSetNextItemStorageID"][1]["ret"] = "void" +defs["igSetNextItemStorageID"][1]["signature"] = "(ImGuiID)" +defs["igSetNextItemStorageID"][1]["stname"] = "" +defs["igSetNextItemStorageID"]["(ImGuiID)"] = defs["igSetNextItemStorageID"][1] defs["igSetNextItemWidth"] = {} defs["igSetNextItemWidth"][1] = {} defs["igSetNextItemWidth"][1]["args"] = "(float item_width)" @@ -12674,7 +13491,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui:416" +defs["igSetNextItemWidth"][1]["location"] = "imgui:454" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -12693,7 +13510,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:366" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:412" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -12716,7 +13533,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:363" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:409" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -12735,7 +13552,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui:362" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:408" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -12751,7 +13568,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui:364" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:410" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -12778,7 +13595,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui:359" +defs["igSetNextWindowPos"][1]["location"] = "imgui:405" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -12797,7 +13614,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "imgui:365" +defs["igSetNextWindowScroll"][1]["location"] = "imgui:411" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -12820,7 +13637,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui:360" +defs["igSetNextWindowSize"][1]["location"] = "imgui:406" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -12850,7 +13667,7 @@ defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:361" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:407" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -12873,7 +13690,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui:396" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:434" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -12896,7 +13713,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui:397" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:435" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -12916,7 +13733,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui:394" +defs["igSetScrollHereX"][1]["location"] = "imgui:432" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -12936,7 +13753,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui:395" +defs["igSetScrollHereY"][1]["location"] = "imgui:433" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -12955,7 +13772,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui:390" +defs["igSetScrollX"][1]["location"] = "imgui:428" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["ret"] = "void" @@ -12974,7 +13791,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui:391" +defs["igSetScrollY"][1]["location"] = "imgui:429" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["ret"] = "void" @@ -12993,7 +13810,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui:872" +defs["igSetStateStorage"][1]["location"] = "imgui:946" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -13012,7 +13829,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui:791" +defs["igSetTabItemClosed"][1]["location"] = "imgui:862" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -13035,7 +13852,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui:669" +defs["igSetTooltip"][1]["location"] = "imgui:734" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -13057,7 +13874,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui:670" +defs["igSetTooltipV"][1]["location"] = "imgui:735" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -13080,7 +13897,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui:369" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:415" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsed_Bool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -13104,7 +13921,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui:374" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:420" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsed_Str" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -13121,7 +13938,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui:370" +defs["igSetWindowFocus"][1]["location"] = "imgui:416" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocus_Nil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -13138,7 +13955,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui:375" +defs["igSetWindowFocus"][2]["location"] = "imgui:421" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocus_Str" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -13158,7 +13975,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui:371" +defs["igSetWindowFontScale"][1]["location"] = "imgui:417" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -13181,7 +13998,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui:367" +defs["igSetWindowPos"][1]["location"] = "imgui:413" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPos_Vec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -13205,7 +14022,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui:372" +defs["igSetWindowPos"][2]["location"] = "imgui:418" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPos_Str" defs["igSetWindowPos"][2]["ret"] = "void" @@ -13229,7 +14046,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui:368" +defs["igSetWindowSize"][1]["location"] = "imgui:414" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSize_Vec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -13253,7 +14070,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui:373" +defs["igSetWindowSize"][2]["location"] = "imgui:419" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSize_Str" defs["igSetWindowSize"][2]["ret"] = "void" @@ -13261,6 +14078,29 @@ defs["igSetWindowSize"][2]["signature"] = "(const char*,const ImVec2,ImGuiCond)" defs["igSetWindowSize"][2]["stname"] = "" defs["igSetWindowSize"]["(const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][1] defs["igSetWindowSize"]["(const char*,const ImVec2,ImGuiCond)"] = defs["igSetWindowSize"][2] +defs["igShortcut"] = {} +defs["igShortcut"][1] = {} +defs["igShortcut"][1]["args"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags)" +defs["igShortcut"][1]["argsT"] = {} +defs["igShortcut"][1]["argsT"][1] = {} +defs["igShortcut"][1]["argsT"][1]["name"] = "key_chord" +defs["igShortcut"][1]["argsT"][1]["type"] = "ImGuiKeyChord" +defs["igShortcut"][1]["argsT"][2] = {} +defs["igShortcut"][1]["argsT"][2]["name"] = "flags" +defs["igShortcut"][1]["argsT"][2]["type"] = "ImGuiInputFlags" +defs["igShortcut"][1]["argsoriginal"] = "(ImGuiKeyChord key_chord,ImGuiInputFlags flags=0)" +defs["igShortcut"][1]["call_args"] = "(key_chord,flags)" +defs["igShortcut"][1]["cimguiname"] = "igShortcut" +defs["igShortcut"][1]["defaults"] = {} +defs["igShortcut"][1]["defaults"]["flags"] = "0" +defs["igShortcut"][1]["funcname"] = "Shortcut" +defs["igShortcut"][1]["location"] = "imgui:986" +defs["igShortcut"][1]["namespace"] = "ImGui" +defs["igShortcut"][1]["ov_cimguiname"] = "igShortcut" +defs["igShortcut"][1]["ret"] = "bool" +defs["igShortcut"][1]["signature"] = "(ImGuiKeyChord,ImGuiInputFlags)" +defs["igShortcut"][1]["stname"] = "" +defs["igShortcut"]["(ImGuiKeyChord,ImGuiInputFlags)"] = defs["igShortcut"][1] defs["igShowAboutWindow"] = {} defs["igShowAboutWindow"][1] = {} defs["igShowAboutWindow"][1]["args"] = "(bool* p_open)" @@ -13274,7 +14114,7 @@ defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui:306" +defs["igShowAboutWindow"][1]["location"] = "imgui:342" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -13294,7 +14134,7 @@ defs["igShowDebugLogWindow"][1]["cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["defaults"] = {} defs["igShowDebugLogWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDebugLogWindow"][1]["funcname"] = "ShowDebugLogWindow" -defs["igShowDebugLogWindow"][1]["location"] = "imgui:304" +defs["igShowDebugLogWindow"][1]["location"] = "imgui:340" defs["igShowDebugLogWindow"][1]["namespace"] = "ImGui" defs["igShowDebugLogWindow"][1]["ov_cimguiname"] = "igShowDebugLogWindow" defs["igShowDebugLogWindow"][1]["ret"] = "void" @@ -13314,7 +14154,7 @@ defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui:302" +defs["igShowDemoWindow"][1]["location"] = "imgui:338" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -13333,13 +14173,33 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui:309" +defs["igShowFontSelector"][1]["location"] = "imgui:345" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" defs["igShowFontSelector"][1]["signature"] = "(const char*)" defs["igShowFontSelector"][1]["stname"] = "" defs["igShowFontSelector"]["(const char*)"] = defs["igShowFontSelector"][1] +defs["igShowIDStackToolWindow"] = {} +defs["igShowIDStackToolWindow"][1] = {} +defs["igShowIDStackToolWindow"][1]["args"] = "(bool* p_open)" +defs["igShowIDStackToolWindow"][1]["argsT"] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1] = {} +defs["igShowIDStackToolWindow"][1]["argsT"][1]["name"] = "p_open" +defs["igShowIDStackToolWindow"][1]["argsT"][1]["type"] = "bool*" +defs["igShowIDStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" +defs["igShowIDStackToolWindow"][1]["call_args"] = "(p_open)" +defs["igShowIDStackToolWindow"][1]["cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["defaults"] = {} +defs["igShowIDStackToolWindow"][1]["defaults"]["p_open"] = "NULL" +defs["igShowIDStackToolWindow"][1]["funcname"] = "ShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["location"] = "imgui:341" +defs["igShowIDStackToolWindow"][1]["namespace"] = "ImGui" +defs["igShowIDStackToolWindow"][1]["ov_cimguiname"] = "igShowIDStackToolWindow" +defs["igShowIDStackToolWindow"][1]["ret"] = "void" +defs["igShowIDStackToolWindow"][1]["signature"] = "(bool*)" +defs["igShowIDStackToolWindow"][1]["stname"] = "" +defs["igShowIDStackToolWindow"]["(bool*)"] = defs["igShowIDStackToolWindow"][1] defs["igShowMetricsWindow"] = {} defs["igShowMetricsWindow"][1] = {} defs["igShowMetricsWindow"][1]["args"] = "(bool* p_open)" @@ -13353,33 +14213,13 @@ defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui:303" +defs["igShowMetricsWindow"][1]["location"] = "imgui:339" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" defs["igShowMetricsWindow"][1]["signature"] = "(bool*)" defs["igShowMetricsWindow"][1]["stname"] = "" defs["igShowMetricsWindow"]["(bool*)"] = defs["igShowMetricsWindow"][1] -defs["igShowStackToolWindow"] = {} -defs["igShowStackToolWindow"][1] = {} -defs["igShowStackToolWindow"][1]["args"] = "(bool* p_open)" -defs["igShowStackToolWindow"][1]["argsT"] = {} -defs["igShowStackToolWindow"][1]["argsT"][1] = {} -defs["igShowStackToolWindow"][1]["argsT"][1]["name"] = "p_open" -defs["igShowStackToolWindow"][1]["argsT"][1]["type"] = "bool*" -defs["igShowStackToolWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" -defs["igShowStackToolWindow"][1]["call_args"] = "(p_open)" -defs["igShowStackToolWindow"][1]["cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["defaults"] = {} -defs["igShowStackToolWindow"][1]["defaults"]["p_open"] = "NULL" -defs["igShowStackToolWindow"][1]["funcname"] = "ShowStackToolWindow" -defs["igShowStackToolWindow"][1]["location"] = "imgui:305" -defs["igShowStackToolWindow"][1]["namespace"] = "ImGui" -defs["igShowStackToolWindow"][1]["ov_cimguiname"] = "igShowStackToolWindow" -defs["igShowStackToolWindow"][1]["ret"] = "void" -defs["igShowStackToolWindow"][1]["signature"] = "(bool*)" -defs["igShowStackToolWindow"][1]["stname"] = "" -defs["igShowStackToolWindow"]["(bool*)"] = defs["igShowStackToolWindow"][1] defs["igShowStyleEditor"] = {} defs["igShowStyleEditor"][1] = {} defs["igShowStyleEditor"][1]["args"] = "(ImGuiStyle* ref)" @@ -13393,7 +14233,7 @@ defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui:307" +defs["igShowStyleEditor"][1]["location"] = "imgui:343" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -13412,7 +14252,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui:308" +defs["igShowStyleSelector"][1]["location"] = "imgui:344" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -13428,7 +14268,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui:310" +defs["igShowUserGuide"][1]["location"] = "imgui:346" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -13466,7 +14306,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui:561" +defs["igSliderAngle"][1]["location"] = "imgui:611" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -13502,7 +14342,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui:557" +defs["igSliderFloat"][1]["location"] = "imgui:607" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -13538,7 +14378,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui:558" +defs["igSliderFloat2"][1]["location"] = "imgui:608" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -13574,7 +14414,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui:559" +defs["igSliderFloat3"][1]["location"] = "imgui:609" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -13610,7 +14450,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui:560" +defs["igSliderFloat4"][1]["location"] = "imgui:610" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -13646,7 +14486,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui:562" +defs["igSliderInt"][1]["location"] = "imgui:612" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -13682,7 +14522,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui:563" +defs["igSliderInt2"][1]["location"] = "imgui:613" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -13718,7 +14558,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui:564" +defs["igSliderInt3"][1]["location"] = "imgui:614" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -13754,7 +14594,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui:565" +defs["igSliderInt4"][1]["location"] = "imgui:615" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -13793,7 +14633,7 @@ defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui:566" +defs["igSliderScalar"][1]["location"] = "imgui:616" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -13835,7 +14675,7 @@ defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui:567" +defs["igSliderScalarN"][1]["location"] = "imgui:617" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -13854,7 +14694,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui:501" +defs["igSmallButton"][1]["location"] = "imgui:547" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -13870,7 +14710,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui:441" +defs["igSpacing"][1]["location"] = "imgui:494" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -13890,7 +14730,7 @@ defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui:316" +defs["igStyleColorsClassic"][1]["location"] = "imgui:352" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -13910,7 +14750,7 @@ defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui:314" +defs["igStyleColorsDark"][1]["location"] = "imgui:350" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -13930,7 +14770,7 @@ defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui:315" +defs["igStyleColorsLight"][1]["location"] = "imgui:351" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -13953,13 +14793,29 @@ defs["igTabItemButton"][1]["cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["defaults"] = {} defs["igTabItemButton"][1]["defaults"]["flags"] = "0" defs["igTabItemButton"][1]["funcname"] = "TabItemButton" -defs["igTabItemButton"][1]["location"] = "imgui:790" +defs["igTabItemButton"][1]["location"] = "imgui:861" defs["igTabItemButton"][1]["namespace"] = "ImGui" defs["igTabItemButton"][1]["ov_cimguiname"] = "igTabItemButton" defs["igTabItemButton"][1]["ret"] = "bool" defs["igTabItemButton"][1]["signature"] = "(const char*,ImGuiTabItemFlags)" defs["igTabItemButton"][1]["stname"] = "" defs["igTabItemButton"]["(const char*,ImGuiTabItemFlags)"] = defs["igTabItemButton"][1] +defs["igTableAngledHeadersRow"] = {} +defs["igTableAngledHeadersRow"][1] = {} +defs["igTableAngledHeadersRow"][1]["args"] = "()" +defs["igTableAngledHeadersRow"][1]["argsT"] = {} +defs["igTableAngledHeadersRow"][1]["argsoriginal"] = "()" +defs["igTableAngledHeadersRow"][1]["call_args"] = "()" +defs["igTableAngledHeadersRow"][1]["cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["defaults"] = {} +defs["igTableAngledHeadersRow"][1]["funcname"] = "TableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["location"] = "imgui:826" +defs["igTableAngledHeadersRow"][1]["namespace"] = "ImGui" +defs["igTableAngledHeadersRow"][1]["ov_cimguiname"] = "igTableAngledHeadersRow" +defs["igTableAngledHeadersRow"][1]["ret"] = "void" +defs["igTableAngledHeadersRow"][1]["signature"] = "()" +defs["igTableAngledHeadersRow"][1]["stname"] = "" +defs["igTableAngledHeadersRow"]["()"] = defs["igTableAngledHeadersRow"][1] defs["igTableGetColumnCount"] = {} defs["igTableGetColumnCount"][1] = {} defs["igTableGetColumnCount"][1]["args"] = "()" @@ -13969,7 +14825,7 @@ defs["igTableGetColumnCount"][1]["call_args"] = "()" defs["igTableGetColumnCount"][1]["cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["defaults"] = {} defs["igTableGetColumnCount"][1]["funcname"] = "TableGetColumnCount" -defs["igTableGetColumnCount"][1]["location"] = "imgui:765" +defs["igTableGetColumnCount"][1]["location"] = "imgui:835" defs["igTableGetColumnCount"][1]["namespace"] = "ImGui" defs["igTableGetColumnCount"][1]["ov_cimguiname"] = "igTableGetColumnCount" defs["igTableGetColumnCount"][1]["ret"] = "int" @@ -13989,7 +14845,7 @@ defs["igTableGetColumnFlags"][1]["cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["defaults"] = {} defs["igTableGetColumnFlags"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnFlags"][1]["funcname"] = "TableGetColumnFlags" -defs["igTableGetColumnFlags"][1]["location"] = "imgui:769" +defs["igTableGetColumnFlags"][1]["location"] = "imgui:839" defs["igTableGetColumnFlags"][1]["namespace"] = "ImGui" defs["igTableGetColumnFlags"][1]["ov_cimguiname"] = "igTableGetColumnFlags" defs["igTableGetColumnFlags"][1]["ret"] = "ImGuiTableColumnFlags" @@ -14005,7 +14861,7 @@ defs["igTableGetColumnIndex"][1]["call_args"] = "()" defs["igTableGetColumnIndex"][1]["cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["defaults"] = {} defs["igTableGetColumnIndex"][1]["funcname"] = "TableGetColumnIndex" -defs["igTableGetColumnIndex"][1]["location"] = "imgui:766" +defs["igTableGetColumnIndex"][1]["location"] = "imgui:836" defs["igTableGetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableGetColumnIndex"][1]["ov_cimguiname"] = "igTableGetColumnIndex" defs["igTableGetColumnIndex"][1]["ret"] = "int" @@ -14025,13 +14881,29 @@ defs["igTableGetColumnName"][1]["cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["defaults"] = {} defs["igTableGetColumnName"][1]["defaults"]["column_n"] = "-1" defs["igTableGetColumnName"][1]["funcname"] = "TableGetColumnName" -defs["igTableGetColumnName"][1]["location"] = "imgui:768" +defs["igTableGetColumnName"][1]["location"] = "imgui:838" defs["igTableGetColumnName"][1]["namespace"] = "ImGui" defs["igTableGetColumnName"][1]["ov_cimguiname"] = "igTableGetColumnName" defs["igTableGetColumnName"][1]["ret"] = "const char*" defs["igTableGetColumnName"][1]["signature"] = "(int)" defs["igTableGetColumnName"][1]["stname"] = "" defs["igTableGetColumnName"]["(int)"] = defs["igTableGetColumnName"][1] +defs["igTableGetHoveredColumn"] = {} +defs["igTableGetHoveredColumn"][1] = {} +defs["igTableGetHoveredColumn"][1]["args"] = "()" +defs["igTableGetHoveredColumn"][1]["argsT"] = {} +defs["igTableGetHoveredColumn"][1]["argsoriginal"] = "()" +defs["igTableGetHoveredColumn"][1]["call_args"] = "()" +defs["igTableGetHoveredColumn"][1]["cimguiname"] = "igTableGetHoveredColumn" +defs["igTableGetHoveredColumn"][1]["defaults"] = {} +defs["igTableGetHoveredColumn"][1]["funcname"] = "TableGetHoveredColumn" +defs["igTableGetHoveredColumn"][1]["location"] = "imgui:841" +defs["igTableGetHoveredColumn"][1]["namespace"] = "ImGui" +defs["igTableGetHoveredColumn"][1]["ov_cimguiname"] = "igTableGetHoveredColumn" +defs["igTableGetHoveredColumn"][1]["ret"] = "int" +defs["igTableGetHoveredColumn"][1]["signature"] = "()" +defs["igTableGetHoveredColumn"][1]["stname"] = "" +defs["igTableGetHoveredColumn"]["()"] = defs["igTableGetHoveredColumn"][1] defs["igTableGetRowIndex"] = {} defs["igTableGetRowIndex"][1] = {} defs["igTableGetRowIndex"][1]["args"] = "()" @@ -14041,7 +14913,7 @@ defs["igTableGetRowIndex"][1]["call_args"] = "()" defs["igTableGetRowIndex"][1]["cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["defaults"] = {} defs["igTableGetRowIndex"][1]["funcname"] = "TableGetRowIndex" -defs["igTableGetRowIndex"][1]["location"] = "imgui:767" +defs["igTableGetRowIndex"][1]["location"] = "imgui:837" defs["igTableGetRowIndex"][1]["namespace"] = "ImGui" defs["igTableGetRowIndex"][1]["ov_cimguiname"] = "igTableGetRowIndex" defs["igTableGetRowIndex"][1]["ret"] = "int" @@ -14057,7 +14929,7 @@ defs["igTableGetSortSpecs"][1]["call_args"] = "()" defs["igTableGetSortSpecs"][1]["cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["defaults"] = {} defs["igTableGetSortSpecs"][1]["funcname"] = "TableGetSortSpecs" -defs["igTableGetSortSpecs"][1]["location"] = "imgui:764" +defs["igTableGetSortSpecs"][1]["location"] = "imgui:834" defs["igTableGetSortSpecs"][1]["namespace"] = "ImGui" defs["igTableGetSortSpecs"][1]["ov_cimguiname"] = "igTableGetSortSpecs" defs["igTableGetSortSpecs"][1]["ret"] = "ImGuiTableSortSpecs*" @@ -14076,7 +14948,7 @@ defs["igTableHeader"][1]["call_args"] = "(label)" defs["igTableHeader"][1]["cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["defaults"] = {} defs["igTableHeader"][1]["funcname"] = "TableHeader" -defs["igTableHeader"][1]["location"] = "imgui:756" +defs["igTableHeader"][1]["location"] = "imgui:824" defs["igTableHeader"][1]["namespace"] = "ImGui" defs["igTableHeader"][1]["ov_cimguiname"] = "igTableHeader" defs["igTableHeader"][1]["ret"] = "void" @@ -14092,7 +14964,7 @@ defs["igTableHeadersRow"][1]["call_args"] = "()" defs["igTableHeadersRow"][1]["cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["defaults"] = {} defs["igTableHeadersRow"][1]["funcname"] = "TableHeadersRow" -defs["igTableHeadersRow"][1]["location"] = "imgui:755" +defs["igTableHeadersRow"][1]["location"] = "imgui:825" defs["igTableHeadersRow"][1]["namespace"] = "ImGui" defs["igTableHeadersRow"][1]["ov_cimguiname"] = "igTableHeadersRow" defs["igTableHeadersRow"][1]["ret"] = "void" @@ -14108,7 +14980,7 @@ defs["igTableNextColumn"][1]["call_args"] = "()" defs["igTableNextColumn"][1]["cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["defaults"] = {} defs["igTableNextColumn"][1]["funcname"] = "TableNextColumn" -defs["igTableNextColumn"][1]["location"] = "imgui:742" +defs["igTableNextColumn"][1]["location"] = "imgui:811" defs["igTableNextColumn"][1]["namespace"] = "ImGui" defs["igTableNextColumn"][1]["ov_cimguiname"] = "igTableNextColumn" defs["igTableNextColumn"][1]["ret"] = "bool" @@ -14132,7 +15004,7 @@ defs["igTableNextRow"][1]["defaults"] = {} defs["igTableNextRow"][1]["defaults"]["min_row_height"] = "0.0f" defs["igTableNextRow"][1]["defaults"]["row_flags"] = "0" defs["igTableNextRow"][1]["funcname"] = "TableNextRow" -defs["igTableNextRow"][1]["location"] = "imgui:741" +defs["igTableNextRow"][1]["location"] = "imgui:810" defs["igTableNextRow"][1]["namespace"] = "ImGui" defs["igTableNextRow"][1]["ov_cimguiname"] = "igTableNextRow" defs["igTableNextRow"][1]["ret"] = "void" @@ -14158,7 +15030,7 @@ defs["igTableSetBgColor"][1]["cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["defaults"] = {} defs["igTableSetBgColor"][1]["defaults"]["column_n"] = "-1" defs["igTableSetBgColor"][1]["funcname"] = "TableSetBgColor" -defs["igTableSetBgColor"][1]["location"] = "imgui:771" +defs["igTableSetBgColor"][1]["location"] = "imgui:842" defs["igTableSetBgColor"][1]["namespace"] = "ImGui" defs["igTableSetBgColor"][1]["ov_cimguiname"] = "igTableSetBgColor" defs["igTableSetBgColor"][1]["ret"] = "void" @@ -14180,7 +15052,7 @@ defs["igTableSetColumnEnabled"][1]["call_args"] = "(column_n,v)" defs["igTableSetColumnEnabled"][1]["cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["defaults"] = {} defs["igTableSetColumnEnabled"][1]["funcname"] = "TableSetColumnEnabled" -defs["igTableSetColumnEnabled"][1]["location"] = "imgui:770" +defs["igTableSetColumnEnabled"][1]["location"] = "imgui:840" defs["igTableSetColumnEnabled"][1]["namespace"] = "ImGui" defs["igTableSetColumnEnabled"][1]["ov_cimguiname"] = "igTableSetColumnEnabled" defs["igTableSetColumnEnabled"][1]["ret"] = "void" @@ -14199,7 +15071,7 @@ defs["igTableSetColumnIndex"][1]["call_args"] = "(column_n)" defs["igTableSetColumnIndex"][1]["cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["defaults"] = {} defs["igTableSetColumnIndex"][1]["funcname"] = "TableSetColumnIndex" -defs["igTableSetColumnIndex"][1]["location"] = "imgui:743" +defs["igTableSetColumnIndex"][1]["location"] = "imgui:812" defs["igTableSetColumnIndex"][1]["namespace"] = "ImGui" defs["igTableSetColumnIndex"][1]["ov_cimguiname"] = "igTableSetColumnIndex" defs["igTableSetColumnIndex"][1]["ret"] = "bool" @@ -14230,7 +15102,7 @@ defs["igTableSetupColumn"][1]["defaults"]["flags"] = "0" defs["igTableSetupColumn"][1]["defaults"]["init_width_or_weight"] = "0.0f" defs["igTableSetupColumn"][1]["defaults"]["user_id"] = "0" defs["igTableSetupColumn"][1]["funcname"] = "TableSetupColumn" -defs["igTableSetupColumn"][1]["location"] = "imgui:753" +defs["igTableSetupColumn"][1]["location"] = "imgui:822" defs["igTableSetupColumn"][1]["namespace"] = "ImGui" defs["igTableSetupColumn"][1]["ov_cimguiname"] = "igTableSetupColumn" defs["igTableSetupColumn"][1]["ret"] = "void" @@ -14252,7 +15124,7 @@ defs["igTableSetupScrollFreeze"][1]["call_args"] = "(cols,rows)" defs["igTableSetupScrollFreeze"][1]["cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["defaults"] = {} defs["igTableSetupScrollFreeze"][1]["funcname"] = "TableSetupScrollFreeze" -defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:754" +defs["igTableSetupScrollFreeze"][1]["location"] = "imgui:823" defs["igTableSetupScrollFreeze"][1]["namespace"] = "ImGui" defs["igTableSetupScrollFreeze"][1]["ov_cimguiname"] = "igTableSetupScrollFreeze" defs["igTableSetupScrollFreeze"][1]["ret"] = "void" @@ -14275,7 +15147,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui:484" +defs["igText"][1]["location"] = "imgui:529" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -14301,7 +15173,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui:486" +defs["igTextColored"][1]["location"] = "imgui:531" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -14326,7 +15198,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui:487" +defs["igTextColoredV"][1]["location"] = "imgui:532" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -14349,7 +15221,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui:488" +defs["igTextDisabled"][1]["location"] = "imgui:533" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -14371,13 +15243,55 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui:489" +defs["igTextDisabledV"][1]["location"] = "imgui:534" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" defs["igTextDisabledV"][1]["signature"] = "(const char*,va_list)" defs["igTextDisabledV"][1]["stname"] = "" defs["igTextDisabledV"]["(const char*,va_list)"] = defs["igTextDisabledV"][1] +defs["igTextLink"] = {} +defs["igTextLink"][1] = {} +defs["igTextLink"][1]["args"] = "(const char* label)" +defs["igTextLink"][1]["argsT"] = {} +defs["igTextLink"][1]["argsT"][1] = {} +defs["igTextLink"][1]["argsT"][1]["name"] = "label" +defs["igTextLink"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLink"][1]["argsoriginal"] = "(const char* label)" +defs["igTextLink"][1]["call_args"] = "(label)" +defs["igTextLink"][1]["cimguiname"] = "igTextLink" +defs["igTextLink"][1]["defaults"] = {} +defs["igTextLink"][1]["funcname"] = "TextLink" +defs["igTextLink"][1]["location"] = "imgui:557" +defs["igTextLink"][1]["namespace"] = "ImGui" +defs["igTextLink"][1]["ov_cimguiname"] = "igTextLink" +defs["igTextLink"][1]["ret"] = "bool" +defs["igTextLink"][1]["signature"] = "(const char*)" +defs["igTextLink"][1]["stname"] = "" +defs["igTextLink"]["(const char*)"] = defs["igTextLink"][1] +defs["igTextLinkOpenURL"] = {} +defs["igTextLinkOpenURL"][1] = {} +defs["igTextLinkOpenURL"][1]["args"] = "(const char* label,const char* url)" +defs["igTextLinkOpenURL"][1]["argsT"] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1] = {} +defs["igTextLinkOpenURL"][1]["argsT"][1]["name"] = "label" +defs["igTextLinkOpenURL"][1]["argsT"][1]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsT"][2] = {} +defs["igTextLinkOpenURL"][1]["argsT"][2]["name"] = "url" +defs["igTextLinkOpenURL"][1]["argsT"][2]["type"] = "const char*" +defs["igTextLinkOpenURL"][1]["argsoriginal"] = "(const char* label,const char* url=((void*)0))" +defs["igTextLinkOpenURL"][1]["call_args"] = "(label,url)" +defs["igTextLinkOpenURL"][1]["cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["defaults"] = {} +defs["igTextLinkOpenURL"][1]["defaults"]["url"] = "NULL" +defs["igTextLinkOpenURL"][1]["funcname"] = "TextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["location"] = "imgui:558" +defs["igTextLinkOpenURL"][1]["namespace"] = "ImGui" +defs["igTextLinkOpenURL"][1]["ov_cimguiname"] = "igTextLinkOpenURL" +defs["igTextLinkOpenURL"][1]["ret"] = "void" +defs["igTextLinkOpenURL"][1]["signature"] = "(const char*,const char*)" +defs["igTextLinkOpenURL"][1]["stname"] = "" +defs["igTextLinkOpenURL"]["(const char*,const char*)"] = defs["igTextLinkOpenURL"][1] defs["igTextUnformatted"] = {} defs["igTextUnformatted"][1] = {} defs["igTextUnformatted"][1]["args"] = "(const char* text,const char* text_end)" @@ -14394,7 +15308,7 @@ defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui:483" +defs["igTextUnformatted"][1]["location"] = "imgui:528" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -14416,7 +15330,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui:485" +defs["igTextV"][1]["location"] = "imgui:530" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -14439,7 +15353,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui:490" +defs["igTextWrapped"][1]["location"] = "imgui:535" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -14461,7 +15375,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui:491" +defs["igTextWrappedV"][1]["location"] = "imgui:536" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -14480,7 +15394,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui:602" +defs["igTreeNode"][1]["location"] = "imgui:652" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNode_Str" defs["igTreeNode"][1]["ret"] = "bool" @@ -14504,7 +15418,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui:603" +defs["igTreeNode"][2]["location"] = "imgui:653" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNode_StrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -14528,7 +15442,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui:604" +defs["igTreeNode"][3]["location"] = "imgui:654" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNode_Ptr" defs["igTreeNode"][3]["ret"] = "bool" @@ -14553,7 +15467,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui:607" +defs["igTreeNodeEx"][1]["location"] = "imgui:657" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeEx_Str" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -14580,7 +15494,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui:608" +defs["igTreeNodeEx"][2]["location"] = "imgui:658" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeEx_StrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -14607,7 +15521,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui:609" +defs["igTreeNodeEx"][3]["location"] = "imgui:659" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeEx_Ptr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -14637,7 +15551,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui:610" +defs["igTreeNodeExV"][1]["location"] = "imgui:660" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExV_Str" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -14663,7 +15577,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui:611" +defs["igTreeNodeExV"][2]["location"] = "imgui:661" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExV_Ptr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -14689,7 +15603,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui:605" +defs["igTreeNodeV"][1]["location"] = "imgui:655" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeV_Str" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -14712,7 +15626,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui:606" +defs["igTreeNodeV"][2]["location"] = "imgui:656" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeV_Ptr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -14729,7 +15643,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui:614" +defs["igTreePop"][1]["location"] = "imgui:664" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -14748,7 +15662,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui:612" +defs["igTreePush"][1]["location"] = "imgui:662" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePush_Str" defs["igTreePush"][1]["ret"] = "void" @@ -14765,7 +15679,7 @@ defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui:613" +defs["igTreePush"][2]["location"] = "imgui:663" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePush_Ptr" defs["igTreePush"][2]["ret"] = "void" @@ -14786,7 +15700,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui:444" +defs["igUnindent"][1]["location"] = "imgui:497" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -14825,7 +15739,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui:568" +defs["igVSliderFloat"][1]["location"] = "imgui:618" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -14864,7 +15778,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui:569" +defs["igVSliderInt"][1]["location"] = "imgui:619" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -14906,7 +15820,7 @@ defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui:570" +defs["igVSliderScalar"][1]["location"] = "imgui:620" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -14928,7 +15842,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui:646" +defs["igValue"][1]["location"] = "imgui:709" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValue_Bool" defs["igValue"][1]["ret"] = "void" @@ -14948,7 +15862,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui:647" +defs["igValue"][2]["location"] = "imgui:710" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValue_Int" defs["igValue"][2]["ret"] = "void" @@ -14968,7 +15882,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui:648" +defs["igValue"][3]["location"] = "imgui:711" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValue_Uint" defs["igValue"][3]["ret"] = "void" @@ -14992,7 +15906,7 @@ defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui:649" +defs["igValue"][4]["location"] = "imgui:712" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValue_Float" defs["igValue"][4]["ret"] = "void" diff --git a/imgui-sys/third-party/imgui-master/impl_definitions.json b/imgui-sys/third-party/imgui-master/impl_definitions.json index 3597665..ac713a3 100644 --- a/imgui-sys/third-party/imgui-master/impl_definitions.json +++ b/imgui-sys/third-party/imgui-master/impl_definitions.json @@ -17,7 +17,7 @@ "cimguiname": "ImGui_ImplGlfw_CharCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw:41", + "location": "imgui_impl_glfw:61", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -42,7 +42,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorEnterCallback", - "location": "imgui_impl_glfw:36", + "location": "imgui_impl_glfw:56", "ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -71,7 +71,7 @@ "cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_CursorPosCallback", - "location": "imgui_impl_glfw:37", + "location": "imgui_impl_glfw:57", "ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -96,7 +96,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw:22", + "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -121,7 +121,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOther", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForOther", - "location": "imgui_impl_glfw:24", + "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_InitForOther", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -146,7 +146,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw:23", + "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -167,7 +167,7 @@ "cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_InstallCallbacks", - "location": "imgui_impl_glfw:31", + "location": "imgui_impl_glfw:47", "ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -204,7 +204,7 @@ "cimguiname": "ImGui_ImplGlfw_KeyCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw:40", + "location": "imgui_impl_glfw:60", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -229,7 +229,7 @@ "cimguiname": "ImGui_ImplGlfw_MonitorCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MonitorCallback", - "location": "imgui_impl_glfw:42", + "location": "imgui_impl_glfw:62", "ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback", "ret": "void", "signature": "(GLFWmonitor*,int)", @@ -262,7 +262,7 @@ "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw:38", + "location": "imgui_impl_glfw:58", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -278,7 +278,7 @@ "cimguiname": "ImGui_ImplGlfw_NewFrame", "defaults": {}, "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw:26", + "location": "imgui_impl_glfw:36", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -299,7 +299,7 @@ "cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "defaults": {}, "funcname": "ImGui_ImplGlfw_RestoreCallbacks", - "location": "imgui_impl_glfw:32", + "location": "imgui_impl_glfw:48", "ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks", "ret": "void", "signature": "(GLFWwindow*)", @@ -328,13 +328,34 @@ "cimguiname": "ImGui_ImplGlfw_ScrollCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw:39", + "location": "imgui_impl_glfw:59", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", "stname": "" } ], + "ImGui_ImplGlfw_SetCallbacksChainForAllWindows": [ + { + "args": "(bool chain_for_all_windows)", + "argsT": [ + { + "name": "chain_for_all_windows", + "type": "bool" + } + ], + "argsoriginal": "(bool chain_for_all_windows)", + "call_args": "(chain_for_all_windows)", + "cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "location": "imgui_impl_glfw:52", + "ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows", + "ret": "void", + "signature": "(bool)", + "stname": "" + } + ], "ImGui_ImplGlfw_Shutdown": [ { "args": "()", @@ -344,13 +365,34 @@ "cimguiname": "ImGui_ImplGlfw_Shutdown", "defaults": {}, "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw:25", + "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", "stname": "" } ], + "ImGui_ImplGlfw_Sleep": [ + { + "args": "(int milliseconds)", + "argsT": [ + { + "name": "milliseconds", + "type": "int" + } + ], + "argsoriginal": "(int milliseconds)", + "call_args": "(milliseconds)", + "cimguiname": "ImGui_ImplGlfw_Sleep", + "defaults": {}, + "funcname": "ImGui_ImplGlfw_Sleep", + "location": "imgui_impl_glfw:65", + "ov_cimguiname": "ImGui_ImplGlfw_Sleep", + "ret": "void", + "signature": "(int)", + "stname": "" + } + ], "ImGui_ImplGlfw_WindowFocusCallback": [ { "args": "(GLFWwindow* window,int focused)", @@ -369,7 +411,7 @@ "cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "defaults": {}, "funcname": "ImGui_ImplGlfw_WindowFocusCallback", - "location": "imgui_impl_glfw:35", + "location": "imgui_impl_glfw:55", "ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback", "ret": "void", "signature": "(GLFWwindow*,int)", @@ -385,7 +427,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2:31", + "location": "imgui_impl_opengl2:37", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -401,7 +443,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2:29", + "location": "imgui_impl_opengl2:35", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -417,7 +459,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2:32", + "location": "imgui_impl_opengl2:38", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -433,7 +475,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2:30", + "location": "imgui_impl_opengl2:36", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -449,7 +491,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2:23", + "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -465,7 +507,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2:25", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -486,7 +528,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2:26", + "location": "imgui_impl_opengl2:32", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -502,7 +544,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2:24", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -518,7 +560,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3:32", + "location": "imgui_impl_opengl3:42", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -534,7 +576,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3:30", + "location": "imgui_impl_opengl3:40", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -550,7 +592,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3:33", + "location": "imgui_impl_opengl3:43", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -566,7 +608,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3:31", + "location": "imgui_impl_opengl3:41", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -589,7 +631,7 @@ "glsl_version": "nullptr" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3:24", + "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", @@ -605,7 +647,7 @@ "cimguiname": "ImGui_ImplOpenGL3_NewFrame", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3:26", + "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", @@ -626,7 +668,7 @@ "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3:27", + "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -642,7 +684,7 @@ "cimguiname": "ImGui_ImplOpenGL3_Shutdown", "defaults": {}, "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3:25", + "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", @@ -663,7 +705,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForD3D", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForD3D", - "location": "imgui_impl_sdl:27", + "location": "imgui_impl_sdl2:37", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -684,7 +726,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForMetal", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForMetal", - "location": "imgui_impl_sdl:28", + "location": "imgui_impl_sdl2:38", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -709,13 +751,34 @@ "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl:25", + "location": "imgui_impl_sdl2:35", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", "stname": "" } ], + "ImGui_ImplSDL2_InitForOther": [ + { + "args": "(SDL_Window* window)", + "argsT": [ + { + "name": "window", + "type": "SDL_Window*" + } + ], + "argsoriginal": "(SDL_Window* window)", + "call_args": "(window)", + "cimguiname": "ImGui_ImplSDL2_InitForOther", + "defaults": {}, + "funcname": "ImGui_ImplSDL2_InitForOther", + "location": "imgui_impl_sdl2:40", + "ov_cimguiname": "ImGui_ImplSDL2_InitForOther", + "ret": "bool", + "signature": "(SDL_Window*)", + "stname": "" + } + ], "ImGui_ImplSDL2_InitForSDLRenderer": [ { "args": "(SDL_Window* window,SDL_Renderer* renderer)", @@ -734,7 +797,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForSDLRenderer", - "location": "imgui_impl_sdl:29", + "location": "imgui_impl_sdl2:39", "ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer", "ret": "bool", "signature": "(SDL_Window*,SDL_Renderer*)", @@ -755,7 +818,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForVulkan", "defaults": {}, "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl:26", + "location": "imgui_impl_sdl2:36", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -771,7 +834,7 @@ "cimguiname": "ImGui_ImplSDL2_NewFrame", "defaults": {}, "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl:31", + "location": "imgui_impl_sdl2:42", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "()", @@ -792,13 +855,45 @@ "cimguiname": "ImGui_ImplSDL2_ProcessEvent", "defaults": {}, "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl:32", + "location": "imgui_impl_sdl2:43", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", "stname": "" } ], + "ImGui_ImplSDL2_SetGamepadMode": [ + { + "args": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)", + "argsT": [ + { + "name": "mode", + "type": "ImGui_ImplSDL2_GamepadMode" + }, + { + "name": "manual_gamepads_array", + "type": "struct _SDL_GameController**" + }, + { + "name": "manual_gamepads_count", + "type": "int" + } + ], + "argsoriginal": "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)", + "call_args": "(mode,manual_gamepads_array,manual_gamepads_count)", + "cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "defaults": { + "manual_gamepads_array": "NULL", + "manual_gamepads_count": "-1" + }, + "funcname": "ImGui_ImplSDL2_SetGamepadMode", + "location": "imgui_impl_sdl2:48", + "ov_cimguiname": "ImGui_ImplSDL2_SetGamepadMode", + "ret": "void", + "signature": "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)", + "stname": "" + } + ], "ImGui_ImplSDL2_Shutdown": [ { "args": "()", @@ -808,7 +903,7 @@ "cimguiname": "ImGui_ImplSDL2_Shutdown", "defaults": {}, "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl:30", + "location": "imgui_impl_sdl2:41", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", diff --git a/imgui-sys/third-party/imgui-master/impl_definitions.lua b/imgui-sys/third-party/imgui-master/impl_definitions.lua index fbc6a4c..828c8f2 100644 --- a/imgui-sys/third-party/imgui-master/impl_definitions.lua +++ b/imgui-sys/third-party/imgui-master/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:41" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:61" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback" -defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:36" +defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:56" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback" -defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:37" +defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:57" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:22" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:32" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther" -defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:24" +defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:34" defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther" defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)" @@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:23" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:33" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks" -defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:31" +defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:47" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:40" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:60" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)" defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback" -defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:42" +defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:62" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback" defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)" @@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:38" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:58" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:26" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:36" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {} defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks" -defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:32" +defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:48" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void" defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)" @@ -275,12 +275,30 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:39" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:59" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" defs["ImGui_ImplGlfw_ScrollCallback"][1]["stname"] = "" defs["ImGui_ImplGlfw_ScrollCallback"]["(GLFWwindow*,double,double)"] = defs["ImGui_ImplGlfw_ScrollCallback"][1] +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["args"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["name"] = "chain_for_all_windows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsT"][1]["type"] = "bool" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["argsoriginal"] = "(bool chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_for_all_windows)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:52" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["stname"] = "" +defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"]["(bool)"] = defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1] defs["ImGui_ImplGlfw_Shutdown"] = {} defs["ImGui_ImplGlfw_Shutdown"][1] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["args"] = "()" @@ -290,12 +308,30 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:25" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:35" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["stname"] = "" defs["ImGui_ImplGlfw_Shutdown"]["()"] = defs["ImGui_ImplGlfw_Shutdown"][1] +defs["ImGui_ImplGlfw_Sleep"] = {} +defs["ImGui_ImplGlfw_Sleep"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["args"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["name"] = "milliseconds" +defs["ImGui_ImplGlfw_Sleep"][1]["argsT"][1]["type"] = "int" +defs["ImGui_ImplGlfw_Sleep"][1]["argsoriginal"] = "(int milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["call_args"] = "(milliseconds)" +defs["ImGui_ImplGlfw_Sleep"][1]["cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["defaults"] = {} +defs["ImGui_ImplGlfw_Sleep"][1]["funcname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["location"] = "imgui_impl_glfw:65" +defs["ImGui_ImplGlfw_Sleep"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Sleep" +defs["ImGui_ImplGlfw_Sleep"][1]["ret"] = "void" +defs["ImGui_ImplGlfw_Sleep"][1]["signature"] = "(int)" +defs["ImGui_ImplGlfw_Sleep"][1]["stname"] = "" +defs["ImGui_ImplGlfw_Sleep"]["(int)"] = defs["ImGui_ImplGlfw_Sleep"][1] defs["ImGui_ImplGlfw_WindowFocusCallback"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["args"] = "(GLFWwindow* window,int focused)" @@ -311,7 +347,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback" -defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:35" +defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:55" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)" @@ -326,7 +362,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:31" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:37" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -341,7 +377,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:29" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:35" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -356,7 +392,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:32" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:38" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -371,7 +407,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:30" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:36" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -386,7 +422,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:23" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:29" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -401,7 +437,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:25" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -419,7 +455,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:26" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:32" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -434,7 +470,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:24" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -449,7 +485,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:32" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:42" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" @@ -464,7 +500,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:30" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:40" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" @@ -479,7 +515,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:33" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:43" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" @@ -494,7 +530,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:31" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:41" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" @@ -513,7 +549,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "nullptr" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:24" +defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:34" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" @@ -528,7 +564,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:26" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:36" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" @@ -546,7 +582,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:27" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:37" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -561,7 +597,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:25" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:35" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" @@ -579,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D" -defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl:27" +defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:37" defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -597,7 +633,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal" -defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl:28" +defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:38" defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -618,12 +654,30 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl:25" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:35" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["stname"] = "" defs["ImGui_ImplSDL2_InitForOpenGL"]["(SDL_Window*,void*)"] = defs["ImGui_ImplSDL2_InitForOpenGL"][1] +defs["ImGui_ImplSDL2_InitForOther"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["args"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["name"] = "window" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsT"][1]["type"] = "SDL_Window*" +defs["ImGui_ImplSDL2_InitForOther"][1]["argsoriginal"] = "(SDL_Window* window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["call_args"] = "(window)" +defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:40" +defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther" +defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool" +defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)" +defs["ImGui_ImplSDL2_InitForOther"][1]["stname"] = "" +defs["ImGui_ImplSDL2_InitForOther"]["(SDL_Window*)"] = defs["ImGui_ImplSDL2_InitForOther"][1] defs["ImGui_ImplSDL2_InitForSDLRenderer"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["args"] = "(SDL_Window* window,SDL_Renderer* renderer)" @@ -639,7 +693,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer" -defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl:29" +defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:39" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)" @@ -657,7 +711,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl:26" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:36" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -672,7 +726,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl:31" +defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:42" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()" @@ -690,12 +744,38 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl:32" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:43" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = "" defs["ImGui_ImplSDL2_ProcessEvent"]["(const SDL_Event*)"] = defs["ImGui_ImplSDL2_ProcessEvent"][1] +defs["ImGui_ImplSDL2_SetGamepadMode"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["args"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array,int manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["name"] = "mode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][1]["type"] = "ImGui_ImplSDL2_GamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["name"] = "manual_gamepads_array" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][2]["type"] = "struct _SDL_GameController**" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["name"] = "manual_gamepads_count" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsT"][3]["type"] = "int" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["argsoriginal"] = "(ImGui_ImplSDL2_GamepadMode mode,struct _SDL_GameController** manual_gamepads_array=((void*)0),int manual_gamepads_count=-1)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["call_args"] = "(mode,manual_gamepads_array,manual_gamepads_count)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"] = {} +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_array"] = "NULL" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["defaults"]["manual_gamepads_count"] = "-1" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["funcname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["location"] = "imgui_impl_sdl2:48" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_SetGamepadMode" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["ret"] = "void" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["signature"] = "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)" +defs["ImGui_ImplSDL2_SetGamepadMode"][1]["stname"] = "" +defs["ImGui_ImplSDL2_SetGamepadMode"]["(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)"] = defs["ImGui_ImplSDL2_SetGamepadMode"][1] defs["ImGui_ImplSDL2_Shutdown"] = {} defs["ImGui_ImplSDL2_Shutdown"][1] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()" @@ -705,7 +785,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl:30" +defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:41" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" diff --git a/imgui-sys/third-party/imgui-master/overloads.txt b/imgui-sys/third-party/imgui-master/overloads.txt index 0f2d997..65bf0e7 100644 --- a/imgui-sys/third-party/imgui-master/overloads.txt +++ b/imgui-sys/third-party/imgui-master/overloads.txt @@ -46,8 +46,8 @@ ImVector_resize 2 1 void ImVector_resize_Nil (int) 2 void ImVector_resize_T (int,const T) igBeginChild 2 -1 bool igBeginChild_Str (const char*,const ImVec2,bool,ImGuiWindowFlags) -2 bool igBeginChild_ID (ImGuiID,const ImVec2,bool,ImGuiWindowFlags) +1 bool igBeginChild_Str (const char*,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) +2 bool igBeginChild_ID (ImGuiID,const ImVec2,ImGuiChildFlags,ImGuiWindowFlags) igCheckboxFlags 2 1 bool igCheckboxFlags_IntPtr (const char*,int*,int) 2 bool igCheckboxFlags_UintPtr (const char*,unsigned int*,unsigned int) @@ -57,21 +57,22 @@ igCollapsingHeader 2 igCombo 3 1 bool igCombo_Str_arr (const char*,int*,const char* const[],int,int) 2 bool igCombo_Str (const char*,int*,const char*,int) -3 bool igCombo_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +3 bool igCombo_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igGetColorU32 3 1 ImU32 igGetColorU32_Col (ImGuiCol,float) 2 ImU32 igGetColorU32_Vec4 (const ImVec4) -3 ImU32 igGetColorU32_U32 (ImU32) -igGetID 3 +3 ImU32 igGetColorU32_U32 (ImU32,float) +igGetID 4 1 ImGuiID igGetID_Str (const char*) 2 ImGuiID igGetID_StrStr (const char*,const char*) 3 ImGuiID igGetID_Ptr (const void*) +4 ImGuiID igGetID_Int (int) igIsRectVisible 2 1 bool igIsRectVisible_Nil (const ImVec2) 2 bool igIsRectVisible_Vec2 (const ImVec2,const ImVec2) igListBox 2 1 bool igListBox_Str_arr (const char*,int*,const char* const[],int,int) -2 bool igListBox_FnBoolPtr (const char*,int*,bool(*)(void*,int,const char**),void*,int,int) +2 bool igListBox_FnStrPtr (const char*,int*,const char*(*)(void*,int),void*,int,int) igMenuItem 2 1 bool igMenuItem_Bool (const char*,const char*,bool,bool) 2 bool igMenuItem_BoolPtr (const char*,const char*,bool*,bool) @@ -135,4 +136,4 @@ igValue 4 2 void igValue_Int (const char*,int) 3 void igValue_Uint (const char*,unsigned int) 4 void igValue_Float (const char*,float,const char*) -95 overloaded \ No newline at end of file +96 overloaded \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-master/structs_and_enums.json b/imgui-sys/third-party/imgui-master/structs_and_enums.json index a9ae325..4657ea5 100644 --- a/imgui-sys/third-party/imgui-master/structs_and_enums.json +++ b/imgui-sys/third-party/imgui-master/structs_and_enums.json @@ -173,11 +173,58 @@ "calc_value": 7, "name": "ImGuiButtonFlags_MouseButtonMask_", "value": "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" + } + ], + "ImGuiChildFlags_": [ + { + "calc_value": 0, + "name": "ImGuiChildFlags_None", + "value": "0" }, { "calc_value": 1, - "name": "ImGuiButtonFlags_MouseButtonDefault_", - "value": "ImGuiButtonFlags_MouseButtonLeft" + "name": "ImGuiChildFlags_Borders", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiChildFlags_AlwaysUseWindowPadding", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiChildFlags_ResizeX", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiChildFlags_ResizeY", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiChildFlags_AutoResizeX", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiChildFlags_AutoResizeY", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiChildFlags_AlwaysAutoResize", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiChildFlags_FrameStyle", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiChildFlags_NavFlattened", + "value": "1 << 8" } ], "ImGuiCol_": [ @@ -348,108 +395,123 @@ }, { "calc_value": 33, - "name": "ImGuiCol_Tab", + "name": "ImGuiCol_TabHovered", "value": "33" }, { "calc_value": 34, - "name": "ImGuiCol_TabHovered", + "name": "ImGuiCol_Tab", "value": "34" }, { "calc_value": 35, - "name": "ImGuiCol_TabActive", + "name": "ImGuiCol_TabSelected", "value": "35" }, { "calc_value": 36, - "name": "ImGuiCol_TabUnfocused", + "name": "ImGuiCol_TabSelectedOverline", "value": "36" }, { "calc_value": 37, - "name": "ImGuiCol_TabUnfocusedActive", + "name": "ImGuiCol_TabDimmed", "value": "37" }, { "calc_value": 38, - "name": "ImGuiCol_PlotLines", + "name": "ImGuiCol_TabDimmedSelected", "value": "38" }, { "calc_value": 39, - "name": "ImGuiCol_PlotLinesHovered", + "name": "ImGuiCol_TabDimmedSelectedOverline", "value": "39" }, { "calc_value": 40, - "name": "ImGuiCol_PlotHistogram", + "name": "ImGuiCol_PlotLines", "value": "40" }, { "calc_value": 41, - "name": "ImGuiCol_PlotHistogramHovered", + "name": "ImGuiCol_PlotLinesHovered", "value": "41" }, { "calc_value": 42, - "name": "ImGuiCol_TableHeaderBg", + "name": "ImGuiCol_PlotHistogram", "value": "42" }, { "calc_value": 43, - "name": "ImGuiCol_TableBorderStrong", + "name": "ImGuiCol_PlotHistogramHovered", "value": "43" }, { "calc_value": 44, - "name": "ImGuiCol_TableBorderLight", + "name": "ImGuiCol_TableHeaderBg", "value": "44" }, { "calc_value": 45, - "name": "ImGuiCol_TableRowBg", + "name": "ImGuiCol_TableBorderStrong", "value": "45" }, { "calc_value": 46, - "name": "ImGuiCol_TableRowBgAlt", + "name": "ImGuiCol_TableBorderLight", "value": "46" }, { "calc_value": 47, - "name": "ImGuiCol_TextSelectedBg", + "name": "ImGuiCol_TableRowBg", "value": "47" }, { "calc_value": 48, - "name": "ImGuiCol_DragDropTarget", + "name": "ImGuiCol_TableRowBgAlt", "value": "48" }, { "calc_value": 49, - "name": "ImGuiCol_NavHighlight", + "name": "ImGuiCol_TextLink", "value": "49" }, { "calc_value": 50, - "name": "ImGuiCol_NavWindowingHighlight", + "name": "ImGuiCol_TextSelectedBg", "value": "50" }, { "calc_value": 51, - "name": "ImGuiCol_NavWindowingDimBg", + "name": "ImGuiCol_DragDropTarget", "value": "51" }, { "calc_value": 52, - "name": "ImGuiCol_ModalWindowDimBg", + "name": "ImGuiCol_NavHighlight", "value": "52" }, { "calc_value": 53, - "name": "ImGuiCol_COUNT", + "name": "ImGuiCol_NavWindowingHighlight", "value": "53" + }, + { + "calc_value": 54, + "name": "ImGuiCol_NavWindowingDimBg", + "value": "54" + }, + { + "calc_value": 55, + "name": "ImGuiCol_ModalWindowDimBg", + "value": "55" + }, + { + "calc_value": 56, + "name": "ImGuiCol_COUNT", + "value": "56" } ], "ImGuiColorEditFlags_": [ @@ -640,6 +702,11 @@ "name": "ImGuiComboFlags_NoPreview", "value": "1 << 6" }, + { + "calc_value": 128, + "name": "ImGuiComboFlags_WidthFitPreview", + "value": "1 << 7" + }, { "calc_value": 30, "name": "ImGuiComboFlags_HeightMask_", @@ -709,6 +776,11 @@ "name": "ImGuiConfigFlags_NoMouseCursorChange", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiConfigFlags_NoKeyboard", + "value": "1 << 6" + }, { "calc_value": 1048576, "name": "ImGuiConfigFlags_IsSRGB", @@ -773,11 +845,16 @@ }, { "calc_value": 10, - "name": "ImGuiDataType_COUNT", + "name": "ImGuiDataType_Bool", "value": "10" + }, + { + "calc_value": 11, + "name": "ImGuiDataType_COUNT", + "value": "11" } ], - "ImGuiDir_": [ + "ImGuiDir": [ { "calc_value": -1, "name": "ImGuiDir_None", @@ -842,9 +919,19 @@ }, { "calc_value": 32, - "name": "ImGuiDragDropFlags_SourceAutoExpirePayload", + "name": "ImGuiDragDropFlags_PayloadAutoExpire", "value": "1 << 5" }, + { + "calc_value": 64, + "name": "ImGuiDragDropFlags_PayloadNoCrossContext", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiDragDropFlags_PayloadNoCrossProcess", + "value": "1 << 7" + }, { "calc_value": 1024, "name": "ImGuiDragDropFlags_AcceptBeforeDelivery", @@ -936,21 +1023,31 @@ }, { "calc_value": 256, - "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByItem", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiHoveredFlags_AllowWhenDisabled", + "name": "ImGuiHoveredFlags_AllowWhenOverlappedByWindow", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiHoveredFlags_NoNavOverride", + "name": "ImGuiHoveredFlags_AllowWhenDisabled", "value": "1 << 10" }, { - "calc_value": 416, + "calc_value": 2048, + "name": "ImGuiHoveredFlags_NoNavOverride", + "value": "1 << 11" + }, + { + "calc_value": 768, + "name": "ImGuiHoveredFlags_AllowWhenOverlapped", + "value": "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" + }, + { + "calc_value": 928, "name": "ImGuiHoveredFlags_RectOnly", "value": "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" }, @@ -959,20 +1056,92 @@ "name": "ImGuiHoveredFlags_RootAndChildWindows", "value": "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" }, - { - "calc_value": 2048, - "name": "ImGuiHoveredFlags_DelayNormal", - "value": "1 << 11" - }, { "calc_value": 4096, - "name": "ImGuiHoveredFlags_DelayShort", + "name": "ImGuiHoveredFlags_ForTooltip", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiHoveredFlags_NoSharedDelay", + "name": "ImGuiHoveredFlags_Stationary", "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiHoveredFlags_DelayNone", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiHoveredFlags_DelayShort", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiHoveredFlags_DelayNormal", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiHoveredFlags_NoSharedDelay", + "value": "1 << 17" + } + ], + "ImGuiInputFlags_": [ + { + "calc_value": 0, + "name": "ImGuiInputFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiInputFlags_Repeat", + "value": "1 << 0" + }, + { + "calc_value": 1024, + "name": "ImGuiInputFlags_RouteActive", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiInputFlags_RouteFocused", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiInputFlags_RouteGlobal", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiInputFlags_RouteAlways", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiInputFlags_RouteOverFocused", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiInputFlags_RouteOverActive", + "value": "1 << 15" + }, + { + "calc_value": 65536, + "name": "ImGuiInputFlags_RouteUnlessBgFocused", + "value": "1 << 16" + }, + { + "calc_value": 131072, + "name": "ImGuiInputFlags_RouteFromRootWindow", + "value": "1 << 17" + }, + { + "calc_value": 262144, + "name": "ImGuiInputFlags_Tooltip", + "value": "1 << 18" } ], "ImGuiInputTextFlags_": [ @@ -993,72 +1162,72 @@ }, { "calc_value": 4, - "name": "ImGuiInputTextFlags_CharsUppercase", + "name": "ImGuiInputTextFlags_CharsScientific", "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiInputTextFlags_CharsNoBlank", + "name": "ImGuiInputTextFlags_CharsUppercase", "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiInputTextFlags_AutoSelectAll", + "name": "ImGuiInputTextFlags_CharsNoBlank", "value": "1 << 4" }, { "calc_value": 32, - "name": "ImGuiInputTextFlags_EnterReturnsTrue", + "name": "ImGuiInputTextFlags_AllowTabInput", "value": "1 << 5" }, { "calc_value": 64, - "name": "ImGuiInputTextFlags_CallbackCompletion", + "name": "ImGuiInputTextFlags_EnterReturnsTrue", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiInputTextFlags_CallbackHistory", + "name": "ImGuiInputTextFlags_EscapeClearsAll", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiInputTextFlags_CallbackAlways", + "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", "value": "1 << 8" }, { "calc_value": 512, - "name": "ImGuiInputTextFlags_CallbackCharFilter", + "name": "ImGuiInputTextFlags_ReadOnly", "value": "1 << 9" }, { "calc_value": 1024, - "name": "ImGuiInputTextFlags_AllowTabInput", + "name": "ImGuiInputTextFlags_Password", "value": "1 << 10" }, { "calc_value": 2048, - "name": "ImGuiInputTextFlags_CtrlEnterForNewLine", + "name": "ImGuiInputTextFlags_AlwaysOverwrite", "value": "1 << 11" }, { "calc_value": 4096, - "name": "ImGuiInputTextFlags_NoHorizontalScroll", + "name": "ImGuiInputTextFlags_AutoSelectAll", "value": "1 << 12" }, { "calc_value": 8192, - "name": "ImGuiInputTextFlags_AlwaysOverwrite", + "name": "ImGuiInputTextFlags_ParseEmptyRefVal", "value": "1 << 13" }, { "calc_value": 16384, - "name": "ImGuiInputTextFlags_ReadOnly", + "name": "ImGuiInputTextFlags_DisplayEmptyRefVal", "value": "1 << 14" }, { "calc_value": 32768, - "name": "ImGuiInputTextFlags_Password", + "name": "ImGuiInputTextFlags_NoHorizontalScroll", "value": "1 << 15" }, { @@ -1068,23 +1237,70 @@ }, { "calc_value": 131072, - "name": "ImGuiInputTextFlags_CharsScientific", + "name": "ImGuiInputTextFlags_CallbackCompletion", "value": "1 << 17" }, { "calc_value": 262144, - "name": "ImGuiInputTextFlags_CallbackResize", + "name": "ImGuiInputTextFlags_CallbackHistory", "value": "1 << 18" }, { "calc_value": 524288, - "name": "ImGuiInputTextFlags_CallbackEdit", + "name": "ImGuiInputTextFlags_CallbackAlways", "value": "1 << 19" }, { "calc_value": 1048576, - "name": "ImGuiInputTextFlags_EscapeClearsAll", + "name": "ImGuiInputTextFlags_CallbackCharFilter", "value": "1 << 20" + }, + { + "calc_value": 2097152, + "name": "ImGuiInputTextFlags_CallbackResize", + "value": "1 << 21" + }, + { + "calc_value": 4194304, + "name": "ImGuiInputTextFlags_CallbackEdit", + "value": "1 << 22" + } + ], + "ImGuiItemFlags_": [ + { + "calc_value": 0, + "name": "ImGuiItemFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiItemFlags_NoTabStop", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiItemFlags_NoNav", + "value": "1 << 1" + }, + { + "calc_value": 4, + "name": "ImGuiItemFlags_NoNavDefaultFocus", + "value": "1 << 2" + }, + { + "calc_value": 8, + "name": "ImGuiItemFlags_ButtonRepeat", + "value": "1 << 3" + }, + { + "calc_value": 16, + "name": "ImGuiItemFlags_AutoClosePopups", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiItemFlags_AllowDuplicateId", + "value": "1 << 5" } ], "ImGuiKey": [ @@ -1455,349 +1671,419 @@ }, { "calc_value": 584, - "name": "ImGuiKey_Apostrophe", + "name": "ImGuiKey_F13", "value": "584" }, { "calc_value": 585, - "name": "ImGuiKey_Comma", + "name": "ImGuiKey_F14", "value": "585" }, { "calc_value": 586, - "name": "ImGuiKey_Minus", + "name": "ImGuiKey_F15", "value": "586" }, { "calc_value": 587, - "name": "ImGuiKey_Period", + "name": "ImGuiKey_F16", "value": "587" }, { "calc_value": 588, - "name": "ImGuiKey_Slash", + "name": "ImGuiKey_F17", "value": "588" }, { "calc_value": 589, - "name": "ImGuiKey_Semicolon", + "name": "ImGuiKey_F18", "value": "589" }, { "calc_value": 590, - "name": "ImGuiKey_Equal", + "name": "ImGuiKey_F19", "value": "590" }, { "calc_value": 591, - "name": "ImGuiKey_LeftBracket", + "name": "ImGuiKey_F20", "value": "591" }, { "calc_value": 592, - "name": "ImGuiKey_Backslash", + "name": "ImGuiKey_F21", "value": "592" }, { "calc_value": 593, - "name": "ImGuiKey_RightBracket", + "name": "ImGuiKey_F22", "value": "593" }, { "calc_value": 594, - "name": "ImGuiKey_GraveAccent", + "name": "ImGuiKey_F23", "value": "594" }, { "calc_value": 595, - "name": "ImGuiKey_CapsLock", + "name": "ImGuiKey_F24", "value": "595" }, { "calc_value": 596, - "name": "ImGuiKey_ScrollLock", + "name": "ImGuiKey_Apostrophe", "value": "596" }, { "calc_value": 597, - "name": "ImGuiKey_NumLock", + "name": "ImGuiKey_Comma", "value": "597" }, { "calc_value": 598, - "name": "ImGuiKey_PrintScreen", + "name": "ImGuiKey_Minus", "value": "598" }, { "calc_value": 599, - "name": "ImGuiKey_Pause", + "name": "ImGuiKey_Period", "value": "599" }, { "calc_value": 600, - "name": "ImGuiKey_Keypad0", + "name": "ImGuiKey_Slash", "value": "600" }, { "calc_value": 601, - "name": "ImGuiKey_Keypad1", + "name": "ImGuiKey_Semicolon", "value": "601" }, { "calc_value": 602, - "name": "ImGuiKey_Keypad2", + "name": "ImGuiKey_Equal", "value": "602" }, { "calc_value": 603, - "name": "ImGuiKey_Keypad3", + "name": "ImGuiKey_LeftBracket", "value": "603" }, { "calc_value": 604, - "name": "ImGuiKey_Keypad4", + "name": "ImGuiKey_Backslash", "value": "604" }, { "calc_value": 605, - "name": "ImGuiKey_Keypad5", + "name": "ImGuiKey_RightBracket", "value": "605" }, { "calc_value": 606, - "name": "ImGuiKey_Keypad6", + "name": "ImGuiKey_GraveAccent", "value": "606" }, { "calc_value": 607, - "name": "ImGuiKey_Keypad7", + "name": "ImGuiKey_CapsLock", "value": "607" }, { "calc_value": 608, - "name": "ImGuiKey_Keypad8", + "name": "ImGuiKey_ScrollLock", "value": "608" }, { "calc_value": 609, - "name": "ImGuiKey_Keypad9", + "name": "ImGuiKey_NumLock", "value": "609" }, { "calc_value": 610, - "name": "ImGuiKey_KeypadDecimal", + "name": "ImGuiKey_PrintScreen", "value": "610" }, { "calc_value": 611, - "name": "ImGuiKey_KeypadDivide", + "name": "ImGuiKey_Pause", "value": "611" }, { "calc_value": 612, - "name": "ImGuiKey_KeypadMultiply", + "name": "ImGuiKey_Keypad0", "value": "612" }, { "calc_value": 613, - "name": "ImGuiKey_KeypadSubtract", + "name": "ImGuiKey_Keypad1", "value": "613" }, { "calc_value": 614, - "name": "ImGuiKey_KeypadAdd", + "name": "ImGuiKey_Keypad2", "value": "614" }, { "calc_value": 615, - "name": "ImGuiKey_KeypadEnter", + "name": "ImGuiKey_Keypad3", "value": "615" }, { "calc_value": 616, - "name": "ImGuiKey_KeypadEqual", + "name": "ImGuiKey_Keypad4", "value": "616" }, { "calc_value": 617, - "name": "ImGuiKey_GamepadStart", + "name": "ImGuiKey_Keypad5", "value": "617" }, { "calc_value": 618, - "name": "ImGuiKey_GamepadBack", + "name": "ImGuiKey_Keypad6", "value": "618" }, { "calc_value": 619, - "name": "ImGuiKey_GamepadFaceLeft", + "name": "ImGuiKey_Keypad7", "value": "619" }, { "calc_value": 620, - "name": "ImGuiKey_GamepadFaceRight", + "name": "ImGuiKey_Keypad8", "value": "620" }, { "calc_value": 621, - "name": "ImGuiKey_GamepadFaceUp", + "name": "ImGuiKey_Keypad9", "value": "621" }, { "calc_value": 622, - "name": "ImGuiKey_GamepadFaceDown", + "name": "ImGuiKey_KeypadDecimal", "value": "622" }, { "calc_value": 623, - "name": "ImGuiKey_GamepadDpadLeft", + "name": "ImGuiKey_KeypadDivide", "value": "623" }, { "calc_value": 624, - "name": "ImGuiKey_GamepadDpadRight", + "name": "ImGuiKey_KeypadMultiply", "value": "624" }, { "calc_value": 625, - "name": "ImGuiKey_GamepadDpadUp", + "name": "ImGuiKey_KeypadSubtract", "value": "625" }, { "calc_value": 626, - "name": "ImGuiKey_GamepadDpadDown", + "name": "ImGuiKey_KeypadAdd", "value": "626" }, { "calc_value": 627, - "name": "ImGuiKey_GamepadL1", + "name": "ImGuiKey_KeypadEnter", "value": "627" }, { "calc_value": 628, - "name": "ImGuiKey_GamepadR1", + "name": "ImGuiKey_KeypadEqual", "value": "628" }, { "calc_value": 629, - "name": "ImGuiKey_GamepadL2", + "name": "ImGuiKey_AppBack", "value": "629" }, { "calc_value": 630, - "name": "ImGuiKey_GamepadR2", + "name": "ImGuiKey_AppForward", "value": "630" }, { "calc_value": 631, - "name": "ImGuiKey_GamepadL3", + "name": "ImGuiKey_GamepadStart", "value": "631" }, { "calc_value": 632, - "name": "ImGuiKey_GamepadR3", + "name": "ImGuiKey_GamepadBack", "value": "632" }, { "calc_value": 633, - "name": "ImGuiKey_GamepadLStickLeft", + "name": "ImGuiKey_GamepadFaceLeft", "value": "633" }, { "calc_value": 634, - "name": "ImGuiKey_GamepadLStickRight", + "name": "ImGuiKey_GamepadFaceRight", "value": "634" }, { "calc_value": 635, - "name": "ImGuiKey_GamepadLStickUp", + "name": "ImGuiKey_GamepadFaceUp", "value": "635" }, { "calc_value": 636, - "name": "ImGuiKey_GamepadLStickDown", + "name": "ImGuiKey_GamepadFaceDown", "value": "636" }, { "calc_value": 637, - "name": "ImGuiKey_GamepadRStickLeft", + "name": "ImGuiKey_GamepadDpadLeft", "value": "637" }, { "calc_value": 638, - "name": "ImGuiKey_GamepadRStickRight", + "name": "ImGuiKey_GamepadDpadRight", "value": "638" }, { "calc_value": 639, - "name": "ImGuiKey_GamepadRStickUp", + "name": "ImGuiKey_GamepadDpadUp", "value": "639" }, { "calc_value": 640, - "name": "ImGuiKey_GamepadRStickDown", + "name": "ImGuiKey_GamepadDpadDown", "value": "640" }, { "calc_value": 641, - "name": "ImGuiKey_MouseLeft", + "name": "ImGuiKey_GamepadL1", "value": "641" }, { "calc_value": 642, - "name": "ImGuiKey_MouseRight", + "name": "ImGuiKey_GamepadR1", "value": "642" }, { "calc_value": 643, - "name": "ImGuiKey_MouseMiddle", + "name": "ImGuiKey_GamepadL2", "value": "643" }, { "calc_value": 644, - "name": "ImGuiKey_MouseX1", + "name": "ImGuiKey_GamepadR2", "value": "644" }, { "calc_value": 645, - "name": "ImGuiKey_MouseX2", + "name": "ImGuiKey_GamepadL3", "value": "645" }, { "calc_value": 646, - "name": "ImGuiKey_MouseWheelX", + "name": "ImGuiKey_GamepadR3", "value": "646" }, { "calc_value": 647, - "name": "ImGuiKey_MouseWheelY", + "name": "ImGuiKey_GamepadLStickLeft", "value": "647" }, { "calc_value": 648, - "name": "ImGuiKey_ReservedForModCtrl", + "name": "ImGuiKey_GamepadLStickRight", "value": "648" }, { "calc_value": 649, - "name": "ImGuiKey_ReservedForModShift", + "name": "ImGuiKey_GamepadLStickUp", "value": "649" }, { "calc_value": 650, - "name": "ImGuiKey_ReservedForModAlt", + "name": "ImGuiKey_GamepadLStickDown", "value": "650" }, { "calc_value": 651, - "name": "ImGuiKey_ReservedForModSuper", + "name": "ImGuiKey_GamepadRStickLeft", "value": "651" }, { "calc_value": 652, - "name": "ImGuiKey_COUNT", + "name": "ImGuiKey_GamepadRStickRight", "value": "652" }, + { + "calc_value": 653, + "name": "ImGuiKey_GamepadRStickUp", + "value": "653" + }, + { + "calc_value": 654, + "name": "ImGuiKey_GamepadRStickDown", + "value": "654" + }, + { + "calc_value": 655, + "name": "ImGuiKey_MouseLeft", + "value": "655" + }, + { + "calc_value": 656, + "name": "ImGuiKey_MouseRight", + "value": "656" + }, + { + "calc_value": 657, + "name": "ImGuiKey_MouseMiddle", + "value": "657" + }, + { + "calc_value": 658, + "name": "ImGuiKey_MouseX1", + "value": "658" + }, + { + "calc_value": 659, + "name": "ImGuiKey_MouseX2", + "value": "659" + }, + { + "calc_value": 660, + "name": "ImGuiKey_MouseWheelX", + "value": "660" + }, + { + "calc_value": 661, + "name": "ImGuiKey_MouseWheelY", + "value": "661" + }, + { + "calc_value": 662, + "name": "ImGuiKey_ReservedForModCtrl", + "value": "662" + }, + { + "calc_value": 663, + "name": "ImGuiKey_ReservedForModShift", + "value": "663" + }, + { + "calc_value": 664, + "name": "ImGuiKey_ReservedForModAlt", + "value": "664" + }, + { + "calc_value": 665, + "name": "ImGuiKey_ReservedForModSuper", + "value": "665" + }, + { + "calc_value": 666, + "name": "ImGuiKey_COUNT", + "value": "666" + }, { "calc_value": 0, "name": "ImGuiMod_None", @@ -1824,14 +2110,9 @@ "value": "1 << 15" }, { - "calc_value": 2048, - "name": "ImGuiMod_Shortcut", - "value": "1 << 11" - }, - { - "calc_value": 63488, + "calc_value": 61440, "name": "ImGuiMod_Mask_", - "value": "0xF800" + "value": "0xF000" }, { "calc_value": 512, @@ -1839,24 +2120,24 @@ "value": "512" }, { - "calc_value": 652, + "calc_value": 666, "name": "ImGuiKey_NamedKey_END", "value": "ImGuiKey_COUNT" }, { - "calc_value": 140, + "calc_value": 154, "name": "ImGuiKey_NamedKey_COUNT", "value": "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" }, { - "calc_value": 652, + "calc_value": 154, "name": "ImGuiKey_KeysData_SIZE", - "value": "ImGuiKey_COUNT" + "value": "ImGuiKey_NamedKey_COUNT" }, { - "calc_value": 0, + "calc_value": 512, "name": "ImGuiKey_KeysData_OFFSET", - "value": "0" + "value": "ImGuiKey_NamedKey_BEGIN" } ], "ImGuiMouseButton_": [ @@ -1938,91 +2219,113 @@ "value": "9" } ], - "ImGuiNavInput": [ + "ImGuiMouseSource": [ { "calc_value": 0, - "name": "ImGuiNavInput_Activate", + "name": "ImGuiMouseSource_Mouse", "value": "0" }, { "calc_value": 1, - "name": "ImGuiNavInput_Cancel", + "name": "ImGuiMouseSource_TouchScreen", "value": "1" }, { "calc_value": 2, - "name": "ImGuiNavInput_Input", + "name": "ImGuiMouseSource_Pen", "value": "2" }, { "calc_value": 3, - "name": "ImGuiNavInput_Menu", + "name": "ImGuiMouseSource_COUNT", "value": "3" + } + ], + "ImGuiMultiSelectFlags_": [ + { + "calc_value": 0, + "name": "ImGuiMultiSelectFlags_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiMultiSelectFlags_SingleSelect", + "value": "1 << 0" + }, + { + "calc_value": 2, + "name": "ImGuiMultiSelectFlags_NoSelectAll", + "value": "1 << 1" }, { "calc_value": 4, - "name": "ImGuiNavInput_DpadLeft", - "value": "4" - }, - { - "calc_value": 5, - "name": "ImGuiNavInput_DpadRight", - "value": "5" - }, - { - "calc_value": 6, - "name": "ImGuiNavInput_DpadUp", - "value": "6" - }, - { - "calc_value": 7, - "name": "ImGuiNavInput_DpadDown", - "value": "7" + "name": "ImGuiMultiSelectFlags_NoRangeSelect", + "value": "1 << 2" }, { "calc_value": 8, - "name": "ImGuiNavInput_LStickLeft", - "value": "8" - }, - { - "calc_value": 9, - "name": "ImGuiNavInput_LStickRight", - "value": "9" - }, - { - "calc_value": 10, - "name": "ImGuiNavInput_LStickUp", - "value": "10" - }, - { - "calc_value": 11, - "name": "ImGuiNavInput_LStickDown", - "value": "11" - }, - { - "calc_value": 12, - "name": "ImGuiNavInput_FocusPrev", - "value": "12" - }, - { - "calc_value": 13, - "name": "ImGuiNavInput_FocusNext", - "value": "13" - }, - { - "calc_value": 14, - "name": "ImGuiNavInput_TweakSlow", - "value": "14" - }, - { - "calc_value": 15, - "name": "ImGuiNavInput_TweakFast", - "value": "15" + "name": "ImGuiMultiSelectFlags_NoAutoSelect", + "value": "1 << 3" }, { "calc_value": 16, - "name": "ImGuiNavInput_COUNT", - "value": "16" + "name": "ImGuiMultiSelectFlags_NoAutoClear", + "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiMultiSelectFlags_NoAutoClearOnReselect", + "value": "1 << 5" + }, + { + "calc_value": 64, + "name": "ImGuiMultiSelectFlags_BoxSelect1d", + "value": "1 << 6" + }, + { + "calc_value": 128, + "name": "ImGuiMultiSelectFlags_BoxSelect2d", + "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiMultiSelectFlags_BoxSelectNoScroll", + "value": "1 << 8" + }, + { + "calc_value": 512, + "name": "ImGuiMultiSelectFlags_ClearOnEscape", + "value": "1 << 9" + }, + { + "calc_value": 1024, + "name": "ImGuiMultiSelectFlags_ClearOnClickVoid", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiMultiSelectFlags_ScopeWindow", + "value": "1 << 11" + }, + { + "calc_value": 4096, + "name": "ImGuiMultiSelectFlags_ScopeRect", + "value": "1 << 12" + }, + { + "calc_value": 8192, + "name": "ImGuiMultiSelectFlags_SelectOnClick", + "value": "1 << 13" + }, + { + "calc_value": 16384, + "name": "ImGuiMultiSelectFlags_SelectOnClickRelease", + "value": "1 << 14" + }, + { + "calc_value": 65536, + "name": "ImGuiMultiSelectFlags_NavWrapX", + "value": "1 << 16" } ], "ImGuiPopupFlags_": [ @@ -2058,26 +2361,31 @@ }, { "calc_value": 32, - "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", + "name": "ImGuiPopupFlags_NoReopen", "value": "1 << 5" }, - { - "calc_value": 64, - "name": "ImGuiPopupFlags_NoOpenOverItems", - "value": "1 << 6" - }, { "calc_value": 128, - "name": "ImGuiPopupFlags_AnyPopupId", + "name": "ImGuiPopupFlags_NoOpenOverExistingPopup", "value": "1 << 7" }, { "calc_value": 256, - "name": "ImGuiPopupFlags_AnyPopupLevel", + "name": "ImGuiPopupFlags_NoOpenOverItems", "value": "1 << 8" }, { - "calc_value": 384, + "calc_value": 1024, + "name": "ImGuiPopupFlags_AnyPopupId", + "value": "1 << 10" + }, + { + "calc_value": 2048, + "name": "ImGuiPopupFlags_AnyPopupLevel", + "value": "1 << 11" + }, + { + "calc_value": 3072, "name": "ImGuiPopupFlags_AnyPopup", "value": "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" } @@ -2090,7 +2398,7 @@ }, { "calc_value": 1, - "name": "ImGuiSelectableFlags_DontClosePopups", + "name": "ImGuiSelectableFlags_NoAutoClosePopups", "value": "1 << 0" }, { @@ -2110,8 +2418,30 @@ }, { "calc_value": 16, - "name": "ImGuiSelectableFlags_AllowItemOverlap", + "name": "ImGuiSelectableFlags_AllowOverlap", "value": "1 << 4" + }, + { + "calc_value": 32, + "name": "ImGuiSelectableFlags_Highlight", + "value": "1 << 5" + } + ], + "ImGuiSelectionRequestType": [ + { + "calc_value": 0, + "name": "ImGuiSelectionRequestType_None", + "value": "0" + }, + { + "calc_value": 1, + "name": "ImGuiSelectionRequestType_SetAll", + "value": "1" + }, + { + "calc_value": 2, + "name": "ImGuiSelectionRequestType_SetRange", + "value": "2" } ], "ImGuiSliderFlags_": [ @@ -2140,13 +2470,18 @@ "name": "ImGuiSliderFlags_NoInput", "value": "1 << 7" }, + { + "calc_value": 256, + "name": "ImGuiSliderFlags_WrapAround", + "value": "1 << 8" + }, { "calc_value": 1879048207, "name": "ImGuiSliderFlags_InvalidMask_", "value": "0x7000000F" } ], - "ImGuiSortDirection_": [ + "ImGuiSortDirection": [ { "calc_value": 0, "name": "ImGuiSortDirection_None", @@ -2281,18 +2616,58 @@ }, { "calc_value": 23, - "name": "ImGuiStyleVar_ButtonTextAlign", + "name": "ImGuiStyleVar_TabBorderSize", "value": "23" }, { "calc_value": 24, - "name": "ImGuiStyleVar_SelectableTextAlign", + "name": "ImGuiStyleVar_TabBarBorderSize", "value": "24" }, { "calc_value": 25, - "name": "ImGuiStyleVar_COUNT", + "name": "ImGuiStyleVar_TabBarOverlineSize", "value": "25" + }, + { + "calc_value": 26, + "name": "ImGuiStyleVar_TableAngledHeadersAngle", + "value": "26" + }, + { + "calc_value": 27, + "name": "ImGuiStyleVar_TableAngledHeadersTextAlign", + "value": "27" + }, + { + "calc_value": 28, + "name": "ImGuiStyleVar_ButtonTextAlign", + "value": "28" + }, + { + "calc_value": 29, + "name": "ImGuiStyleVar_SelectableTextAlign", + "value": "29" + }, + { + "calc_value": 30, + "name": "ImGuiStyleVar_SeparatorTextBorderSize", + "value": "30" + }, + { + "calc_value": 31, + "name": "ImGuiStyleVar_SeparatorTextAlign", + "value": "31" + }, + { + "calc_value": 32, + "name": "ImGuiStyleVar_SeparatorTextPadding", + "value": "32" + }, + { + "calc_value": 33, + "name": "ImGuiStyleVar_COUNT", + "value": "33" } ], "ImGuiTabBarFlags_": [ @@ -2333,21 +2708,26 @@ }, { "calc_value": 64, - "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", + "name": "ImGuiTabBarFlags_DrawSelectedOverline", "value": "1 << 6" }, { "calc_value": 128, - "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "name": "ImGuiTabBarFlags_FittingPolicyResizeDown", "value": "1 << 7" }, { - "calc_value": 192, + "calc_value": 256, + "name": "ImGuiTabBarFlags_FittingPolicyScroll", + "value": "1 << 8" + }, + { + "calc_value": 384, "name": "ImGuiTabBarFlags_FittingPolicyMask_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" }, { - "calc_value": 64, + "calc_value": 128, "name": "ImGuiTabBarFlags_FittingPolicyDefault_", "value": "ImGuiTabBarFlags_FittingPolicyResizeDown" } @@ -2397,6 +2777,11 @@ "calc_value": 128, "name": "ImGuiTabItemFlags_Trailing", "value": "1 << 7" + }, + { + "calc_value": 256, + "name": "ImGuiTabItemFlags_NoAssumedClosure", + "value": "1 << 8" } ], "ImGuiTableBgTarget_": [ @@ -2517,6 +2902,11 @@ "name": "ImGuiTableColumnFlags_IndentDisable", "value": "1 << 17" }, + { + "calc_value": 262144, + "name": "ImGuiTableColumnFlags_AngledHeader", + "value": "1 << 18" + }, { "calc_value": 16777216, "name": "ImGuiTableColumnFlags_IsEnabled", @@ -2734,6 +3124,11 @@ "name": "ImGuiTableFlags_SortTristate", "value": "1 << 27" }, + { + "calc_value": 268435456, + "name": "ImGuiTableFlags_HighlightHoveredColumn", + "value": "1 << 28" + }, { "calc_value": 57344, "name": "ImGuiTableFlags_SizingMask_", @@ -2770,7 +3165,7 @@ }, { "calc_value": 4, - "name": "ImGuiTreeNodeFlags_AllowItemOverlap", + "name": "ImGuiTreeNodeFlags_AllowOverlap", "value": "1 << 2" }, { @@ -2825,9 +3220,19 @@ }, { "calc_value": 8192, - "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "name": "ImGuiTreeNodeFlags_SpanTextWidth", "value": "1 << 13" }, + { + "calc_value": 16384, + "name": "ImGuiTreeNodeFlags_SpanAllColumns", + "value": "1 << 14" + }, + { + "calc_value": 32768, + "name": "ImGuiTreeNodeFlags_NavLeftJumpsBackHere", + "value": "1 << 15" + }, { "calc_value": 26, "name": "ImGuiTreeNodeFlags_CollapsingHeader", @@ -2944,26 +3349,21 @@ }, { "calc_value": 65536, - "name": "ImGuiWindowFlags_AlwaysUseWindowPadding", + "name": "ImGuiWindowFlags_NoNavInputs", "value": "1 << 16" }, + { + "calc_value": 131072, + "name": "ImGuiWindowFlags_NoNavFocus", + "value": "1 << 17" + }, { "calc_value": 262144, - "name": "ImGuiWindowFlags_NoNavInputs", + "name": "ImGuiWindowFlags_UnsavedDocument", "value": "1 << 18" }, { - "calc_value": 524288, - "name": "ImGuiWindowFlags_NoNavFocus", - "value": "1 << 19" - }, - { - "calc_value": 1048576, - "name": "ImGuiWindowFlags_UnsavedDocument", - "value": "1 << 20" - }, - { - "calc_value": 786432, + "calc_value": 196608, "name": "ImGuiWindowFlags_NoNav", "value": "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, @@ -2973,15 +3373,10 @@ "value": "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" }, { - "calc_value": 786944, + "calc_value": 197120, "name": "ImGuiWindowFlags_NoInputs", "value": "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" }, - { - "calc_value": 8388608, - "name": "ImGuiWindowFlags_NavFlattened", - "value": "1 << 23" - }, { "calc_value": 16777216, "name": "ImGuiWindowFlags_ChildWindow", @@ -3010,76 +3405,89 @@ ] }, "enumtypes": { - "ImGuiKey": "int" + "ImGuiDir": "int", + "ImGuiKey": "int", + "ImGuiMouseSource": "int", + "ImGuiSortDirection": "ImU8" }, "locations": { - "ImColor": "imgui:2344", - "ImDrawChannel": "imgui:2434", - "ImDrawCmd": "imgui:2393", - "ImDrawCmdHeader": "imgui:2426", - "ImDrawData": "imgui:2626", - "ImDrawFlags_": "imgui:2460", - "ImDrawList": "imgui:2498", - "ImDrawListFlags_": "imgui:2480", - "ImDrawListSplitter": "imgui:2443", - "ImDrawVert": "imgui:2411", - "ImFont": "imgui:2845", - "ImFontAtlas": "imgui:2742", - "ImFontAtlasCustomRect": "imgui:2704", - "ImFontAtlasFlags_": "imgui:2717", - "ImFontConfig": "imgui:2648", - "ImFontGlyph": "imgui:2677", - "ImFontGlyphRangesBuilder": "imgui:2689", - "ImGuiBackendFlags_": "imgui:1508", - "ImGuiButtonFlags_": "imgui:1615", - "ImGuiCol_": "imgui:1518", - "ImGuiColorEditFlags_": "imgui:1628", - "ImGuiComboFlags_": "imgui:1080", - "ImGuiCond_": "imgui:1719", - "ImGuiConfigFlags_": "imgui:1492", - "ImGuiDataType_": "imgui:1317", - "ImGuiDir_": "imgui:1333", - "ImGuiDragDropFlags_": "imgui:1295", - "ImGuiFocusedFlags_": "imgui:1257", - "ImGuiHoveredFlags_": "imgui:1271", - "ImGuiIO": "imgui:1896", - "ImGuiInputTextCallbackData": "imgui:2069", - "ImGuiInputTextFlags_": "imgui:992", - "ImGuiKey": "imgui:1355", - "ImGuiKeyData": "imgui:1888", - "ImGuiListClipper": "imgui:2293", - "ImGuiMouseButton_": "imgui:1691", - "ImGuiMouseCursor_": "imgui:1701", - "ImGuiNavInput": "imgui:1483", - "ImGuiOnceUponAFrame": "imgui:2168", - "ImGuiPayload": "imgui:2109", - "ImGuiPlatformImeData": "imgui:2939", - "ImGuiPopupFlags_": "imgui:1053", - "ImGuiSelectableFlags_": "imgui:1069", - "ImGuiSizeCallbackData": "imgui:2100", - "ImGuiSliderFlags_": "imgui:1674", - "ImGuiSortDirection_": "imgui:1344", - "ImGuiStorage": "imgui:2230", - "ImGuiStoragePair": "imgui:2233", - "ImGuiStyle": "imgui:1831", - "ImGuiStyleVar_": "imgui:1583", - "ImGuiTabBarFlags_": "imgui:1094", - "ImGuiTabItemFlags_": "imgui:1110", - "ImGuiTableBgTarget_": "imgui:1248", - "ImGuiTableColumnFlags_": "imgui:1196", - "ImGuiTableColumnSortSpecs": "imgui:2131", - "ImGuiTableFlags_": "imgui:1145", - "ImGuiTableRowFlags_": "imgui:1233", - "ImGuiTableSortSpecs": "imgui:2145", - "ImGuiTextBuffer": "imgui:2203", - "ImGuiTextFilter": "imgui:2176", - "ImGuiTextRange": "imgui:2186", - "ImGuiTreeNodeFlags_": "imgui:1024", - "ImGuiViewport": "imgui:2916", - "ImGuiViewportFlags_": "imgui:2901", - "ImGuiWindowFlags_": "imgui:954", - "ImVec2": "imgui:253", - "ImVec4": "imgui:266" + "ImColor": "imgui:2730", + "ImDrawChannel": "imgui:2968", + "ImDrawCmd": "imgui:2927", + "ImDrawCmdHeader": "imgui:2960", + "ImDrawData": "imgui:3173", + "ImDrawFlags_": "imgui:2994", + "ImDrawList": "imgui:3032", + "ImDrawListFlags_": "imgui:3014", + "ImDrawListSplitter": "imgui:2977", + "ImDrawVert": "imgui:2945", + "ImFont": "imgui:3396", + "ImFontAtlas": "imgui:3292", + "ImFontAtlasCustomRect": "imgui:3254", + "ImFontAtlasFlags_": "imgui:3267", + "ImFontConfig": "imgui:3197", + "ImFontGlyph": "imgui:3227", + "ImFontGlyphRangesBuilder": "imgui:3239", + "ImGuiBackendFlags_": "imgui:1610", + "ImGuiButtonFlags_": "imgui:1735", + "ImGuiChildFlags_": "imgui:1109", + "ImGuiCol_": "imgui:1620", + "ImGuiColorEditFlags_": "imgui:1746", + "ImGuiComboFlags_": "imgui:1252", + "ImGuiCond_": "imgui:1848", + "ImGuiConfigFlags_": "imgui:1593", + "ImGuiDataType_": "imgui:1379", + "ImGuiDir": "imgui:1396", + "ImGuiDragDropFlags_": "imgui:1351", + "ImGuiFocusedFlags_": "imgui:1299", + "ImGuiHoveredFlags_": "imgui:1313", + "ImGuiIO": "imgui:2220", + "ImGuiInputFlags_": "imgui:1558", + "ImGuiInputTextCallbackData": "imgui:2431", + "ImGuiInputTextFlags_": "imgui:1143", + "ImGuiItemFlags_": "imgui:1130", + "ImGuiKey": "imgui:1425", + "ImGuiKeyData": "imgui:2212", + "ImGuiListClipper": "imgui:2638", + "ImGuiMouseButton_": "imgui:1808", + "ImGuiMouseCursor_": "imgui:1818", + "ImGuiMouseSource": "imgui:1837", + "ImGuiMultiSelectFlags_": "imgui:2788", + "ImGuiMultiSelectIO": "imgui:2815", + "ImGuiOnceUponAFrame": "imgui:2509", + "ImGuiPayload": "imgui:2474", + "ImGuiPlatformIO": "imgui:3494", + "ImGuiPlatformImeData": "imgui:3525", + "ImGuiPopupFlags_": "imgui:1217", + "ImGuiSelectableFlags_": "imgui:1235", + "ImGuiSelectionBasicStorage": "imgui:2861", + "ImGuiSelectionExternalStorage": "imgui:2884", + "ImGuiSelectionRequest": "imgui:2835", + "ImGuiSelectionRequestType": "imgui:2827", + "ImGuiSizeCallbackData": "imgui:2465", + "ImGuiSliderFlags_": "imgui:1792", + "ImGuiSortDirection": "imgui:1407", + "ImGuiStorage": "imgui:2581", + "ImGuiStoragePair": "imgui:2564", + "ImGuiStyle": "imgui:2135", + "ImGuiStyleVar_": "imgui:1695", + "ImGuiTabBarFlags_": "imgui:1267", + "ImGuiTabItemFlags_": "imgui:1284", + "ImGuiTableBgTarget_": "imgui:1989", + "ImGuiTableColumnFlags_": "imgui:1936", + "ImGuiTableColumnSortSpecs": "imgui:2011", + "ImGuiTableFlags_": "imgui:1883", + "ImGuiTableRowFlags_": "imgui:1974", + "ImGuiTableSortSpecs": "imgui:2001", + "ImGuiTextBuffer": "imgui:2544", + "ImGuiTextFilter": "imgui:2517", + "ImGuiTextRange": "imgui:2527", + "ImGuiTreeNodeFlags_": "imgui:1182", + "ImGuiViewport": "imgui:3469", + "ImGuiViewportFlags_": "imgui:3454", + "ImGuiWindowFlags_": "imgui:1060", + "ImVec2": "imgui:288", + "ImVec4": "imgui:301" }, "structs": { "ImColor": [ @@ -3163,7 +3571,8 @@ }, { "name": "CmdLists", - "type": "ImDrawList**" + "template_type": "ImDrawList*", + "type": "ImVector_ImDrawListPtr" }, { "name": "DisplayPos", @@ -3176,6 +3585,10 @@ { "name": "FramebufferScale", "type": "ImVec2" + }, + { + "name": "OwnerViewport", + "type": "ImGuiViewport*" } ], "ImDrawList": [ @@ -3206,10 +3619,6 @@ "name": "_Data", "type": "ImDrawListSharedData*" }, - { - "name": "_OwnerName", - "type": "const char*" - }, { "name": "_VtxWritePtr", "type": "ImDrawVert*" @@ -3218,16 +3627,6 @@ "name": "_IdxWritePtr", "type": "ImDrawIdx*" }, - { - "name": "_ClipRectStack", - "template_type": "ImVec4", - "type": "ImVector_ImVec4" - }, - { - "name": "_TextureIdStack", - "template_type": "ImTextureID", - "type": "ImVector_ImTextureID" - }, { "name": "_Path", "template_type": "ImVec2", @@ -3241,9 +3640,23 @@ "name": "_Splitter", "type": "ImDrawListSplitter" }, + { + "name": "_ClipRectStack", + "template_type": "ImVec4", + "type": "ImVector_ImVec4" + }, + { + "name": "_TextureIdStack", + "template_type": "ImTextureID", + "type": "ImVector_ImTextureID" + }, { "name": "_FringeScale", "type": "float" + }, + { + "name": "_OwnerName", + "type": "const char*" } ], "ImDrawListSplitter": [ @@ -3324,8 +3737,16 @@ "type": "ImWchar" }, { - "name": "DotChar", - "type": "ImWchar" + "name": "EllipsisCharCount", + "type": "short" + }, + { + "name": "EllipsisWidth", + "type": "float" + }, + { + "name": "EllipsisCharStep", + "type": "float" }, { "name": "DirtyLookupTables", @@ -3546,6 +3967,10 @@ "name": "RasterizerMultiply", "type": "float" }, + { + "name": "RasterizerDensity", + "type": "float" + }, { "name": "EllipsisChar", "type": "ImWchar" @@ -3649,34 +4074,6 @@ "name": "LogFilename", "type": "const char*" }, - { - "name": "MouseDoubleClickTime", - "type": "float" - }, - { - "name": "MouseDoubleClickMaxDist", - "type": "float" - }, - { - "name": "MouseDragThreshold", - "type": "float" - }, - { - "name": "KeyRepeatDelay", - "type": "float" - }, - { - "name": "KeyRepeatRate", - "type": "float" - }, - { - "name": "HoverDelayNormal", - "type": "float" - }, - { - "name": "HoverDelayShort", - "type": "float" - }, { "name": "UserData", "type": "void*" @@ -3709,6 +4106,10 @@ "name": "ConfigMacOSXBehaviors", "type": "bool" }, + { + "name": "ConfigNavSwapGamepadButtons", + "type": "bool" + }, { "name": "ConfigInputTrickleEventQueue", "type": "bool" @@ -3737,6 +4138,50 @@ "name": "ConfigMemoryCompactTimer", "type": "float" }, + { + "name": "MouseDoubleClickTime", + "type": "float" + }, + { + "name": "MouseDoubleClickMaxDist", + "type": "float" + }, + { + "name": "MouseDragThreshold", + "type": "float" + }, + { + "name": "KeyRepeatDelay", + "type": "float" + }, + { + "name": "KeyRepeatRate", + "type": "float" + }, + { + "name": "ConfigDebugIsDebuggerPresent", + "type": "bool" + }, + { + "name": "ConfigDebugHighlightIdConflicts", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueOnce", + "type": "bool" + }, + { + "name": "ConfigDebugBeginReturnValueLoop", + "type": "bool" + }, + { + "name": "ConfigDebugIgnoreFocusLoss", + "type": "bool" + }, + { + "name": "ConfigDebugIniSettings", + "type": "bool" + }, { "name": "BackendPlatformName", "type": "const char*" @@ -3757,26 +4202,6 @@ "name": "BackendLanguageUserData", "type": "void*" }, - { - "name": "GetClipboardTextFn", - "type": "const char*(*)(void* user_data)" - }, - { - "name": "SetClipboardTextFn", - "type": "void(*)(void* user_data,const char* text)" - }, - { - "name": "ClipboardUserData", - "type": "void*" - }, - { - "name": "SetPlatformImeDataFn", - "type": "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" - }, - { - "name": "_UnusedPadding", - "type": "void*" - }, { "name": "WantCaptureMouse", "type": "bool" @@ -3825,28 +4250,13 @@ "name": "MetricsActiveWindows", "type": "int" }, - { - "name": "MetricsActiveAllocations", - "type": "int" - }, { "name": "MouseDelta", "type": "ImVec2" }, { - "name": "KeyMap[ImGuiKey_COUNT]", - "size": 652, - "type": "int" - }, - { - "name": "KeysDown[ImGuiKey_COUNT]", - "size": 652, - "type": "bool" - }, - { - "name": "NavInputs[ImGuiNavInput_COUNT]", - "size": 16, - "type": "float" + "name": "Ctx", + "type": "ImGuiContext*" }, { "name": "MousePos", @@ -3865,6 +4275,10 @@ "name": "MouseWheelH", "type": "float" }, + { + "name": "MouseSource", + "type": "ImGuiMouseSource" + }, { "name": "KeyCtrl", "type": "bool" @@ -3887,7 +4301,7 @@ }, { "name": "KeysData[ImGuiKey_KeysData_SIZE]", - "size": 652, + "size": 154, "type": "ImGuiKeyData" }, { @@ -3943,6 +4357,14 @@ "size": 5, "type": "bool" }, + { + "name": "MouseWheelRequestAxisSwap", + "type": "bool" + }, + { + "name": "MouseCtrlLeftAsRightClick", + "type": "bool" + }, { "name": "MouseDownDuration[5]", "size": 5, @@ -3989,6 +4411,10 @@ } ], "ImGuiInputTextCallbackData": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "EventFlag", "type": "ImGuiInputTextFlags" @@ -4057,6 +4483,10 @@ } ], "ImGuiListClipper": [ + { + "name": "Ctx", + "type": "ImGuiContext*" + }, { "name": "DisplayStart", "type": "int" @@ -4077,11 +4507,42 @@ "name": "StartPosY", "type": "float" }, + { + "name": "StartSeekOffsetY", + "type": "double" + }, { "name": "TempData", "type": "void*" } ], + "ImGuiMultiSelectIO": [ + { + "name": "Requests", + "template_type": "ImGuiSelectionRequest", + "type": "ImVector_ImGuiSelectionRequest" + }, + { + "name": "RangeSrcItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "NavIdSelected", + "type": "bool" + }, + { + "name": "RangeSrcReset", + "type": "bool" + }, + { + "name": "ItemsCount", + "type": "int" + } + ], "ImGuiOnceUponAFrame": [ { "name": "RefFrame", @@ -4123,6 +4584,40 @@ "type": "bool" } ], + "ImGuiPlatformIO": [ + { + "name": "Platform_GetClipboardTextFn", + "type": "const char*(*)(ImGuiContext* ctx)" + }, + { + "name": "Platform_SetClipboardTextFn", + "type": "void(*)(ImGuiContext* ctx,const char* text)" + }, + { + "name": "Platform_ClipboardUserData", + "type": "void*" + }, + { + "name": "Platform_OpenInShellFn", + "type": "bool(*)(ImGuiContext* ctx,const char* path)" + }, + { + "name": "Platform_OpenInShellUserData", + "type": "void*" + }, + { + "name": "Platform_SetImeDataFn", + "type": "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" + }, + { + "name": "Platform_ImeUserData", + "type": "void*" + }, + { + "name": "Platform_LocaleDecimalPoint", + "type": "ImWchar" + } + ], "ImGuiPlatformImeData": [ { "name": "WantVisible", @@ -4137,6 +4632,64 @@ "type": "float" } ], + "ImGuiSelectionBasicStorage": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "PreserveOrder", + "type": "bool" + }, + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterIndexToStorageId", + "type": "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" + }, + { + "name": "_SelectionOrder", + "type": "int" + }, + { + "name": "_Storage", + "type": "ImGuiStorage" + } + ], + "ImGuiSelectionExternalStorage": [ + { + "name": "UserData", + "type": "void*" + }, + { + "name": "AdapterSetItemSelected", + "type": "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" + } + ], + "ImGuiSelectionRequest": [ + { + "name": "Type", + "type": "ImGuiSelectionRequestType" + }, + { + "name": "Selected", + "type": "bool" + }, + { + "name": "RangeDirection", + "type": "ImS8" + }, + { + "name": "RangeFirstItem", + "type": "ImGuiSelectionUserData" + }, + { + "name": "RangeLastItem", + "type": "ImGuiSelectionUserData" + } + ], "ImGuiSizeCallbackData": [ { "name": "UserData", @@ -4289,6 +4842,22 @@ "name": "TabMinWidthForCloseButton", "type": "float" }, + { + "name": "TabBarBorderSize", + "type": "float" + }, + { + "name": "TabBarOverlineSize", + "type": "float" + }, + { + "name": "TableAngledHeadersAngle", + "type": "float" + }, + { + "name": "TableAngledHeadersTextAlign", + "type": "ImVec2" + }, { "name": "ColorButtonPosition", "type": "ImGuiDir" @@ -4301,6 +4870,18 @@ "name": "SelectableTextAlign", "type": "ImVec2" }, + { + "name": "SeparatorTextBorderSize", + "type": "float" + }, + { + "name": "SeparatorTextAlign", + "type": "ImVec2" + }, + { + "name": "SeparatorTextPadding", + "type": "ImVec2" + }, { "name": "DisplayWindowPadding", "type": "ImVec2" @@ -4335,8 +4916,28 @@ }, { "name": "Colors[ImGuiCol_COUNT]", - "size": 53, + "size": 56, "type": "ImVec4" + }, + { + "name": "HoverStationaryDelay", + "type": "float" + }, + { + "name": "HoverDelayShort", + "type": "float" + }, + { + "name": "HoverDelayNormal", + "type": "float" + }, + { + "name": "HoverFlagsForTooltipMouse", + "type": "ImGuiHoveredFlags" + }, + { + "name": "HoverFlagsForTooltipNav", + "type": "ImGuiHoveredFlags" } ], "ImGuiTableColumnSortSpecs": [ @@ -4353,7 +4954,6 @@ "type": "ImS16" }, { - "bitfield": "8", "name": "SortDirection", "type": "ImGuiSortDirection" } @@ -4406,6 +5006,10 @@ } ], "ImGuiViewport": [ + { + "name": "ID", + "type": "ImGuiID" + }, { "name": "Flags", "type": "ImGuiViewportFlags" @@ -4426,6 +5030,10 @@ "name": "WorkSize", "type": "ImVec2" }, + { + "name": "PlatformHandle", + "type": "void*" + }, { "name": "PlatformHandleRaw", "type": "void*" @@ -4459,5 +5067,47 @@ "type": "float" } ] + }, + "templated_structs": { + "ImVector": [ + { + "name": "Size", + "type": "int" + }, + { + "name": "Capacity", + "type": "int" + }, + { + "name": "Data", + "type": "T*" + } + ] + }, + "templates_done": { + "ImVector": { + "ImDrawChannel": true, + "ImDrawCmd": true, + "ImDrawIdx": true, + "ImDrawList*": true, + "ImDrawVert": true, + "ImFont*": true, + "ImFontAtlasCustomRect": true, + "ImFontConfig": true, + "ImFontGlyph": true, + "ImGuiSelectionRequest": true, + "ImGuiStoragePair": true, + "ImGuiTextRange": true, + "ImTextureID": true, + "ImU32": true, + "ImVec2": true, + "ImVec4": true, + "ImWchar": true, + "char": true, + "float": true + } + }, + "typenames": { + "ImVector": "T" } } \ No newline at end of file diff --git a/imgui-sys/third-party/imgui-master/structs_and_enums.lua b/imgui-sys/third-party/imgui-master/structs_and_enums.lua index a8187c8..98e4667 100644 --- a/imgui-sys/third-party/imgui-master/structs_and_enums.lua +++ b/imgui-sys/third-party/imgui-master/structs_and_enums.lua @@ -137,10 +137,47 @@ defs["enums"]["ImGuiButtonFlags_"][5] = {} defs["enums"]["ImGuiButtonFlags_"][5]["calc_value"] = 7 defs["enums"]["ImGuiButtonFlags_"][5]["name"] = "ImGuiButtonFlags_MouseButtonMask_" defs["enums"]["ImGuiButtonFlags_"][5]["value"] = "ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle" -defs["enums"]["ImGuiButtonFlags_"][6] = {} -defs["enums"]["ImGuiButtonFlags_"][6]["calc_value"] = 1 -defs["enums"]["ImGuiButtonFlags_"][6]["name"] = "ImGuiButtonFlags_MouseButtonDefault_" -defs["enums"]["ImGuiButtonFlags_"][6]["value"] = "ImGuiButtonFlags_MouseButtonLeft" +defs["enums"]["ImGuiChildFlags_"] = {} +defs["enums"]["ImGuiChildFlags_"][1] = {} +defs["enums"]["ImGuiChildFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiChildFlags_"][1]["name"] = "ImGuiChildFlags_None" +defs["enums"]["ImGuiChildFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiChildFlags_"][2] = {} +defs["enums"]["ImGuiChildFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiChildFlags_"][2]["name"] = "ImGuiChildFlags_Borders" +defs["enums"]["ImGuiChildFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiChildFlags_"][3] = {} +defs["enums"]["ImGuiChildFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiChildFlags_"][3]["name"] = "ImGuiChildFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiChildFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiChildFlags_"][4] = {} +defs["enums"]["ImGuiChildFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiChildFlags_"][4]["name"] = "ImGuiChildFlags_ResizeX" +defs["enums"]["ImGuiChildFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiChildFlags_"][5] = {} +defs["enums"]["ImGuiChildFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiChildFlags_"][5]["name"] = "ImGuiChildFlags_ResizeY" +defs["enums"]["ImGuiChildFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiChildFlags_"][6] = {} +defs["enums"]["ImGuiChildFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiChildFlags_"][6]["name"] = "ImGuiChildFlags_AutoResizeX" +defs["enums"]["ImGuiChildFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiChildFlags_"][7] = {} +defs["enums"]["ImGuiChildFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiChildFlags_"][7]["name"] = "ImGuiChildFlags_AutoResizeY" +defs["enums"]["ImGuiChildFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiChildFlags_"][8] = {} +defs["enums"]["ImGuiChildFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiChildFlags_"][8]["name"] = "ImGuiChildFlags_AlwaysAutoResize" +defs["enums"]["ImGuiChildFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiChildFlags_"][9] = {} +defs["enums"]["ImGuiChildFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiChildFlags_"][9]["name"] = "ImGuiChildFlags_FrameStyle" +defs["enums"]["ImGuiChildFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiChildFlags_"][10] = {} +defs["enums"]["ImGuiChildFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiChildFlags_"][10]["name"] = "ImGuiChildFlags_NavFlattened" +defs["enums"]["ImGuiChildFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiCol_"] = {} defs["enums"]["ImGuiCol_"][1] = {} defs["enums"]["ImGuiCol_"][1]["calc_value"] = 0 @@ -276,88 +313,100 @@ defs["enums"]["ImGuiCol_"][33]["name"] = "ImGuiCol_ResizeGripActive" defs["enums"]["ImGuiCol_"][33]["value"] = "32" defs["enums"]["ImGuiCol_"][34] = {} defs["enums"]["ImGuiCol_"][34]["calc_value"] = 33 -defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_Tab" +defs["enums"]["ImGuiCol_"][34]["name"] = "ImGuiCol_TabHovered" defs["enums"]["ImGuiCol_"][34]["value"] = "33" defs["enums"]["ImGuiCol_"][35] = {} defs["enums"]["ImGuiCol_"][35]["calc_value"] = 34 -defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_TabHovered" +defs["enums"]["ImGuiCol_"][35]["name"] = "ImGuiCol_Tab" defs["enums"]["ImGuiCol_"][35]["value"] = "34" defs["enums"]["ImGuiCol_"][36] = {} defs["enums"]["ImGuiCol_"][36]["calc_value"] = 35 -defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabActive" +defs["enums"]["ImGuiCol_"][36]["name"] = "ImGuiCol_TabSelected" defs["enums"]["ImGuiCol_"][36]["value"] = "35" defs["enums"]["ImGuiCol_"][37] = {} defs["enums"]["ImGuiCol_"][37]["calc_value"] = 36 -defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabUnfocused" +defs["enums"]["ImGuiCol_"][37]["name"] = "ImGuiCol_TabSelectedOverline" defs["enums"]["ImGuiCol_"][37]["value"] = "36" defs["enums"]["ImGuiCol_"][38] = {} defs["enums"]["ImGuiCol_"][38]["calc_value"] = 37 -defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabUnfocusedActive" +defs["enums"]["ImGuiCol_"][38]["name"] = "ImGuiCol_TabDimmed" defs["enums"]["ImGuiCol_"][38]["value"] = "37" defs["enums"]["ImGuiCol_"][39] = {} defs["enums"]["ImGuiCol_"][39]["calc_value"] = 38 -defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_PlotLines" +defs["enums"]["ImGuiCol_"][39]["name"] = "ImGuiCol_TabDimmedSelected" defs["enums"]["ImGuiCol_"][39]["value"] = "38" defs["enums"]["ImGuiCol_"][40] = {} defs["enums"]["ImGuiCol_"][40]["calc_value"] = 39 -defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_PlotLinesHovered" +defs["enums"]["ImGuiCol_"][40]["name"] = "ImGuiCol_TabDimmedSelectedOverline" defs["enums"]["ImGuiCol_"][40]["value"] = "39" defs["enums"]["ImGuiCol_"][41] = {} defs["enums"]["ImGuiCol_"][41]["calc_value"] = 40 -defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotHistogram" +defs["enums"]["ImGuiCol_"][41]["name"] = "ImGuiCol_PlotLines" defs["enums"]["ImGuiCol_"][41]["value"] = "40" defs["enums"]["ImGuiCol_"][42] = {} defs["enums"]["ImGuiCol_"][42]["calc_value"] = 41 -defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotHistogramHovered" +defs["enums"]["ImGuiCol_"][42]["name"] = "ImGuiCol_PlotLinesHovered" defs["enums"]["ImGuiCol_"][42]["value"] = "41" defs["enums"]["ImGuiCol_"][43] = {} defs["enums"]["ImGuiCol_"][43]["calc_value"] = 42 -defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_TableHeaderBg" +defs["enums"]["ImGuiCol_"][43]["name"] = "ImGuiCol_PlotHistogram" defs["enums"]["ImGuiCol_"][43]["value"] = "42" defs["enums"]["ImGuiCol_"][44] = {} defs["enums"]["ImGuiCol_"][44]["calc_value"] = 43 -defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_TableBorderStrong" +defs["enums"]["ImGuiCol_"][44]["name"] = "ImGuiCol_PlotHistogramHovered" defs["enums"]["ImGuiCol_"][44]["value"] = "43" defs["enums"]["ImGuiCol_"][45] = {} defs["enums"]["ImGuiCol_"][45]["calc_value"] = 44 -defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_TableBorderLight" +defs["enums"]["ImGuiCol_"][45]["name"] = "ImGuiCol_TableHeaderBg" defs["enums"]["ImGuiCol_"][45]["value"] = "44" defs["enums"]["ImGuiCol_"][46] = {} defs["enums"]["ImGuiCol_"][46]["calc_value"] = 45 -defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_TableRowBg" +defs["enums"]["ImGuiCol_"][46]["name"] = "ImGuiCol_TableBorderStrong" defs["enums"]["ImGuiCol_"][46]["value"] = "45" defs["enums"]["ImGuiCol_"][47] = {} defs["enums"]["ImGuiCol_"][47]["calc_value"] = 46 -defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableRowBgAlt" +defs["enums"]["ImGuiCol_"][47]["name"] = "ImGuiCol_TableBorderLight" defs["enums"]["ImGuiCol_"][47]["value"] = "46" defs["enums"]["ImGuiCol_"][48] = {} defs["enums"]["ImGuiCol_"][48]["calc_value"] = 47 -defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TextSelectedBg" +defs["enums"]["ImGuiCol_"][48]["name"] = "ImGuiCol_TableRowBg" defs["enums"]["ImGuiCol_"][48]["value"] = "47" defs["enums"]["ImGuiCol_"][49] = {} defs["enums"]["ImGuiCol_"][49]["calc_value"] = 48 -defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_DragDropTarget" +defs["enums"]["ImGuiCol_"][49]["name"] = "ImGuiCol_TableRowBgAlt" defs["enums"]["ImGuiCol_"][49]["value"] = "48" defs["enums"]["ImGuiCol_"][50] = {} defs["enums"]["ImGuiCol_"][50]["calc_value"] = 49 -defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_NavHighlight" +defs["enums"]["ImGuiCol_"][50]["name"] = "ImGuiCol_TextLink" defs["enums"]["ImGuiCol_"][50]["value"] = "49" defs["enums"]["ImGuiCol_"][51] = {} defs["enums"]["ImGuiCol_"][51]["calc_value"] = 50 -defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_NavWindowingHighlight" +defs["enums"]["ImGuiCol_"][51]["name"] = "ImGuiCol_TextSelectedBg" defs["enums"]["ImGuiCol_"][51]["value"] = "50" defs["enums"]["ImGuiCol_"][52] = {} defs["enums"]["ImGuiCol_"][52]["calc_value"] = 51 -defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][52]["name"] = "ImGuiCol_DragDropTarget" defs["enums"]["ImGuiCol_"][52]["value"] = "51" defs["enums"]["ImGuiCol_"][53] = {} defs["enums"]["ImGuiCol_"][53]["calc_value"] = 52 -defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][53]["name"] = "ImGuiCol_NavHighlight" defs["enums"]["ImGuiCol_"][53]["value"] = "52" defs["enums"]["ImGuiCol_"][54] = {} defs["enums"]["ImGuiCol_"][54]["calc_value"] = 53 -defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][54]["name"] = "ImGuiCol_NavWindowingHighlight" defs["enums"]["ImGuiCol_"][54]["value"] = "53" +defs["enums"]["ImGuiCol_"][55] = {} +defs["enums"]["ImGuiCol_"][55]["calc_value"] = 54 +defs["enums"]["ImGuiCol_"][55]["name"] = "ImGuiCol_NavWindowingDimBg" +defs["enums"]["ImGuiCol_"][55]["value"] = "54" +defs["enums"]["ImGuiCol_"][56] = {} +defs["enums"]["ImGuiCol_"][56]["calc_value"] = 55 +defs["enums"]["ImGuiCol_"][56]["name"] = "ImGuiCol_ModalWindowDimBg" +defs["enums"]["ImGuiCol_"][56]["value"] = "55" +defs["enums"]["ImGuiCol_"][57] = {} +defs["enums"]["ImGuiCol_"][57]["calc_value"] = 56 +defs["enums"]["ImGuiCol_"][57]["name"] = "ImGuiCol_COUNT" +defs["enums"]["ImGuiCol_"][57]["value"] = "56" defs["enums"]["ImGuiColorEditFlags_"] = {} defs["enums"]["ImGuiColorEditFlags_"][1] = {} defs["enums"]["ImGuiColorEditFlags_"][1]["calc_value"] = 0 @@ -509,9 +558,13 @@ defs["enums"]["ImGuiComboFlags_"][8]["calc_value"] = 64 defs["enums"]["ImGuiComboFlags_"][8]["name"] = "ImGuiComboFlags_NoPreview" defs["enums"]["ImGuiComboFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiComboFlags_"][9] = {} -defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 30 -defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_HeightMask_" -defs["enums"]["ImGuiComboFlags_"][9]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" +defs["enums"]["ImGuiComboFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiComboFlags_"][9]["name"] = "ImGuiComboFlags_WidthFitPreview" +defs["enums"]["ImGuiComboFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiComboFlags_"][10] = {} +defs["enums"]["ImGuiComboFlags_"][10]["calc_value"] = 30 +defs["enums"]["ImGuiComboFlags_"][10]["name"] = "ImGuiComboFlags_HeightMask_" +defs["enums"]["ImGuiComboFlags_"][10]["value"] = "ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest" defs["enums"]["ImGuiCond_"] = {} defs["enums"]["ImGuiCond_"][1] = {} defs["enums"]["ImGuiCond_"][1]["calc_value"] = 0 @@ -563,13 +616,17 @@ defs["enums"]["ImGuiConfigFlags_"][7]["calc_value"] = 32 defs["enums"]["ImGuiConfigFlags_"][7]["name"] = "ImGuiConfigFlags_NoMouseCursorChange" defs["enums"]["ImGuiConfigFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiConfigFlags_"][8] = {} -defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 1048576 -defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_IsSRGB" -defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiConfigFlags_"][8]["name"] = "ImGuiConfigFlags_NoKeyboard" +defs["enums"]["ImGuiConfigFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiConfigFlags_"][9] = {} -defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 2097152 -defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_IsTouchScreen" -defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 21" +defs["enums"]["ImGuiConfigFlags_"][9]["calc_value"] = 1048576 +defs["enums"]["ImGuiConfigFlags_"][9]["name"] = "ImGuiConfigFlags_IsSRGB" +defs["enums"]["ImGuiConfigFlags_"][9]["value"] = "1 << 20" +defs["enums"]["ImGuiConfigFlags_"][10] = {} +defs["enums"]["ImGuiConfigFlags_"][10]["calc_value"] = 2097152 +defs["enums"]["ImGuiConfigFlags_"][10]["name"] = "ImGuiConfigFlags_IsTouchScreen" +defs["enums"]["ImGuiConfigFlags_"][10]["value"] = "1 << 21" defs["enums"]["ImGuiDataType_"] = {} defs["enums"]["ImGuiDataType_"][1] = {} defs["enums"]["ImGuiDataType_"][1]["calc_value"] = 0 @@ -613,33 +670,37 @@ defs["enums"]["ImGuiDataType_"][10]["name"] = "ImGuiDataType_Double" defs["enums"]["ImGuiDataType_"][10]["value"] = "9" defs["enums"]["ImGuiDataType_"][11] = {} defs["enums"]["ImGuiDataType_"][11]["calc_value"] = 10 -defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][11]["name"] = "ImGuiDataType_Bool" defs["enums"]["ImGuiDataType_"][11]["value"] = "10" -defs["enums"]["ImGuiDir_"] = {} -defs["enums"]["ImGuiDir_"][1] = {} -defs["enums"]["ImGuiDir_"][1]["calc_value"] = -1 -defs["enums"]["ImGuiDir_"][1]["name"] = "ImGuiDir_None" -defs["enums"]["ImGuiDir_"][1]["value"] = "-1" -defs["enums"]["ImGuiDir_"][2] = {} -defs["enums"]["ImGuiDir_"][2]["calc_value"] = 0 -defs["enums"]["ImGuiDir_"][2]["name"] = "ImGuiDir_Left" -defs["enums"]["ImGuiDir_"][2]["value"] = "0" -defs["enums"]["ImGuiDir_"][3] = {} -defs["enums"]["ImGuiDir_"][3]["calc_value"] = 1 -defs["enums"]["ImGuiDir_"][3]["name"] = "ImGuiDir_Right" -defs["enums"]["ImGuiDir_"][3]["value"] = "1" -defs["enums"]["ImGuiDir_"][4] = {} -defs["enums"]["ImGuiDir_"][4]["calc_value"] = 2 -defs["enums"]["ImGuiDir_"][4]["name"] = "ImGuiDir_Up" -defs["enums"]["ImGuiDir_"][4]["value"] = "2" -defs["enums"]["ImGuiDir_"][5] = {} -defs["enums"]["ImGuiDir_"][5]["calc_value"] = 3 -defs["enums"]["ImGuiDir_"][5]["name"] = "ImGuiDir_Down" -defs["enums"]["ImGuiDir_"][5]["value"] = "3" -defs["enums"]["ImGuiDir_"][6] = {} -defs["enums"]["ImGuiDir_"][6]["calc_value"] = 4 -defs["enums"]["ImGuiDir_"][6]["name"] = "ImGuiDir_COUNT" -defs["enums"]["ImGuiDir_"][6]["value"] = "4" +defs["enums"]["ImGuiDataType_"][12] = {} +defs["enums"]["ImGuiDataType_"][12]["calc_value"] = 11 +defs["enums"]["ImGuiDataType_"][12]["name"] = "ImGuiDataType_COUNT" +defs["enums"]["ImGuiDataType_"][12]["value"] = "11" +defs["enums"]["ImGuiDir"] = {} +defs["enums"]["ImGuiDir"][1] = {} +defs["enums"]["ImGuiDir"][1]["calc_value"] = -1 +defs["enums"]["ImGuiDir"][1]["name"] = "ImGuiDir_None" +defs["enums"]["ImGuiDir"][1]["value"] = "-1" +defs["enums"]["ImGuiDir"][2] = {} +defs["enums"]["ImGuiDir"][2]["calc_value"] = 0 +defs["enums"]["ImGuiDir"][2]["name"] = "ImGuiDir_Left" +defs["enums"]["ImGuiDir"][2]["value"] = "0" +defs["enums"]["ImGuiDir"][3] = {} +defs["enums"]["ImGuiDir"][3]["calc_value"] = 1 +defs["enums"]["ImGuiDir"][3]["name"] = "ImGuiDir_Right" +defs["enums"]["ImGuiDir"][3]["value"] = "1" +defs["enums"]["ImGuiDir"][4] = {} +defs["enums"]["ImGuiDir"][4]["calc_value"] = 2 +defs["enums"]["ImGuiDir"][4]["name"] = "ImGuiDir_Up" +defs["enums"]["ImGuiDir"][4]["value"] = "2" +defs["enums"]["ImGuiDir"][5] = {} +defs["enums"]["ImGuiDir"][5]["calc_value"] = 3 +defs["enums"]["ImGuiDir"][5]["name"] = "ImGuiDir_Down" +defs["enums"]["ImGuiDir"][5]["value"] = "3" +defs["enums"]["ImGuiDir"][6] = {} +defs["enums"]["ImGuiDir"][6]["calc_value"] = 4 +defs["enums"]["ImGuiDir"][6]["name"] = "ImGuiDir_COUNT" +defs["enums"]["ImGuiDir"][6]["value"] = "4" defs["enums"]["ImGuiDragDropFlags_"] = {} defs["enums"]["ImGuiDragDropFlags_"][1] = {} defs["enums"]["ImGuiDragDropFlags_"][1]["calc_value"] = 0 @@ -667,24 +728,32 @@ defs["enums"]["ImGuiDragDropFlags_"][6]["name"] = "ImGuiDragDropFlags_SourceExte defs["enums"]["ImGuiDragDropFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiDragDropFlags_"][7] = {} defs["enums"]["ImGuiDragDropFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_SourceAutoExpirePayload" +defs["enums"]["ImGuiDragDropFlags_"][7]["name"] = "ImGuiDragDropFlags_PayloadAutoExpire" defs["enums"]["ImGuiDragDropFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiDragDropFlags_"][8] = {} -defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 1024 -defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" -defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 10" +defs["enums"]["ImGuiDragDropFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiDragDropFlags_"][8]["name"] = "ImGuiDragDropFlags_PayloadNoCrossContext" +defs["enums"]["ImGuiDragDropFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiDragDropFlags_"][9] = {} -defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 2048 -defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" -defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiDragDropFlags_"][9]["name"] = "ImGuiDragDropFlags_PayloadNoCrossProcess" +defs["enums"]["ImGuiDragDropFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiDragDropFlags_"][10] = {} -defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 4096 -defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" -defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiDragDropFlags_"][10]["name"] = "ImGuiDragDropFlags_AcceptBeforeDelivery" +defs["enums"]["ImGuiDragDropFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiDragDropFlags_"][11] = {} -defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 3072 -defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" -defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiDragDropFlags_"][11]["name"] = "ImGuiDragDropFlags_AcceptNoDrawDefaultRect" +defs["enums"]["ImGuiDragDropFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiDragDropFlags_"][12] = {} +defs["enums"]["ImGuiDragDropFlags_"][12]["calc_value"] = 4096 +defs["enums"]["ImGuiDragDropFlags_"][12]["name"] = "ImGuiDragDropFlags_AcceptNoPreviewTooltip" +defs["enums"]["ImGuiDragDropFlags_"][12]["value"] = "1 << 12" +defs["enums"]["ImGuiDragDropFlags_"][13] = {} +defs["enums"]["ImGuiDragDropFlags_"][13]["calc_value"] = 3072 +defs["enums"]["ImGuiDragDropFlags_"][13]["name"] = "ImGuiDragDropFlags_AcceptPeekOnly" +defs["enums"]["ImGuiDragDropFlags_"][13]["value"] = "ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect" defs["enums"]["ImGuiFocusedFlags_"] = {} defs["enums"]["ImGuiFocusedFlags_"][1] = {} defs["enums"]["ImGuiFocusedFlags_"][1]["calc_value"] = 0 @@ -741,36 +810,101 @@ defs["enums"]["ImGuiHoveredFlags_"][7]["name"] = "ImGuiHoveredFlags_AllowWhenBlo defs["enums"]["ImGuiHoveredFlags_"][7]["value"] = "1 << 7" defs["enums"]["ImGuiHoveredFlags_"][8] = {} defs["enums"]["ImGuiHoveredFlags_"][8]["calc_value"] = 256 -defs["enums"]["ImGuiHoveredFlags_"][8]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][8]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem" defs["enums"]["ImGuiHoveredFlags_"][8]["value"] = "1 << 8" defs["enums"]["ImGuiHoveredFlags_"][9] = {} defs["enums"]["ImGuiHoveredFlags_"][9]["calc_value"] = 512 -defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" +defs["enums"]["ImGuiHoveredFlags_"][9]["name"] = "ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][9]["value"] = "1 << 9" defs["enums"]["ImGuiHoveredFlags_"][10] = {} defs["enums"]["ImGuiHoveredFlags_"][10]["calc_value"] = 1024 -defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][10]["name"] = "ImGuiHoveredFlags_AllowWhenDisabled" defs["enums"]["ImGuiHoveredFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiHoveredFlags_"][11] = {} -defs["enums"]["ImGuiHoveredFlags_"][11]["calc_value"] = 416 -defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_RectOnly" -defs["enums"]["ImGuiHoveredFlags_"][11]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiHoveredFlags_"][11]["name"] = "ImGuiHoveredFlags_NoNavOverride" +defs["enums"]["ImGuiHoveredFlags_"][11]["value"] = "1 << 11" defs["enums"]["ImGuiHoveredFlags_"][12] = {} -defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 3 -defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" -defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][12]["calc_value"] = 768 +defs["enums"]["ImGuiHoveredFlags_"][12]["name"] = "ImGuiHoveredFlags_AllowWhenOverlapped" +defs["enums"]["ImGuiHoveredFlags_"][12]["value"] = "ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow" defs["enums"]["ImGuiHoveredFlags_"][13] = {} -defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_DelayNormal" -defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiHoveredFlags_"][13]["calc_value"] = 928 +defs["enums"]["ImGuiHoveredFlags_"][13]["name"] = "ImGuiHoveredFlags_RectOnly" +defs["enums"]["ImGuiHoveredFlags_"][13]["value"] = "ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped" defs["enums"]["ImGuiHoveredFlags_"][14] = {} -defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_DelayShort" -defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][14]["calc_value"] = 3 +defs["enums"]["ImGuiHoveredFlags_"][14]["name"] = "ImGuiHoveredFlags_RootAndChildWindows" +defs["enums"]["ImGuiHoveredFlags_"][14]["value"] = "ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows" defs["enums"]["ImGuiHoveredFlags_"][15] = {} -defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_NoSharedDelay" -defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][15]["calc_value"] = 4096 +defs["enums"]["ImGuiHoveredFlags_"][15]["name"] = "ImGuiHoveredFlags_ForTooltip" +defs["enums"]["ImGuiHoveredFlags_"][15]["value"] = "1 << 12" +defs["enums"]["ImGuiHoveredFlags_"][16] = {} +defs["enums"]["ImGuiHoveredFlags_"][16]["calc_value"] = 8192 +defs["enums"]["ImGuiHoveredFlags_"][16]["name"] = "ImGuiHoveredFlags_Stationary" +defs["enums"]["ImGuiHoveredFlags_"][16]["value"] = "1 << 13" +defs["enums"]["ImGuiHoveredFlags_"][17] = {} +defs["enums"]["ImGuiHoveredFlags_"][17]["calc_value"] = 16384 +defs["enums"]["ImGuiHoveredFlags_"][17]["name"] = "ImGuiHoveredFlags_DelayNone" +defs["enums"]["ImGuiHoveredFlags_"][17]["value"] = "1 << 14" +defs["enums"]["ImGuiHoveredFlags_"][18] = {} +defs["enums"]["ImGuiHoveredFlags_"][18]["calc_value"] = 32768 +defs["enums"]["ImGuiHoveredFlags_"][18]["name"] = "ImGuiHoveredFlags_DelayShort" +defs["enums"]["ImGuiHoveredFlags_"][18]["value"] = "1 << 15" +defs["enums"]["ImGuiHoveredFlags_"][19] = {} +defs["enums"]["ImGuiHoveredFlags_"][19]["calc_value"] = 65536 +defs["enums"]["ImGuiHoveredFlags_"][19]["name"] = "ImGuiHoveredFlags_DelayNormal" +defs["enums"]["ImGuiHoveredFlags_"][19]["value"] = "1 << 16" +defs["enums"]["ImGuiHoveredFlags_"][20] = {} +defs["enums"]["ImGuiHoveredFlags_"][20]["calc_value"] = 131072 +defs["enums"]["ImGuiHoveredFlags_"][20]["name"] = "ImGuiHoveredFlags_NoSharedDelay" +defs["enums"]["ImGuiHoveredFlags_"][20]["value"] = "1 << 17" +defs["enums"]["ImGuiInputFlags_"] = {} +defs["enums"]["ImGuiInputFlags_"][1] = {} +defs["enums"]["ImGuiInputFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiInputFlags_"][1]["name"] = "ImGuiInputFlags_None" +defs["enums"]["ImGuiInputFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiInputFlags_"][2] = {} +defs["enums"]["ImGuiInputFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiInputFlags_"][2]["name"] = "ImGuiInputFlags_Repeat" +defs["enums"]["ImGuiInputFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiInputFlags_"][3] = {} +defs["enums"]["ImGuiInputFlags_"][3]["calc_value"] = 1024 +defs["enums"]["ImGuiInputFlags_"][3]["name"] = "ImGuiInputFlags_RouteActive" +defs["enums"]["ImGuiInputFlags_"][3]["value"] = "1 << 10" +defs["enums"]["ImGuiInputFlags_"][4] = {} +defs["enums"]["ImGuiInputFlags_"][4]["calc_value"] = 2048 +defs["enums"]["ImGuiInputFlags_"][4]["name"] = "ImGuiInputFlags_RouteFocused" +defs["enums"]["ImGuiInputFlags_"][4]["value"] = "1 << 11" +defs["enums"]["ImGuiInputFlags_"][5] = {} +defs["enums"]["ImGuiInputFlags_"][5]["calc_value"] = 4096 +defs["enums"]["ImGuiInputFlags_"][5]["name"] = "ImGuiInputFlags_RouteGlobal" +defs["enums"]["ImGuiInputFlags_"][5]["value"] = "1 << 12" +defs["enums"]["ImGuiInputFlags_"][6] = {} +defs["enums"]["ImGuiInputFlags_"][6]["calc_value"] = 8192 +defs["enums"]["ImGuiInputFlags_"][6]["name"] = "ImGuiInputFlags_RouteAlways" +defs["enums"]["ImGuiInputFlags_"][6]["value"] = "1 << 13" +defs["enums"]["ImGuiInputFlags_"][7] = {} +defs["enums"]["ImGuiInputFlags_"][7]["calc_value"] = 16384 +defs["enums"]["ImGuiInputFlags_"][7]["name"] = "ImGuiInputFlags_RouteOverFocused" +defs["enums"]["ImGuiInputFlags_"][7]["value"] = "1 << 14" +defs["enums"]["ImGuiInputFlags_"][8] = {} +defs["enums"]["ImGuiInputFlags_"][8]["calc_value"] = 32768 +defs["enums"]["ImGuiInputFlags_"][8]["name"] = "ImGuiInputFlags_RouteOverActive" +defs["enums"]["ImGuiInputFlags_"][8]["value"] = "1 << 15" +defs["enums"]["ImGuiInputFlags_"][9] = {} +defs["enums"]["ImGuiInputFlags_"][9]["calc_value"] = 65536 +defs["enums"]["ImGuiInputFlags_"][9]["name"] = "ImGuiInputFlags_RouteUnlessBgFocused" +defs["enums"]["ImGuiInputFlags_"][9]["value"] = "1 << 16" +defs["enums"]["ImGuiInputFlags_"][10] = {} +defs["enums"]["ImGuiInputFlags_"][10]["calc_value"] = 131072 +defs["enums"]["ImGuiInputFlags_"][10]["name"] = "ImGuiInputFlags_RouteFromRootWindow" +defs["enums"]["ImGuiInputFlags_"][10]["value"] = "1 << 17" +defs["enums"]["ImGuiInputFlags_"][11] = {} +defs["enums"]["ImGuiInputFlags_"][11]["calc_value"] = 262144 +defs["enums"]["ImGuiInputFlags_"][11]["name"] = "ImGuiInputFlags_Tooltip" +defs["enums"]["ImGuiInputFlags_"][11]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"] = {} defs["enums"]["ImGuiInputTextFlags_"][1] = {} defs["enums"]["ImGuiInputTextFlags_"][1]["calc_value"] = 0 @@ -786,59 +920,59 @@ defs["enums"]["ImGuiInputTextFlags_"][3]["name"] = "ImGuiInputTextFlags_CharsHex defs["enums"]["ImGuiInputTextFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiInputTextFlags_"][4] = {} defs["enums"]["ImGuiInputTextFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsUppercase" +defs["enums"]["ImGuiInputTextFlags_"][4]["name"] = "ImGuiInputTextFlags_CharsScientific" defs["enums"]["ImGuiInputTextFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiInputTextFlags_"][5] = {} defs["enums"]["ImGuiInputTextFlags_"][5]["calc_value"] = 8 -defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsNoBlank" +defs["enums"]["ImGuiInputTextFlags_"][5]["name"] = "ImGuiInputTextFlags_CharsUppercase" defs["enums"]["ImGuiInputTextFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiInputTextFlags_"][6] = {} defs["enums"]["ImGuiInputTextFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_AutoSelectAll" +defs["enums"]["ImGuiInputTextFlags_"][6]["name"] = "ImGuiInputTextFlags_CharsNoBlank" defs["enums"]["ImGuiInputTextFlags_"][6]["value"] = "1 << 4" defs["enums"]["ImGuiInputTextFlags_"][7] = {} defs["enums"]["ImGuiInputTextFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" +defs["enums"]["ImGuiInputTextFlags_"][7]["name"] = "ImGuiInputTextFlags_AllowTabInput" defs["enums"]["ImGuiInputTextFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiInputTextFlags_"][8] = {} defs["enums"]["ImGuiInputTextFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_CallbackCompletion" +defs["enums"]["ImGuiInputTextFlags_"][8]["name"] = "ImGuiInputTextFlags_EnterReturnsTrue" defs["enums"]["ImGuiInputTextFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiInputTextFlags_"][9] = {} defs["enums"]["ImGuiInputTextFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_CallbackHistory" +defs["enums"]["ImGuiInputTextFlags_"][9]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" defs["enums"]["ImGuiInputTextFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiInputTextFlags_"][10] = {} defs["enums"]["ImGuiInputTextFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CallbackAlways" +defs["enums"]["ImGuiInputTextFlags_"][10]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" defs["enums"]["ImGuiInputTextFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiInputTextFlags_"][11] = {} defs["enums"]["ImGuiInputTextFlags_"][11]["calc_value"] = 512 -defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" +defs["enums"]["ImGuiInputTextFlags_"][11]["name"] = "ImGuiInputTextFlags_ReadOnly" defs["enums"]["ImGuiInputTextFlags_"][11]["value"] = "1 << 9" defs["enums"]["ImGuiInputTextFlags_"][12] = {} defs["enums"]["ImGuiInputTextFlags_"][12]["calc_value"] = 1024 -defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_AllowTabInput" +defs["enums"]["ImGuiInputTextFlags_"][12]["name"] = "ImGuiInputTextFlags_Password" defs["enums"]["ImGuiInputTextFlags_"][12]["value"] = "1 << 10" defs["enums"]["ImGuiInputTextFlags_"][13] = {} defs["enums"]["ImGuiInputTextFlags_"][13]["calc_value"] = 2048 -defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_CtrlEnterForNewLine" +defs["enums"]["ImGuiInputTextFlags_"][13]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" defs["enums"]["ImGuiInputTextFlags_"][13]["value"] = "1 << 11" defs["enums"]["ImGuiInputTextFlags_"][14] = {} defs["enums"]["ImGuiInputTextFlags_"][14]["calc_value"] = 4096 -defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" +defs["enums"]["ImGuiInputTextFlags_"][14]["name"] = "ImGuiInputTextFlags_AutoSelectAll" defs["enums"]["ImGuiInputTextFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiInputTextFlags_"][15] = {} defs["enums"]["ImGuiInputTextFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_AlwaysOverwrite" +defs["enums"]["ImGuiInputTextFlags_"][15]["name"] = "ImGuiInputTextFlags_ParseEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiInputTextFlags_"][16] = {} defs["enums"]["ImGuiInputTextFlags_"][16]["calc_value"] = 16384 -defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_ReadOnly" +defs["enums"]["ImGuiInputTextFlags_"][16]["name"] = "ImGuiInputTextFlags_DisplayEmptyRefVal" defs["enums"]["ImGuiInputTextFlags_"][16]["value"] = "1 << 14" defs["enums"]["ImGuiInputTextFlags_"][17] = {} defs["enums"]["ImGuiInputTextFlags_"][17]["calc_value"] = 32768 -defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_Password" +defs["enums"]["ImGuiInputTextFlags_"][17]["name"] = "ImGuiInputTextFlags_NoHorizontalScroll" defs["enums"]["ImGuiInputTextFlags_"][17]["value"] = "1 << 15" defs["enums"]["ImGuiInputTextFlags_"][18] = {} defs["enums"]["ImGuiInputTextFlags_"][18]["calc_value"] = 65536 @@ -846,20 +980,57 @@ defs["enums"]["ImGuiInputTextFlags_"][18]["name"] = "ImGuiInputTextFlags_NoUndoR defs["enums"]["ImGuiInputTextFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiInputTextFlags_"][19] = {} defs["enums"]["ImGuiInputTextFlags_"][19]["calc_value"] = 131072 -defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CharsScientific" +defs["enums"]["ImGuiInputTextFlags_"][19]["name"] = "ImGuiInputTextFlags_CallbackCompletion" defs["enums"]["ImGuiInputTextFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiInputTextFlags_"][20] = {} defs["enums"]["ImGuiInputTextFlags_"][20]["calc_value"] = 262144 -defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][20]["name"] = "ImGuiInputTextFlags_CallbackHistory" defs["enums"]["ImGuiInputTextFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiInputTextFlags_"][21] = {} defs["enums"]["ImGuiInputTextFlags_"][21]["calc_value"] = 524288 -defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][21]["name"] = "ImGuiInputTextFlags_CallbackAlways" defs["enums"]["ImGuiInputTextFlags_"][21]["value"] = "1 << 19" defs["enums"]["ImGuiInputTextFlags_"][22] = {} defs["enums"]["ImGuiInputTextFlags_"][22]["calc_value"] = 1048576 -defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_EscapeClearsAll" +defs["enums"]["ImGuiInputTextFlags_"][22]["name"] = "ImGuiInputTextFlags_CallbackCharFilter" defs["enums"]["ImGuiInputTextFlags_"][22]["value"] = "1 << 20" +defs["enums"]["ImGuiInputTextFlags_"][23] = {} +defs["enums"]["ImGuiInputTextFlags_"][23]["calc_value"] = 2097152 +defs["enums"]["ImGuiInputTextFlags_"][23]["name"] = "ImGuiInputTextFlags_CallbackResize" +defs["enums"]["ImGuiInputTextFlags_"][23]["value"] = "1 << 21" +defs["enums"]["ImGuiInputTextFlags_"][24] = {} +defs["enums"]["ImGuiInputTextFlags_"][24]["calc_value"] = 4194304 +defs["enums"]["ImGuiInputTextFlags_"][24]["name"] = "ImGuiInputTextFlags_CallbackEdit" +defs["enums"]["ImGuiInputTextFlags_"][24]["value"] = "1 << 22" +defs["enums"]["ImGuiItemFlags_"] = {} +defs["enums"]["ImGuiItemFlags_"][1] = {} +defs["enums"]["ImGuiItemFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiItemFlags_"][1]["name"] = "ImGuiItemFlags_None" +defs["enums"]["ImGuiItemFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiItemFlags_"][2] = {} +defs["enums"]["ImGuiItemFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiItemFlags_"][2]["name"] = "ImGuiItemFlags_NoTabStop" +defs["enums"]["ImGuiItemFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiItemFlags_"][3] = {} +defs["enums"]["ImGuiItemFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiItemFlags_"][3]["name"] = "ImGuiItemFlags_NoNav" +defs["enums"]["ImGuiItemFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiItemFlags_"][4] = {} +defs["enums"]["ImGuiItemFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiItemFlags_"][4]["name"] = "ImGuiItemFlags_NoNavDefaultFocus" +defs["enums"]["ImGuiItemFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiItemFlags_"][5] = {} +defs["enums"]["ImGuiItemFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiItemFlags_"][5]["name"] = "ImGuiItemFlags_ButtonRepeat" +defs["enums"]["ImGuiItemFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiItemFlags_"][6] = {} +defs["enums"]["ImGuiItemFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiItemFlags_"][6]["name"] = "ImGuiItemFlags_AutoClosePopups" +defs["enums"]["ImGuiItemFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiItemFlags_"][7] = {} +defs["enums"]["ImGuiItemFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiItemFlags_"][7]["name"] = "ImGuiItemFlags_AllowDuplicateId" +defs["enums"]["ImGuiItemFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiKey"] = {} defs["enums"]["ImGuiKey"][1] = {} defs["enums"]["ImGuiKey"][1]["calc_value"] = 0 @@ -1155,328 +1326,380 @@ defs["enums"]["ImGuiKey"][73]["name"] = "ImGuiKey_F12" defs["enums"]["ImGuiKey"][73]["value"] = "583" defs["enums"]["ImGuiKey"][74] = {} defs["enums"]["ImGuiKey"][74]["calc_value"] = 584 -defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_Apostrophe" +defs["enums"]["ImGuiKey"][74]["name"] = "ImGuiKey_F13" defs["enums"]["ImGuiKey"][74]["value"] = "584" defs["enums"]["ImGuiKey"][75] = {} defs["enums"]["ImGuiKey"][75]["calc_value"] = 585 -defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_Comma" +defs["enums"]["ImGuiKey"][75]["name"] = "ImGuiKey_F14" defs["enums"]["ImGuiKey"][75]["value"] = "585" defs["enums"]["ImGuiKey"][76] = {} defs["enums"]["ImGuiKey"][76]["calc_value"] = 586 -defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_Minus" +defs["enums"]["ImGuiKey"][76]["name"] = "ImGuiKey_F15" defs["enums"]["ImGuiKey"][76]["value"] = "586" defs["enums"]["ImGuiKey"][77] = {} defs["enums"]["ImGuiKey"][77]["calc_value"] = 587 -defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_Period" +defs["enums"]["ImGuiKey"][77]["name"] = "ImGuiKey_F16" defs["enums"]["ImGuiKey"][77]["value"] = "587" defs["enums"]["ImGuiKey"][78] = {} defs["enums"]["ImGuiKey"][78]["calc_value"] = 588 -defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_Slash" +defs["enums"]["ImGuiKey"][78]["name"] = "ImGuiKey_F17" defs["enums"]["ImGuiKey"][78]["value"] = "588" defs["enums"]["ImGuiKey"][79] = {} defs["enums"]["ImGuiKey"][79]["calc_value"] = 589 -defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_Semicolon" +defs["enums"]["ImGuiKey"][79]["name"] = "ImGuiKey_F18" defs["enums"]["ImGuiKey"][79]["value"] = "589" defs["enums"]["ImGuiKey"][80] = {} defs["enums"]["ImGuiKey"][80]["calc_value"] = 590 -defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_Equal" +defs["enums"]["ImGuiKey"][80]["name"] = "ImGuiKey_F19" defs["enums"]["ImGuiKey"][80]["value"] = "590" defs["enums"]["ImGuiKey"][81] = {} defs["enums"]["ImGuiKey"][81]["calc_value"] = 591 -defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_LeftBracket" +defs["enums"]["ImGuiKey"][81]["name"] = "ImGuiKey_F20" defs["enums"]["ImGuiKey"][81]["value"] = "591" defs["enums"]["ImGuiKey"][82] = {} defs["enums"]["ImGuiKey"][82]["calc_value"] = 592 -defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_Backslash" +defs["enums"]["ImGuiKey"][82]["name"] = "ImGuiKey_F21" defs["enums"]["ImGuiKey"][82]["value"] = "592" defs["enums"]["ImGuiKey"][83] = {} defs["enums"]["ImGuiKey"][83]["calc_value"] = 593 -defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_RightBracket" +defs["enums"]["ImGuiKey"][83]["name"] = "ImGuiKey_F22" defs["enums"]["ImGuiKey"][83]["value"] = "593" defs["enums"]["ImGuiKey"][84] = {} defs["enums"]["ImGuiKey"][84]["calc_value"] = 594 -defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_GraveAccent" +defs["enums"]["ImGuiKey"][84]["name"] = "ImGuiKey_F23" defs["enums"]["ImGuiKey"][84]["value"] = "594" defs["enums"]["ImGuiKey"][85] = {} defs["enums"]["ImGuiKey"][85]["calc_value"] = 595 -defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_CapsLock" +defs["enums"]["ImGuiKey"][85]["name"] = "ImGuiKey_F24" defs["enums"]["ImGuiKey"][85]["value"] = "595" defs["enums"]["ImGuiKey"][86] = {} defs["enums"]["ImGuiKey"][86]["calc_value"] = 596 -defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_ScrollLock" +defs["enums"]["ImGuiKey"][86]["name"] = "ImGuiKey_Apostrophe" defs["enums"]["ImGuiKey"][86]["value"] = "596" defs["enums"]["ImGuiKey"][87] = {} defs["enums"]["ImGuiKey"][87]["calc_value"] = 597 -defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_NumLock" +defs["enums"]["ImGuiKey"][87]["name"] = "ImGuiKey_Comma" defs["enums"]["ImGuiKey"][87]["value"] = "597" defs["enums"]["ImGuiKey"][88] = {} defs["enums"]["ImGuiKey"][88]["calc_value"] = 598 -defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_PrintScreen" +defs["enums"]["ImGuiKey"][88]["name"] = "ImGuiKey_Minus" defs["enums"]["ImGuiKey"][88]["value"] = "598" defs["enums"]["ImGuiKey"][89] = {} defs["enums"]["ImGuiKey"][89]["calc_value"] = 599 -defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Pause" +defs["enums"]["ImGuiKey"][89]["name"] = "ImGuiKey_Period" defs["enums"]["ImGuiKey"][89]["value"] = "599" defs["enums"]["ImGuiKey"][90] = {} defs["enums"]["ImGuiKey"][90]["calc_value"] = 600 -defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Keypad0" +defs["enums"]["ImGuiKey"][90]["name"] = "ImGuiKey_Slash" defs["enums"]["ImGuiKey"][90]["value"] = "600" defs["enums"]["ImGuiKey"][91] = {} defs["enums"]["ImGuiKey"][91]["calc_value"] = 601 -defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Keypad1" +defs["enums"]["ImGuiKey"][91]["name"] = "ImGuiKey_Semicolon" defs["enums"]["ImGuiKey"][91]["value"] = "601" defs["enums"]["ImGuiKey"][92] = {} defs["enums"]["ImGuiKey"][92]["calc_value"] = 602 -defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Keypad2" +defs["enums"]["ImGuiKey"][92]["name"] = "ImGuiKey_Equal" defs["enums"]["ImGuiKey"][92]["value"] = "602" defs["enums"]["ImGuiKey"][93] = {} defs["enums"]["ImGuiKey"][93]["calc_value"] = 603 -defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_Keypad3" +defs["enums"]["ImGuiKey"][93]["name"] = "ImGuiKey_LeftBracket" defs["enums"]["ImGuiKey"][93]["value"] = "603" defs["enums"]["ImGuiKey"][94] = {} defs["enums"]["ImGuiKey"][94]["calc_value"] = 604 -defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Keypad4" +defs["enums"]["ImGuiKey"][94]["name"] = "ImGuiKey_Backslash" defs["enums"]["ImGuiKey"][94]["value"] = "604" defs["enums"]["ImGuiKey"][95] = {} defs["enums"]["ImGuiKey"][95]["calc_value"] = 605 -defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_Keypad5" +defs["enums"]["ImGuiKey"][95]["name"] = "ImGuiKey_RightBracket" defs["enums"]["ImGuiKey"][95]["value"] = "605" defs["enums"]["ImGuiKey"][96] = {} defs["enums"]["ImGuiKey"][96]["calc_value"] = 606 -defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_Keypad6" +defs["enums"]["ImGuiKey"][96]["name"] = "ImGuiKey_GraveAccent" defs["enums"]["ImGuiKey"][96]["value"] = "606" defs["enums"]["ImGuiKey"][97] = {} defs["enums"]["ImGuiKey"][97]["calc_value"] = 607 -defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_Keypad7" +defs["enums"]["ImGuiKey"][97]["name"] = "ImGuiKey_CapsLock" defs["enums"]["ImGuiKey"][97]["value"] = "607" defs["enums"]["ImGuiKey"][98] = {} defs["enums"]["ImGuiKey"][98]["calc_value"] = 608 -defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_Keypad8" +defs["enums"]["ImGuiKey"][98]["name"] = "ImGuiKey_ScrollLock" defs["enums"]["ImGuiKey"][98]["value"] = "608" defs["enums"]["ImGuiKey"][99] = {} defs["enums"]["ImGuiKey"][99]["calc_value"] = 609 -defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_Keypad9" +defs["enums"]["ImGuiKey"][99]["name"] = "ImGuiKey_NumLock" defs["enums"]["ImGuiKey"][99]["value"] = "609" defs["enums"]["ImGuiKey"][100] = {} defs["enums"]["ImGuiKey"][100]["calc_value"] = 610 -defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_KeypadDecimal" +defs["enums"]["ImGuiKey"][100]["name"] = "ImGuiKey_PrintScreen" defs["enums"]["ImGuiKey"][100]["value"] = "610" defs["enums"]["ImGuiKey"][101] = {} defs["enums"]["ImGuiKey"][101]["calc_value"] = 611 -defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_KeypadDivide" +defs["enums"]["ImGuiKey"][101]["name"] = "ImGuiKey_Pause" defs["enums"]["ImGuiKey"][101]["value"] = "611" defs["enums"]["ImGuiKey"][102] = {} defs["enums"]["ImGuiKey"][102]["calc_value"] = 612 -defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_KeypadMultiply" +defs["enums"]["ImGuiKey"][102]["name"] = "ImGuiKey_Keypad0" defs["enums"]["ImGuiKey"][102]["value"] = "612" defs["enums"]["ImGuiKey"][103] = {} defs["enums"]["ImGuiKey"][103]["calc_value"] = 613 -defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_KeypadSubtract" +defs["enums"]["ImGuiKey"][103]["name"] = "ImGuiKey_Keypad1" defs["enums"]["ImGuiKey"][103]["value"] = "613" defs["enums"]["ImGuiKey"][104] = {} defs["enums"]["ImGuiKey"][104]["calc_value"] = 614 -defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_KeypadAdd" +defs["enums"]["ImGuiKey"][104]["name"] = "ImGuiKey_Keypad2" defs["enums"]["ImGuiKey"][104]["value"] = "614" defs["enums"]["ImGuiKey"][105] = {} defs["enums"]["ImGuiKey"][105]["calc_value"] = 615 -defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_KeypadEnter" +defs["enums"]["ImGuiKey"][105]["name"] = "ImGuiKey_Keypad3" defs["enums"]["ImGuiKey"][105]["value"] = "615" defs["enums"]["ImGuiKey"][106] = {} defs["enums"]["ImGuiKey"][106]["calc_value"] = 616 -defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_KeypadEqual" +defs["enums"]["ImGuiKey"][106]["name"] = "ImGuiKey_Keypad4" defs["enums"]["ImGuiKey"][106]["value"] = "616" defs["enums"]["ImGuiKey"][107] = {} defs["enums"]["ImGuiKey"][107]["calc_value"] = 617 -defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_GamepadStart" +defs["enums"]["ImGuiKey"][107]["name"] = "ImGuiKey_Keypad5" defs["enums"]["ImGuiKey"][107]["value"] = "617" defs["enums"]["ImGuiKey"][108] = {} defs["enums"]["ImGuiKey"][108]["calc_value"] = 618 -defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_GamepadBack" +defs["enums"]["ImGuiKey"][108]["name"] = "ImGuiKey_Keypad6" defs["enums"]["ImGuiKey"][108]["value"] = "618" defs["enums"]["ImGuiKey"][109] = {} defs["enums"]["ImGuiKey"][109]["calc_value"] = 619 -defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_GamepadFaceLeft" +defs["enums"]["ImGuiKey"][109]["name"] = "ImGuiKey_Keypad7" defs["enums"]["ImGuiKey"][109]["value"] = "619" defs["enums"]["ImGuiKey"][110] = {} defs["enums"]["ImGuiKey"][110]["calc_value"] = 620 -defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_GamepadFaceRight" +defs["enums"]["ImGuiKey"][110]["name"] = "ImGuiKey_Keypad8" defs["enums"]["ImGuiKey"][110]["value"] = "620" defs["enums"]["ImGuiKey"][111] = {} defs["enums"]["ImGuiKey"][111]["calc_value"] = 621 -defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_GamepadFaceUp" +defs["enums"]["ImGuiKey"][111]["name"] = "ImGuiKey_Keypad9" defs["enums"]["ImGuiKey"][111]["value"] = "621" defs["enums"]["ImGuiKey"][112] = {} defs["enums"]["ImGuiKey"][112]["calc_value"] = 622 -defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_GamepadFaceDown" +defs["enums"]["ImGuiKey"][112]["name"] = "ImGuiKey_KeypadDecimal" defs["enums"]["ImGuiKey"][112]["value"] = "622" defs["enums"]["ImGuiKey"][113] = {} defs["enums"]["ImGuiKey"][113]["calc_value"] = 623 -defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_GamepadDpadLeft" +defs["enums"]["ImGuiKey"][113]["name"] = "ImGuiKey_KeypadDivide" defs["enums"]["ImGuiKey"][113]["value"] = "623" defs["enums"]["ImGuiKey"][114] = {} defs["enums"]["ImGuiKey"][114]["calc_value"] = 624 -defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_GamepadDpadRight" +defs["enums"]["ImGuiKey"][114]["name"] = "ImGuiKey_KeypadMultiply" defs["enums"]["ImGuiKey"][114]["value"] = "624" defs["enums"]["ImGuiKey"][115] = {} defs["enums"]["ImGuiKey"][115]["calc_value"] = 625 -defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_GamepadDpadUp" +defs["enums"]["ImGuiKey"][115]["name"] = "ImGuiKey_KeypadSubtract" defs["enums"]["ImGuiKey"][115]["value"] = "625" defs["enums"]["ImGuiKey"][116] = {} defs["enums"]["ImGuiKey"][116]["calc_value"] = 626 -defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_GamepadDpadDown" +defs["enums"]["ImGuiKey"][116]["name"] = "ImGuiKey_KeypadAdd" defs["enums"]["ImGuiKey"][116]["value"] = "626" defs["enums"]["ImGuiKey"][117] = {} defs["enums"]["ImGuiKey"][117]["calc_value"] = 627 -defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_GamepadL1" +defs["enums"]["ImGuiKey"][117]["name"] = "ImGuiKey_KeypadEnter" defs["enums"]["ImGuiKey"][117]["value"] = "627" defs["enums"]["ImGuiKey"][118] = {} defs["enums"]["ImGuiKey"][118]["calc_value"] = 628 -defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_GamepadR1" +defs["enums"]["ImGuiKey"][118]["name"] = "ImGuiKey_KeypadEqual" defs["enums"]["ImGuiKey"][118]["value"] = "628" defs["enums"]["ImGuiKey"][119] = {} defs["enums"]["ImGuiKey"][119]["calc_value"] = 629 -defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_GamepadL2" +defs["enums"]["ImGuiKey"][119]["name"] = "ImGuiKey_AppBack" defs["enums"]["ImGuiKey"][119]["value"] = "629" defs["enums"]["ImGuiKey"][120] = {} defs["enums"]["ImGuiKey"][120]["calc_value"] = 630 -defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_GamepadR2" +defs["enums"]["ImGuiKey"][120]["name"] = "ImGuiKey_AppForward" defs["enums"]["ImGuiKey"][120]["value"] = "630" defs["enums"]["ImGuiKey"][121] = {} defs["enums"]["ImGuiKey"][121]["calc_value"] = 631 -defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadL3" +defs["enums"]["ImGuiKey"][121]["name"] = "ImGuiKey_GamepadStart" defs["enums"]["ImGuiKey"][121]["value"] = "631" defs["enums"]["ImGuiKey"][122] = {} defs["enums"]["ImGuiKey"][122]["calc_value"] = 632 -defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadR3" +defs["enums"]["ImGuiKey"][122]["name"] = "ImGuiKey_GamepadBack" defs["enums"]["ImGuiKey"][122]["value"] = "632" defs["enums"]["ImGuiKey"][123] = {} defs["enums"]["ImGuiKey"][123]["calc_value"] = 633 -defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadLStickLeft" +defs["enums"]["ImGuiKey"][123]["name"] = "ImGuiKey_GamepadFaceLeft" defs["enums"]["ImGuiKey"][123]["value"] = "633" defs["enums"]["ImGuiKey"][124] = {} defs["enums"]["ImGuiKey"][124]["calc_value"] = 634 -defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadLStickRight" +defs["enums"]["ImGuiKey"][124]["name"] = "ImGuiKey_GamepadFaceRight" defs["enums"]["ImGuiKey"][124]["value"] = "634" defs["enums"]["ImGuiKey"][125] = {} defs["enums"]["ImGuiKey"][125]["calc_value"] = 635 -defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadLStickUp" +defs["enums"]["ImGuiKey"][125]["name"] = "ImGuiKey_GamepadFaceUp" defs["enums"]["ImGuiKey"][125]["value"] = "635" defs["enums"]["ImGuiKey"][126] = {} defs["enums"]["ImGuiKey"][126]["calc_value"] = 636 -defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadLStickDown" +defs["enums"]["ImGuiKey"][126]["name"] = "ImGuiKey_GamepadFaceDown" defs["enums"]["ImGuiKey"][126]["value"] = "636" defs["enums"]["ImGuiKey"][127] = {} defs["enums"]["ImGuiKey"][127]["calc_value"] = 637 -defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadRStickLeft" +defs["enums"]["ImGuiKey"][127]["name"] = "ImGuiKey_GamepadDpadLeft" defs["enums"]["ImGuiKey"][127]["value"] = "637" defs["enums"]["ImGuiKey"][128] = {} defs["enums"]["ImGuiKey"][128]["calc_value"] = 638 -defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadRStickRight" +defs["enums"]["ImGuiKey"][128]["name"] = "ImGuiKey_GamepadDpadRight" defs["enums"]["ImGuiKey"][128]["value"] = "638" defs["enums"]["ImGuiKey"][129] = {} defs["enums"]["ImGuiKey"][129]["calc_value"] = 639 -defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][129]["name"] = "ImGuiKey_GamepadDpadUp" defs["enums"]["ImGuiKey"][129]["value"] = "639" defs["enums"]["ImGuiKey"][130] = {} defs["enums"]["ImGuiKey"][130]["calc_value"] = 640 -defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][130]["name"] = "ImGuiKey_GamepadDpadDown" defs["enums"]["ImGuiKey"][130]["value"] = "640" defs["enums"]["ImGuiKey"][131] = {} defs["enums"]["ImGuiKey"][131]["calc_value"] = 641 -defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][131]["name"] = "ImGuiKey_GamepadL1" defs["enums"]["ImGuiKey"][131]["value"] = "641" defs["enums"]["ImGuiKey"][132] = {} defs["enums"]["ImGuiKey"][132]["calc_value"] = 642 -defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][132]["name"] = "ImGuiKey_GamepadR1" defs["enums"]["ImGuiKey"][132]["value"] = "642" defs["enums"]["ImGuiKey"][133] = {} defs["enums"]["ImGuiKey"][133]["calc_value"] = 643 -defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][133]["name"] = "ImGuiKey_GamepadL2" defs["enums"]["ImGuiKey"][133]["value"] = "643" defs["enums"]["ImGuiKey"][134] = {} defs["enums"]["ImGuiKey"][134]["calc_value"] = 644 -defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][134]["name"] = "ImGuiKey_GamepadR2" defs["enums"]["ImGuiKey"][134]["value"] = "644" defs["enums"]["ImGuiKey"][135] = {} defs["enums"]["ImGuiKey"][135]["calc_value"] = 645 -defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][135]["name"] = "ImGuiKey_GamepadL3" defs["enums"]["ImGuiKey"][135]["value"] = "645" defs["enums"]["ImGuiKey"][136] = {} defs["enums"]["ImGuiKey"][136]["calc_value"] = 646 -defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][136]["name"] = "ImGuiKey_GamepadR3" defs["enums"]["ImGuiKey"][136]["value"] = "646" defs["enums"]["ImGuiKey"][137] = {} defs["enums"]["ImGuiKey"][137]["calc_value"] = 647 -defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][137]["name"] = "ImGuiKey_GamepadLStickLeft" defs["enums"]["ImGuiKey"][137]["value"] = "647" defs["enums"]["ImGuiKey"][138] = {} defs["enums"]["ImGuiKey"][138]["calc_value"] = 648 -defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][138]["name"] = "ImGuiKey_GamepadLStickRight" defs["enums"]["ImGuiKey"][138]["value"] = "648" defs["enums"]["ImGuiKey"][139] = {} defs["enums"]["ImGuiKey"][139]["calc_value"] = 649 -defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][139]["name"] = "ImGuiKey_GamepadLStickUp" defs["enums"]["ImGuiKey"][139]["value"] = "649" defs["enums"]["ImGuiKey"][140] = {} defs["enums"]["ImGuiKey"][140]["calc_value"] = 650 -defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][140]["name"] = "ImGuiKey_GamepadLStickDown" defs["enums"]["ImGuiKey"][140]["value"] = "650" defs["enums"]["ImGuiKey"][141] = {} defs["enums"]["ImGuiKey"][141]["calc_value"] = 651 -defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][141]["name"] = "ImGuiKey_GamepadRStickLeft" defs["enums"]["ImGuiKey"][141]["value"] = "651" defs["enums"]["ImGuiKey"][142] = {} defs["enums"]["ImGuiKey"][142]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][142]["name"] = "ImGuiKey_GamepadRStickRight" defs["enums"]["ImGuiKey"][142]["value"] = "652" defs["enums"]["ImGuiKey"][143] = {} -defs["enums"]["ImGuiKey"][143]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiMod_None" -defs["enums"]["ImGuiKey"][143]["value"] = "0" +defs["enums"]["ImGuiKey"][143]["calc_value"] = 653 +defs["enums"]["ImGuiKey"][143]["name"] = "ImGuiKey_GamepadRStickUp" +defs["enums"]["ImGuiKey"][143]["value"] = "653" defs["enums"]["ImGuiKey"][144] = {} -defs["enums"]["ImGuiKey"][144]["calc_value"] = 4096 -defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiMod_Ctrl" -defs["enums"]["ImGuiKey"][144]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][144]["calc_value"] = 654 +defs["enums"]["ImGuiKey"][144]["name"] = "ImGuiKey_GamepadRStickDown" +defs["enums"]["ImGuiKey"][144]["value"] = "654" defs["enums"]["ImGuiKey"][145] = {} -defs["enums"]["ImGuiKey"][145]["calc_value"] = 8192 -defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiMod_Shift" -defs["enums"]["ImGuiKey"][145]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][145]["calc_value"] = 655 +defs["enums"]["ImGuiKey"][145]["name"] = "ImGuiKey_MouseLeft" +defs["enums"]["ImGuiKey"][145]["value"] = "655" defs["enums"]["ImGuiKey"][146] = {} -defs["enums"]["ImGuiKey"][146]["calc_value"] = 16384 -defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiMod_Alt" -defs["enums"]["ImGuiKey"][146]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][146]["calc_value"] = 656 +defs["enums"]["ImGuiKey"][146]["name"] = "ImGuiKey_MouseRight" +defs["enums"]["ImGuiKey"][146]["value"] = "656" defs["enums"]["ImGuiKey"][147] = {} -defs["enums"]["ImGuiKey"][147]["calc_value"] = 32768 -defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiMod_Super" -defs["enums"]["ImGuiKey"][147]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][147]["calc_value"] = 657 +defs["enums"]["ImGuiKey"][147]["name"] = "ImGuiKey_MouseMiddle" +defs["enums"]["ImGuiKey"][147]["value"] = "657" defs["enums"]["ImGuiKey"][148] = {} -defs["enums"]["ImGuiKey"][148]["calc_value"] = 2048 -defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiMod_Shortcut" -defs["enums"]["ImGuiKey"][148]["value"] = "1 << 11" +defs["enums"]["ImGuiKey"][148]["calc_value"] = 658 +defs["enums"]["ImGuiKey"][148]["name"] = "ImGuiKey_MouseX1" +defs["enums"]["ImGuiKey"][148]["value"] = "658" defs["enums"]["ImGuiKey"][149] = {} -defs["enums"]["ImGuiKey"][149]["calc_value"] = 63488 -defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiMod_Mask_" -defs["enums"]["ImGuiKey"][149]["value"] = "0xF800" +defs["enums"]["ImGuiKey"][149]["calc_value"] = 659 +defs["enums"]["ImGuiKey"][149]["name"] = "ImGuiKey_MouseX2" +defs["enums"]["ImGuiKey"][149]["value"] = "659" defs["enums"]["ImGuiKey"][150] = {} -defs["enums"]["ImGuiKey"][150]["calc_value"] = 512 -defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_NamedKey_BEGIN" -defs["enums"]["ImGuiKey"][150]["value"] = "512" +defs["enums"]["ImGuiKey"][150]["calc_value"] = 660 +defs["enums"]["ImGuiKey"][150]["name"] = "ImGuiKey_MouseWheelX" +defs["enums"]["ImGuiKey"][150]["value"] = "660" defs["enums"]["ImGuiKey"][151] = {} -defs["enums"]["ImGuiKey"][151]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_NamedKey_END" -defs["enums"]["ImGuiKey"][151]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][151]["calc_value"] = 661 +defs["enums"]["ImGuiKey"][151]["name"] = "ImGuiKey_MouseWheelY" +defs["enums"]["ImGuiKey"][151]["value"] = "661" defs["enums"]["ImGuiKey"][152] = {} -defs["enums"]["ImGuiKey"][152]["calc_value"] = 140 -defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_NamedKey_COUNT" -defs["enums"]["ImGuiKey"][152]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][152]["calc_value"] = 662 +defs["enums"]["ImGuiKey"][152]["name"] = "ImGuiKey_ReservedForModCtrl" +defs["enums"]["ImGuiKey"][152]["value"] = "662" defs["enums"]["ImGuiKey"][153] = {} -defs["enums"]["ImGuiKey"][153]["calc_value"] = 652 -defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_KeysData_SIZE" -defs["enums"]["ImGuiKey"][153]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][153]["calc_value"] = 663 +defs["enums"]["ImGuiKey"][153]["name"] = "ImGuiKey_ReservedForModShift" +defs["enums"]["ImGuiKey"][153]["value"] = "663" defs["enums"]["ImGuiKey"][154] = {} -defs["enums"]["ImGuiKey"][154]["calc_value"] = 0 -defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_KeysData_OFFSET" -defs["enums"]["ImGuiKey"][154]["value"] = "0" +defs["enums"]["ImGuiKey"][154]["calc_value"] = 664 +defs["enums"]["ImGuiKey"][154]["name"] = "ImGuiKey_ReservedForModAlt" +defs["enums"]["ImGuiKey"][154]["value"] = "664" +defs["enums"]["ImGuiKey"][155] = {} +defs["enums"]["ImGuiKey"][155]["calc_value"] = 665 +defs["enums"]["ImGuiKey"][155]["name"] = "ImGuiKey_ReservedForModSuper" +defs["enums"]["ImGuiKey"][155]["value"] = "665" +defs["enums"]["ImGuiKey"][156] = {} +defs["enums"]["ImGuiKey"][156]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][156]["name"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][156]["value"] = "666" +defs["enums"]["ImGuiKey"][157] = {} +defs["enums"]["ImGuiKey"][157]["calc_value"] = 0 +defs["enums"]["ImGuiKey"][157]["name"] = "ImGuiMod_None" +defs["enums"]["ImGuiKey"][157]["value"] = "0" +defs["enums"]["ImGuiKey"][158] = {} +defs["enums"]["ImGuiKey"][158]["calc_value"] = 4096 +defs["enums"]["ImGuiKey"][158]["name"] = "ImGuiMod_Ctrl" +defs["enums"]["ImGuiKey"][158]["value"] = "1 << 12" +defs["enums"]["ImGuiKey"][159] = {} +defs["enums"]["ImGuiKey"][159]["calc_value"] = 8192 +defs["enums"]["ImGuiKey"][159]["name"] = "ImGuiMod_Shift" +defs["enums"]["ImGuiKey"][159]["value"] = "1 << 13" +defs["enums"]["ImGuiKey"][160] = {} +defs["enums"]["ImGuiKey"][160]["calc_value"] = 16384 +defs["enums"]["ImGuiKey"][160]["name"] = "ImGuiMod_Alt" +defs["enums"]["ImGuiKey"][160]["value"] = "1 << 14" +defs["enums"]["ImGuiKey"][161] = {} +defs["enums"]["ImGuiKey"][161]["calc_value"] = 32768 +defs["enums"]["ImGuiKey"][161]["name"] = "ImGuiMod_Super" +defs["enums"]["ImGuiKey"][161]["value"] = "1 << 15" +defs["enums"]["ImGuiKey"][162] = {} +defs["enums"]["ImGuiKey"][162]["calc_value"] = 61440 +defs["enums"]["ImGuiKey"][162]["name"] = "ImGuiMod_Mask_" +defs["enums"]["ImGuiKey"][162]["value"] = "0xF000" +defs["enums"]["ImGuiKey"][163] = {} +defs["enums"]["ImGuiKey"][163]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][163]["name"] = "ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][163]["value"] = "512" +defs["enums"]["ImGuiKey"][164] = {} +defs["enums"]["ImGuiKey"][164]["calc_value"] = 666 +defs["enums"]["ImGuiKey"][164]["name"] = "ImGuiKey_NamedKey_END" +defs["enums"]["ImGuiKey"][164]["value"] = "ImGuiKey_COUNT" +defs["enums"]["ImGuiKey"][165] = {} +defs["enums"]["ImGuiKey"][165]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][165]["name"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][165]["value"] = "ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN" +defs["enums"]["ImGuiKey"][166] = {} +defs["enums"]["ImGuiKey"][166]["calc_value"] = 154 +defs["enums"]["ImGuiKey"][166]["name"] = "ImGuiKey_KeysData_SIZE" +defs["enums"]["ImGuiKey"][166]["value"] = "ImGuiKey_NamedKey_COUNT" +defs["enums"]["ImGuiKey"][167] = {} +defs["enums"]["ImGuiKey"][167]["calc_value"] = 512 +defs["enums"]["ImGuiKey"][167]["name"] = "ImGuiKey_KeysData_OFFSET" +defs["enums"]["ImGuiKey"][167]["value"] = "ImGuiKey_NamedKey_BEGIN" defs["enums"]["ImGuiMouseButton_"] = {} defs["enums"]["ImGuiMouseButton_"][1] = {} defs["enums"]["ImGuiMouseButton_"][1]["calc_value"] = 0 @@ -1539,75 +1762,92 @@ defs["enums"]["ImGuiMouseCursor_"][11] = {} defs["enums"]["ImGuiMouseCursor_"][11]["calc_value"] = 9 defs["enums"]["ImGuiMouseCursor_"][11]["name"] = "ImGuiMouseCursor_COUNT" defs["enums"]["ImGuiMouseCursor_"][11]["value"] = "9" -defs["enums"]["ImGuiNavInput"] = {} -defs["enums"]["ImGuiNavInput"][1] = {} -defs["enums"]["ImGuiNavInput"][1]["calc_value"] = 0 -defs["enums"]["ImGuiNavInput"][1]["name"] = "ImGuiNavInput_Activate" -defs["enums"]["ImGuiNavInput"][1]["value"] = "0" -defs["enums"]["ImGuiNavInput"][2] = {} -defs["enums"]["ImGuiNavInput"][2]["calc_value"] = 1 -defs["enums"]["ImGuiNavInput"][2]["name"] = "ImGuiNavInput_Cancel" -defs["enums"]["ImGuiNavInput"][2]["value"] = "1" -defs["enums"]["ImGuiNavInput"][3] = {} -defs["enums"]["ImGuiNavInput"][3]["calc_value"] = 2 -defs["enums"]["ImGuiNavInput"][3]["name"] = "ImGuiNavInput_Input" -defs["enums"]["ImGuiNavInput"][3]["value"] = "2" -defs["enums"]["ImGuiNavInput"][4] = {} -defs["enums"]["ImGuiNavInput"][4]["calc_value"] = 3 -defs["enums"]["ImGuiNavInput"][4]["name"] = "ImGuiNavInput_Menu" -defs["enums"]["ImGuiNavInput"][4]["value"] = "3" -defs["enums"]["ImGuiNavInput"][5] = {} -defs["enums"]["ImGuiNavInput"][5]["calc_value"] = 4 -defs["enums"]["ImGuiNavInput"][5]["name"] = "ImGuiNavInput_DpadLeft" -defs["enums"]["ImGuiNavInput"][5]["value"] = "4" -defs["enums"]["ImGuiNavInput"][6] = {} -defs["enums"]["ImGuiNavInput"][6]["calc_value"] = 5 -defs["enums"]["ImGuiNavInput"][6]["name"] = "ImGuiNavInput_DpadRight" -defs["enums"]["ImGuiNavInput"][6]["value"] = "5" -defs["enums"]["ImGuiNavInput"][7] = {} -defs["enums"]["ImGuiNavInput"][7]["calc_value"] = 6 -defs["enums"]["ImGuiNavInput"][7]["name"] = "ImGuiNavInput_DpadUp" -defs["enums"]["ImGuiNavInput"][7]["value"] = "6" -defs["enums"]["ImGuiNavInput"][8] = {} -defs["enums"]["ImGuiNavInput"][8]["calc_value"] = 7 -defs["enums"]["ImGuiNavInput"][8]["name"] = "ImGuiNavInput_DpadDown" -defs["enums"]["ImGuiNavInput"][8]["value"] = "7" -defs["enums"]["ImGuiNavInput"][9] = {} -defs["enums"]["ImGuiNavInput"][9]["calc_value"] = 8 -defs["enums"]["ImGuiNavInput"][9]["name"] = "ImGuiNavInput_LStickLeft" -defs["enums"]["ImGuiNavInput"][9]["value"] = "8" -defs["enums"]["ImGuiNavInput"][10] = {} -defs["enums"]["ImGuiNavInput"][10]["calc_value"] = 9 -defs["enums"]["ImGuiNavInput"][10]["name"] = "ImGuiNavInput_LStickRight" -defs["enums"]["ImGuiNavInput"][10]["value"] = "9" -defs["enums"]["ImGuiNavInput"][11] = {} -defs["enums"]["ImGuiNavInput"][11]["calc_value"] = 10 -defs["enums"]["ImGuiNavInput"][11]["name"] = "ImGuiNavInput_LStickUp" -defs["enums"]["ImGuiNavInput"][11]["value"] = "10" -defs["enums"]["ImGuiNavInput"][12] = {} -defs["enums"]["ImGuiNavInput"][12]["calc_value"] = 11 -defs["enums"]["ImGuiNavInput"][12]["name"] = "ImGuiNavInput_LStickDown" -defs["enums"]["ImGuiNavInput"][12]["value"] = "11" -defs["enums"]["ImGuiNavInput"][13] = {} -defs["enums"]["ImGuiNavInput"][13]["calc_value"] = 12 -defs["enums"]["ImGuiNavInput"][13]["name"] = "ImGuiNavInput_FocusPrev" -defs["enums"]["ImGuiNavInput"][13]["value"] = "12" -defs["enums"]["ImGuiNavInput"][14] = {} -defs["enums"]["ImGuiNavInput"][14]["calc_value"] = 13 -defs["enums"]["ImGuiNavInput"][14]["name"] = "ImGuiNavInput_FocusNext" -defs["enums"]["ImGuiNavInput"][14]["value"] = "13" -defs["enums"]["ImGuiNavInput"][15] = {} -defs["enums"]["ImGuiNavInput"][15]["calc_value"] = 14 -defs["enums"]["ImGuiNavInput"][15]["name"] = "ImGuiNavInput_TweakSlow" -defs["enums"]["ImGuiNavInput"][15]["value"] = "14" -defs["enums"]["ImGuiNavInput"][16] = {} -defs["enums"]["ImGuiNavInput"][16]["calc_value"] = 15 -defs["enums"]["ImGuiNavInput"][16]["name"] = "ImGuiNavInput_TweakFast" -defs["enums"]["ImGuiNavInput"][16]["value"] = "15" -defs["enums"]["ImGuiNavInput"][17] = {} -defs["enums"]["ImGuiNavInput"][17]["calc_value"] = 16 -defs["enums"]["ImGuiNavInput"][17]["name"] = "ImGuiNavInput_COUNT" -defs["enums"]["ImGuiNavInput"][17]["value"] = "16" +defs["enums"]["ImGuiMouseSource"] = {} +defs["enums"]["ImGuiMouseSource"][1] = {} +defs["enums"]["ImGuiMouseSource"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMouseSource"][1]["name"] = "ImGuiMouseSource_Mouse" +defs["enums"]["ImGuiMouseSource"][1]["value"] = "0" +defs["enums"]["ImGuiMouseSource"][2] = {} +defs["enums"]["ImGuiMouseSource"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMouseSource"][2]["name"] = "ImGuiMouseSource_TouchScreen" +defs["enums"]["ImGuiMouseSource"][2]["value"] = "1" +defs["enums"]["ImGuiMouseSource"][3] = {} +defs["enums"]["ImGuiMouseSource"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMouseSource"][3]["name"] = "ImGuiMouseSource_Pen" +defs["enums"]["ImGuiMouseSource"][3]["value"] = "2" +defs["enums"]["ImGuiMouseSource"][4] = {} +defs["enums"]["ImGuiMouseSource"][4]["calc_value"] = 3 +defs["enums"]["ImGuiMouseSource"][4]["name"] = "ImGuiMouseSource_COUNT" +defs["enums"]["ImGuiMouseSource"][4]["value"] = "3" +defs["enums"]["ImGuiMultiSelectFlags_"] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][1]["calc_value"] = 0 +defs["enums"]["ImGuiMultiSelectFlags_"][1]["name"] = "ImGuiMultiSelectFlags_None" +defs["enums"]["ImGuiMultiSelectFlags_"][1]["value"] = "0" +defs["enums"]["ImGuiMultiSelectFlags_"][2] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][2]["calc_value"] = 1 +defs["enums"]["ImGuiMultiSelectFlags_"][2]["name"] = "ImGuiMultiSelectFlags_SingleSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][2]["value"] = "1 << 0" +defs["enums"]["ImGuiMultiSelectFlags_"][3] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][3]["calc_value"] = 2 +defs["enums"]["ImGuiMultiSelectFlags_"][3]["name"] = "ImGuiMultiSelectFlags_NoSelectAll" +defs["enums"]["ImGuiMultiSelectFlags_"][3]["value"] = "1 << 1" +defs["enums"]["ImGuiMultiSelectFlags_"][4] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][4]["calc_value"] = 4 +defs["enums"]["ImGuiMultiSelectFlags_"][4]["name"] = "ImGuiMultiSelectFlags_NoRangeSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][4]["value"] = "1 << 2" +defs["enums"]["ImGuiMultiSelectFlags_"][5] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][5]["calc_value"] = 8 +defs["enums"]["ImGuiMultiSelectFlags_"][5]["name"] = "ImGuiMultiSelectFlags_NoAutoSelect" +defs["enums"]["ImGuiMultiSelectFlags_"][5]["value"] = "1 << 3" +defs["enums"]["ImGuiMultiSelectFlags_"][6] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][6]["calc_value"] = 16 +defs["enums"]["ImGuiMultiSelectFlags_"][6]["name"] = "ImGuiMultiSelectFlags_NoAutoClear" +defs["enums"]["ImGuiMultiSelectFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiMultiSelectFlags_"][7] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiMultiSelectFlags_"][7]["name"] = "ImGuiMultiSelectFlags_NoAutoClearOnReselect" +defs["enums"]["ImGuiMultiSelectFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiMultiSelectFlags_"][8] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][8]["calc_value"] = 64 +defs["enums"]["ImGuiMultiSelectFlags_"][8]["name"] = "ImGuiMultiSelectFlags_BoxSelect1d" +defs["enums"]["ImGuiMultiSelectFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiMultiSelectFlags_"][9] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][9]["calc_value"] = 128 +defs["enums"]["ImGuiMultiSelectFlags_"][9]["name"] = "ImGuiMultiSelectFlags_BoxSelect2d" +defs["enums"]["ImGuiMultiSelectFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiMultiSelectFlags_"][10] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiMultiSelectFlags_"][10]["name"] = "ImGuiMultiSelectFlags_BoxSelectNoScroll" +defs["enums"]["ImGuiMultiSelectFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiMultiSelectFlags_"][11] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][11]["calc_value"] = 512 +defs["enums"]["ImGuiMultiSelectFlags_"][11]["name"] = "ImGuiMultiSelectFlags_ClearOnEscape" +defs["enums"]["ImGuiMultiSelectFlags_"][11]["value"] = "1 << 9" +defs["enums"]["ImGuiMultiSelectFlags_"][12] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][12]["calc_value"] = 1024 +defs["enums"]["ImGuiMultiSelectFlags_"][12]["name"] = "ImGuiMultiSelectFlags_ClearOnClickVoid" +defs["enums"]["ImGuiMultiSelectFlags_"][12]["value"] = "1 << 10" +defs["enums"]["ImGuiMultiSelectFlags_"][13] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][13]["calc_value"] = 2048 +defs["enums"]["ImGuiMultiSelectFlags_"][13]["name"] = "ImGuiMultiSelectFlags_ScopeWindow" +defs["enums"]["ImGuiMultiSelectFlags_"][13]["value"] = "1 << 11" +defs["enums"]["ImGuiMultiSelectFlags_"][14] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][14]["calc_value"] = 4096 +defs["enums"]["ImGuiMultiSelectFlags_"][14]["name"] = "ImGuiMultiSelectFlags_ScopeRect" +defs["enums"]["ImGuiMultiSelectFlags_"][14]["value"] = "1 << 12" +defs["enums"]["ImGuiMultiSelectFlags_"][15] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][15]["calc_value"] = 8192 +defs["enums"]["ImGuiMultiSelectFlags_"][15]["name"] = "ImGuiMultiSelectFlags_SelectOnClick" +defs["enums"]["ImGuiMultiSelectFlags_"][15]["value"] = "1 << 13" +defs["enums"]["ImGuiMultiSelectFlags_"][16] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiMultiSelectFlags_"][16]["name"] = "ImGuiMultiSelectFlags_SelectOnClickRelease" +defs["enums"]["ImGuiMultiSelectFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiMultiSelectFlags_"][17] = {} +defs["enums"]["ImGuiMultiSelectFlags_"][17]["calc_value"] = 65536 +defs["enums"]["ImGuiMultiSelectFlags_"][17]["name"] = "ImGuiMultiSelectFlags_NavWrapX" +defs["enums"]["ImGuiMultiSelectFlags_"][17]["value"] = "1 << 16" defs["enums"]["ImGuiPopupFlags_"] = {} defs["enums"]["ImGuiPopupFlags_"][1] = {} defs["enums"]["ImGuiPopupFlags_"][1]["calc_value"] = 0 @@ -1635,24 +1875,28 @@ defs["enums"]["ImGuiPopupFlags_"][6]["name"] = "ImGuiPopupFlags_MouseButtonDefau defs["enums"]["ImGuiPopupFlags_"][6]["value"] = "1" defs["enums"]["ImGuiPopupFlags_"][7] = {} defs["enums"]["ImGuiPopupFlags_"][7]["calc_value"] = 32 -defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][7]["name"] = "ImGuiPopupFlags_NoReopen" defs["enums"]["ImGuiPopupFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiPopupFlags_"][8] = {} -defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverItems" -defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 6" +defs["enums"]["ImGuiPopupFlags_"][8]["calc_value"] = 128 +defs["enums"]["ImGuiPopupFlags_"][8]["name"] = "ImGuiPopupFlags_NoOpenOverExistingPopup" +defs["enums"]["ImGuiPopupFlags_"][8]["value"] = "1 << 7" defs["enums"]["ImGuiPopupFlags_"][9] = {} -defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_AnyPopupId" -defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiPopupFlags_"][9]["calc_value"] = 256 +defs["enums"]["ImGuiPopupFlags_"][9]["name"] = "ImGuiPopupFlags_NoOpenOverItems" +defs["enums"]["ImGuiPopupFlags_"][9]["value"] = "1 << 8" defs["enums"]["ImGuiPopupFlags_"][10] = {} -defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 256 -defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupLevel" -defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 8" +defs["enums"]["ImGuiPopupFlags_"][10]["calc_value"] = 1024 +defs["enums"]["ImGuiPopupFlags_"][10]["name"] = "ImGuiPopupFlags_AnyPopupId" +defs["enums"]["ImGuiPopupFlags_"][10]["value"] = "1 << 10" defs["enums"]["ImGuiPopupFlags_"][11] = {} -defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 384 -defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopup" -defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["calc_value"] = 2048 +defs["enums"]["ImGuiPopupFlags_"][11]["name"] = "ImGuiPopupFlags_AnyPopupLevel" +defs["enums"]["ImGuiPopupFlags_"][11]["value"] = "1 << 11" +defs["enums"]["ImGuiPopupFlags_"][12] = {} +defs["enums"]["ImGuiPopupFlags_"][12]["calc_value"] = 3072 +defs["enums"]["ImGuiPopupFlags_"][12]["name"] = "ImGuiPopupFlags_AnyPopup" +defs["enums"]["ImGuiPopupFlags_"][12]["value"] = "ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel" defs["enums"]["ImGuiSelectableFlags_"] = {} defs["enums"]["ImGuiSelectableFlags_"][1] = {} defs["enums"]["ImGuiSelectableFlags_"][1]["calc_value"] = 0 @@ -1660,7 +1904,7 @@ defs["enums"]["ImGuiSelectableFlags_"][1]["name"] = "ImGuiSelectableFlags_None" defs["enums"]["ImGuiSelectableFlags_"][1]["value"] = "0" defs["enums"]["ImGuiSelectableFlags_"][2] = {} defs["enums"]["ImGuiSelectableFlags_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_DontClosePopups" +defs["enums"]["ImGuiSelectableFlags_"][2]["name"] = "ImGuiSelectableFlags_NoAutoClosePopups" defs["enums"]["ImGuiSelectableFlags_"][2]["value"] = "1 << 0" defs["enums"]["ImGuiSelectableFlags_"][3] = {} defs["enums"]["ImGuiSelectableFlags_"][3]["calc_value"] = 2 @@ -1676,8 +1920,25 @@ defs["enums"]["ImGuiSelectableFlags_"][5]["name"] = "ImGuiSelectableFlags_Disabl defs["enums"]["ImGuiSelectableFlags_"][5]["value"] = "1 << 3" defs["enums"]["ImGuiSelectableFlags_"][6] = {} defs["enums"]["ImGuiSelectableFlags_"][6]["calc_value"] = 16 -defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowItemOverlap" +defs["enums"]["ImGuiSelectableFlags_"][6]["name"] = "ImGuiSelectableFlags_AllowOverlap" defs["enums"]["ImGuiSelectableFlags_"][6]["value"] = "1 << 4" +defs["enums"]["ImGuiSelectableFlags_"][7] = {} +defs["enums"]["ImGuiSelectableFlags_"][7]["calc_value"] = 32 +defs["enums"]["ImGuiSelectableFlags_"][7]["name"] = "ImGuiSelectableFlags_Highlight" +defs["enums"]["ImGuiSelectableFlags_"][7]["value"] = "1 << 5" +defs["enums"]["ImGuiSelectionRequestType"] = {} +defs["enums"]["ImGuiSelectionRequestType"][1] = {} +defs["enums"]["ImGuiSelectionRequestType"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSelectionRequestType"][1]["name"] = "ImGuiSelectionRequestType_None" +defs["enums"]["ImGuiSelectionRequestType"][1]["value"] = "0" +defs["enums"]["ImGuiSelectionRequestType"][2] = {} +defs["enums"]["ImGuiSelectionRequestType"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSelectionRequestType"][2]["name"] = "ImGuiSelectionRequestType_SetAll" +defs["enums"]["ImGuiSelectionRequestType"][2]["value"] = "1" +defs["enums"]["ImGuiSelectionRequestType"][3] = {} +defs["enums"]["ImGuiSelectionRequestType"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSelectionRequestType"][3]["name"] = "ImGuiSelectionRequestType_SetRange" +defs["enums"]["ImGuiSelectionRequestType"][3]["value"] = "2" defs["enums"]["ImGuiSliderFlags_"] = {} defs["enums"]["ImGuiSliderFlags_"][1] = {} defs["enums"]["ImGuiSliderFlags_"][1]["calc_value"] = 0 @@ -1700,22 +1961,26 @@ defs["enums"]["ImGuiSliderFlags_"][5]["calc_value"] = 128 defs["enums"]["ImGuiSliderFlags_"][5]["name"] = "ImGuiSliderFlags_NoInput" defs["enums"]["ImGuiSliderFlags_"][5]["value"] = "1 << 7" defs["enums"]["ImGuiSliderFlags_"][6] = {} -defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 1879048207 -defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_InvalidMask_" -defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "0x7000000F" -defs["enums"]["ImGuiSortDirection_"] = {} -defs["enums"]["ImGuiSortDirection_"][1] = {} -defs["enums"]["ImGuiSortDirection_"][1]["calc_value"] = 0 -defs["enums"]["ImGuiSortDirection_"][1]["name"] = "ImGuiSortDirection_None" -defs["enums"]["ImGuiSortDirection_"][1]["value"] = "0" -defs["enums"]["ImGuiSortDirection_"][2] = {} -defs["enums"]["ImGuiSortDirection_"][2]["calc_value"] = 1 -defs["enums"]["ImGuiSortDirection_"][2]["name"] = "ImGuiSortDirection_Ascending" -defs["enums"]["ImGuiSortDirection_"][2]["value"] = "1" -defs["enums"]["ImGuiSortDirection_"][3] = {} -defs["enums"]["ImGuiSortDirection_"][3]["calc_value"] = 2 -defs["enums"]["ImGuiSortDirection_"][3]["name"] = "ImGuiSortDirection_Descending" -defs["enums"]["ImGuiSortDirection_"][3]["value"] = "2" +defs["enums"]["ImGuiSliderFlags_"][6]["calc_value"] = 256 +defs["enums"]["ImGuiSliderFlags_"][6]["name"] = "ImGuiSliderFlags_WrapAround" +defs["enums"]["ImGuiSliderFlags_"][6]["value"] = "1 << 8" +defs["enums"]["ImGuiSliderFlags_"][7] = {} +defs["enums"]["ImGuiSliderFlags_"][7]["calc_value"] = 1879048207 +defs["enums"]["ImGuiSliderFlags_"][7]["name"] = "ImGuiSliderFlags_InvalidMask_" +defs["enums"]["ImGuiSliderFlags_"][7]["value"] = "0x7000000F" +defs["enums"]["ImGuiSortDirection"] = {} +defs["enums"]["ImGuiSortDirection"][1] = {} +defs["enums"]["ImGuiSortDirection"][1]["calc_value"] = 0 +defs["enums"]["ImGuiSortDirection"][1]["name"] = "ImGuiSortDirection_None" +defs["enums"]["ImGuiSortDirection"][1]["value"] = "0" +defs["enums"]["ImGuiSortDirection"][2] = {} +defs["enums"]["ImGuiSortDirection"][2]["calc_value"] = 1 +defs["enums"]["ImGuiSortDirection"][2]["name"] = "ImGuiSortDirection_Ascending" +defs["enums"]["ImGuiSortDirection"][2]["value"] = "1" +defs["enums"]["ImGuiSortDirection"][3] = {} +defs["enums"]["ImGuiSortDirection"][3]["calc_value"] = 2 +defs["enums"]["ImGuiSortDirection"][3]["name"] = "ImGuiSortDirection_Descending" +defs["enums"]["ImGuiSortDirection"][3]["value"] = "2" defs["enums"]["ImGuiStyleVar_"] = {} defs["enums"]["ImGuiStyleVar_"][1] = {} defs["enums"]["ImGuiStyleVar_"][1]["calc_value"] = 0 @@ -1811,16 +2076,48 @@ defs["enums"]["ImGuiStyleVar_"][23]["name"] = "ImGuiStyleVar_TabRounding" defs["enums"]["ImGuiStyleVar_"][23]["value"] = "22" defs["enums"]["ImGuiStyleVar_"][24] = {} defs["enums"]["ImGuiStyleVar_"][24]["calc_value"] = 23 -defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][24]["name"] = "ImGuiStyleVar_TabBorderSize" defs["enums"]["ImGuiStyleVar_"][24]["value"] = "23" defs["enums"]["ImGuiStyleVar_"][25] = {} defs["enums"]["ImGuiStyleVar_"][25]["calc_value"] = 24 -defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][25]["name"] = "ImGuiStyleVar_TabBarBorderSize" defs["enums"]["ImGuiStyleVar_"][25]["value"] = "24" defs["enums"]["ImGuiStyleVar_"][26] = {} defs["enums"]["ImGuiStyleVar_"][26]["calc_value"] = 25 -defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][26]["name"] = "ImGuiStyleVar_TabBarOverlineSize" defs["enums"]["ImGuiStyleVar_"][26]["value"] = "25" +defs["enums"]["ImGuiStyleVar_"][27] = {} +defs["enums"]["ImGuiStyleVar_"][27]["calc_value"] = 26 +defs["enums"]["ImGuiStyleVar_"][27]["name"] = "ImGuiStyleVar_TableAngledHeadersAngle" +defs["enums"]["ImGuiStyleVar_"][27]["value"] = "26" +defs["enums"]["ImGuiStyleVar_"][28] = {} +defs["enums"]["ImGuiStyleVar_"][28]["calc_value"] = 27 +defs["enums"]["ImGuiStyleVar_"][28]["name"] = "ImGuiStyleVar_TableAngledHeadersTextAlign" +defs["enums"]["ImGuiStyleVar_"][28]["value"] = "27" +defs["enums"]["ImGuiStyleVar_"][29] = {} +defs["enums"]["ImGuiStyleVar_"][29]["calc_value"] = 28 +defs["enums"]["ImGuiStyleVar_"][29]["name"] = "ImGuiStyleVar_ButtonTextAlign" +defs["enums"]["ImGuiStyleVar_"][29]["value"] = "28" +defs["enums"]["ImGuiStyleVar_"][30] = {} +defs["enums"]["ImGuiStyleVar_"][30]["calc_value"] = 29 +defs["enums"]["ImGuiStyleVar_"][30]["name"] = "ImGuiStyleVar_SelectableTextAlign" +defs["enums"]["ImGuiStyleVar_"][30]["value"] = "29" +defs["enums"]["ImGuiStyleVar_"][31] = {} +defs["enums"]["ImGuiStyleVar_"][31]["calc_value"] = 30 +defs["enums"]["ImGuiStyleVar_"][31]["name"] = "ImGuiStyleVar_SeparatorTextBorderSize" +defs["enums"]["ImGuiStyleVar_"][31]["value"] = "30" +defs["enums"]["ImGuiStyleVar_"][32] = {} +defs["enums"]["ImGuiStyleVar_"][32]["calc_value"] = 31 +defs["enums"]["ImGuiStyleVar_"][32]["name"] = "ImGuiStyleVar_SeparatorTextAlign" +defs["enums"]["ImGuiStyleVar_"][32]["value"] = "31" +defs["enums"]["ImGuiStyleVar_"][33] = {} +defs["enums"]["ImGuiStyleVar_"][33]["calc_value"] = 32 +defs["enums"]["ImGuiStyleVar_"][33]["name"] = "ImGuiStyleVar_SeparatorTextPadding" +defs["enums"]["ImGuiStyleVar_"][33]["value"] = "32" +defs["enums"]["ImGuiStyleVar_"][34] = {} +defs["enums"]["ImGuiStyleVar_"][34]["calc_value"] = 33 +defs["enums"]["ImGuiStyleVar_"][34]["name"] = "ImGuiStyleVar_COUNT" +defs["enums"]["ImGuiStyleVar_"][34]["value"] = "33" defs["enums"]["ImGuiTabBarFlags_"] = {} defs["enums"]["ImGuiTabBarFlags_"][1] = {} defs["enums"]["ImGuiTabBarFlags_"][1]["calc_value"] = 0 @@ -1852,20 +2149,24 @@ defs["enums"]["ImGuiTabBarFlags_"][7]["name"] = "ImGuiTabBarFlags_NoTooltip" defs["enums"]["ImGuiTabBarFlags_"][7]["value"] = "1 << 5" defs["enums"]["ImGuiTabBarFlags_"][8] = {} defs["enums"]["ImGuiTabBarFlags_"][8]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][8]["name"] = "ImGuiTabBarFlags_DrawSelectedOverline" defs["enums"]["ImGuiTabBarFlags_"][8]["value"] = "1 << 6" defs["enums"]["ImGuiTabBarFlags_"][9] = {} defs["enums"]["ImGuiTabBarFlags_"][9]["calc_value"] = 128 -defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][9]["name"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabBarFlags_"][9]["value"] = "1 << 7" defs["enums"]["ImGuiTabBarFlags_"][10] = {} -defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 192 -defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" -defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabBarFlags_"][10]["name"] = "ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTabBarFlags_"][11] = {} -defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 64 -defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" -defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" +defs["enums"]["ImGuiTabBarFlags_"][11]["calc_value"] = 384 +defs["enums"]["ImGuiTabBarFlags_"][11]["name"] = "ImGuiTabBarFlags_FittingPolicyMask_" +defs["enums"]["ImGuiTabBarFlags_"][11]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll" +defs["enums"]["ImGuiTabBarFlags_"][12] = {} +defs["enums"]["ImGuiTabBarFlags_"][12]["calc_value"] = 128 +defs["enums"]["ImGuiTabBarFlags_"][12]["name"] = "ImGuiTabBarFlags_FittingPolicyDefault_" +defs["enums"]["ImGuiTabBarFlags_"][12]["value"] = "ImGuiTabBarFlags_FittingPolicyResizeDown" defs["enums"]["ImGuiTabItemFlags_"] = {} defs["enums"]["ImGuiTabItemFlags_"][1] = {} defs["enums"]["ImGuiTabItemFlags_"][1]["calc_value"] = 0 @@ -1903,6 +2204,10 @@ defs["enums"]["ImGuiTabItemFlags_"][9] = {} defs["enums"]["ImGuiTabItemFlags_"][9]["calc_value"] = 128 defs["enums"]["ImGuiTabItemFlags_"][9]["name"] = "ImGuiTabItemFlags_Trailing" defs["enums"]["ImGuiTabItemFlags_"][9]["value"] = "1 << 7" +defs["enums"]["ImGuiTabItemFlags_"][10] = {} +defs["enums"]["ImGuiTabItemFlags_"][10]["calc_value"] = 256 +defs["enums"]["ImGuiTabItemFlags_"][10]["name"] = "ImGuiTabItemFlags_NoAssumedClosure" +defs["enums"]["ImGuiTabItemFlags_"][10]["value"] = "1 << 8" defs["enums"]["ImGuiTableBgTarget_"] = {} defs["enums"]["ImGuiTableBgTarget_"][1] = {} defs["enums"]["ImGuiTableBgTarget_"][1]["calc_value"] = 0 @@ -1998,37 +2303,41 @@ defs["enums"]["ImGuiTableColumnFlags_"][19]["calc_value"] = 131072 defs["enums"]["ImGuiTableColumnFlags_"][19]["name"] = "ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiTableColumnFlags_"][20] = {} -defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 16777216 -defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_IsEnabled" -defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 24" +defs["enums"]["ImGuiTableColumnFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiTableColumnFlags_"][20]["name"] = "ImGuiTableColumnFlags_AngledHeader" +defs["enums"]["ImGuiTableColumnFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiTableColumnFlags_"][21] = {} -defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 33554432 -defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsVisible" -defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 25" +defs["enums"]["ImGuiTableColumnFlags_"][21]["calc_value"] = 16777216 +defs["enums"]["ImGuiTableColumnFlags_"][21]["name"] = "ImGuiTableColumnFlags_IsEnabled" +defs["enums"]["ImGuiTableColumnFlags_"][21]["value"] = "1 << 24" defs["enums"]["ImGuiTableColumnFlags_"][22] = {} -defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 67108864 -defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsSorted" -defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 26" +defs["enums"]["ImGuiTableColumnFlags_"][22]["calc_value"] = 33554432 +defs["enums"]["ImGuiTableColumnFlags_"][22]["name"] = "ImGuiTableColumnFlags_IsVisible" +defs["enums"]["ImGuiTableColumnFlags_"][22]["value"] = "1 << 25" defs["enums"]["ImGuiTableColumnFlags_"][23] = {} -defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 134217728 -defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsHovered" -defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 27" +defs["enums"]["ImGuiTableColumnFlags_"][23]["calc_value"] = 67108864 +defs["enums"]["ImGuiTableColumnFlags_"][23]["name"] = "ImGuiTableColumnFlags_IsSorted" +defs["enums"]["ImGuiTableColumnFlags_"][23]["value"] = "1 << 26" defs["enums"]["ImGuiTableColumnFlags_"][24] = {} -defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 24 -defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_WidthMask_" -defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" +defs["enums"]["ImGuiTableColumnFlags_"][24]["calc_value"] = 134217728 +defs["enums"]["ImGuiTableColumnFlags_"][24]["name"] = "ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][24]["value"] = "1 << 27" defs["enums"]["ImGuiTableColumnFlags_"][25] = {} -defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 196608 -defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_IndentMask_" -defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" +defs["enums"]["ImGuiTableColumnFlags_"][25]["calc_value"] = 24 +defs["enums"]["ImGuiTableColumnFlags_"][25]["name"] = "ImGuiTableColumnFlags_WidthMask_" +defs["enums"]["ImGuiTableColumnFlags_"][25]["value"] = "ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed" defs["enums"]["ImGuiTableColumnFlags_"][26] = {} -defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 251658240 -defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_StatusMask_" -defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][26]["calc_value"] = 196608 +defs["enums"]["ImGuiTableColumnFlags_"][26]["name"] = "ImGuiTableColumnFlags_IndentMask_" +defs["enums"]["ImGuiTableColumnFlags_"][26]["value"] = "ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable" defs["enums"]["ImGuiTableColumnFlags_"][27] = {} -defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 1073741824 -defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" -defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "1 << 30" +defs["enums"]["ImGuiTableColumnFlags_"][27]["calc_value"] = 251658240 +defs["enums"]["ImGuiTableColumnFlags_"][27]["name"] = "ImGuiTableColumnFlags_StatusMask_" +defs["enums"]["ImGuiTableColumnFlags_"][27]["value"] = "ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered" +defs["enums"]["ImGuiTableColumnFlags_"][28] = {} +defs["enums"]["ImGuiTableColumnFlags_"][28]["calc_value"] = 1073741824 +defs["enums"]["ImGuiTableColumnFlags_"][28]["name"] = "ImGuiTableColumnFlags_NoDirectResize_" +defs["enums"]["ImGuiTableColumnFlags_"][28]["value"] = "1 << 30" defs["enums"]["ImGuiTableFlags_"] = {} defs["enums"]["ImGuiTableFlags_"][1] = {} defs["enums"]["ImGuiTableFlags_"][1]["calc_value"] = 0 @@ -2171,9 +2480,13 @@ defs["enums"]["ImGuiTableFlags_"][35]["calc_value"] = 134217728 defs["enums"]["ImGuiTableFlags_"][35]["name"] = "ImGuiTableFlags_SortTristate" defs["enums"]["ImGuiTableFlags_"][35]["value"] = "1 << 27" defs["enums"]["ImGuiTableFlags_"][36] = {} -defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 57344 -defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_SizingMask_" -defs["enums"]["ImGuiTableFlags_"][36]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" +defs["enums"]["ImGuiTableFlags_"][36]["calc_value"] = 268435456 +defs["enums"]["ImGuiTableFlags_"][36]["name"] = "ImGuiTableFlags_HighlightHoveredColumn" +defs["enums"]["ImGuiTableFlags_"][36]["value"] = "1 << 28" +defs["enums"]["ImGuiTableFlags_"][37] = {} +defs["enums"]["ImGuiTableFlags_"][37]["calc_value"] = 57344 +defs["enums"]["ImGuiTableFlags_"][37]["name"] = "ImGuiTableFlags_SizingMask_" +defs["enums"]["ImGuiTableFlags_"][37]["value"] = "ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame" defs["enums"]["ImGuiTableRowFlags_"] = {} defs["enums"]["ImGuiTableRowFlags_"][1] = {} defs["enums"]["ImGuiTableRowFlags_"][1]["calc_value"] = 0 @@ -2198,7 +2511,7 @@ defs["enums"]["ImGuiTreeNodeFlags_"][3]["name"] = "ImGuiTreeNodeFlags_Framed" defs["enums"]["ImGuiTreeNodeFlags_"][3]["value"] = "1 << 1" defs["enums"]["ImGuiTreeNodeFlags_"][4] = {} defs["enums"]["ImGuiTreeNodeFlags_"][4]["calc_value"] = 4 -defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowItemOverlap" +defs["enums"]["ImGuiTreeNodeFlags_"][4]["name"] = "ImGuiTreeNodeFlags_AllowOverlap" defs["enums"]["ImGuiTreeNodeFlags_"][4]["value"] = "1 << 2" defs["enums"]["ImGuiTreeNodeFlags_"][5] = {} defs["enums"]["ImGuiTreeNodeFlags_"][5]["calc_value"] = 8 @@ -2242,12 +2555,20 @@ defs["enums"]["ImGuiTreeNodeFlags_"][14]["name"] = "ImGuiTreeNodeFlags_SpanFullW defs["enums"]["ImGuiTreeNodeFlags_"][14]["value"] = "1 << 12" defs["enums"]["ImGuiTreeNodeFlags_"][15] = {} defs["enums"]["ImGuiTreeNodeFlags_"][15]["calc_value"] = 8192 -defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][15]["name"] = "ImGuiTreeNodeFlags_SpanTextWidth" defs["enums"]["ImGuiTreeNodeFlags_"][15]["value"] = "1 << 13" defs["enums"]["ImGuiTreeNodeFlags_"][16] = {} -defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 26 -defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" -defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["calc_value"] = 16384 +defs["enums"]["ImGuiTreeNodeFlags_"][16]["name"] = "ImGuiTreeNodeFlags_SpanAllColumns" +defs["enums"]["ImGuiTreeNodeFlags_"][16]["value"] = "1 << 14" +defs["enums"]["ImGuiTreeNodeFlags_"][17] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][17]["calc_value"] = 32768 +defs["enums"]["ImGuiTreeNodeFlags_"][17]["name"] = "ImGuiTreeNodeFlags_NavLeftJumpsBackHere" +defs["enums"]["ImGuiTreeNodeFlags_"][17]["value"] = "1 << 15" +defs["enums"]["ImGuiTreeNodeFlags_"][18] = {} +defs["enums"]["ImGuiTreeNodeFlags_"][18]["calc_value"] = 26 +defs["enums"]["ImGuiTreeNodeFlags_"][18]["name"] = "ImGuiTreeNodeFlags_CollapsingHeader" +defs["enums"]["ImGuiTreeNodeFlags_"][18]["value"] = "ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog" defs["enums"]["ImGuiViewportFlags_"] = {} defs["enums"]["ImGuiViewportFlags_"][1] = {} defs["enums"]["ImGuiViewportFlags_"][1]["calc_value"] = 0 @@ -2336,126 +2657,131 @@ defs["enums"]["ImGuiWindowFlags_"][17]["name"] = "ImGuiWindowFlags_AlwaysHorizon defs["enums"]["ImGuiWindowFlags_"][17]["value"] = "1<< 15" defs["enums"]["ImGuiWindowFlags_"][18] = {} defs["enums"]["ImGuiWindowFlags_"][18]["calc_value"] = 65536 -defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_AlwaysUseWindowPadding" +defs["enums"]["ImGuiWindowFlags_"][18]["name"] = "ImGuiWindowFlags_NoNavInputs" defs["enums"]["ImGuiWindowFlags_"][18]["value"] = "1 << 16" defs["enums"]["ImGuiWindowFlags_"][19] = {} -defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 262144 -defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavInputs" -defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 18" +defs["enums"]["ImGuiWindowFlags_"][19]["calc_value"] = 131072 +defs["enums"]["ImGuiWindowFlags_"][19]["name"] = "ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][19]["value"] = "1 << 17" defs["enums"]["ImGuiWindowFlags_"][20] = {} -defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 524288 -defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_NoNavFocus" -defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 19" +defs["enums"]["ImGuiWindowFlags_"][20]["calc_value"] = 262144 +defs["enums"]["ImGuiWindowFlags_"][20]["name"] = "ImGuiWindowFlags_UnsavedDocument" +defs["enums"]["ImGuiWindowFlags_"][20]["value"] = "1 << 18" defs["enums"]["ImGuiWindowFlags_"][21] = {} -defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 1048576 -defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_UnsavedDocument" -defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "1 << 20" +defs["enums"]["ImGuiWindowFlags_"][21]["calc_value"] = 196608 +defs["enums"]["ImGuiWindowFlags_"][21]["name"] = "ImGuiWindowFlags_NoNav" +defs["enums"]["ImGuiWindowFlags_"][21]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][22] = {} -defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 786432 -defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoNav" -defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][22]["calc_value"] = 43 +defs["enums"]["ImGuiWindowFlags_"][22]["name"] = "ImGuiWindowFlags_NoDecoration" +defs["enums"]["ImGuiWindowFlags_"][22]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" defs["enums"]["ImGuiWindowFlags_"][23] = {} -defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 43 -defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoDecoration" -defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse" +defs["enums"]["ImGuiWindowFlags_"][23]["calc_value"] = 197120 +defs["enums"]["ImGuiWindowFlags_"][23]["name"] = "ImGuiWindowFlags_NoInputs" +defs["enums"]["ImGuiWindowFlags_"][23]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" defs["enums"]["ImGuiWindowFlags_"][24] = {} -defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 786944 -defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_NoInputs" -defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus" +defs["enums"]["ImGuiWindowFlags_"][24]["calc_value"] = 16777216 +defs["enums"]["ImGuiWindowFlags_"][24]["name"] = "ImGuiWindowFlags_ChildWindow" +defs["enums"]["ImGuiWindowFlags_"][24]["value"] = "1 << 24" defs["enums"]["ImGuiWindowFlags_"][25] = {} -defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 8388608 -defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_NavFlattened" -defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "1 << 23" +defs["enums"]["ImGuiWindowFlags_"][25]["calc_value"] = 33554432 +defs["enums"]["ImGuiWindowFlags_"][25]["name"] = "ImGuiWindowFlags_Tooltip" +defs["enums"]["ImGuiWindowFlags_"][25]["value"] = "1 << 25" defs["enums"]["ImGuiWindowFlags_"][26] = {} -defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 16777216 -defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_ChildWindow" -defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 24" +defs["enums"]["ImGuiWindowFlags_"][26]["calc_value"] = 67108864 +defs["enums"]["ImGuiWindowFlags_"][26]["name"] = "ImGuiWindowFlags_Popup" +defs["enums"]["ImGuiWindowFlags_"][26]["value"] = "1 << 26" defs["enums"]["ImGuiWindowFlags_"][27] = {} -defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 33554432 -defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_Tooltip" -defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 25" +defs["enums"]["ImGuiWindowFlags_"][27]["calc_value"] = 134217728 +defs["enums"]["ImGuiWindowFlags_"][27]["name"] = "ImGuiWindowFlags_Modal" +defs["enums"]["ImGuiWindowFlags_"][27]["value"] = "1 << 27" defs["enums"]["ImGuiWindowFlags_"][28] = {} -defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 67108864 -defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_Popup" -defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 26" -defs["enums"]["ImGuiWindowFlags_"][29] = {} -defs["enums"]["ImGuiWindowFlags_"][29]["calc_value"] = 134217728 -defs["enums"]["ImGuiWindowFlags_"][29]["name"] = "ImGuiWindowFlags_Modal" -defs["enums"]["ImGuiWindowFlags_"][29]["value"] = "1 << 27" -defs["enums"]["ImGuiWindowFlags_"][30] = {} -defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 268435456 -defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_ChildMenu" -defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 28" +defs["enums"]["ImGuiWindowFlags_"][28]["calc_value"] = 268435456 +defs["enums"]["ImGuiWindowFlags_"][28]["name"] = "ImGuiWindowFlags_ChildMenu" +defs["enums"]["ImGuiWindowFlags_"][28]["value"] = "1 << 28" defs["enumtypes"] = {} +defs["enumtypes"]["ImGuiDir"] = "int" defs["enumtypes"]["ImGuiKey"] = "int" +defs["enumtypes"]["ImGuiMouseSource"] = "int" +defs["enumtypes"]["ImGuiSortDirection"] = "ImU8" defs["locations"] = {} -defs["locations"]["ImColor"] = "imgui:2344" -defs["locations"]["ImDrawChannel"] = "imgui:2434" -defs["locations"]["ImDrawCmd"] = "imgui:2393" -defs["locations"]["ImDrawCmdHeader"] = "imgui:2426" -defs["locations"]["ImDrawData"] = "imgui:2626" -defs["locations"]["ImDrawFlags_"] = "imgui:2460" -defs["locations"]["ImDrawList"] = "imgui:2498" -defs["locations"]["ImDrawListFlags_"] = "imgui:2480" -defs["locations"]["ImDrawListSplitter"] = "imgui:2443" -defs["locations"]["ImDrawVert"] = "imgui:2411" -defs["locations"]["ImFont"] = "imgui:2845" -defs["locations"]["ImFontAtlas"] = "imgui:2742" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2704" -defs["locations"]["ImFontAtlasFlags_"] = "imgui:2717" -defs["locations"]["ImFontConfig"] = "imgui:2648" -defs["locations"]["ImFontGlyph"] = "imgui:2677" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2689" -defs["locations"]["ImGuiBackendFlags_"] = "imgui:1508" -defs["locations"]["ImGuiButtonFlags_"] = "imgui:1615" -defs["locations"]["ImGuiCol_"] = "imgui:1518" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1628" -defs["locations"]["ImGuiComboFlags_"] = "imgui:1080" -defs["locations"]["ImGuiCond_"] = "imgui:1719" -defs["locations"]["ImGuiConfigFlags_"] = "imgui:1492" -defs["locations"]["ImGuiDataType_"] = "imgui:1317" -defs["locations"]["ImGuiDir_"] = "imgui:1333" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1295" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1257" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1271" -defs["locations"]["ImGuiIO"] = "imgui:1896" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2069" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui:992" -defs["locations"]["ImGuiKey"] = "imgui:1355" -defs["locations"]["ImGuiKeyData"] = "imgui:1888" -defs["locations"]["ImGuiListClipper"] = "imgui:2293" -defs["locations"]["ImGuiMouseButton_"] = "imgui:1691" -defs["locations"]["ImGuiMouseCursor_"] = "imgui:1701" -defs["locations"]["ImGuiNavInput"] = "imgui:1483" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2168" -defs["locations"]["ImGuiPayload"] = "imgui:2109" -defs["locations"]["ImGuiPlatformImeData"] = "imgui:2939" -defs["locations"]["ImGuiPopupFlags_"] = "imgui:1053" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1069" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2100" -defs["locations"]["ImGuiSliderFlags_"] = "imgui:1674" -defs["locations"]["ImGuiSortDirection_"] = "imgui:1344" -defs["locations"]["ImGuiStorage"] = "imgui:2230" -defs["locations"]["ImGuiStoragePair"] = "imgui:2233" -defs["locations"]["ImGuiStyle"] = "imgui:1831" -defs["locations"]["ImGuiStyleVar_"] = "imgui:1583" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1094" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1110" -defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1248" -defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1196" -defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2131" -defs["locations"]["ImGuiTableFlags_"] = "imgui:1145" -defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1233" -defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2145" -defs["locations"]["ImGuiTextBuffer"] = "imgui:2203" -defs["locations"]["ImGuiTextFilter"] = "imgui:2176" -defs["locations"]["ImGuiTextRange"] = "imgui:2186" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1024" -defs["locations"]["ImGuiViewport"] = "imgui:2916" -defs["locations"]["ImGuiViewportFlags_"] = "imgui:2901" -defs["locations"]["ImGuiWindowFlags_"] = "imgui:954" -defs["locations"]["ImVec2"] = "imgui:253" -defs["locations"]["ImVec4"] = "imgui:266" +defs["locations"]["ImColor"] = "imgui:2730" +defs["locations"]["ImDrawChannel"] = "imgui:2968" +defs["locations"]["ImDrawCmd"] = "imgui:2927" +defs["locations"]["ImDrawCmdHeader"] = "imgui:2960" +defs["locations"]["ImDrawData"] = "imgui:3173" +defs["locations"]["ImDrawFlags_"] = "imgui:2994" +defs["locations"]["ImDrawList"] = "imgui:3032" +defs["locations"]["ImDrawListFlags_"] = "imgui:3014" +defs["locations"]["ImDrawListSplitter"] = "imgui:2977" +defs["locations"]["ImDrawVert"] = "imgui:2945" +defs["locations"]["ImFont"] = "imgui:3396" +defs["locations"]["ImFontAtlas"] = "imgui:3292" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:3254" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:3267" +defs["locations"]["ImFontConfig"] = "imgui:3197" +defs["locations"]["ImFontGlyph"] = "imgui:3227" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:3239" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1610" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1735" +defs["locations"]["ImGuiChildFlags_"] = "imgui:1109" +defs["locations"]["ImGuiCol_"] = "imgui:1620" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1746" +defs["locations"]["ImGuiComboFlags_"] = "imgui:1252" +defs["locations"]["ImGuiCond_"] = "imgui:1848" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1593" +defs["locations"]["ImGuiDataType_"] = "imgui:1379" +defs["locations"]["ImGuiDir"] = "imgui:1396" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:1351" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:1299" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:1313" +defs["locations"]["ImGuiIO"] = "imgui:2220" +defs["locations"]["ImGuiInputFlags_"] = "imgui:1558" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:2431" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:1143" +defs["locations"]["ImGuiItemFlags_"] = "imgui:1130" +defs["locations"]["ImGuiKey"] = "imgui:1425" +defs["locations"]["ImGuiKeyData"] = "imgui:2212" +defs["locations"]["ImGuiListClipper"] = "imgui:2638" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1808" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1818" +defs["locations"]["ImGuiMouseSource"] = "imgui:1837" +defs["locations"]["ImGuiMultiSelectFlags_"] = "imgui:2788" +defs["locations"]["ImGuiMultiSelectIO"] = "imgui:2815" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:2509" +defs["locations"]["ImGuiPayload"] = "imgui:2474" +defs["locations"]["ImGuiPlatformIO"] = "imgui:3494" +defs["locations"]["ImGuiPlatformImeData"] = "imgui:3525" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:1217" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:1235" +defs["locations"]["ImGuiSelectionBasicStorage"] = "imgui:2861" +defs["locations"]["ImGuiSelectionExternalStorage"] = "imgui:2884" +defs["locations"]["ImGuiSelectionRequest"] = "imgui:2835" +defs["locations"]["ImGuiSelectionRequestType"] = "imgui:2827" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:2465" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1792" +defs["locations"]["ImGuiSortDirection"] = "imgui:1407" +defs["locations"]["ImGuiStorage"] = "imgui:2581" +defs["locations"]["ImGuiStoragePair"] = "imgui:2564" +defs["locations"]["ImGuiStyle"] = "imgui:2135" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1695" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:1267" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:1284" +defs["locations"]["ImGuiTableBgTarget_"] = "imgui:1989" +defs["locations"]["ImGuiTableColumnFlags_"] = "imgui:1936" +defs["locations"]["ImGuiTableColumnSortSpecs"] = "imgui:2011" +defs["locations"]["ImGuiTableFlags_"] = "imgui:1883" +defs["locations"]["ImGuiTableRowFlags_"] = "imgui:1974" +defs["locations"]["ImGuiTableSortSpecs"] = "imgui:2001" +defs["locations"]["ImGuiTextBuffer"] = "imgui:2544" +defs["locations"]["ImGuiTextFilter"] = "imgui:2517" +defs["locations"]["ImGuiTextRange"] = "imgui:2527" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:1182" +defs["locations"]["ImGuiViewport"] = "imgui:3469" +defs["locations"]["ImGuiViewportFlags_"] = "imgui:3454" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:1060" +defs["locations"]["ImVec2"] = "imgui:288" +defs["locations"]["ImVec4"] = "imgui:301" defs["structs"] = {} defs["structs"]["ImColor"] = {} defs["structs"]["ImColor"][1] = {} @@ -2517,7 +2843,8 @@ defs["structs"]["ImDrawData"][4]["name"] = "TotalVtxCount" defs["structs"]["ImDrawData"][4]["type"] = "int" defs["structs"]["ImDrawData"][5] = {} defs["structs"]["ImDrawData"][5]["name"] = "CmdLists" -defs["structs"]["ImDrawData"][5]["type"] = "ImDrawList**" +defs["structs"]["ImDrawData"][5]["template_type"] = "ImDrawList*" +defs["structs"]["ImDrawData"][5]["type"] = "ImVector_ImDrawListPtr" defs["structs"]["ImDrawData"][6] = {} defs["structs"]["ImDrawData"][6]["name"] = "DisplayPos" defs["structs"]["ImDrawData"][6]["type"] = "ImVec2" @@ -2527,6 +2854,9 @@ defs["structs"]["ImDrawData"][7]["type"] = "ImVec2" defs["structs"]["ImDrawData"][8] = {} defs["structs"]["ImDrawData"][8]["name"] = "FramebufferScale" defs["structs"]["ImDrawData"][8]["type"] = "ImVec2" +defs["structs"]["ImDrawData"][9] = {} +defs["structs"]["ImDrawData"][9]["name"] = "OwnerViewport" +defs["structs"]["ImDrawData"][9]["type"] = "ImGuiViewport*" defs["structs"]["ImDrawList"] = {} defs["structs"]["ImDrawList"][1] = {} defs["structs"]["ImDrawList"][1]["name"] = "CmdBuffer" @@ -2550,35 +2880,35 @@ defs["structs"]["ImDrawList"][6] = {} defs["structs"]["ImDrawList"][6]["name"] = "_Data" defs["structs"]["ImDrawList"][6]["type"] = "ImDrawListSharedData*" defs["structs"]["ImDrawList"][7] = {} -defs["structs"]["ImDrawList"][7]["name"] = "_OwnerName" -defs["structs"]["ImDrawList"][7]["type"] = "const char*" +defs["structs"]["ImDrawList"][7]["name"] = "_VtxWritePtr" +defs["structs"]["ImDrawList"][7]["type"] = "ImDrawVert*" defs["structs"]["ImDrawList"][8] = {} -defs["structs"]["ImDrawList"][8]["name"] = "_VtxWritePtr" -defs["structs"]["ImDrawList"][8]["type"] = "ImDrawVert*" +defs["structs"]["ImDrawList"][8]["name"] = "_IdxWritePtr" +defs["structs"]["ImDrawList"][8]["type"] = "ImDrawIdx*" defs["structs"]["ImDrawList"][9] = {} -defs["structs"]["ImDrawList"][9]["name"] = "_IdxWritePtr" -defs["structs"]["ImDrawList"][9]["type"] = "ImDrawIdx*" +defs["structs"]["ImDrawList"][9]["name"] = "_Path" +defs["structs"]["ImDrawList"][9]["template_type"] = "ImVec2" +defs["structs"]["ImDrawList"][9]["type"] = "ImVector_ImVec2" defs["structs"]["ImDrawList"][10] = {} -defs["structs"]["ImDrawList"][10]["name"] = "_ClipRectStack" -defs["structs"]["ImDrawList"][10]["template_type"] = "ImVec4" -defs["structs"]["ImDrawList"][10]["type"] = "ImVector_ImVec4" +defs["structs"]["ImDrawList"][10]["name"] = "_CmdHeader" +defs["structs"]["ImDrawList"][10]["type"] = "ImDrawCmdHeader" defs["structs"]["ImDrawList"][11] = {} -defs["structs"]["ImDrawList"][11]["name"] = "_TextureIdStack" -defs["structs"]["ImDrawList"][11]["template_type"] = "ImTextureID" -defs["structs"]["ImDrawList"][11]["type"] = "ImVector_ImTextureID" +defs["structs"]["ImDrawList"][11]["name"] = "_Splitter" +defs["structs"]["ImDrawList"][11]["type"] = "ImDrawListSplitter" defs["structs"]["ImDrawList"][12] = {} -defs["structs"]["ImDrawList"][12]["name"] = "_Path" -defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec2" -defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec2" +defs["structs"]["ImDrawList"][12]["name"] = "_ClipRectStack" +defs["structs"]["ImDrawList"][12]["template_type"] = "ImVec4" +defs["structs"]["ImDrawList"][12]["type"] = "ImVector_ImVec4" defs["structs"]["ImDrawList"][13] = {} -defs["structs"]["ImDrawList"][13]["name"] = "_CmdHeader" -defs["structs"]["ImDrawList"][13]["type"] = "ImDrawCmdHeader" +defs["structs"]["ImDrawList"][13]["name"] = "_TextureIdStack" +defs["structs"]["ImDrawList"][13]["template_type"] = "ImTextureID" +defs["structs"]["ImDrawList"][13]["type"] = "ImVector_ImTextureID" defs["structs"]["ImDrawList"][14] = {} -defs["structs"]["ImDrawList"][14]["name"] = "_Splitter" -defs["structs"]["ImDrawList"][14]["type"] = "ImDrawListSplitter" +defs["structs"]["ImDrawList"][14]["name"] = "_FringeScale" +defs["structs"]["ImDrawList"][14]["type"] = "float" defs["structs"]["ImDrawList"][15] = {} -defs["structs"]["ImDrawList"][15]["name"] = "_FringeScale" -defs["structs"]["ImDrawList"][15]["type"] = "float" +defs["structs"]["ImDrawList"][15]["name"] = "_OwnerName" +defs["structs"]["ImDrawList"][15]["type"] = "const char*" defs["structs"]["ImDrawListSplitter"] = {} defs["structs"]["ImDrawListSplitter"][1] = {} defs["structs"]["ImDrawListSplitter"][1]["name"] = "_Current" @@ -2638,27 +2968,33 @@ defs["structs"]["ImFont"][11] = {} defs["structs"]["ImFont"][11]["name"] = "EllipsisChar" defs["structs"]["ImFont"][11]["type"] = "ImWchar" defs["structs"]["ImFont"][12] = {} -defs["structs"]["ImFont"][12]["name"] = "DotChar" -defs["structs"]["ImFont"][12]["type"] = "ImWchar" +defs["structs"]["ImFont"][12]["name"] = "EllipsisCharCount" +defs["structs"]["ImFont"][12]["type"] = "short" defs["structs"]["ImFont"][13] = {} -defs["structs"]["ImFont"][13]["name"] = "DirtyLookupTables" -defs["structs"]["ImFont"][13]["type"] = "bool" +defs["structs"]["ImFont"][13]["name"] = "EllipsisWidth" +defs["structs"]["ImFont"][13]["type"] = "float" defs["structs"]["ImFont"][14] = {} -defs["structs"]["ImFont"][14]["name"] = "Scale" +defs["structs"]["ImFont"][14]["name"] = "EllipsisCharStep" defs["structs"]["ImFont"][14]["type"] = "float" defs["structs"]["ImFont"][15] = {} -defs["structs"]["ImFont"][15]["name"] = "Ascent" -defs["structs"]["ImFont"][15]["type"] = "float" +defs["structs"]["ImFont"][15]["name"] = "DirtyLookupTables" +defs["structs"]["ImFont"][15]["type"] = "bool" defs["structs"]["ImFont"][16] = {} -defs["structs"]["ImFont"][16]["name"] = "Descent" +defs["structs"]["ImFont"][16]["name"] = "Scale" defs["structs"]["ImFont"][16]["type"] = "float" defs["structs"]["ImFont"][17] = {} -defs["structs"]["ImFont"][17]["name"] = "MetricsTotalSurface" -defs["structs"]["ImFont"][17]["type"] = "int" +defs["structs"]["ImFont"][17]["name"] = "Ascent" +defs["structs"]["ImFont"][17]["type"] = "float" defs["structs"]["ImFont"][18] = {} -defs["structs"]["ImFont"][18]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" -defs["structs"]["ImFont"][18]["size"] = 34 -defs["structs"]["ImFont"][18]["type"] = "ImU8" +defs["structs"]["ImFont"][18]["name"] = "Descent" +defs["structs"]["ImFont"][18]["type"] = "float" +defs["structs"]["ImFont"][19] = {} +defs["structs"]["ImFont"][19]["name"] = "MetricsTotalSurface" +defs["structs"]["ImFont"][19]["type"] = "int" +defs["structs"]["ImFont"][20] = {} +defs["structs"]["ImFont"][20]["name"] = "Used4kPagesMap[(0x10FFFF+1)/4096/8]" +defs["structs"]["ImFont"][20]["size"] = 34 +defs["structs"]["ImFont"][20]["type"] = "ImU8" defs["structs"]["ImFontAtlas"] = {} defs["structs"]["ImFontAtlas"][1] = {} defs["structs"]["ImFontAtlas"][1]["name"] = "Flags" @@ -2805,15 +3141,18 @@ defs["structs"]["ImFontConfig"][16] = {} defs["structs"]["ImFontConfig"][16]["name"] = "RasterizerMultiply" defs["structs"]["ImFontConfig"][16]["type"] = "float" defs["structs"]["ImFontConfig"][17] = {} -defs["structs"]["ImFontConfig"][17]["name"] = "EllipsisChar" -defs["structs"]["ImFontConfig"][17]["type"] = "ImWchar" +defs["structs"]["ImFontConfig"][17]["name"] = "RasterizerDensity" +defs["structs"]["ImFontConfig"][17]["type"] = "float" defs["structs"]["ImFontConfig"][18] = {} -defs["structs"]["ImFontConfig"][18]["name"] = "Name[40]" -defs["structs"]["ImFontConfig"][18]["size"] = 40 -defs["structs"]["ImFontConfig"][18]["type"] = "char" +defs["structs"]["ImFontConfig"][18]["name"] = "EllipsisChar" +defs["structs"]["ImFontConfig"][18]["type"] = "ImWchar" defs["structs"]["ImFontConfig"][19] = {} -defs["structs"]["ImFontConfig"][19]["name"] = "DstFont" -defs["structs"]["ImFontConfig"][19]["type"] = "ImFont*" +defs["structs"]["ImFontConfig"][19]["name"] = "Name[40]" +defs["structs"]["ImFontConfig"][19]["size"] = 40 +defs["structs"]["ImFontConfig"][19]["type"] = "char" +defs["structs"]["ImFontConfig"][20] = {} +defs["structs"]["ImFontConfig"][20]["name"] = "DstFont" +defs["structs"]["ImFontConfig"][20]["type"] = "ImFont*" defs["structs"]["ImFontGlyph"] = {} defs["structs"]["ImFontGlyph"][1] = {} defs["structs"]["ImFontGlyph"][1]["bitfield"] = "1" @@ -2882,100 +3221,100 @@ defs["structs"]["ImGuiIO"][7] = {} defs["structs"]["ImGuiIO"][7]["name"] = "LogFilename" defs["structs"]["ImGuiIO"][7]["type"] = "const char*" defs["structs"]["ImGuiIO"][8] = {} -defs["structs"]["ImGuiIO"][8]["name"] = "MouseDoubleClickTime" -defs["structs"]["ImGuiIO"][8]["type"] = "float" +defs["structs"]["ImGuiIO"][8]["name"] = "UserData" +defs["structs"]["ImGuiIO"][8]["type"] = "void*" defs["structs"]["ImGuiIO"][9] = {} -defs["structs"]["ImGuiIO"][9]["name"] = "MouseDoubleClickMaxDist" -defs["structs"]["ImGuiIO"][9]["type"] = "float" +defs["structs"]["ImGuiIO"][9]["name"] = "Fonts" +defs["structs"]["ImGuiIO"][9]["type"] = "ImFontAtlas*" defs["structs"]["ImGuiIO"][10] = {} -defs["structs"]["ImGuiIO"][10]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][10]["name"] = "FontGlobalScale" defs["structs"]["ImGuiIO"][10]["type"] = "float" defs["structs"]["ImGuiIO"][11] = {} -defs["structs"]["ImGuiIO"][11]["name"] = "KeyRepeatDelay" -defs["structs"]["ImGuiIO"][11]["type"] = "float" +defs["structs"]["ImGuiIO"][11]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][11]["type"] = "bool" defs["structs"]["ImGuiIO"][12] = {} -defs["structs"]["ImGuiIO"][12]["name"] = "KeyRepeatRate" -defs["structs"]["ImGuiIO"][12]["type"] = "float" +defs["structs"]["ImGuiIO"][12]["name"] = "FontDefault" +defs["structs"]["ImGuiIO"][12]["type"] = "ImFont*" defs["structs"]["ImGuiIO"][13] = {} -defs["structs"]["ImGuiIO"][13]["name"] = "HoverDelayNormal" -defs["structs"]["ImGuiIO"][13]["type"] = "float" +defs["structs"]["ImGuiIO"][13]["name"] = "DisplayFramebufferScale" +defs["structs"]["ImGuiIO"][13]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][14] = {} -defs["structs"]["ImGuiIO"][14]["name"] = "HoverDelayShort" -defs["structs"]["ImGuiIO"][14]["type"] = "float" +defs["structs"]["ImGuiIO"][14]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][14]["type"] = "bool" defs["structs"]["ImGuiIO"][15] = {} -defs["structs"]["ImGuiIO"][15]["name"] = "UserData" -defs["structs"]["ImGuiIO"][15]["type"] = "void*" +defs["structs"]["ImGuiIO"][15]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][15]["type"] = "bool" defs["structs"]["ImGuiIO"][16] = {} -defs["structs"]["ImGuiIO"][16]["name"] = "Fonts" -defs["structs"]["ImGuiIO"][16]["type"] = "ImFontAtlas*" +defs["structs"]["ImGuiIO"][16]["name"] = "ConfigNavSwapGamepadButtons" +defs["structs"]["ImGuiIO"][16]["type"] = "bool" defs["structs"]["ImGuiIO"][17] = {} -defs["structs"]["ImGuiIO"][17]["name"] = "FontGlobalScale" -defs["structs"]["ImGuiIO"][17]["type"] = "float" +defs["structs"]["ImGuiIO"][17]["name"] = "ConfigInputTrickleEventQueue" +defs["structs"]["ImGuiIO"][17]["type"] = "bool" defs["structs"]["ImGuiIO"][18] = {} -defs["structs"]["ImGuiIO"][18]["name"] = "FontAllowUserScaling" +defs["structs"]["ImGuiIO"][18]["name"] = "ConfigInputTextCursorBlink" defs["structs"]["ImGuiIO"][18]["type"] = "bool" defs["structs"]["ImGuiIO"][19] = {} -defs["structs"]["ImGuiIO"][19]["name"] = "FontDefault" -defs["structs"]["ImGuiIO"][19]["type"] = "ImFont*" +defs["structs"]["ImGuiIO"][19]["name"] = "ConfigInputTextEnterKeepActive" +defs["structs"]["ImGuiIO"][19]["type"] = "bool" defs["structs"]["ImGuiIO"][20] = {} -defs["structs"]["ImGuiIO"][20]["name"] = "DisplayFramebufferScale" -defs["structs"]["ImGuiIO"][20]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][20]["name"] = "ConfigDragClickToInputText" +defs["structs"]["ImGuiIO"][20]["type"] = "bool" defs["structs"]["ImGuiIO"][21] = {} -defs["structs"]["ImGuiIO"][21]["name"] = "MouseDrawCursor" +defs["structs"]["ImGuiIO"][21]["name"] = "ConfigWindowsResizeFromEdges" defs["structs"]["ImGuiIO"][21]["type"] = "bool" defs["structs"]["ImGuiIO"][22] = {} -defs["structs"]["ImGuiIO"][22]["name"] = "ConfigMacOSXBehaviors" +defs["structs"]["ImGuiIO"][22]["name"] = "ConfigWindowsMoveFromTitleBarOnly" defs["structs"]["ImGuiIO"][22]["type"] = "bool" defs["structs"]["ImGuiIO"][23] = {} -defs["structs"]["ImGuiIO"][23]["name"] = "ConfigInputTrickleEventQueue" -defs["structs"]["ImGuiIO"][23]["type"] = "bool" +defs["structs"]["ImGuiIO"][23]["name"] = "ConfigMemoryCompactTimer" +defs["structs"]["ImGuiIO"][23]["type"] = "float" defs["structs"]["ImGuiIO"][24] = {} -defs["structs"]["ImGuiIO"][24]["name"] = "ConfigInputTextCursorBlink" -defs["structs"]["ImGuiIO"][24]["type"] = "bool" +defs["structs"]["ImGuiIO"][24]["name"] = "MouseDoubleClickTime" +defs["structs"]["ImGuiIO"][24]["type"] = "float" defs["structs"]["ImGuiIO"][25] = {} -defs["structs"]["ImGuiIO"][25]["name"] = "ConfigInputTextEnterKeepActive" -defs["structs"]["ImGuiIO"][25]["type"] = "bool" +defs["structs"]["ImGuiIO"][25]["name"] = "MouseDoubleClickMaxDist" +defs["structs"]["ImGuiIO"][25]["type"] = "float" defs["structs"]["ImGuiIO"][26] = {} -defs["structs"]["ImGuiIO"][26]["name"] = "ConfigDragClickToInputText" -defs["structs"]["ImGuiIO"][26]["type"] = "bool" +defs["structs"]["ImGuiIO"][26]["name"] = "MouseDragThreshold" +defs["structs"]["ImGuiIO"][26]["type"] = "float" defs["structs"]["ImGuiIO"][27] = {} -defs["structs"]["ImGuiIO"][27]["name"] = "ConfigWindowsResizeFromEdges" -defs["structs"]["ImGuiIO"][27]["type"] = "bool" +defs["structs"]["ImGuiIO"][27]["name"] = "KeyRepeatDelay" +defs["structs"]["ImGuiIO"][27]["type"] = "float" defs["structs"]["ImGuiIO"][28] = {} -defs["structs"]["ImGuiIO"][28]["name"] = "ConfigWindowsMoveFromTitleBarOnly" -defs["structs"]["ImGuiIO"][28]["type"] = "bool" +defs["structs"]["ImGuiIO"][28]["name"] = "KeyRepeatRate" +defs["structs"]["ImGuiIO"][28]["type"] = "float" defs["structs"]["ImGuiIO"][29] = {} -defs["structs"]["ImGuiIO"][29]["name"] = "ConfigMemoryCompactTimer" -defs["structs"]["ImGuiIO"][29]["type"] = "float" +defs["structs"]["ImGuiIO"][29]["name"] = "ConfigDebugIsDebuggerPresent" +defs["structs"]["ImGuiIO"][29]["type"] = "bool" defs["structs"]["ImGuiIO"][30] = {} -defs["structs"]["ImGuiIO"][30]["name"] = "BackendPlatformName" -defs["structs"]["ImGuiIO"][30]["type"] = "const char*" +defs["structs"]["ImGuiIO"][30]["name"] = "ConfigDebugHighlightIdConflicts" +defs["structs"]["ImGuiIO"][30]["type"] = "bool" defs["structs"]["ImGuiIO"][31] = {} -defs["structs"]["ImGuiIO"][31]["name"] = "BackendRendererName" -defs["structs"]["ImGuiIO"][31]["type"] = "const char*" +defs["structs"]["ImGuiIO"][31]["name"] = "ConfigDebugBeginReturnValueOnce" +defs["structs"]["ImGuiIO"][31]["type"] = "bool" defs["structs"]["ImGuiIO"][32] = {} -defs["structs"]["ImGuiIO"][32]["name"] = "BackendPlatformUserData" -defs["structs"]["ImGuiIO"][32]["type"] = "void*" +defs["structs"]["ImGuiIO"][32]["name"] = "ConfigDebugBeginReturnValueLoop" +defs["structs"]["ImGuiIO"][32]["type"] = "bool" defs["structs"]["ImGuiIO"][33] = {} -defs["structs"]["ImGuiIO"][33]["name"] = "BackendRendererUserData" -defs["structs"]["ImGuiIO"][33]["type"] = "void*" +defs["structs"]["ImGuiIO"][33]["name"] = "ConfigDebugIgnoreFocusLoss" +defs["structs"]["ImGuiIO"][33]["type"] = "bool" defs["structs"]["ImGuiIO"][34] = {} -defs["structs"]["ImGuiIO"][34]["name"] = "BackendLanguageUserData" -defs["structs"]["ImGuiIO"][34]["type"] = "void*" +defs["structs"]["ImGuiIO"][34]["name"] = "ConfigDebugIniSettings" +defs["structs"]["ImGuiIO"][34]["type"] = "bool" defs["structs"]["ImGuiIO"][35] = {} -defs["structs"]["ImGuiIO"][35]["name"] = "GetClipboardTextFn" -defs["structs"]["ImGuiIO"][35]["type"] = "const char*(*)(void* user_data)" +defs["structs"]["ImGuiIO"][35]["name"] = "BackendPlatformName" +defs["structs"]["ImGuiIO"][35]["type"] = "const char*" defs["structs"]["ImGuiIO"][36] = {} -defs["structs"]["ImGuiIO"][36]["name"] = "SetClipboardTextFn" -defs["structs"]["ImGuiIO"][36]["type"] = "void(*)(void* user_data,const char* text)" +defs["structs"]["ImGuiIO"][36]["name"] = "BackendRendererName" +defs["structs"]["ImGuiIO"][36]["type"] = "const char*" defs["structs"]["ImGuiIO"][37] = {} -defs["structs"]["ImGuiIO"][37]["name"] = "ClipboardUserData" +defs["structs"]["ImGuiIO"][37]["name"] = "BackendPlatformUserData" defs["structs"]["ImGuiIO"][37]["type"] = "void*" defs["structs"]["ImGuiIO"][38] = {} -defs["structs"]["ImGuiIO"][38]["name"] = "SetPlatformImeDataFn" -defs["structs"]["ImGuiIO"][38]["type"] = "void(*)(ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiIO"][38]["name"] = "BackendRendererUserData" +defs["structs"]["ImGuiIO"][38]["type"] = "void*" defs["structs"]["ImGuiIO"][39] = {} -defs["structs"]["ImGuiIO"][39]["name"] = "_UnusedPadding" +defs["structs"]["ImGuiIO"][39]["name"] = "BackendLanguageUserData" defs["structs"]["ImGuiIO"][39]["type"] = "void*" defs["structs"]["ImGuiIO"][40] = {} defs["structs"]["ImGuiIO"][40]["name"] = "WantCaptureMouse" @@ -3014,96 +3353,93 @@ defs["structs"]["ImGuiIO"][51] = {} defs["structs"]["ImGuiIO"][51]["name"] = "MetricsActiveWindows" defs["structs"]["ImGuiIO"][51]["type"] = "int" defs["structs"]["ImGuiIO"][52] = {} -defs["structs"]["ImGuiIO"][52]["name"] = "MetricsActiveAllocations" -defs["structs"]["ImGuiIO"][52]["type"] = "int" +defs["structs"]["ImGuiIO"][52]["name"] = "MouseDelta" +defs["structs"]["ImGuiIO"][52]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][53] = {} -defs["structs"]["ImGuiIO"][53]["name"] = "MouseDelta" -defs["structs"]["ImGuiIO"][53]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][53]["name"] = "Ctx" +defs["structs"]["ImGuiIO"][53]["type"] = "ImGuiContext*" defs["structs"]["ImGuiIO"][54] = {} -defs["structs"]["ImGuiIO"][54]["name"] = "KeyMap[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][54]["size"] = 652 -defs["structs"]["ImGuiIO"][54]["type"] = "int" +defs["structs"]["ImGuiIO"][54]["name"] = "MousePos" +defs["structs"]["ImGuiIO"][54]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][55] = {} -defs["structs"]["ImGuiIO"][55]["name"] = "KeysDown[ImGuiKey_COUNT]" -defs["structs"]["ImGuiIO"][55]["size"] = 652 +defs["structs"]["ImGuiIO"][55]["name"] = "MouseDown[5]" +defs["structs"]["ImGuiIO"][55]["size"] = 5 defs["structs"]["ImGuiIO"][55]["type"] = "bool" defs["structs"]["ImGuiIO"][56] = {} -defs["structs"]["ImGuiIO"][56]["name"] = "NavInputs[ImGuiNavInput_COUNT]" -defs["structs"]["ImGuiIO"][56]["size"] = 16 +defs["structs"]["ImGuiIO"][56]["name"] = "MouseWheel" defs["structs"]["ImGuiIO"][56]["type"] = "float" defs["structs"]["ImGuiIO"][57] = {} -defs["structs"]["ImGuiIO"][57]["name"] = "MousePos" -defs["structs"]["ImGuiIO"][57]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][57]["name"] = "MouseWheelH" +defs["structs"]["ImGuiIO"][57]["type"] = "float" defs["structs"]["ImGuiIO"][58] = {} -defs["structs"]["ImGuiIO"][58]["name"] = "MouseDown[5]" -defs["structs"]["ImGuiIO"][58]["size"] = 5 -defs["structs"]["ImGuiIO"][58]["type"] = "bool" +defs["structs"]["ImGuiIO"][58]["name"] = "MouseSource" +defs["structs"]["ImGuiIO"][58]["type"] = "ImGuiMouseSource" defs["structs"]["ImGuiIO"][59] = {} -defs["structs"]["ImGuiIO"][59]["name"] = "MouseWheel" -defs["structs"]["ImGuiIO"][59]["type"] = "float" +defs["structs"]["ImGuiIO"][59]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][59]["type"] = "bool" defs["structs"]["ImGuiIO"][60] = {} -defs["structs"]["ImGuiIO"][60]["name"] = "MouseWheelH" -defs["structs"]["ImGuiIO"][60]["type"] = "float" +defs["structs"]["ImGuiIO"][60]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][60]["type"] = "bool" defs["structs"]["ImGuiIO"][61] = {} -defs["structs"]["ImGuiIO"][61]["name"] = "KeyCtrl" +defs["structs"]["ImGuiIO"][61]["name"] = "KeyAlt" defs["structs"]["ImGuiIO"][61]["type"] = "bool" defs["structs"]["ImGuiIO"][62] = {} -defs["structs"]["ImGuiIO"][62]["name"] = "KeyShift" +defs["structs"]["ImGuiIO"][62]["name"] = "KeySuper" defs["structs"]["ImGuiIO"][62]["type"] = "bool" defs["structs"]["ImGuiIO"][63] = {} -defs["structs"]["ImGuiIO"][63]["name"] = "KeyAlt" -defs["structs"]["ImGuiIO"][63]["type"] = "bool" +defs["structs"]["ImGuiIO"][63]["name"] = "KeyMods" +defs["structs"]["ImGuiIO"][63]["type"] = "ImGuiKeyChord" defs["structs"]["ImGuiIO"][64] = {} -defs["structs"]["ImGuiIO"][64]["name"] = "KeySuper" -defs["structs"]["ImGuiIO"][64]["type"] = "bool" +defs["structs"]["ImGuiIO"][64]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" +defs["structs"]["ImGuiIO"][64]["size"] = 154 +defs["structs"]["ImGuiIO"][64]["type"] = "ImGuiKeyData" defs["structs"]["ImGuiIO"][65] = {} -defs["structs"]["ImGuiIO"][65]["name"] = "KeyMods" -defs["structs"]["ImGuiIO"][65]["type"] = "ImGuiKeyChord" +defs["structs"]["ImGuiIO"][65]["name"] = "WantCaptureMouseUnlessPopupClose" +defs["structs"]["ImGuiIO"][65]["type"] = "bool" defs["structs"]["ImGuiIO"][66] = {} -defs["structs"]["ImGuiIO"][66]["name"] = "KeysData[ImGuiKey_KeysData_SIZE]" -defs["structs"]["ImGuiIO"][66]["size"] = 652 -defs["structs"]["ImGuiIO"][66]["type"] = "ImGuiKeyData" +defs["structs"]["ImGuiIO"][66]["name"] = "MousePosPrev" +defs["structs"]["ImGuiIO"][66]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][67] = {} -defs["structs"]["ImGuiIO"][67]["name"] = "WantCaptureMouseUnlessPopupClose" -defs["structs"]["ImGuiIO"][67]["type"] = "bool" +defs["structs"]["ImGuiIO"][67]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][67]["size"] = 5 +defs["structs"]["ImGuiIO"][67]["type"] = "ImVec2" defs["structs"]["ImGuiIO"][68] = {} -defs["structs"]["ImGuiIO"][68]["name"] = "MousePosPrev" -defs["structs"]["ImGuiIO"][68]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][68]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][68]["size"] = 5 +defs["structs"]["ImGuiIO"][68]["type"] = "double" defs["structs"]["ImGuiIO"][69] = {} -defs["structs"]["ImGuiIO"][69]["name"] = "MouseClickedPos[5]" +defs["structs"]["ImGuiIO"][69]["name"] = "MouseClicked[5]" defs["structs"]["ImGuiIO"][69]["size"] = 5 -defs["structs"]["ImGuiIO"][69]["type"] = "ImVec2" +defs["structs"]["ImGuiIO"][69]["type"] = "bool" defs["structs"]["ImGuiIO"][70] = {} -defs["structs"]["ImGuiIO"][70]["name"] = "MouseClickedTime[5]" +defs["structs"]["ImGuiIO"][70]["name"] = "MouseDoubleClicked[5]" defs["structs"]["ImGuiIO"][70]["size"] = 5 -defs["structs"]["ImGuiIO"][70]["type"] = "double" +defs["structs"]["ImGuiIO"][70]["type"] = "bool" defs["structs"]["ImGuiIO"][71] = {} -defs["structs"]["ImGuiIO"][71]["name"] = "MouseClicked[5]" +defs["structs"]["ImGuiIO"][71]["name"] = "MouseClickedCount[5]" defs["structs"]["ImGuiIO"][71]["size"] = 5 -defs["structs"]["ImGuiIO"][71]["type"] = "bool" +defs["structs"]["ImGuiIO"][71]["type"] = "ImU16" defs["structs"]["ImGuiIO"][72] = {} -defs["structs"]["ImGuiIO"][72]["name"] = "MouseDoubleClicked[5]" +defs["structs"]["ImGuiIO"][72]["name"] = "MouseClickedLastCount[5]" defs["structs"]["ImGuiIO"][72]["size"] = 5 -defs["structs"]["ImGuiIO"][72]["type"] = "bool" +defs["structs"]["ImGuiIO"][72]["type"] = "ImU16" defs["structs"]["ImGuiIO"][73] = {} -defs["structs"]["ImGuiIO"][73]["name"] = "MouseClickedCount[5]" +defs["structs"]["ImGuiIO"][73]["name"] = "MouseReleased[5]" defs["structs"]["ImGuiIO"][73]["size"] = 5 -defs["structs"]["ImGuiIO"][73]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][73]["type"] = "bool" defs["structs"]["ImGuiIO"][74] = {} -defs["structs"]["ImGuiIO"][74]["name"] = "MouseClickedLastCount[5]" +defs["structs"]["ImGuiIO"][74]["name"] = "MouseDownOwned[5]" defs["structs"]["ImGuiIO"][74]["size"] = 5 -defs["structs"]["ImGuiIO"][74]["type"] = "ImU16" +defs["structs"]["ImGuiIO"][74]["type"] = "bool" defs["structs"]["ImGuiIO"][75] = {} -defs["structs"]["ImGuiIO"][75]["name"] = "MouseReleased[5]" +defs["structs"]["ImGuiIO"][75]["name"] = "MouseDownOwnedUnlessPopupClose[5]" defs["structs"]["ImGuiIO"][75]["size"] = 5 defs["structs"]["ImGuiIO"][75]["type"] = "bool" defs["structs"]["ImGuiIO"][76] = {} -defs["structs"]["ImGuiIO"][76]["name"] = "MouseDownOwned[5]" -defs["structs"]["ImGuiIO"][76]["size"] = 5 +defs["structs"]["ImGuiIO"][76]["name"] = "MouseWheelRequestAxisSwap" defs["structs"]["ImGuiIO"][76]["type"] = "bool" defs["structs"]["ImGuiIO"][77] = {} -defs["structs"]["ImGuiIO"][77]["name"] = "MouseDownOwnedUnlessPopupClose[5]" -defs["structs"]["ImGuiIO"][77]["size"] = 5 +defs["structs"]["ImGuiIO"][77]["name"] = "MouseCtrlLeftAsRightClick" defs["structs"]["ImGuiIO"][77]["type"] = "bool" defs["structs"]["ImGuiIO"][78] = {} defs["structs"]["ImGuiIO"][78]["name"] = "MouseDownDuration[5]" @@ -3141,41 +3477,44 @@ defs["structs"]["ImGuiIO"][87]["template_type"] = "ImWchar" defs["structs"]["ImGuiIO"][87]["type"] = "ImVector_ImWchar" defs["structs"]["ImGuiInputTextCallbackData"] = {} defs["structs"]["ImGuiInputTextCallbackData"][1] = {} -defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "EventFlag" -defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiInputTextFlags" +defs["structs"]["ImGuiInputTextCallbackData"][1]["name"] = "Ctx" +defs["structs"]["ImGuiInputTextCallbackData"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiInputTextCallbackData"][2] = {} -defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][2]["name"] = "EventFlag" defs["structs"]["ImGuiInputTextCallbackData"][2]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][3] = {} -defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "UserData" -defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "void*" +defs["structs"]["ImGuiInputTextCallbackData"][3]["name"] = "Flags" +defs["structs"]["ImGuiInputTextCallbackData"][3]["type"] = "ImGuiInputTextFlags" defs["structs"]["ImGuiInputTextCallbackData"][4] = {} -defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "EventChar" -defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "ImWchar" +defs["structs"]["ImGuiInputTextCallbackData"][4]["name"] = "UserData" +defs["structs"]["ImGuiInputTextCallbackData"][4]["type"] = "void*" defs["structs"]["ImGuiInputTextCallbackData"][5] = {} -defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventKey" -defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImGuiKey" +defs["structs"]["ImGuiInputTextCallbackData"][5]["name"] = "EventChar" +defs["structs"]["ImGuiInputTextCallbackData"][5]["type"] = "ImWchar" defs["structs"]["ImGuiInputTextCallbackData"][6] = {} -defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "Buf" -defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "char*" +defs["structs"]["ImGuiInputTextCallbackData"][6]["name"] = "EventKey" +defs["structs"]["ImGuiInputTextCallbackData"][6]["type"] = "ImGuiKey" defs["structs"]["ImGuiInputTextCallbackData"][7] = {} -defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "BufTextLen" -defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][7]["name"] = "Buf" +defs["structs"]["ImGuiInputTextCallbackData"][7]["type"] = "char*" defs["structs"]["ImGuiInputTextCallbackData"][8] = {} -defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][8]["name"] = "BufTextLen" defs["structs"]["ImGuiInputTextCallbackData"][8]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][9] = {} -defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufDirty" -defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "bool" +defs["structs"]["ImGuiInputTextCallbackData"][9]["name"] = "BufSize" +defs["structs"]["ImGuiInputTextCallbackData"][9]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][10] = {} -defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "CursorPos" -defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][10]["name"] = "BufDirty" +defs["structs"]["ImGuiInputTextCallbackData"][10]["type"] = "bool" defs["structs"]["ImGuiInputTextCallbackData"][11] = {} -defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "SelectionStart" +defs["structs"]["ImGuiInputTextCallbackData"][11]["name"] = "CursorPos" defs["structs"]["ImGuiInputTextCallbackData"][11]["type"] = "int" defs["structs"]["ImGuiInputTextCallbackData"][12] = {} -defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][12]["name"] = "SelectionStart" defs["structs"]["ImGuiInputTextCallbackData"][12]["type"] = "int" +defs["structs"]["ImGuiInputTextCallbackData"][13] = {} +defs["structs"]["ImGuiInputTextCallbackData"][13]["name"] = "SelectionEnd" +defs["structs"]["ImGuiInputTextCallbackData"][13]["type"] = "int" defs["structs"]["ImGuiKeyData"] = {} defs["structs"]["ImGuiKeyData"][1] = {} defs["structs"]["ImGuiKeyData"][1]["name"] = "Down" @@ -3191,23 +3530,49 @@ defs["structs"]["ImGuiKeyData"][4]["name"] = "AnalogValue" defs["structs"]["ImGuiKeyData"][4]["type"] = "float" defs["structs"]["ImGuiListClipper"] = {} defs["structs"]["ImGuiListClipper"][1] = {} -defs["structs"]["ImGuiListClipper"][1]["name"] = "DisplayStart" -defs["structs"]["ImGuiListClipper"][1]["type"] = "int" +defs["structs"]["ImGuiListClipper"][1]["name"] = "Ctx" +defs["structs"]["ImGuiListClipper"][1]["type"] = "ImGuiContext*" defs["structs"]["ImGuiListClipper"][2] = {} -defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayEnd" +defs["structs"]["ImGuiListClipper"][2]["name"] = "DisplayStart" defs["structs"]["ImGuiListClipper"][2]["type"] = "int" defs["structs"]["ImGuiListClipper"][3] = {} -defs["structs"]["ImGuiListClipper"][3]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][3]["name"] = "DisplayEnd" defs["structs"]["ImGuiListClipper"][3]["type"] = "int" defs["structs"]["ImGuiListClipper"][4] = {} -defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsHeight" -defs["structs"]["ImGuiListClipper"][4]["type"] = "float" +defs["structs"]["ImGuiListClipper"][4]["name"] = "ItemsCount" +defs["structs"]["ImGuiListClipper"][4]["type"] = "int" defs["structs"]["ImGuiListClipper"][5] = {} -defs["structs"]["ImGuiListClipper"][5]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][5]["name"] = "ItemsHeight" defs["structs"]["ImGuiListClipper"][5]["type"] = "float" defs["structs"]["ImGuiListClipper"][6] = {} -defs["structs"]["ImGuiListClipper"][6]["name"] = "TempData" -defs["structs"]["ImGuiListClipper"][6]["type"] = "void*" +defs["structs"]["ImGuiListClipper"][6]["name"] = "StartPosY" +defs["structs"]["ImGuiListClipper"][6]["type"] = "float" +defs["structs"]["ImGuiListClipper"][7] = {} +defs["structs"]["ImGuiListClipper"][7]["name"] = "StartSeekOffsetY" +defs["structs"]["ImGuiListClipper"][7]["type"] = "double" +defs["structs"]["ImGuiListClipper"][8] = {} +defs["structs"]["ImGuiListClipper"][8]["name"] = "TempData" +defs["structs"]["ImGuiListClipper"][8]["type"] = "void*" +defs["structs"]["ImGuiMultiSelectIO"] = {} +defs["structs"]["ImGuiMultiSelectIO"][1] = {} +defs["structs"]["ImGuiMultiSelectIO"][1]["name"] = "Requests" +defs["structs"]["ImGuiMultiSelectIO"][1]["template_type"] = "ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][1]["type"] = "ImVector_ImGuiSelectionRequest" +defs["structs"]["ImGuiMultiSelectIO"][2] = {} +defs["structs"]["ImGuiMultiSelectIO"][2]["name"] = "RangeSrcItem" +defs["structs"]["ImGuiMultiSelectIO"][2]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][3] = {} +defs["structs"]["ImGuiMultiSelectIO"][3]["name"] = "NavIdItem" +defs["structs"]["ImGuiMultiSelectIO"][3]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiMultiSelectIO"][4] = {} +defs["structs"]["ImGuiMultiSelectIO"][4]["name"] = "NavIdSelected" +defs["structs"]["ImGuiMultiSelectIO"][4]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][5] = {} +defs["structs"]["ImGuiMultiSelectIO"][5]["name"] = "RangeSrcReset" +defs["structs"]["ImGuiMultiSelectIO"][5]["type"] = "bool" +defs["structs"]["ImGuiMultiSelectIO"][6] = {} +defs["structs"]["ImGuiMultiSelectIO"][6]["name"] = "ItemsCount" +defs["structs"]["ImGuiMultiSelectIO"][6]["type"] = "int" defs["structs"]["ImGuiOnceUponAFrame"] = {} defs["structs"]["ImGuiOnceUponAFrame"][1] = {} defs["structs"]["ImGuiOnceUponAFrame"][1]["name"] = "RefFrame" @@ -3238,6 +3603,31 @@ defs["structs"]["ImGuiPayload"][7]["type"] = "bool" defs["structs"]["ImGuiPayload"][8] = {} defs["structs"]["ImGuiPayload"][8]["name"] = "Delivery" defs["structs"]["ImGuiPayload"][8]["type"] = "bool" +defs["structs"]["ImGuiPlatformIO"] = {} +defs["structs"]["ImGuiPlatformIO"][1] = {} +defs["structs"]["ImGuiPlatformIO"][1]["name"] = "Platform_GetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][1]["type"] = "const char*(*)(ImGuiContext* ctx)" +defs["structs"]["ImGuiPlatformIO"][2] = {} +defs["structs"]["ImGuiPlatformIO"][2]["name"] = "Platform_SetClipboardTextFn" +defs["structs"]["ImGuiPlatformIO"][2]["type"] = "void(*)(ImGuiContext* ctx,const char* text)" +defs["structs"]["ImGuiPlatformIO"][3] = {} +defs["structs"]["ImGuiPlatformIO"][3]["name"] = "Platform_ClipboardUserData" +defs["structs"]["ImGuiPlatformIO"][3]["type"] = "void*" +defs["structs"]["ImGuiPlatformIO"][4] = {} +defs["structs"]["ImGuiPlatformIO"][4]["name"] = "Platform_OpenInShellFn" +defs["structs"]["ImGuiPlatformIO"][4]["type"] = "bool(*)(ImGuiContext* ctx,const char* path)" +defs["structs"]["ImGuiPlatformIO"][5] = {} +defs["structs"]["ImGuiPlatformIO"][5]["name"] = "Platform_OpenInShellUserData" +defs["structs"]["ImGuiPlatformIO"][5]["type"] = "void*" +defs["structs"]["ImGuiPlatformIO"][6] = {} +defs["structs"]["ImGuiPlatformIO"][6]["name"] = "Platform_SetImeDataFn" +defs["structs"]["ImGuiPlatformIO"][6]["type"] = "void(*)(ImGuiContext* ctx,ImGuiViewport* viewport,ImGuiPlatformImeData* data)" +defs["structs"]["ImGuiPlatformIO"][7] = {} +defs["structs"]["ImGuiPlatformIO"][7]["name"] = "Platform_ImeUserData" +defs["structs"]["ImGuiPlatformIO"][7]["type"] = "void*" +defs["structs"]["ImGuiPlatformIO"][8] = {} +defs["structs"]["ImGuiPlatformIO"][8]["name"] = "Platform_LocaleDecimalPoint" +defs["structs"]["ImGuiPlatformIO"][8]["type"] = "ImWchar" defs["structs"]["ImGuiPlatformImeData"] = {} defs["structs"]["ImGuiPlatformImeData"][1] = {} defs["structs"]["ImGuiPlatformImeData"][1]["name"] = "WantVisible" @@ -3248,6 +3638,48 @@ defs["structs"]["ImGuiPlatformImeData"][2]["type"] = "ImVec2" defs["structs"]["ImGuiPlatformImeData"][3] = {} defs["structs"]["ImGuiPlatformImeData"][3]["name"] = "InputLineHeight" defs["structs"]["ImGuiPlatformImeData"][3]["type"] = "float" +defs["structs"]["ImGuiSelectionBasicStorage"] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][1]["name"] = "Size" +defs["structs"]["ImGuiSelectionBasicStorage"][1]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][2] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][2]["name"] = "PreserveOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionBasicStorage"][3] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][3]["name"] = "UserData" +defs["structs"]["ImGuiSelectionBasicStorage"][3]["type"] = "void*" +defs["structs"]["ImGuiSelectionBasicStorage"][4] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][4]["name"] = "AdapterIndexToStorageId" +defs["structs"]["ImGuiSelectionBasicStorage"][4]["type"] = "ImGuiID(*)(ImGuiSelectionBasicStorage* self,int idx)" +defs["structs"]["ImGuiSelectionBasicStorage"][5] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][5]["name"] = "_SelectionOrder" +defs["structs"]["ImGuiSelectionBasicStorage"][5]["type"] = "int" +defs["structs"]["ImGuiSelectionBasicStorage"][6] = {} +defs["structs"]["ImGuiSelectionBasicStorage"][6]["name"] = "_Storage" +defs["structs"]["ImGuiSelectionBasicStorage"][6]["type"] = "ImGuiStorage" +defs["structs"]["ImGuiSelectionExternalStorage"] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][1]["name"] = "UserData" +defs["structs"]["ImGuiSelectionExternalStorage"][1]["type"] = "void*" +defs["structs"]["ImGuiSelectionExternalStorage"][2] = {} +defs["structs"]["ImGuiSelectionExternalStorage"][2]["name"] = "AdapterSetItemSelected" +defs["structs"]["ImGuiSelectionExternalStorage"][2]["type"] = "void(*)(ImGuiSelectionExternalStorage* self,int idx,bool selected)" +defs["structs"]["ImGuiSelectionRequest"] = {} +defs["structs"]["ImGuiSelectionRequest"][1] = {} +defs["structs"]["ImGuiSelectionRequest"][1]["name"] = "Type" +defs["structs"]["ImGuiSelectionRequest"][1]["type"] = "ImGuiSelectionRequestType" +defs["structs"]["ImGuiSelectionRequest"][2] = {} +defs["structs"]["ImGuiSelectionRequest"][2]["name"] = "Selected" +defs["structs"]["ImGuiSelectionRequest"][2]["type"] = "bool" +defs["structs"]["ImGuiSelectionRequest"][3] = {} +defs["structs"]["ImGuiSelectionRequest"][3]["name"] = "RangeDirection" +defs["structs"]["ImGuiSelectionRequest"][3]["type"] = "ImS8" +defs["structs"]["ImGuiSelectionRequest"][4] = {} +defs["structs"]["ImGuiSelectionRequest"][4]["name"] = "RangeFirstItem" +defs["structs"]["ImGuiSelectionRequest"][4]["type"] = "ImGuiSelectionUserData" +defs["structs"]["ImGuiSelectionRequest"][5] = {} +defs["structs"]["ImGuiSelectionRequest"][5]["name"] = "RangeLastItem" +defs["structs"]["ImGuiSelectionRequest"][5]["type"] = "ImGuiSelectionUserData" defs["structs"]["ImGuiSizeCallbackData"] = {} defs["structs"]["ImGuiSizeCallbackData"][1] = {} defs["structs"]["ImGuiSizeCallbackData"][1]["name"] = "UserData" @@ -3362,42 +3794,78 @@ defs["structs"]["ImGuiStyle"][29] = {} defs["structs"]["ImGuiStyle"][29]["name"] = "TabMinWidthForCloseButton" defs["structs"]["ImGuiStyle"][29]["type"] = "float" defs["structs"]["ImGuiStyle"][30] = {} -defs["structs"]["ImGuiStyle"][30]["name"] = "ColorButtonPosition" -defs["structs"]["ImGuiStyle"][30]["type"] = "ImGuiDir" +defs["structs"]["ImGuiStyle"][30]["name"] = "TabBarBorderSize" +defs["structs"]["ImGuiStyle"][30]["type"] = "float" defs["structs"]["ImGuiStyle"][31] = {} -defs["structs"]["ImGuiStyle"][31]["name"] = "ButtonTextAlign" -defs["structs"]["ImGuiStyle"][31]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][31]["name"] = "TabBarOverlineSize" +defs["structs"]["ImGuiStyle"][31]["type"] = "float" defs["structs"]["ImGuiStyle"][32] = {} -defs["structs"]["ImGuiStyle"][32]["name"] = "SelectableTextAlign" -defs["structs"]["ImGuiStyle"][32]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][32]["name"] = "TableAngledHeadersAngle" +defs["structs"]["ImGuiStyle"][32]["type"] = "float" defs["structs"]["ImGuiStyle"][33] = {} -defs["structs"]["ImGuiStyle"][33]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][33]["name"] = "TableAngledHeadersTextAlign" defs["structs"]["ImGuiStyle"][33]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][34] = {} -defs["structs"]["ImGuiStyle"][34]["name"] = "DisplaySafeAreaPadding" -defs["structs"]["ImGuiStyle"][34]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][34]["name"] = "ColorButtonPosition" +defs["structs"]["ImGuiStyle"][34]["type"] = "ImGuiDir" defs["structs"]["ImGuiStyle"][35] = {} -defs["structs"]["ImGuiStyle"][35]["name"] = "MouseCursorScale" -defs["structs"]["ImGuiStyle"][35]["type"] = "float" +defs["structs"]["ImGuiStyle"][35]["name"] = "ButtonTextAlign" +defs["structs"]["ImGuiStyle"][35]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][36] = {} -defs["structs"]["ImGuiStyle"][36]["name"] = "AntiAliasedLines" -defs["structs"]["ImGuiStyle"][36]["type"] = "bool" +defs["structs"]["ImGuiStyle"][36]["name"] = "SelectableTextAlign" +defs["structs"]["ImGuiStyle"][36]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][37] = {} -defs["structs"]["ImGuiStyle"][37]["name"] = "AntiAliasedLinesUseTex" -defs["structs"]["ImGuiStyle"][37]["type"] = "bool" +defs["structs"]["ImGuiStyle"][37]["name"] = "SeparatorTextBorderSize" +defs["structs"]["ImGuiStyle"][37]["type"] = "float" defs["structs"]["ImGuiStyle"][38] = {} -defs["structs"]["ImGuiStyle"][38]["name"] = "AntiAliasedFill" -defs["structs"]["ImGuiStyle"][38]["type"] = "bool" +defs["structs"]["ImGuiStyle"][38]["name"] = "SeparatorTextAlign" +defs["structs"]["ImGuiStyle"][38]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][39] = {} -defs["structs"]["ImGuiStyle"][39]["name"] = "CurveTessellationTol" -defs["structs"]["ImGuiStyle"][39]["type"] = "float" +defs["structs"]["ImGuiStyle"][39]["name"] = "SeparatorTextPadding" +defs["structs"]["ImGuiStyle"][39]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][40] = {} -defs["structs"]["ImGuiStyle"][40]["name"] = "CircleTessellationMaxError" -defs["structs"]["ImGuiStyle"][40]["type"] = "float" +defs["structs"]["ImGuiStyle"][40]["name"] = "DisplayWindowPadding" +defs["structs"]["ImGuiStyle"][40]["type"] = "ImVec2" defs["structs"]["ImGuiStyle"][41] = {} -defs["structs"]["ImGuiStyle"][41]["name"] = "Colors[ImGuiCol_COUNT]" -defs["structs"]["ImGuiStyle"][41]["size"] = 53 -defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][41]["name"] = "DisplaySafeAreaPadding" +defs["structs"]["ImGuiStyle"][41]["type"] = "ImVec2" +defs["structs"]["ImGuiStyle"][42] = {} +defs["structs"]["ImGuiStyle"][42]["name"] = "MouseCursorScale" +defs["structs"]["ImGuiStyle"][42]["type"] = "float" +defs["structs"]["ImGuiStyle"][43] = {} +defs["structs"]["ImGuiStyle"][43]["name"] = "AntiAliasedLines" +defs["structs"]["ImGuiStyle"][43]["type"] = "bool" +defs["structs"]["ImGuiStyle"][44] = {} +defs["structs"]["ImGuiStyle"][44]["name"] = "AntiAliasedLinesUseTex" +defs["structs"]["ImGuiStyle"][44]["type"] = "bool" +defs["structs"]["ImGuiStyle"][45] = {} +defs["structs"]["ImGuiStyle"][45]["name"] = "AntiAliasedFill" +defs["structs"]["ImGuiStyle"][45]["type"] = "bool" +defs["structs"]["ImGuiStyle"][46] = {} +defs["structs"]["ImGuiStyle"][46]["name"] = "CurveTessellationTol" +defs["structs"]["ImGuiStyle"][46]["type"] = "float" +defs["structs"]["ImGuiStyle"][47] = {} +defs["structs"]["ImGuiStyle"][47]["name"] = "CircleTessellationMaxError" +defs["structs"]["ImGuiStyle"][47]["type"] = "float" +defs["structs"]["ImGuiStyle"][48] = {} +defs["structs"]["ImGuiStyle"][48]["name"] = "Colors[ImGuiCol_COUNT]" +defs["structs"]["ImGuiStyle"][48]["size"] = 56 +defs["structs"]["ImGuiStyle"][48]["type"] = "ImVec4" +defs["structs"]["ImGuiStyle"][49] = {} +defs["structs"]["ImGuiStyle"][49]["name"] = "HoverStationaryDelay" +defs["structs"]["ImGuiStyle"][49]["type"] = "float" +defs["structs"]["ImGuiStyle"][50] = {} +defs["structs"]["ImGuiStyle"][50]["name"] = "HoverDelayShort" +defs["structs"]["ImGuiStyle"][50]["type"] = "float" +defs["structs"]["ImGuiStyle"][51] = {} +defs["structs"]["ImGuiStyle"][51]["name"] = "HoverDelayNormal" +defs["structs"]["ImGuiStyle"][51]["type"] = "float" +defs["structs"]["ImGuiStyle"][52] = {} +defs["structs"]["ImGuiStyle"][52]["name"] = "HoverFlagsForTooltipMouse" +defs["structs"]["ImGuiStyle"][52]["type"] = "ImGuiHoveredFlags" +defs["structs"]["ImGuiStyle"][53] = {} +defs["structs"]["ImGuiStyle"][53]["name"] = "HoverFlagsForTooltipNav" +defs["structs"]["ImGuiStyle"][53]["type"] = "ImGuiHoveredFlags" defs["structs"]["ImGuiTableColumnSortSpecs"] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][1] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][1]["name"] = "ColumnUserID" @@ -3409,7 +3877,6 @@ defs["structs"]["ImGuiTableColumnSortSpecs"][3] = {} defs["structs"]["ImGuiTableColumnSortSpecs"][3]["name"] = "SortOrder" defs["structs"]["ImGuiTableColumnSortSpecs"][3]["type"] = "ImS16" defs["structs"]["ImGuiTableColumnSortSpecs"][4] = {} -defs["structs"]["ImGuiTableColumnSortSpecs"][4]["bitfield"] = "8" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["name"] = "SortDirection" defs["structs"]["ImGuiTableColumnSortSpecs"][4]["type"] = "ImGuiSortDirection" defs["structs"]["ImGuiTableSortSpecs"] = {} @@ -3448,23 +3915,29 @@ defs["structs"]["ImGuiTextRange"][2]["name"] = "e" defs["structs"]["ImGuiTextRange"][2]["type"] = "const char*" defs["structs"]["ImGuiViewport"] = {} defs["structs"]["ImGuiViewport"][1] = {} -defs["structs"]["ImGuiViewport"][1]["name"] = "Flags" -defs["structs"]["ImGuiViewport"][1]["type"] = "ImGuiViewportFlags" +defs["structs"]["ImGuiViewport"][1]["name"] = "ID" +defs["structs"]["ImGuiViewport"][1]["type"] = "ImGuiID" defs["structs"]["ImGuiViewport"][2] = {} -defs["structs"]["ImGuiViewport"][2]["name"] = "Pos" -defs["structs"]["ImGuiViewport"][2]["type"] = "ImVec2" +defs["structs"]["ImGuiViewport"][2]["name"] = "Flags" +defs["structs"]["ImGuiViewport"][2]["type"] = "ImGuiViewportFlags" defs["structs"]["ImGuiViewport"][3] = {} -defs["structs"]["ImGuiViewport"][3]["name"] = "Size" +defs["structs"]["ImGuiViewport"][3]["name"] = "Pos" defs["structs"]["ImGuiViewport"][3]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][4] = {} -defs["structs"]["ImGuiViewport"][4]["name"] = "WorkPos" +defs["structs"]["ImGuiViewport"][4]["name"] = "Size" defs["structs"]["ImGuiViewport"][4]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][5] = {} -defs["structs"]["ImGuiViewport"][5]["name"] = "WorkSize" +defs["structs"]["ImGuiViewport"][5]["name"] = "WorkPos" defs["structs"]["ImGuiViewport"][5]["type"] = "ImVec2" defs["structs"]["ImGuiViewport"][6] = {} -defs["structs"]["ImGuiViewport"][6]["name"] = "PlatformHandleRaw" -defs["structs"]["ImGuiViewport"][6]["type"] = "void*" +defs["structs"]["ImGuiViewport"][6]["name"] = "WorkSize" +defs["structs"]["ImGuiViewport"][6]["type"] = "ImVec2" +defs["structs"]["ImGuiViewport"][7] = {} +defs["structs"]["ImGuiViewport"][7]["name"] = "PlatformHandle" +defs["structs"]["ImGuiViewport"][7]["type"] = "void*" +defs["structs"]["ImGuiViewport"][8] = {} +defs["structs"]["ImGuiViewport"][8]["name"] = "PlatformHandleRaw" +defs["structs"]["ImGuiViewport"][8]["type"] = "void*" defs["structs"]["ImVec2"] = {} defs["structs"]["ImVec2"][1] = {} defs["structs"]["ImVec2"][1]["name"] = "x" @@ -3501,11 +3974,13 @@ defs["templates_done"]["ImVector"] = {} defs["templates_done"]["ImVector"]["ImDrawChannel"] = true defs["templates_done"]["ImVector"]["ImDrawCmd"] = true defs["templates_done"]["ImVector"]["ImDrawIdx"] = true +defs["templates_done"]["ImVector"]["ImDrawList*"] = true defs["templates_done"]["ImVector"]["ImDrawVert"] = true defs["templates_done"]["ImVector"]["ImFont*"] = true defs["templates_done"]["ImVector"]["ImFontAtlasCustomRect"] = true defs["templates_done"]["ImVector"]["ImFontConfig"] = true defs["templates_done"]["ImVector"]["ImFontGlyph"] = true +defs["templates_done"]["ImVector"]["ImGuiSelectionRequest"] = true defs["templates_done"]["ImVector"]["ImGuiStoragePair"] = true defs["templates_done"]["ImVector"]["ImGuiTextRange"] = true defs["templates_done"]["ImVector"]["ImTextureID"] = true diff --git a/imgui-sys/third-party/imgui-master/typedefs_dict.json b/imgui-sys/third-party/imgui-master/typedefs_dict.json index 9ae0cc2..0c82782 100644 --- a/imgui-sys/third-party/imgui-master/typedefs_dict.json +++ b/imgui-sys/third-party/imgui-master/typedefs_dict.json @@ -22,6 +22,7 @@ "ImFontGlyphRangesBuilder": "struct ImFontGlyphRangesBuilder", "ImGuiBackendFlags": "int", "ImGuiButtonFlags": "int", + "ImGuiChildFlags": "int", "ImGuiCol": "int", "ImGuiColorEditFlags": "int", "ImGuiComboFlags": "int", @@ -29,15 +30,16 @@ "ImGuiConfigFlags": "int", "ImGuiContext": "struct ImGuiContext", "ImGuiDataType": "int", - "ImGuiDir": "int", "ImGuiDragDropFlags": "int", "ImGuiFocusedFlags": "int", "ImGuiHoveredFlags": "int", "ImGuiID": "unsigned int", "ImGuiIO": "struct ImGuiIO", + "ImGuiInputFlags": "int", "ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);", "ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData", "ImGuiInputTextFlags": "int", + "ImGuiItemFlags": "int", "ImGuiKeyChord": "int", "ImGuiKeyData": "struct ImGuiKeyData", "ImGuiListClipper": "struct ImGuiListClipper", @@ -45,15 +47,21 @@ "ImGuiMemFreeFunc": "void(*)(void* ptr,void* user_data);", "ImGuiMouseButton": "int", "ImGuiMouseCursor": "int", + "ImGuiMultiSelectFlags": "int", + "ImGuiMultiSelectIO": "struct ImGuiMultiSelectIO", "ImGuiOnceUponAFrame": "struct ImGuiOnceUponAFrame", "ImGuiPayload": "struct ImGuiPayload", + "ImGuiPlatformIO": "struct ImGuiPlatformIO", "ImGuiPlatformImeData": "struct ImGuiPlatformImeData", "ImGuiPopupFlags": "int", "ImGuiSelectableFlags": "int", + "ImGuiSelectionBasicStorage": "struct ImGuiSelectionBasicStorage", + "ImGuiSelectionExternalStorage": "struct ImGuiSelectionExternalStorage", + "ImGuiSelectionRequest": "struct ImGuiSelectionRequest", + "ImGuiSelectionUserData": "ImS64", "ImGuiSizeCallback": "void(*)(ImGuiSizeCallbackData* data);", "ImGuiSizeCallbackData": "struct ImGuiSizeCallbackData", "ImGuiSliderFlags": "int", - "ImGuiSortDirection": "int", "ImGuiStorage": "struct ImGuiStorage", "ImGuiStoragePair": "struct ImGuiStoragePair", "ImGuiStyle": "struct ImGuiStyle", diff --git a/imgui-sys/third-party/imgui-master/typedefs_dict.lua b/imgui-sys/third-party/imgui-master/typedefs_dict.lua index 5deb107..5454cef 100644 --- a/imgui-sys/third-party/imgui-master/typedefs_dict.lua +++ b/imgui-sys/third-party/imgui-master/typedefs_dict.lua @@ -22,6 +22,7 @@ defs["ImFontGlyph"] = "struct ImFontGlyph" defs["ImFontGlyphRangesBuilder"] = "struct ImFontGlyphRangesBuilder" defs["ImGuiBackendFlags"] = "int" defs["ImGuiButtonFlags"] = "int" +defs["ImGuiChildFlags"] = "int" defs["ImGuiCol"] = "int" defs["ImGuiColorEditFlags"] = "int" defs["ImGuiComboFlags"] = "int" @@ -29,15 +30,16 @@ defs["ImGuiCond"] = "int" defs["ImGuiConfigFlags"] = "int" defs["ImGuiContext"] = "struct ImGuiContext" defs["ImGuiDataType"] = "int" -defs["ImGuiDir"] = "int" defs["ImGuiDragDropFlags"] = "int" defs["ImGuiFocusedFlags"] = "int" defs["ImGuiHoveredFlags"] = "int" defs["ImGuiID"] = "unsigned int" defs["ImGuiIO"] = "struct ImGuiIO" +defs["ImGuiInputFlags"] = "int" defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);" defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData" defs["ImGuiInputTextFlags"] = "int" +defs["ImGuiItemFlags"] = "int" defs["ImGuiKeyChord"] = "int" defs["ImGuiKeyData"] = "struct ImGuiKeyData" defs["ImGuiListClipper"] = "struct ImGuiListClipper" @@ -45,15 +47,21 @@ defs["ImGuiMemAllocFunc"] = "void*(*)(size_t sz,void* user_data);" defs["ImGuiMemFreeFunc"] = "void(*)(void* ptr,void* user_data);" defs["ImGuiMouseButton"] = "int" defs["ImGuiMouseCursor"] = "int" +defs["ImGuiMultiSelectFlags"] = "int" +defs["ImGuiMultiSelectIO"] = "struct ImGuiMultiSelectIO" defs["ImGuiOnceUponAFrame"] = "struct ImGuiOnceUponAFrame" defs["ImGuiPayload"] = "struct ImGuiPayload" +defs["ImGuiPlatformIO"] = "struct ImGuiPlatformIO" defs["ImGuiPlatformImeData"] = "struct ImGuiPlatformImeData" defs["ImGuiPopupFlags"] = "int" defs["ImGuiSelectableFlags"] = "int" +defs["ImGuiSelectionBasicStorage"] = "struct ImGuiSelectionBasicStorage" +defs["ImGuiSelectionExternalStorage"] = "struct ImGuiSelectionExternalStorage" +defs["ImGuiSelectionRequest"] = "struct ImGuiSelectionRequest" +defs["ImGuiSelectionUserData"] = "ImS64" defs["ImGuiSizeCallback"] = "void(*)(ImGuiSizeCallbackData* data);" defs["ImGuiSizeCallbackData"] = "struct ImGuiSizeCallbackData" defs["ImGuiSliderFlags"] = "int" -defs["ImGuiSortDirection"] = "int" defs["ImGuiStorage"] = "struct ImGuiStorage" defs["ImGuiStoragePair"] = "struct ImGuiStoragePair" defs["ImGuiStyle"] = "struct ImGuiStyle"