mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-22 00:18:30 +01:00
Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
481cd32543 | ||
![]() |
67cf8c96b7 | ||
![]() |
d222bc5a4e | ||
![]() |
f055d73efc | ||
![]() |
781edadf8d | ||
![]() |
b6520c67a8 | ||
![]() |
eb0649acf3 | ||
![]() |
f0fb387921 | ||
![]() |
4486dace2a | ||
![]() |
bd0a584e56 | ||
![]() |
c7133969db | ||
![]() |
7ea55fbcea | ||
![]() |
0821a31dfe | ||
![]() |
53580da638 | ||
![]() |
04961a999e | ||
![]() |
b8ae217fd1 |
@@ -11,7 +11,7 @@ History:
|
|||||||
Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit)
|
Initially cimgui was developed by Stephan Dilly as hand-written code but lately turned into an auto-generated version by sonoro1234 in order to keep up with imgui more easily (letting the user select the desired branch and commit)
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
* currently this wrapper is based on version [1.90.1 of Dear ImGui with internal api]
|
* currently this wrapper is based on version [1.90.6 of Dear ImGui with internal api]
|
||||||
* only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped.
|
* only functions, structs and enums from imgui.h (an optionally imgui_internal.h) are wrapped.
|
||||||
* if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project.
|
* if you are interested in imgui backends you should look [LuaJIT-ImGui](https://github.com/sonoro1234/LuaJIT-ImGui) project.
|
||||||
* All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty.
|
* All naming is algorithmic except for those names that were coded in cimgui_overloads table (https://github.com/cimgui/cimgui/blob/master/generator/generator.lua#L60). In the official version this table is empty.
|
||||||
@@ -118,3 +118,4 @@ Notes:
|
|||||||
* [sdl2-cimgui-demo](https://github.com/haxpor/sdl2-cimgui-demo)
|
* [sdl2-cimgui-demo](https://github.com/haxpor/sdl2-cimgui-demo)
|
||||||
* [cimgui_c_sdl2_example](https://github.com/canoi12/cimgui_c_sdl2_example/)
|
* [cimgui_c_sdl2_example](https://github.com/canoi12/cimgui_c_sdl2_example/)
|
||||||
* [cimgui-c-example](https://github.com/peko/cimgui-c-example) with GLFW
|
* [cimgui-c-example](https://github.com/peko/cimgui-c-example) with GLFW
|
||||||
|
* [raylib-cimgui](https://github.com/alfredbaudisch/raylib-cimgui)
|
||||||
|
126
cimgui.cpp
126
cimgui.cpp
@@ -1,5 +1,5 @@
|
|||||||
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
||||||
//based on imgui.h file version "1.90.1" 19010 from Dear ImGui https://github.com/ocornut/imgui
|
//based on imgui.h file version "1.90.6" 19060 from Dear ImGui https://github.com/ocornut/imgui
|
||||||
//with imgui_internal.h api
|
//with imgui_internal.h api
|
||||||
#ifdef IMGUI_ENABLE_FREETYPE
|
#ifdef IMGUI_ENABLE_FREETYPE
|
||||||
#ifndef CIMGUI_FREETYPE
|
#ifndef CIMGUI_FREETYPE
|
||||||
@@ -407,9 +407,9 @@ CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col)
|
|||||||
{
|
{
|
||||||
return ImGui::GetColorU32(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)
|
CIMGUI_API const ImVec4* igGetStyleColorVec4(ImGuiCol idx)
|
||||||
{
|
{
|
||||||
@@ -1583,6 +1583,10 @@ CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx)
|
|||||||
{
|
{
|
||||||
return ImGui::DebugFlashStyleColor(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)
|
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);
|
return ImGui::DebugCheckVersionAndDataLayout(version_str,sz_io,sz_style,sz_vec2,sz_vec4,sz_drawvert,sz_drawidx);
|
||||||
@@ -2107,13 +2111,13 @@ CIMGUI_API void ImDrawList_AddNgonFilled(ImDrawList* self,const ImVec2 center,fl
|
|||||||
{
|
{
|
||||||
return self->AddNgonFilled(center,radius,col,num_segments);
|
return self->AddNgonFilled(center,radius,col,num_segments);
|
||||||
}
|
}
|
||||||
CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments,float thickness)
|
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_x,radius_y,col,rot,num_segments,thickness);
|
return self->AddEllipse(center,radius,col,rot,num_segments,thickness);
|
||||||
}
|
}
|
||||||
CIMGUI_API void ImDrawList_AddEllipseFilled(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments)
|
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_x,radius_y,col,rot,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)
|
CIMGUI_API void ImDrawList_AddText_Vec2(ImDrawList* self,const ImVec2 pos,ImU32 col,const char* text_begin,const char* text_end)
|
||||||
{
|
{
|
||||||
@@ -2123,6 +2127,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);
|
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)
|
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);
|
return self->AddPolyline(points,num_points,col,flags,thickness);
|
||||||
@@ -2131,13 +2143,9 @@ CIMGUI_API void ImDrawList_AddConvexPolyFilled(ImDrawList* self,const ImVec2* po
|
|||||||
{
|
{
|
||||||
return self->AddConvexPolyFilled(points,num_points,col);
|
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);
|
return self->AddConcavePolyFilled(points,num_points,col);
|
||||||
}
|
|
||||||
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_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_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)
|
||||||
{
|
{
|
||||||
@@ -2167,6 +2175,10 @@ CIMGUI_API void ImDrawList_PathFillConvex(ImDrawList* self,ImU32 col)
|
|||||||
{
|
{
|
||||||
return self->PathFillConvex(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)
|
CIMGUI_API void ImDrawList_PathStroke(ImDrawList* self,ImU32 col,ImDrawFlags flags,float thickness)
|
||||||
{
|
{
|
||||||
return self->PathStroke(col,flags,thickness);
|
return self->PathStroke(col,flags,thickness);
|
||||||
@@ -2179,9 +2191,9 @@ CIMGUI_API void ImDrawList_PathArcToFast(ImDrawList* self,const ImVec2 center,fl
|
|||||||
{
|
{
|
||||||
return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12);
|
return self->PathArcToFast(center,radius,a_min_of_12,a_max_of_12);
|
||||||
}
|
}
|
||||||
CIMGUI_API void ImDrawList_PathEllipticalArcTo(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,float rot,float a_min,float a_max,int num_segments)
|
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_x,radius_y,rot,a_min,a_max,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)
|
CIMGUI_API void ImDrawList_PathBezierCubicCurveTo(ImDrawList* self,const ImVec2 p2,const ImVec2 p3,const ImVec2 p4,int num_segments)
|
||||||
{
|
{
|
||||||
@@ -2591,10 +2603,6 @@ CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self)
|
|||||||
{
|
{
|
||||||
IM_DELETE(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,ImGuiID seed)
|
CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID seed)
|
||||||
{
|
{
|
||||||
return ImHashData(data,data_size,seed);
|
return ImHashData(data,data_size,seed);
|
||||||
@@ -2762,6 +2770,10 @@ CIMGUI_API const char* igImTextFindPreviousUtf8Codepoint(const char* in_text_sta
|
|||||||
{
|
{
|
||||||
return ImTextFindPreviousUtf8Codepoint(in_text_start,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)
|
CIMGUI_API ImFileHandle igImFileOpen(const char* filename,const char* mode)
|
||||||
{
|
{
|
||||||
return ImFileOpen(filename,mode);
|
return ImFileOpen(filename,mode);
|
||||||
@@ -2950,6 +2962,10 @@ CIMGUI_API float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c)
|
|||||||
{
|
{
|
||||||
return ImTriangleArea(a,b,c);
|
return ImTriangleArea(a,b,c);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c)
|
||||||
|
{
|
||||||
|
return ImTriangleIsClockwise(a,b,c);
|
||||||
|
}
|
||||||
CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void)
|
CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void)
|
||||||
{
|
{
|
||||||
return IM_NEW(ImVec1)();
|
return IM_NEW(ImVec1)();
|
||||||
@@ -3182,10 +3198,6 @@ CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self)
|
|||||||
{
|
{
|
||||||
IM_DELETE(self);
|
IM_DELETE(self);
|
||||||
}
|
}
|
||||||
CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent)
|
|
||||||
{
|
|
||||||
return self->GetVarPtr(parent);
|
|
||||||
}
|
|
||||||
CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v)
|
CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v)
|
||||||
{
|
{
|
||||||
return IM_NEW(ImGuiStyleMod)(idx,v);
|
return IM_NEW(ImGuiStyleMod)(idx,v);
|
||||||
@@ -3302,13 +3314,17 @@ CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self)
|
|||||||
{
|
{
|
||||||
return self->SelectAll();
|
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)
|
CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void)
|
||||||
{
|
{
|
||||||
@@ -3370,6 +3386,18 @@ CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index)
|
|||||||
{
|
{
|
||||||
return IM_NEW(ImGuiPtrOrIndex)(index);
|
return IM_NEW(ImGuiPtrOrIndex)(index);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent)
|
||||||
|
{
|
||||||
|
return self->GetVarPtr(parent);
|
||||||
|
}
|
||||||
|
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)
|
CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void)
|
||||||
{
|
{
|
||||||
return IM_NEW(ImGuiInputEvent)();
|
return IM_NEW(ImGuiInputEvent)();
|
||||||
@@ -3694,6 +3722,10 @@ CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindow
|
|||||||
{
|
{
|
||||||
return ImGui::UpdateWindowParentAndRootLinks(window,flags,parent_window);
|
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)
|
CIMGUI_API void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window)
|
||||||
{
|
{
|
||||||
*pOut = ImGui::CalcWindowNextAutoFitSize(window);
|
*pOut = ImGui::CalcWindowNextAutoFitSize(window);
|
||||||
@@ -3734,6 +3766,10 @@ CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window
|
|||||||
{
|
{
|
||||||
return ImGui::SetWindowHiddenAndSkipItemsForCurrentFrame(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)
|
CIMGUI_API void igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r)
|
||||||
{
|
{
|
||||||
*pOut = ImGui::WindowRectAbsToRel(window,r);
|
*pOut = ImGui::WindowRectAbsToRel(window,r);
|
||||||
@@ -3778,6 +3814,10 @@ CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindo
|
|||||||
{
|
{
|
||||||
return ImGui::FindBottomMostVisibleWindowWithinBeginStack(window);
|
return ImGui::FindBottomMostVisibleWindowWithinBeginStack(window);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void igSetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags)
|
||||||
|
{
|
||||||
|
return ImGui::SetNextWindowRefreshPolicy(flags);
|
||||||
|
}
|
||||||
CIMGUI_API void igSetCurrentFont(ImFont* font)
|
CIMGUI_API void igSetCurrentFont(ImFont* font)
|
||||||
{
|
{
|
||||||
return ImGui::SetCurrentFont(font);
|
return ImGui::SetCurrentFont(font);
|
||||||
@@ -4186,6 +4226,10 @@ CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlag
|
|||||||
{
|
{
|
||||||
return ImGui::NavMoveRequestTryWrapping(window,move_flags);
|
return ImGui::NavMoveRequestTryWrapping(window,move_flags);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void igNavHighlightActivated(ImGuiID id)
|
||||||
|
{
|
||||||
|
return ImGui::NavHighlightActivated(id);
|
||||||
|
}
|
||||||
CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis)
|
CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis)
|
||||||
{
|
{
|
||||||
return ImGui::NavClearPreferredPosForAxis(axis);
|
return ImGui::NavClearPreferredPosForAxis(axis);
|
||||||
@@ -4206,6 +4250,10 @@ CIMGUI_API void igSetNavID(ImGuiID id,ImGuiNavLayer nav_layer,ImGuiID focus_scop
|
|||||||
{
|
{
|
||||||
return ImGui::SetNavID(id,nav_layer,focus_scope_id,rect_rel);
|
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()
|
CIMGUI_API void igFocusItem()
|
||||||
{
|
{
|
||||||
return ImGui::FocusItem();
|
return ImGui::FocusItem();
|
||||||
@@ -4242,9 +4290,13 @@ CIMGUI_API bool igIsAliasKey(ImGuiKey key)
|
|||||||
{
|
{
|
||||||
return ImGui::IsAliasKey(key);
|
return ImGui::IsAliasKey(key);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord)
|
CIMGUI_API bool igIsModKey(ImGuiKey key)
|
||||||
{
|
{
|
||||||
return ImGui::ConvertShortcutMod(key_chord);
|
return ImGui::IsModKey(key);
|
||||||
|
}
|
||||||
|
CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiContext* ctx,ImGuiKeyChord key_chord)
|
||||||
|
{
|
||||||
|
return ImGui::FixupKeyChord(ctx,key_chord);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key)
|
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key)
|
||||||
{
|
{
|
||||||
@@ -4258,9 +4310,9 @@ CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key)
|
|||||||
{
|
{
|
||||||
return ImGui::GetKeyData(key);
|
return ImGui::GetKeyData(key);
|
||||||
}
|
}
|
||||||
CIMGUI_API const char* 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)
|
CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button)
|
||||||
{
|
{
|
||||||
@@ -4354,6 +4406,10 @@ CIMGUI_API bool igIsKeyChordPressed_ID(ImGuiKeyChord key_chord,ImGuiID owner_id,
|
|||||||
{
|
{
|
||||||
return ImGui::IsKeyChordPressed(key_chord,owner_id,flags);
|
return ImGui::IsKeyChordPressed(key_chord,owner_id,flags);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord)
|
||||||
|
{
|
||||||
|
return ImGui::SetNextItemShortcut(key_chord);
|
||||||
|
}
|
||||||
CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)
|
CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags)
|
||||||
{
|
{
|
||||||
return ImGui::Shortcut(key_chord,owner_id,flags);
|
return ImGui::Shortcut(key_chord,owner_id,flags);
|
||||||
@@ -4494,9 +4550,9 @@ CIMGUI_API void igTablePopBackgroundChannel()
|
|||||||
{
|
{
|
||||||
return ImGui::TablePopBackgroundChannel();
|
return ImGui::TablePopBackgroundChannel();
|
||||||
}
|
}
|
||||||
CIMGUI_API void igTableAngledHeadersRowEx(float angle,float label_width)
|
CIMGUI_API void igTableAngledHeadersRowEx(ImGuiID row_id,float angle,float max_label_width,const ImGuiTableHeaderData* data,int data_count)
|
||||||
{
|
{
|
||||||
return ImGui::TableAngledHeadersRowEx(angle,label_width);
|
return ImGui::TableAngledHeadersRowEx(row_id,angle,max_label_width,data,data_count);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiTable* igGetCurrentTable()
|
CIMGUI_API ImGuiTable* igGetCurrentTable()
|
||||||
{
|
{
|
||||||
@@ -5053,10 +5109,6 @@ CIMGUI_API void igDebugBreakButtonTooltip(bool keyboard_only,const char* descrip
|
|||||||
{
|
{
|
||||||
return ImGui::DebugBreakButtonTooltip(keyboard_only,description_of_location);
|
return ImGui::DebugBreakButtonTooltip(keyboard_only,description_of_location);
|
||||||
}
|
}
|
||||||
CIMGUI_API void igDebugStartItemPicker()
|
|
||||||
{
|
|
||||||
return ImGui::DebugStartItemPicker();
|
|
||||||
}
|
|
||||||
CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas)
|
CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas)
|
||||||
{
|
{
|
||||||
return ImGui::ShowFontAtlas(atlas);
|
return ImGui::ShowFontAtlas(atlas);
|
||||||
|
236
cimgui.h
236
cimgui.h
@@ -1,5 +1,5 @@
|
|||||||
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
//This file is automatically generated by generator.lua from https://github.com/cimgui/cimgui
|
||||||
//based on imgui.h file version "1.90.1" 19010 from Dear ImGui https://github.com/ocornut/imgui
|
//based on imgui.h file version "1.90.6" 19060 from Dear ImGui https://github.com/ocornut/imgui
|
||||||
//with imgui_internal.h api
|
//with imgui_internal.h api
|
||||||
#ifndef CIMGUI_INCLUDED
|
#ifndef CIMGUI_INCLUDED
|
||||||
#define CIMGUI_INCLUDED
|
#define CIMGUI_INCLUDED
|
||||||
@@ -97,6 +97,7 @@ typedef struct ImGuiStyleMod ImGuiStyleMod;
|
|||||||
typedef struct ImGuiTabBar ImGuiTabBar;
|
typedef struct ImGuiTabBar ImGuiTabBar;
|
||||||
typedef struct ImGuiTabItem ImGuiTabItem;
|
typedef struct ImGuiTabItem ImGuiTabItem;
|
||||||
typedef struct ImGuiTable ImGuiTable;
|
typedef struct ImGuiTable ImGuiTable;
|
||||||
|
typedef struct ImGuiTableHeaderData ImGuiTableHeaderData;
|
||||||
typedef struct ImGuiTableColumn ImGuiTableColumn;
|
typedef struct ImGuiTableColumn ImGuiTableColumn;
|
||||||
typedef struct ImGuiTableInstanceData ImGuiTableInstanceData;
|
typedef struct ImGuiTableInstanceData ImGuiTableInstanceData;
|
||||||
typedef struct ImGuiTableTempData ImGuiTableTempData;
|
typedef struct ImGuiTableTempData ImGuiTableTempData;
|
||||||
@@ -280,8 +281,9 @@ typedef enum {
|
|||||||
ImGuiTreeNodeFlags_FramePadding = 1 << 10,
|
ImGuiTreeNodeFlags_FramePadding = 1 << 10,
|
||||||
ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11,
|
ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11,
|
||||||
ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12,
|
ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12,
|
||||||
ImGuiTreeNodeFlags_SpanAllColumns = 1 << 13,
|
ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13,
|
||||||
ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 14,
|
ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14,
|
||||||
|
ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15,
|
||||||
ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog,
|
ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog,
|
||||||
}ImGuiTreeNodeFlags_;
|
}ImGuiTreeNodeFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@@ -291,10 +293,11 @@ typedef enum {
|
|||||||
ImGuiPopupFlags_MouseButtonMiddle = 2,
|
ImGuiPopupFlags_MouseButtonMiddle = 2,
|
||||||
ImGuiPopupFlags_MouseButtonMask_ = 0x1F,
|
ImGuiPopupFlags_MouseButtonMask_ = 0x1F,
|
||||||
ImGuiPopupFlags_MouseButtonDefault_ = 1,
|
ImGuiPopupFlags_MouseButtonDefault_ = 1,
|
||||||
ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5,
|
ImGuiPopupFlags_NoReopen = 1 << 5,
|
||||||
ImGuiPopupFlags_NoOpenOverItems = 1 << 6,
|
ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7,
|
||||||
ImGuiPopupFlags_AnyPopupId = 1 << 7,
|
ImGuiPopupFlags_NoOpenOverItems = 1 << 8,
|
||||||
ImGuiPopupFlags_AnyPopupLevel = 1 << 8,
|
ImGuiPopupFlags_AnyPopupId = 1 << 10,
|
||||||
|
ImGuiPopupFlags_AnyPopupLevel = 1 << 11,
|
||||||
ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel,
|
ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel,
|
||||||
}ImGuiPopupFlags_;
|
}ImGuiPopupFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@@ -679,7 +682,10 @@ typedef enum {
|
|||||||
ImGuiStyleVar_GrabMinSize,
|
ImGuiStyleVar_GrabMinSize,
|
||||||
ImGuiStyleVar_GrabRounding,
|
ImGuiStyleVar_GrabRounding,
|
||||||
ImGuiStyleVar_TabRounding,
|
ImGuiStyleVar_TabRounding,
|
||||||
|
ImGuiStyleVar_TabBorderSize,
|
||||||
ImGuiStyleVar_TabBarBorderSize,
|
ImGuiStyleVar_TabBarBorderSize,
|
||||||
|
ImGuiStyleVar_TableAngledHeadersAngle,
|
||||||
|
ImGuiStyleVar_TableAngledHeadersTextAlign,
|
||||||
ImGuiStyleVar_ButtonTextAlign,
|
ImGuiStyleVar_ButtonTextAlign,
|
||||||
ImGuiStyleVar_SelectableTextAlign,
|
ImGuiStyleVar_SelectableTextAlign,
|
||||||
ImGuiStyleVar_SeparatorTextBorderSize,
|
ImGuiStyleVar_SeparatorTextBorderSize,
|
||||||
@@ -891,6 +897,7 @@ struct ImGuiStyle
|
|||||||
float TabMinWidthForCloseButton;
|
float TabMinWidthForCloseButton;
|
||||||
float TabBarBorderSize;
|
float TabBarBorderSize;
|
||||||
float TableAngledHeadersAngle;
|
float TableAngledHeadersAngle;
|
||||||
|
ImVec2 TableAngledHeadersTextAlign;
|
||||||
ImGuiDir ColorButtonPosition;
|
ImGuiDir ColorButtonPosition;
|
||||||
ImVec2 ButtonTextAlign;
|
ImVec2 ButtonTextAlign;
|
||||||
ImVec2 SelectableTextAlign;
|
ImVec2 SelectableTextAlign;
|
||||||
@@ -978,7 +985,6 @@ struct ImGuiIO
|
|||||||
int MetricsRenderWindows;
|
int MetricsRenderWindows;
|
||||||
int MetricsActiveWindows;
|
int MetricsActiveWindows;
|
||||||
ImVec2 MouseDelta;
|
ImVec2 MouseDelta;
|
||||||
void* _UnusedPadding;
|
|
||||||
ImGuiContext* Ctx;
|
ImGuiContext* Ctx;
|
||||||
ImVec2 MousePos;
|
ImVec2 MousePos;
|
||||||
bool MouseDown[5];
|
bool MouseDown[5];
|
||||||
@@ -1168,12 +1174,12 @@ typedef enum {
|
|||||||
}ImDrawListFlags_;
|
}ImDrawListFlags_;
|
||||||
typedef struct ImVector_ImDrawVert {int Size;int Capacity;ImDrawVert* Data;} ImVector_ImDrawVert;
|
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_ImVec4 {int Size;int Capacity;ImVec4* Data;} ImVector_ImVec4;
|
||||||
|
|
||||||
typedef struct ImVector_ImTextureID {int Size;int Capacity;ImTextureID* Data;} ImVector_ImTextureID;
|
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
|
struct ImDrawList
|
||||||
{
|
{
|
||||||
ImVector_ImDrawCmd CmdBuffer;
|
ImVector_ImDrawCmd CmdBuffer;
|
||||||
@@ -1182,15 +1188,15 @@ struct ImDrawList
|
|||||||
ImDrawListFlags Flags;
|
ImDrawListFlags Flags;
|
||||||
unsigned int _VtxCurrentIdx;
|
unsigned int _VtxCurrentIdx;
|
||||||
ImDrawListSharedData* _Data;
|
ImDrawListSharedData* _Data;
|
||||||
const char* _OwnerName;
|
|
||||||
ImDrawVert* _VtxWritePtr;
|
ImDrawVert* _VtxWritePtr;
|
||||||
ImDrawIdx* _IdxWritePtr;
|
ImDrawIdx* _IdxWritePtr;
|
||||||
ImVector_ImVec4 _ClipRectStack;
|
|
||||||
ImVector_ImTextureID _TextureIdStack;
|
|
||||||
ImVector_ImVec2 _Path;
|
ImVector_ImVec2 _Path;
|
||||||
ImDrawCmdHeader _CmdHeader;
|
ImDrawCmdHeader _CmdHeader;
|
||||||
ImDrawListSplitter _Splitter;
|
ImDrawListSplitter _Splitter;
|
||||||
|
ImVector_ImVec4 _ClipRectStack;
|
||||||
|
ImVector_ImTextureID _TextureIdStack;
|
||||||
float _FringeScale;
|
float _FringeScale;
|
||||||
|
const char* _OwnerName;
|
||||||
};
|
};
|
||||||
typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr;
|
typedef struct ImVector_ImDrawListPtr {int Size;int Capacity;ImDrawList** Data;} ImVector_ImDrawListPtr;
|
||||||
|
|
||||||
@@ -1325,6 +1331,7 @@ typedef enum {
|
|||||||
}ImGuiViewportFlags_;
|
}ImGuiViewportFlags_;
|
||||||
struct ImGuiViewport
|
struct ImGuiViewport
|
||||||
{
|
{
|
||||||
|
ImGuiID ID;
|
||||||
ImGuiViewportFlags Flags;
|
ImGuiViewportFlags Flags;
|
||||||
ImVec2 Pos;
|
ImVec2 Pos;
|
||||||
ImVec2 Size;
|
ImVec2 Size;
|
||||||
@@ -1367,6 +1374,7 @@ struct ImGuiStyleMod;
|
|||||||
struct ImGuiTabBar;
|
struct ImGuiTabBar;
|
||||||
struct ImGuiTabItem;
|
struct ImGuiTabItem;
|
||||||
struct ImGuiTable;
|
struct ImGuiTable;
|
||||||
|
struct ImGuiTableHeaderData;
|
||||||
struct ImGuiTableColumn;
|
struct ImGuiTableColumn;
|
||||||
struct ImGuiTableInstanceData;
|
struct ImGuiTableInstanceData;
|
||||||
struct ImGuiTableTempData;
|
struct ImGuiTableTempData;
|
||||||
@@ -1394,6 +1402,7 @@ typedef int ImGuiSeparatorFlags;
|
|||||||
typedef int ImGuiTextFlags;
|
typedef int ImGuiTextFlags;
|
||||||
typedef int ImGuiTooltipFlags;
|
typedef int ImGuiTooltipFlags;
|
||||||
typedef int ImGuiTypingSelectFlags;
|
typedef int ImGuiTypingSelectFlags;
|
||||||
|
typedef int ImGuiWindowRefreshFlags;
|
||||||
typedef void (*ImGuiErrorLogCallback)(void* user_data, const char* fmt, ...);
|
typedef void (*ImGuiErrorLogCallback)(void* user_data, const char* fmt, ...);
|
||||||
extern ImGuiContext* GImGui;
|
extern ImGuiContext* GImGui;
|
||||||
typedef struct StbUndoRecord StbUndoRecord;
|
typedef struct StbUndoRecord StbUndoRecord;
|
||||||
@@ -1523,6 +1532,7 @@ typedef enum {
|
|||||||
ImGuiInputTextFlags_Multiline = 1 << 26,
|
ImGuiInputTextFlags_Multiline = 1 << 26,
|
||||||
ImGuiInputTextFlags_NoMarkEdited = 1 << 27,
|
ImGuiInputTextFlags_NoMarkEdited = 1 << 27,
|
||||||
ImGuiInputTextFlags_MergedItem = 1 << 28,
|
ImGuiInputTextFlags_MergedItem = 1 << 28,
|
||||||
|
ImGuiInputTextFlags_LocalizeDecimalPoint= 1 << 29,
|
||||||
}ImGuiInputTextFlagsPrivate_;
|
}ImGuiInputTextFlagsPrivate_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiButtonFlags_PressedOnClick = 1 << 4,
|
ImGuiButtonFlags_PressedOnClick = 1 << 4,
|
||||||
@@ -1605,34 +1615,6 @@ typedef enum {
|
|||||||
ImGuiPlotType_Lines,
|
ImGuiPlotType_Lines,
|
||||||
ImGuiPlotType_Histogram,
|
ImGuiPlotType_Histogram,
|
||||||
}ImGuiPlotType;
|
}ImGuiPlotType;
|
||||||
typedef enum {
|
|
||||||
ImGuiPopupPositionPolicy_Default,
|
|
||||||
ImGuiPopupPositionPolicy_ComboBox,
|
|
||||||
ImGuiPopupPositionPolicy_Tooltip,
|
|
||||||
}ImGuiPopupPositionPolicy;
|
|
||||||
struct ImGuiDataVarInfo
|
|
||||||
{
|
|
||||||
ImGuiDataType Type;
|
|
||||||
ImU32 Count;
|
|
||||||
ImU32 Offset;
|
|
||||||
};
|
|
||||||
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
|
struct ImGuiColorMod
|
||||||
{
|
{
|
||||||
ImGuiCol Col;
|
ImGuiCol Col;
|
||||||
@@ -1703,18 +1685,16 @@ struct ImGuiInputTextState
|
|||||||
bool SelectedAllMouseLock;
|
bool SelectedAllMouseLock;
|
||||||
bool Edited;
|
bool Edited;
|
||||||
ImGuiInputTextFlags Flags;
|
ImGuiInputTextFlags Flags;
|
||||||
|
bool ReloadUserBuf;
|
||||||
|
int ReloadSelectionStart;
|
||||||
|
int ReloadSelectionEnd;
|
||||||
};
|
};
|
||||||
struct ImGuiPopupData
|
typedef enum {
|
||||||
{
|
ImGuiWindowRefreshFlags_None = 0,
|
||||||
ImGuiID PopupId;
|
ImGuiWindowRefreshFlags_TryToAvoidRefresh = 1 << 0,
|
||||||
ImGuiWindow* Window;
|
ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1,
|
||||||
ImGuiWindow* BackupNavWindow;
|
ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2,
|
||||||
int ParentNavLayer;
|
}ImGuiWindowRefreshFlags_;
|
||||||
int OpenFrameCount;
|
|
||||||
ImGuiID OpenParentId;
|
|
||||||
ImVec2 OpenPopupPos;
|
|
||||||
ImVec2 OpenMousePos;
|
|
||||||
};
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiNextWindowDataFlags_None = 0,
|
ImGuiNextWindowDataFlags_None = 0,
|
||||||
ImGuiNextWindowDataFlags_HasPos = 1 << 0,
|
ImGuiNextWindowDataFlags_HasPos = 1 << 0,
|
||||||
@@ -1726,6 +1706,7 @@ typedef enum {
|
|||||||
ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6,
|
ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6,
|
||||||
ImGuiNextWindowDataFlags_HasScroll = 1 << 7,
|
ImGuiNextWindowDataFlags_HasScroll = 1 << 7,
|
||||||
ImGuiNextWindowDataFlags_HasChildFlags = 1 << 8,
|
ImGuiNextWindowDataFlags_HasChildFlags = 1 << 8,
|
||||||
|
ImGuiNextWindowDataFlags_HasRefreshPolicy = 1 << 9,
|
||||||
}ImGuiNextWindowDataFlags_;
|
}ImGuiNextWindowDataFlags_;
|
||||||
struct ImGuiNextWindowData
|
struct ImGuiNextWindowData
|
||||||
{
|
{
|
||||||
@@ -1745,21 +1726,24 @@ struct ImGuiNextWindowData
|
|||||||
void* SizeCallbackUserData;
|
void* SizeCallbackUserData;
|
||||||
float BgAlphaVal;
|
float BgAlphaVal;
|
||||||
ImVec2 MenuBarOffsetMinVal;
|
ImVec2 MenuBarOffsetMinVal;
|
||||||
|
ImGuiWindowRefreshFlags RefreshFlagsVal;
|
||||||
};
|
};
|
||||||
typedef ImS64 ImGuiSelectionUserData;
|
typedef ImS64 ImGuiSelectionUserData;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiNextItemDataFlags_None = 0,
|
ImGuiNextItemDataFlags_None = 0,
|
||||||
ImGuiNextItemDataFlags_HasWidth = 1 << 0,
|
ImGuiNextItemDataFlags_HasWidth = 1 << 0,
|
||||||
ImGuiNextItemDataFlags_HasOpen = 1 << 1,
|
ImGuiNextItemDataFlags_HasOpen = 1 << 1,
|
||||||
|
ImGuiNextItemDataFlags_HasShortcut = 1 << 2,
|
||||||
}ImGuiNextItemDataFlags_;
|
}ImGuiNextItemDataFlags_;
|
||||||
struct ImGuiNextItemData
|
struct ImGuiNextItemData
|
||||||
{
|
{
|
||||||
ImGuiNextItemDataFlags Flags;
|
ImGuiNextItemDataFlags Flags;
|
||||||
ImGuiItemFlags ItemFlags;
|
ImGuiItemFlags ItemFlags;
|
||||||
float Width;
|
|
||||||
ImGuiSelectionUserData SelectionUserData;
|
ImGuiSelectionUserData SelectionUserData;
|
||||||
ImGuiCond OpenCond;
|
float Width;
|
||||||
|
ImGuiKeyChord Shortcut;
|
||||||
bool OpenVal;
|
bool OpenVal;
|
||||||
|
ImGuiCond OpenCond : 8;
|
||||||
};
|
};
|
||||||
struct ImGuiLastItemData
|
struct ImGuiLastItemData
|
||||||
{
|
{
|
||||||
@@ -1809,6 +1793,45 @@ struct ImGuiPtrOrIndex
|
|||||||
void* Ptr;
|
void* Ptr;
|
||||||
int Index;
|
int Index;
|
||||||
};
|
};
|
||||||
|
struct ImGuiDataVarInfo
|
||||||
|
{
|
||||||
|
ImGuiDataType Type;
|
||||||
|
ImU32 Count;
|
||||||
|
ImU32 Offset;
|
||||||
|
};
|
||||||
|
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_;
|
||||||
|
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 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;
|
typedef ImBitArray_ImGuiKey_NamedKey_COUNT__lessImGuiKey_NamedKey_BEGIN ImBitArrayForNamedKeys;
|
||||||
@@ -1827,7 +1850,6 @@ typedef enum {
|
|||||||
ImGuiInputSource_Mouse,
|
ImGuiInputSource_Mouse,
|
||||||
ImGuiInputSource_Keyboard,
|
ImGuiInputSource_Keyboard,
|
||||||
ImGuiInputSource_Gamepad,
|
ImGuiInputSource_Gamepad,
|
||||||
ImGuiInputSource_Clipboard,
|
|
||||||
ImGuiInputSource_COUNT
|
ImGuiInputSource_COUNT
|
||||||
}ImGuiInputSource;
|
}ImGuiInputSource;
|
||||||
typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos;
|
typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos;
|
||||||
@@ -1877,6 +1899,7 @@ struct ImGuiKeyRoutingData
|
|||||||
{
|
{
|
||||||
ImGuiKeyRoutingIndex NextEntryIndex;
|
ImGuiKeyRoutingIndex NextEntryIndex;
|
||||||
ImU16 Mods;
|
ImU16 Mods;
|
||||||
|
ImU8 RoutingCurrScore;
|
||||||
ImU8 RoutingNextScore;
|
ImU8 RoutingNextScore;
|
||||||
ImGuiID RoutingCurr;
|
ImGuiID RoutingCurr;
|
||||||
ImGuiID RoutingNext;
|
ImGuiID RoutingNext;
|
||||||
@@ -1911,23 +1934,22 @@ typedef enum {
|
|||||||
ImGuiInputFlags_CondHovered = 1 << 8,
|
ImGuiInputFlags_CondHovered = 1 << 8,
|
||||||
ImGuiInputFlags_CondActive = 1 << 9,
|
ImGuiInputFlags_CondActive = 1 << 9,
|
||||||
ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive,
|
ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive,
|
||||||
ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive,
|
|
||||||
ImGuiInputFlags_LockThisFrame = 1 << 10,
|
ImGuiInputFlags_LockThisFrame = 1 << 10,
|
||||||
ImGuiInputFlags_LockUntilRelease = 1 << 11,
|
ImGuiInputFlags_LockUntilRelease = 1 << 11,
|
||||||
ImGuiInputFlags_RouteFocused = 1 << 12,
|
ImGuiInputFlags_RouteFocused = 1 << 12,
|
||||||
ImGuiInputFlags_RouteGlobalLow = 1 << 13,
|
ImGuiInputFlags_RouteGlobalLow = 1 << 13,
|
||||||
ImGuiInputFlags_RouteGlobal = 1 << 14,
|
ImGuiInputFlags_RouteGlobal = 1 << 14,
|
||||||
ImGuiInputFlags_RouteGlobalHigh = 1 << 15,
|
ImGuiInputFlags_RouteGlobalHigh = 1 << 15,
|
||||||
ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh,
|
|
||||||
ImGuiInputFlags_RouteAlways = 1 << 16,
|
ImGuiInputFlags_RouteAlways = 1 << 16,
|
||||||
ImGuiInputFlags_RouteUnlessBgFocused= 1 << 17,
|
ImGuiInputFlags_RouteUnlessBgFocused= 1 << 17,
|
||||||
ImGuiInputFlags_RouteExtraMask_ = ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused,
|
|
||||||
ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak,
|
ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak,
|
||||||
ImGuiInputFlags_RepeatUntilMask_ = ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress,
|
ImGuiInputFlags_RepeatUntilMask_ = ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress,
|
||||||
ImGuiInputFlags_RepeatMask_ = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_,
|
ImGuiInputFlags_RepeatMask_ = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_,
|
||||||
|
ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive,
|
||||||
|
ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh,
|
||||||
ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_RepeatMask_,
|
ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_RepeatMask_,
|
||||||
ImGuiInputFlags_SupportedByIsMouseClicked = ImGuiInputFlags_Repeat,
|
ImGuiInputFlags_SupportedByIsMouseClicked = ImGuiInputFlags_Repeat,
|
||||||
ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_,
|
ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused,
|
||||||
ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease,
|
ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease,
|
||||||
ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_,
|
ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_,
|
||||||
}ImGuiInputFlags_;
|
}ImGuiInputFlags_;
|
||||||
@@ -1957,6 +1979,7 @@ typedef enum {
|
|||||||
ImGuiActivateFlags_PreferTweak = 1 << 1,
|
ImGuiActivateFlags_PreferTweak = 1 << 1,
|
||||||
ImGuiActivateFlags_TryToPreserveState = 1 << 2,
|
ImGuiActivateFlags_TryToPreserveState = 1 << 2,
|
||||||
ImGuiActivateFlags_FromTabbing = 1 << 3,
|
ImGuiActivateFlags_FromTabbing = 1 << 3,
|
||||||
|
ImGuiActivateFlags_FromShortcut = 1 << 4,
|
||||||
}ImGuiActivateFlags_;
|
}ImGuiActivateFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiScrollFlags_None = 0,
|
ImGuiScrollFlags_None = 0,
|
||||||
@@ -1972,8 +1995,7 @@ typedef enum {
|
|||||||
}ImGuiScrollFlags_;
|
}ImGuiScrollFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiNavHighlightFlags_None = 0,
|
ImGuiNavHighlightFlags_None = 0,
|
||||||
ImGuiNavHighlightFlags_TypeDefault = 1 << 0,
|
ImGuiNavHighlightFlags_Compact = 1 << 1,
|
||||||
ImGuiNavHighlightFlags_TypeThin = 1 << 1,
|
|
||||||
ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2,
|
ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2,
|
||||||
ImGuiNavHighlightFlags_NoRounding = 1 << 3,
|
ImGuiNavHighlightFlags_NoRounding = 1 << 3,
|
||||||
}ImGuiNavHighlightFlags_;
|
}ImGuiNavHighlightFlags_;
|
||||||
@@ -1995,6 +2017,7 @@ typedef enum {
|
|||||||
ImGuiNavMoveFlags_Activate = 1 << 12,
|
ImGuiNavMoveFlags_Activate = 1 << 12,
|
||||||
ImGuiNavMoveFlags_NoSelect = 1 << 13,
|
ImGuiNavMoveFlags_NoSelect = 1 << 13,
|
||||||
ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14,
|
ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14,
|
||||||
|
ImGuiNavMoveFlags_NoClearActiveId = 1 << 15,
|
||||||
}ImGuiNavMoveFlags_;
|
}ImGuiNavMoveFlags_;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiNavLayer_Main = 0,
|
ImGuiNavLayer_Main = 0,
|
||||||
@@ -2008,10 +2031,16 @@ struct ImGuiNavItemData
|
|||||||
ImGuiID FocusScopeId;
|
ImGuiID FocusScopeId;
|
||||||
ImRect RectRel;
|
ImRect RectRel;
|
||||||
ImGuiItemFlags InFlags;
|
ImGuiItemFlags InFlags;
|
||||||
ImGuiSelectionUserData SelectionUserData;
|
|
||||||
float DistBox;
|
float DistBox;
|
||||||
float DistCenter;
|
float DistCenter;
|
||||||
float DistAxial;
|
float DistAxial;
|
||||||
|
ImGuiSelectionUserData SelectionUserData;
|
||||||
|
};
|
||||||
|
typedef struct ImGuiFocusScopeData ImGuiFocusScopeData;
|
||||||
|
struct ImGuiFocusScopeData
|
||||||
|
{
|
||||||
|
ImGuiID ID;
|
||||||
|
ImGuiID WindowID;
|
||||||
};
|
};
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiTypingSelectFlags_None = 0,
|
ImGuiTypingSelectFlags_None = 0,
|
||||||
@@ -2131,7 +2160,8 @@ typedef enum {
|
|||||||
ImGuiDebugLogFlags_EventClipper = 1 << 4,
|
ImGuiDebugLogFlags_EventClipper = 1 << 4,
|
||||||
ImGuiDebugLogFlags_EventSelection = 1 << 5,
|
ImGuiDebugLogFlags_EventSelection = 1 << 5,
|
||||||
ImGuiDebugLogFlags_EventIO = 1 << 6,
|
ImGuiDebugLogFlags_EventIO = 1 << 6,
|
||||||
ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO,
|
ImGuiDebugLogFlags_EventInputRouting = 1 << 7,
|
||||||
|
ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting,
|
||||||
ImGuiDebugLogFlags_OutputToTTY = 1 << 20,
|
ImGuiDebugLogFlags_OutputToTTY = 1 << 20,
|
||||||
ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21,
|
ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21,
|
||||||
}ImGuiDebugLogFlags_;
|
}ImGuiDebugLogFlags_;
|
||||||
@@ -2163,6 +2193,8 @@ struct ImGuiMetricsConfig
|
|||||||
bool ShowAtlasTintedWithTextColor;
|
bool ShowAtlasTintedWithTextColor;
|
||||||
int ShowWindowsRectsType;
|
int ShowWindowsRectsType;
|
||||||
int ShowTablesRectsType;
|
int ShowTablesRectsType;
|
||||||
|
int HighlightMonitorIdx;
|
||||||
|
ImGuiID HighlightViewportID;
|
||||||
};
|
};
|
||||||
typedef struct ImGuiStackLevelInfo ImGuiStackLevelInfo;
|
typedef struct ImGuiStackLevelInfo ImGuiStackLevelInfo;
|
||||||
struct ImGuiStackLevelInfo
|
struct ImGuiStackLevelInfo
|
||||||
@@ -2205,7 +2237,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_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;
|
typedef struct ImVector_ImGuiItemFlags {int Size;int Capacity;ImGuiItemFlags* Data;} ImVector_ImGuiItemFlags;
|
||||||
|
|
||||||
@@ -2235,6 +2267,8 @@ typedef struct ImVector_ImGuiPtrOrIndex {int Size;int Capacity;ImGuiPtrOrIndex*
|
|||||||
|
|
||||||
typedef struct ImVector_ImGuiShrinkWidthItem {int Size;int Capacity;ImGuiShrinkWidthItem* Data;} ImVector_ImGuiShrinkWidthItem;
|
typedef struct ImVector_ImGuiShrinkWidthItem {int Size;int Capacity;ImGuiShrinkWidthItem* Data;} ImVector_ImGuiShrinkWidthItem;
|
||||||
|
|
||||||
|
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 ImVector_ImGuiSettingsHandler {int Size;int Capacity;ImGuiSettingsHandler* Data;} ImVector_ImGuiSettingsHandler;
|
||||||
|
|
||||||
typedef struct ImChunkStream_ImGuiWindowSettings {ImVector_char Buf;} ImChunkStream_ImGuiWindowSettings;
|
typedef struct ImChunkStream_ImGuiWindowSettings {ImVector_char Buf;} ImChunkStream_ImGuiWindowSettings;
|
||||||
@@ -2302,10 +2336,11 @@ struct ImGuiContext
|
|||||||
bool ActiveIdHasBeenPressedBefore;
|
bool ActiveIdHasBeenPressedBefore;
|
||||||
bool ActiveIdHasBeenEditedBefore;
|
bool ActiveIdHasBeenEditedBefore;
|
||||||
bool ActiveIdHasBeenEditedThisFrame;
|
bool ActiveIdHasBeenEditedThisFrame;
|
||||||
|
bool ActiveIdFromShortcut;
|
||||||
|
int ActiveIdMouseButton : 8;
|
||||||
ImVec2 ActiveIdClickOffset;
|
ImVec2 ActiveIdClickOffset;
|
||||||
ImGuiWindow* ActiveIdWindow;
|
ImGuiWindow* ActiveIdWindow;
|
||||||
ImGuiInputSource ActiveIdSource;
|
ImGuiInputSource ActiveIdSource;
|
||||||
int ActiveIdMouseButton;
|
|
||||||
ImGuiID ActiveIdPreviousFrame;
|
ImGuiID ActiveIdPreviousFrame;
|
||||||
bool ActiveIdPreviousFrameIsAlive;
|
bool ActiveIdPreviousFrameIsAlive;
|
||||||
bool ActiveIdPreviousFrameHasBeenEditedBefore;
|
bool ActiveIdPreviousFrameHasBeenEditedBefore;
|
||||||
@@ -2315,6 +2350,7 @@ struct ImGuiContext
|
|||||||
double LastKeyModsChangeTime;
|
double LastKeyModsChangeTime;
|
||||||
double LastKeyModsChangeFromNoneTime;
|
double LastKeyModsChangeFromNoneTime;
|
||||||
double LastKeyboardKeyPressTime;
|
double LastKeyboardKeyPressTime;
|
||||||
|
ImBitArrayForNamedKeys KeysMayBeCharInput;
|
||||||
ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT];
|
ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT];
|
||||||
ImGuiKeyRoutingTable KeysRoutingTable;
|
ImGuiKeyRoutingTable KeysRoutingTable;
|
||||||
ImU32 ActiveIdUsingNavDirMask;
|
ImU32 ActiveIdUsingNavDirMask;
|
||||||
@@ -2331,21 +2367,23 @@ struct ImGuiContext
|
|||||||
ImVector_ImGuiColorMod ColorStack;
|
ImVector_ImGuiColorMod ColorStack;
|
||||||
ImVector_ImGuiStyleMod StyleVarStack;
|
ImVector_ImGuiStyleMod StyleVarStack;
|
||||||
ImVector_ImFontPtr FontStack;
|
ImVector_ImFontPtr FontStack;
|
||||||
ImVector_ImGuiID FocusScopeStack;
|
ImVector_ImGuiFocusScopeData FocusScopeStack;
|
||||||
ImVector_ImGuiItemFlags ItemFlagsStack;
|
ImVector_ImGuiItemFlags ItemFlagsStack;
|
||||||
ImVector_ImGuiGroupData GroupStack;
|
ImVector_ImGuiGroupData GroupStack;
|
||||||
ImVector_ImGuiPopupData OpenPopupStack;
|
ImVector_ImGuiPopupData OpenPopupStack;
|
||||||
ImVector_ImGuiPopupData BeginPopupStack;
|
ImVector_ImGuiPopupData BeginPopupStack;
|
||||||
ImVector_ImGuiNavTreeNodeData NavTreeNodeStack;
|
ImVector_ImGuiNavTreeNodeData NavTreeNodeStack;
|
||||||
int BeginMenuCount;
|
|
||||||
ImVector_ImGuiViewportPPtr Viewports;
|
ImVector_ImGuiViewportPPtr Viewports;
|
||||||
ImGuiWindow* NavWindow;
|
ImGuiWindow* NavWindow;
|
||||||
ImGuiID NavId;
|
ImGuiID NavId;
|
||||||
ImGuiID NavFocusScopeId;
|
ImGuiID NavFocusScopeId;
|
||||||
|
ImVector_ImGuiFocusScopeData NavFocusRoute;
|
||||||
ImGuiID NavActivateId;
|
ImGuiID NavActivateId;
|
||||||
ImGuiID NavActivateDownId;
|
ImGuiID NavActivateDownId;
|
||||||
ImGuiID NavActivatePressedId;
|
ImGuiID NavActivatePressedId;
|
||||||
ImGuiActivateFlags NavActivateFlags;
|
ImGuiActivateFlags NavActivateFlags;
|
||||||
|
ImGuiID NavHighlightActivatedId;
|
||||||
|
float NavHighlightActivatedTimer;
|
||||||
ImGuiID NavJustMovedToId;
|
ImGuiID NavJustMovedToId;
|
||||||
ImGuiID NavJustMovedToFocusScopeId;
|
ImGuiID NavJustMovedToFocusScopeId;
|
||||||
ImGuiKeyChord NavJustMovedToKeyMods;
|
ImGuiKeyChord NavJustMovedToKeyMods;
|
||||||
@@ -2388,6 +2426,7 @@ struct ImGuiContext
|
|||||||
float NavWindowingTimer;
|
float NavWindowingTimer;
|
||||||
float NavWindowingHighlightAlpha;
|
float NavWindowingHighlightAlpha;
|
||||||
bool NavWindowingToggleLayer;
|
bool NavWindowingToggleLayer;
|
||||||
|
ImGuiKey NavWindowingToggleKey;
|
||||||
ImVec2 NavWindowingAccumDeltaPos;
|
ImVec2 NavWindowingAccumDeltaPos;
|
||||||
ImVec2 NavWindowingAccumDeltaSize;
|
ImVec2 NavWindowingAccumDeltaSize;
|
||||||
float DimBgRatio;
|
float DimBgRatio;
|
||||||
@@ -2435,6 +2474,8 @@ struct ImGuiContext
|
|||||||
ImGuiInputTextDeactivatedState InputTextDeactivatedState;
|
ImGuiInputTextDeactivatedState InputTextDeactivatedState;
|
||||||
ImFont InputTextPasswordFont;
|
ImFont InputTextPasswordFont;
|
||||||
ImGuiID TempInputId;
|
ImGuiID TempInputId;
|
||||||
|
int BeginMenuDepth;
|
||||||
|
int BeginComboDepth;
|
||||||
ImGuiColorEditFlags ColorEditOptions;
|
ImGuiColorEditFlags ColorEditOptions;
|
||||||
ImGuiID ColorEditCurrentID;
|
ImGuiID ColorEditCurrentID;
|
||||||
ImGuiID ColorEditSavedID;
|
ImGuiID ColorEditSavedID;
|
||||||
@@ -2506,6 +2547,7 @@ struct ImGuiContext
|
|||||||
int WantCaptureKeyboardNextFrame;
|
int WantCaptureKeyboardNextFrame;
|
||||||
int WantTextInputNextFrame;
|
int WantTextInputNextFrame;
|
||||||
ImVector_char TempBuffer;
|
ImVector_char TempBuffer;
|
||||||
|
char TempKeychordName[64];
|
||||||
};
|
};
|
||||||
struct ImGuiWindowTempData
|
struct ImGuiWindowTempData
|
||||||
{
|
{
|
||||||
@@ -2541,6 +2583,7 @@ struct ImGuiWindowTempData
|
|||||||
int CurrentTableIdx;
|
int CurrentTableIdx;
|
||||||
ImGuiLayoutType LayoutType;
|
ImGuiLayoutType LayoutType;
|
||||||
ImGuiLayoutType ParentLayoutType;
|
ImGuiLayoutType ParentLayoutType;
|
||||||
|
ImU32 ModalDimBgColor;
|
||||||
float ItemWidth;
|
float ItemWidth;
|
||||||
float TextWrapPos;
|
float TextWrapPos;
|
||||||
ImVector_float ItemWidthStack;
|
ImVector_float ItemWidthStack;
|
||||||
@@ -2584,6 +2627,7 @@ struct ImGuiWindow
|
|||||||
bool Collapsed;
|
bool Collapsed;
|
||||||
bool WantCollapseToggle;
|
bool WantCollapseToggle;
|
||||||
bool SkipItems;
|
bool SkipItems;
|
||||||
|
bool SkipRefresh;
|
||||||
bool Appearing;
|
bool Appearing;
|
||||||
bool Hidden;
|
bool Hidden;
|
||||||
bool IsFallbackWindow;
|
bool IsFallbackWindow;
|
||||||
@@ -2635,6 +2679,7 @@ struct ImGuiWindow
|
|||||||
ImGuiWindow* RootWindowPopupTree;
|
ImGuiWindow* RootWindowPopupTree;
|
||||||
ImGuiWindow* RootWindowForTitleBarHighlight;
|
ImGuiWindow* RootWindowForTitleBarHighlight;
|
||||||
ImGuiWindow* RootWindowForNav;
|
ImGuiWindow* RootWindowForNav;
|
||||||
|
ImGuiWindow* ParentWindowForFocusRoute;
|
||||||
ImGuiWindow* NavLastChildNavWindow;
|
ImGuiWindow* NavLastChildNavWindow;
|
||||||
ImGuiID NavLastIds[ImGuiNavLayer_COUNT];
|
ImGuiID NavLastIds[ImGuiNavLayer_COUNT];
|
||||||
ImRect NavRectRel[ImGuiNavLayer_COUNT];
|
ImRect NavRectRel[ImGuiNavLayer_COUNT];
|
||||||
@@ -2759,6 +2804,13 @@ struct ImGuiTableCellData
|
|||||||
ImU32 BgColor;
|
ImU32 BgColor;
|
||||||
ImGuiTableColumnIdx Column;
|
ImGuiTableColumnIdx Column;
|
||||||
};
|
};
|
||||||
|
struct ImGuiTableHeaderData
|
||||||
|
{
|
||||||
|
ImGuiTableColumnIdx Index;
|
||||||
|
ImU32 TextColor;
|
||||||
|
ImU32 BgColor0;
|
||||||
|
ImU32 BgColor1;
|
||||||
|
};
|
||||||
struct ImGuiTableInstanceData
|
struct ImGuiTableInstanceData
|
||||||
{
|
{
|
||||||
ImGuiID TableInstanceID;
|
ImGuiID TableInstanceID;
|
||||||
@@ -2893,11 +2945,14 @@ struct ImGuiTable
|
|||||||
bool MemoryCompacted;
|
bool MemoryCompacted;
|
||||||
bool HostSkipItems;
|
bool HostSkipItems;
|
||||||
};
|
};
|
||||||
|
typedef struct ImVector_ImGuiTableHeaderData {int Size;int Capacity;ImGuiTableHeaderData* Data;} ImVector_ImGuiTableHeaderData;
|
||||||
|
|
||||||
struct ImGuiTableTempData
|
struct ImGuiTableTempData
|
||||||
{
|
{
|
||||||
int TableIndex;
|
int TableIndex;
|
||||||
float LastTimeActive;
|
float LastTimeActive;
|
||||||
float AngledheadersExtraWidth;
|
float AngledHeadersExtraWidth;
|
||||||
|
ImVector_ImGuiTableHeaderData AngledHeadersRequests;
|
||||||
ImVec2 UserOuterSize;
|
ImVec2 UserOuterSize;
|
||||||
ImDrawListSplitter DrawSplitter;
|
ImDrawListSplitter DrawSplitter;
|
||||||
ImRect HostBackupWorkRect;
|
ImRect HostBackupWorkRect;
|
||||||
@@ -2934,6 +2989,8 @@ struct ImFontBuilderIO
|
|||||||
{
|
{
|
||||||
bool (*FontBuilder_Build)(ImFontAtlas* atlas);
|
bool (*FontBuilder_Build)(ImFontAtlas* atlas);
|
||||||
};
|
};
|
||||||
|
#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
struct GLFWwindow;
|
struct GLFWwindow;
|
||||||
struct SDL_Window;
|
struct SDL_Window;
|
||||||
@@ -2965,6 +3022,7 @@ typedef ImVector<ImFontConfig> ImVector_ImFontConfig;
|
|||||||
typedef ImVector<ImFontGlyph> ImVector_ImFontGlyph;
|
typedef ImVector<ImFontGlyph> ImVector_ImFontGlyph;
|
||||||
typedef ImVector<ImGuiColorMod> ImVector_ImGuiColorMod;
|
typedef ImVector<ImGuiColorMod> ImVector_ImGuiColorMod;
|
||||||
typedef ImVector<ImGuiContextHook> ImVector_ImGuiContextHook;
|
typedef ImVector<ImGuiContextHook> ImVector_ImGuiContextHook;
|
||||||
|
typedef ImVector<ImGuiFocusScopeData> ImVector_ImGuiFocusScopeData;
|
||||||
typedef ImVector<ImGuiGroupData> ImVector_ImGuiGroupData;
|
typedef ImVector<ImGuiGroupData> ImVector_ImGuiGroupData;
|
||||||
typedef ImVector<ImGuiID> ImVector_ImGuiID;
|
typedef ImVector<ImGuiID> ImVector_ImGuiID;
|
||||||
typedef ImVector<ImGuiInputEvent> ImVector_ImGuiInputEvent;
|
typedef ImVector<ImGuiInputEvent> ImVector_ImGuiInputEvent;
|
||||||
@@ -2984,6 +3042,7 @@ typedef ImVector<ImGuiStoragePair> ImVector_ImGuiStoragePair;
|
|||||||
typedef ImVector<ImGuiStyleMod> ImVector_ImGuiStyleMod;
|
typedef ImVector<ImGuiStyleMod> ImVector_ImGuiStyleMod;
|
||||||
typedef ImVector<ImGuiTabItem> ImVector_ImGuiTabItem;
|
typedef ImVector<ImGuiTabItem> ImVector_ImGuiTabItem;
|
||||||
typedef ImVector<ImGuiTableColumnSortSpecs> ImVector_ImGuiTableColumnSortSpecs;
|
typedef ImVector<ImGuiTableColumnSortSpecs> ImVector_ImGuiTableColumnSortSpecs;
|
||||||
|
typedef ImVector<ImGuiTableHeaderData> ImVector_ImGuiTableHeaderData;
|
||||||
typedef ImVector<ImGuiTableInstanceData> ImVector_ImGuiTableInstanceData;
|
typedef ImVector<ImGuiTableInstanceData> ImVector_ImGuiTableInstanceData;
|
||||||
typedef ImVector<ImGuiTableTempData> ImVector_ImGuiTableTempData;
|
typedef ImVector<ImGuiTableTempData> ImVector_ImGuiTableTempData;
|
||||||
typedef ImVector<ImGuiTextRange> ImVector_ImGuiTextRange;
|
typedef ImVector<ImGuiTextRange> ImVector_ImGuiTextRange;
|
||||||
@@ -3097,7 +3156,7 @@ CIMGUI_API float igGetFontSize(void);
|
|||||||
CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut);
|
CIMGUI_API void igGetFontTexUvWhitePixel(ImVec2 *pOut);
|
||||||
CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul);
|
CIMGUI_API ImU32 igGetColorU32_Col(ImGuiCol idx,float alpha_mul);
|
||||||
CIMGUI_API ImU32 igGetColorU32_Vec4(const ImVec4 col);
|
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 const ImVec4* igGetStyleColorVec4(ImGuiCol idx);
|
||||||
CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut);
|
CIMGUI_API void igGetCursorScreenPos(ImVec2 *pOut);
|
||||||
CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos);
|
CIMGUI_API void igSetCursorScreenPos(const ImVec2 pos);
|
||||||
@@ -3381,6 +3440,7 @@ CIMGUI_API void igSaveIniSettingsToDisk(const char* ini_filename);
|
|||||||
CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size);
|
CIMGUI_API const char* igSaveIniSettingsToMemory(size_t* out_ini_size);
|
||||||
CIMGUI_API void igDebugTextEncoding(const char* text);
|
CIMGUI_API void igDebugTextEncoding(const char* text);
|
||||||
CIMGUI_API void igDebugFlashStyleColor(ImGuiCol idx);
|
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 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 igSetAllocatorFunctions(ImGuiMemAllocFunc alloc_func,ImGuiMemFreeFunc free_func,void* user_data);
|
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 igGetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func,ImGuiMemFreeFunc* p_free_func,void** p_user_data);
|
||||||
@@ -3512,14 +3572,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_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_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_AddNgonFilled(ImDrawList* self,const ImVec2 center,float radius,ImU32 col,int num_segments);
|
||||||
CIMGUI_API void ImDrawList_AddEllipse(ImDrawList* self,const ImVec2 center,float radius_x,float radius_y,ImU32 col,float rot,int num_segments,float thickness);
|
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,float radius_x,float radius_y,ImU32 col,float rot,int num_segments);
|
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_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_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_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_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_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_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);
|
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);
|
||||||
@@ -3527,10 +3588,11 @@ CIMGUI_API void ImDrawList_PathClear(ImDrawList* self);
|
|||||||
CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos);
|
CIMGUI_API void ImDrawList_PathLineTo(ImDrawList* self,const ImVec2 pos);
|
||||||
CIMGUI_API void ImDrawList_PathLineToMergeDuplicate(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_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_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_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_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,float radius_x,float radius_y,float rot,float a_min,float a_max,int num_segments);
|
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_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_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);
|
CIMGUI_API void ImDrawList_PathRect(ImDrawList* self,const ImVec2 rect_min,const ImVec2 rect_max,float rounding,ImDrawFlags flags);
|
||||||
@@ -3633,7 +3695,6 @@ CIMGUI_API void ImGuiViewport_GetCenter(ImVec2 *pOut,ImGuiViewport* self);
|
|||||||
CIMGUI_API void ImGuiViewport_GetWorkCenter(ImVec2 *pOut,ImGuiViewport* self);
|
CIMGUI_API void ImGuiViewport_GetWorkCenter(ImVec2 *pOut,ImGuiViewport* self);
|
||||||
CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void);
|
CIMGUI_API ImGuiPlatformImeData* ImGuiPlatformImeData_ImGuiPlatformImeData(void);
|
||||||
CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self);
|
CIMGUI_API void ImGuiPlatformImeData_destroy(ImGuiPlatformImeData* self);
|
||||||
CIMGUI_API ImGuiKey igGetKeyIndex(ImGuiKey key);
|
|
||||||
CIMGUI_API ImGuiID igImHashData(const void* data,size_t data_size,ImGuiID 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 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 void igImQsort(void* base,size_t count,size_t size_of_element,int(*compare_func)(void const*,void const*));
|
||||||
@@ -3674,6 +3735,7 @@ CIMGUI_API int igImTextCountCharsFromUtf8(const char* in_text,const char* in_tex
|
|||||||
CIMGUI_API int igImTextCountUtf8BytesFromChar(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 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 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 ImFileHandle igImFileOpen(const char* filename,const char* mode);
|
||||||
CIMGUI_API bool igImFileClose(ImFileHandle file);
|
CIMGUI_API bool igImFileClose(ImFileHandle file);
|
||||||
CIMGUI_API ImU64 igImFileGetSize(ImFileHandle file);
|
CIMGUI_API ImU64 igImFileGetSize(ImFileHandle file);
|
||||||
@@ -3721,6 +3783,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 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 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 float igImTriangleArea(const ImVec2 a,const ImVec2 b,const ImVec2 c);
|
||||||
|
CIMGUI_API bool igImTriangleIsClockwise(const ImVec2 a,const ImVec2 b,const ImVec2 c);
|
||||||
CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void);
|
CIMGUI_API ImVec1* ImVec1_ImVec1_Nil(void);
|
||||||
CIMGUI_API void ImVec1_destroy(ImVec1* self);
|
CIMGUI_API void ImVec1_destroy(ImVec1* self);
|
||||||
CIMGUI_API ImVec1* ImVec1_ImVec1_Float(float _x);
|
CIMGUI_API ImVec1* ImVec1_ImVec1_Float(float _x);
|
||||||
@@ -3779,7 +3842,6 @@ CIMGUI_API void ImDrawListSharedData_destroy(ImDrawListSharedData* self);
|
|||||||
CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error);
|
CIMGUI_API void ImDrawListSharedData_SetCircleTessellationMaxError(ImDrawListSharedData* self,float max_error);
|
||||||
CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void);
|
CIMGUI_API ImDrawDataBuilder* ImDrawDataBuilder_ImDrawDataBuilder(void);
|
||||||
CIMGUI_API void ImDrawDataBuilder_destroy(ImDrawDataBuilder* self);
|
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 ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Int(ImGuiStyleVar idx,int v);
|
||||||
CIMGUI_API void ImGuiStyleMod_destroy(ImGuiStyleMod* self);
|
CIMGUI_API void ImGuiStyleMod_destroy(ImGuiStyleMod* self);
|
||||||
CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Float(ImGuiStyleVar idx,float v);
|
CIMGUI_API ImGuiStyleMod* ImGuiStyleMod_ImGuiStyleMod_Float(ImGuiStyleVar idx,float v);
|
||||||
@@ -3809,8 +3871,9 @@ CIMGUI_API int ImGuiInputTextState_GetCursorPos(ImGuiInputTextState* self);
|
|||||||
CIMGUI_API int ImGuiInputTextState_GetSelectionStart(ImGuiInputTextState* self);
|
CIMGUI_API int ImGuiInputTextState_GetSelectionStart(ImGuiInputTextState* self);
|
||||||
CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(ImGuiInputTextState* self);
|
CIMGUI_API int ImGuiInputTextState_GetSelectionEnd(ImGuiInputTextState* self);
|
||||||
CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self);
|
CIMGUI_API void ImGuiInputTextState_SelectAll(ImGuiInputTextState* self);
|
||||||
CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void);
|
CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndSelectAll(ImGuiInputTextState* self);
|
||||||
CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self);
|
CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndKeepSelection(ImGuiInputTextState* self);
|
||||||
|
CIMGUI_API void ImGuiInputTextState_ReloadUserBufAndMoveToEnd(ImGuiInputTextState* self);
|
||||||
CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void);
|
CIMGUI_API ImGuiNextWindowData* ImGuiNextWindowData_ImGuiNextWindowData(void);
|
||||||
CIMGUI_API void ImGuiNextWindowData_destroy(ImGuiNextWindowData* self);
|
CIMGUI_API void ImGuiNextWindowData_destroy(ImGuiNextWindowData* self);
|
||||||
CIMGUI_API void ImGuiNextWindowData_ClearFlags(ImGuiNextWindowData* self);
|
CIMGUI_API void ImGuiNextWindowData_ClearFlags(ImGuiNextWindowData* self);
|
||||||
@@ -3826,6 +3889,9 @@ CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,Im
|
|||||||
CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr);
|
CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr);
|
||||||
CIMGUI_API void ImGuiPtrOrIndex_destroy(ImGuiPtrOrIndex* self);
|
CIMGUI_API void ImGuiPtrOrIndex_destroy(ImGuiPtrOrIndex* self);
|
||||||
CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index);
|
CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Int(int index);
|
||||||
|
CIMGUI_API void* ImGuiDataVarInfo_GetVarPtr(ImGuiDataVarInfo* self,void* parent);
|
||||||
|
CIMGUI_API ImGuiPopupData* ImGuiPopupData_ImGuiPopupData(void);
|
||||||
|
CIMGUI_API void ImGuiPopupData_destroy(ImGuiPopupData* self);
|
||||||
CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void);
|
CIMGUI_API ImGuiInputEvent* ImGuiInputEvent_ImGuiInputEvent(void);
|
||||||
CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self);
|
CIMGUI_API void ImGuiInputEvent_destroy(ImGuiInputEvent* self);
|
||||||
CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void);
|
CIMGUI_API ImGuiKeyRoutingData* ImGuiKeyRoutingData_ImGuiKeyRoutingData(void);
|
||||||
@@ -3907,6 +3973,7 @@ CIMGUI_API ImGuiWindow* igGetCurrentWindow(void);
|
|||||||
CIMGUI_API ImGuiWindow* igFindWindowByID(ImGuiID id);
|
CIMGUI_API ImGuiWindow* igFindWindowByID(ImGuiID id);
|
||||||
CIMGUI_API ImGuiWindow* igFindWindowByName(const char* name);
|
CIMGUI_API ImGuiWindow* igFindWindowByName(const char* name);
|
||||||
CIMGUI_API void igUpdateWindowParentAndRootLinks(ImGuiWindow* window,ImGuiWindowFlags flags,ImGuiWindow* parent_window);
|
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 void igCalcWindowNextAutoFitSize(ImVec2 *pOut,ImGuiWindow* window);
|
||||||
CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_parent,bool popup_hierarchy);
|
CIMGUI_API bool igIsWindowChildOf(ImGuiWindow* window,ImGuiWindow* potential_parent,bool popup_hierarchy);
|
||||||
CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent);
|
CIMGUI_API bool igIsWindowWithinBeginStackOf(ImGuiWindow* window,ImGuiWindow* potential_parent);
|
||||||
@@ -3917,6 +3984,7 @@ CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size,
|
|||||||
CIMGUI_API void igSetWindowCollapsed_WindowPtr(ImGuiWindow* window,bool collapsed,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 igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,const ImVec2 size);
|
||||||
CIMGUI_API void igSetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window);
|
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 igWindowRectAbsToRel(ImRect *pOut,ImGuiWindow* window,const ImRect r);
|
||||||
CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r);
|
CIMGUI_API void igWindowRectRelToAbs(ImRect *pOut,ImGuiWindow* window,const ImRect r);
|
||||||
CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p);
|
CIMGUI_API void igWindowPosRelToAbs(ImVec2 *pOut,ImGuiWindow* window,const ImVec2 p);
|
||||||
@@ -3928,6 +3996,7 @@ CIMGUI_API void igBringWindowToDisplayBack(ImGuiWindow* window);
|
|||||||
CIMGUI_API void igBringWindowToDisplayBehind(ImGuiWindow* window,ImGuiWindow* above_window);
|
CIMGUI_API void igBringWindowToDisplayBehind(ImGuiWindow* window,ImGuiWindow* above_window);
|
||||||
CIMGUI_API int igFindWindowDisplayIndex(ImGuiWindow* window);
|
CIMGUI_API int igFindWindowDisplayIndex(ImGuiWindow* window);
|
||||||
CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window);
|
CIMGUI_API ImGuiWindow* igFindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window);
|
||||||
|
CIMGUI_API void igSetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags);
|
||||||
CIMGUI_API void igSetCurrentFont(ImFont* font);
|
CIMGUI_API void igSetCurrentFont(ImFont* font);
|
||||||
CIMGUI_API ImFont* igGetDefaultFont(void);
|
CIMGUI_API ImFont* igGetDefaultFont(void);
|
||||||
CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window);
|
CIMGUI_API ImDrawList* igGetForegroundDrawList_WindowPtr(ImGuiWindow* window);
|
||||||
@@ -4030,11 +4099,13 @@ CIMGUI_API void igNavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result
|
|||||||
CIMGUI_API void igNavMoveRequestCancel(void);
|
CIMGUI_API void igNavMoveRequestCancel(void);
|
||||||
CIMGUI_API void igNavMoveRequestApplyResult(void);
|
CIMGUI_API void igNavMoveRequestApplyResult(void);
|
||||||
CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags);
|
CIMGUI_API void igNavMoveRequestTryWrapping(ImGuiWindow* window,ImGuiNavMoveFlags move_flags);
|
||||||
|
CIMGUI_API void igNavHighlightActivated(ImGuiID id);
|
||||||
CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis);
|
CIMGUI_API void igNavClearPreferredPosForAxis(ImGuiAxis axis);
|
||||||
CIMGUI_API void igNavRestoreHighlightAfterMove(void);
|
CIMGUI_API void igNavRestoreHighlightAfterMove(void);
|
||||||
CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX(void);
|
CIMGUI_API void igNavUpdateCurrentWindowIsScrollPushableX(void);
|
||||||
CIMGUI_API void igSetNavWindow(ImGuiWindow* window);
|
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 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 igFocusItem(void);
|
||||||
CIMGUI_API void igActivateItemByID(ImGuiID id);
|
CIMGUI_API void igActivateItemByID(ImGuiID id);
|
||||||
CIMGUI_API bool igIsNamedKey(ImGuiKey key);
|
CIMGUI_API bool igIsNamedKey(ImGuiKey key);
|
||||||
@@ -4044,11 +4115,12 @@ CIMGUI_API bool igIsKeyboardKey(ImGuiKey key);
|
|||||||
CIMGUI_API bool igIsGamepadKey(ImGuiKey key);
|
CIMGUI_API bool igIsGamepadKey(ImGuiKey key);
|
||||||
CIMGUI_API bool igIsMouseKey(ImGuiKey key);
|
CIMGUI_API bool igIsMouseKey(ImGuiKey key);
|
||||||
CIMGUI_API bool igIsAliasKey(ImGuiKey key);
|
CIMGUI_API bool igIsAliasKey(ImGuiKey key);
|
||||||
CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord);
|
CIMGUI_API bool igIsModKey(ImGuiKey key);
|
||||||
|
CIMGUI_API ImGuiKeyChord igFixupKeyChord(ImGuiContext* ctx,ImGuiKeyChord key_chord);
|
||||||
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key);
|
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key);
|
||||||
CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key);
|
CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key);
|
||||||
CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key);
|
CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key);
|
||||||
CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size);
|
CIMGUI_API const char* igGetKeyChordName(ImGuiKeyChord key_chord);
|
||||||
CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button);
|
CIMGUI_API ImGuiKey igMouseButtonToKey(ImGuiMouseButton button);
|
||||||
CIMGUI_API bool igIsMouseDragPastThreshold(ImGuiMouseButton button,float lock_threshold);
|
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 void igGetKeyMagnitude2d(ImVec2 *pOut,ImGuiKey key_left,ImGuiKey key_right,ImGuiKey key_up,ImGuiKey key_down);
|
||||||
@@ -4072,6 +4144,7 @@ CIMGUI_API bool igIsMouseClicked_ID(ImGuiMouseButton button,ImGuiID owner_id,ImG
|
|||||||
CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id);
|
CIMGUI_API bool igIsMouseReleased_ID(ImGuiMouseButton button,ImGuiID owner_id);
|
||||||
CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id);
|
CIMGUI_API bool igIsMouseDoubleClicked_ID(ImGuiMouseButton button,ImGuiID owner_id);
|
||||||
CIMGUI_API bool igIsKeyChordPressed_ID(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags);
|
CIMGUI_API bool igIsKeyChordPressed_ID(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags);
|
||||||
|
CIMGUI_API void igSetNextItemShortcut(ImGuiKeyChord key_chord);
|
||||||
CIMGUI_API bool igShortcut(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags);
|
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 igSetShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id,ImGuiInputFlags flags);
|
||||||
CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id);
|
CIMGUI_API bool igTestShortcutRouting(ImGuiKeyChord key_chord,ImGuiID owner_id);
|
||||||
@@ -4107,7 +4180,7 @@ CIMGUI_API float igTableGetHeaderRowHeight(void);
|
|||||||
CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth(void);
|
CIMGUI_API float igTableGetHeaderAngledMaxLabelWidth(void);
|
||||||
CIMGUI_API void igTablePushBackgroundChannel(void);
|
CIMGUI_API void igTablePushBackgroundChannel(void);
|
||||||
CIMGUI_API void igTablePopBackgroundChannel(void);
|
CIMGUI_API void igTablePopBackgroundChannel(void);
|
||||||
CIMGUI_API void igTableAngledHeadersRowEx(float angle,float label_width);
|
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* igGetCurrentTable(void);
|
||||||
CIMGUI_API ImGuiTable* igTableFindByID(ImGuiID id);
|
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);
|
CIMGUI_API bool igBeginTableEx(const char* name,ImGuiID id,int columns_count,ImGuiTableFlags flags,const ImVec2 outer_size,float inner_width);
|
||||||
@@ -4246,7 +4319,6 @@ CIMGUI_API void igDebugLocateItemResolveWithLastItem(void);
|
|||||||
CIMGUI_API void igDebugBreakClearData(void);
|
CIMGUI_API void igDebugBreakClearData(void);
|
||||||
CIMGUI_API bool igDebugBreakButton(const char* label,const char* description_of_location);
|
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 igDebugBreakButtonTooltip(bool keyboard_only,const char* description_of_location);
|
||||||
CIMGUI_API void igDebugStartItemPicker(void);
|
|
||||||
CIMGUI_API void igShowFontAtlas(ImFontAtlas* atlas);
|
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 igDebugHookIdInfo(ImGuiID id,ImGuiDataType data_type,const void* data_id,const void* data_id_end);
|
||||||
CIMGUI_API void igDebugNodeColumns(ImGuiOldColumns* columns);
|
CIMGUI_API void igDebugNodeColumns(ImGuiOldColumns* columns);
|
||||||
|
@@ -33,7 +33,7 @@ if FREETYPE_GENERATION then
|
|||||||
CFLAGS = CFLAGS .. " -DIMGUI_ENABLE_FREETYPE "
|
CFLAGS = CFLAGS .. " -DIMGUI_ENABLE_FREETYPE "
|
||||||
end
|
end
|
||||||
|
|
||||||
if COMPILER == "gcc" or COMPILER == "clang" then
|
if COMPILER == "gcc" or COMPILER == "clang" or COMPILER == "zig cc" then
|
||||||
CPRE = COMPILER..[[ -E -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS
|
CPRE = COMPILER..[[ -E -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS -DIMGUI_API="" -DIMGUI_IMPL_API="" ]] .. CFLAGS
|
||||||
CTEST = COMPILER.." --version"
|
CTEST = COMPILER.." --version"
|
||||||
elseif COMPILER == "cl" then
|
elseif COMPILER == "cl" then
|
||||||
@@ -250,6 +250,9 @@ local function cimgui_generation(parser)
|
|||||||
if gdefines.IMGUI_HAS_DOCK then
|
if gdefines.IMGUI_HAS_DOCK then
|
||||||
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_DOCK 1\n"
|
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_DOCK 1\n"
|
||||||
end
|
end
|
||||||
|
if gdefines.ImDrawCallback_ResetRenderState then
|
||||||
|
cstructsstr = cstructsstr.."\n#define ImDrawCallback_ResetRenderState "..gdefines.ImDrawCallback_ResetRenderState.."\n"
|
||||||
|
end
|
||||||
if gdefines.IMGUI_HAS_IMSTR then
|
if gdefines.IMGUI_HAS_IMSTR then
|
||||||
if not (NOCHAR or NOIMSTRV) then
|
if not (NOCHAR or NOIMSTRV) then
|
||||||
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_IMSTR 1\n"
|
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_IMSTR 1\n"
|
||||||
@@ -276,8 +279,8 @@ end
|
|||||||
--------------------------------------------------------
|
--------------------------------------------------------
|
||||||
--get imgui.h version and IMGUI_HAS_DOCK--------------------------
|
--get imgui.h version and IMGUI_HAS_DOCK--------------------------
|
||||||
--defines for the cl compiler must be present in the print_defines.cpp file
|
--defines for the cl compiler must be present in the print_defines.cpp file
|
||||||
gdefines = get_defines{"IMGUI_VERSION","IMGUI_VERSION_NUM","FLT_MAX","FLT_MIN","IMGUI_HAS_DOCK","IMGUI_HAS_IMSTR"}
|
gdefines = get_defines{"IMGUI_VERSION","IMGUI_VERSION_NUM","FLT_MAX","FLT_MIN","IMGUI_HAS_DOCK","IMGUI_HAS_IMSTR","ImDrawCallback_ResetRenderState"}
|
||||||
|
--cpp2ffi.prtable(gdefines)
|
||||||
if gdefines.IMGUI_HAS_DOCK then gdefines.IMGUI_HAS_DOCK = true end
|
if gdefines.IMGUI_HAS_DOCK then gdefines.IMGUI_HAS_DOCK = true end
|
||||||
if gdefines.IMGUI_HAS_IMSTR then gdefines.IMGUI_HAS_IMSTR = true end
|
if gdefines.IMGUI_HAS_IMSTR then gdefines.IMGUI_HAS_IMSTR = true end
|
||||||
|
|
||||||
|
@@ -47,9 +47,12 @@ CIMGUI_API void ImGui_ImplOpenGL2_DestroyDeviceObjects(void);
|
|||||||
|
|
||||||
typedef struct SDL_Window SDL_Window;
|
typedef struct SDL_Window SDL_Window;
|
||||||
typedef struct SDL_Renderer SDL_Renderer;
|
typedef struct SDL_Renderer SDL_Renderer;
|
||||||
|
typedef struct _SDL_GameController _SDL_GameController;
|
||||||
struct SDL_Window;
|
struct SDL_Window;
|
||||||
struct SDL_Renderer;
|
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_InitForVulkan(SDL_Window* window);
|
||||||
CIMGUI_API bool ImGui_ImplSDL2_InitForD3D(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_InitForMetal(SDL_Window* window);
|
||||||
@@ -58,5 +61,6 @@ CIMGUI_API bool ImGui_ImplSDL2_InitForOther(SDL_Window* window);
|
|||||||
CIMGUI_API void ImGui_ImplSDL2_Shutdown(void);
|
CIMGUI_API void ImGui_ImplSDL2_Shutdown(void);
|
||||||
CIMGUI_API void ImGui_ImplSDL2_NewFrame(void);
|
CIMGUI_API void ImGui_ImplSDL2_NewFrame(void);
|
||||||
CIMGUI_API bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event);
|
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
|
#endif
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -684,7 +684,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForD3D",
|
"cimguiname": "ImGui_ImplSDL2_InitForD3D",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForD3D",
|
"funcname": "ImGui_ImplSDL2_InitForD3D",
|
||||||
"location": "imgui_impl_sdl2:31",
|
"location": "imgui_impl_sdl2:32",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForD3D",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForD3D",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*)",
|
"signature": "(SDL_Window*)",
|
||||||
@@ -705,7 +705,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForMetal",
|
"cimguiname": "ImGui_ImplSDL2_InitForMetal",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForMetal",
|
"funcname": "ImGui_ImplSDL2_InitForMetal",
|
||||||
"location": "imgui_impl_sdl2:32",
|
"location": "imgui_impl_sdl2:33",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForMetal",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForMetal",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*)",
|
"signature": "(SDL_Window*)",
|
||||||
@@ -730,7 +730,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
|
"cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForOpenGL",
|
"funcname": "ImGui_ImplSDL2_InitForOpenGL",
|
||||||
"location": "imgui_impl_sdl2:29",
|
"location": "imgui_impl_sdl2:30",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*,void*)",
|
"signature": "(SDL_Window*,void*)",
|
||||||
@@ -751,7 +751,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForOther",
|
"cimguiname": "ImGui_ImplSDL2_InitForOther",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForOther",
|
"funcname": "ImGui_ImplSDL2_InitForOther",
|
||||||
"location": "imgui_impl_sdl2:34",
|
"location": "imgui_impl_sdl2:35",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForOther",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForOther",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*)",
|
"signature": "(SDL_Window*)",
|
||||||
@@ -776,7 +776,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
"cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
"funcname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
||||||
"location": "imgui_impl_sdl2:33",
|
"location": "imgui_impl_sdl2:34",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*,SDL_Renderer*)",
|
"signature": "(SDL_Window*,SDL_Renderer*)",
|
||||||
@@ -797,7 +797,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
"cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForVulkan",
|
"funcname": "ImGui_ImplSDL2_InitForVulkan",
|
||||||
"location": "imgui_impl_sdl2:30",
|
"location": "imgui_impl_sdl2:31",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*)",
|
"signature": "(SDL_Window*)",
|
||||||
@@ -813,7 +813,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_NewFrame",
|
"cimguiname": "ImGui_ImplSDL2_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_NewFrame",
|
"funcname": "ImGui_ImplSDL2_NewFrame",
|
||||||
"location": "imgui_impl_sdl2:36",
|
"location": "imgui_impl_sdl2:37",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_NewFrame",
|
"ov_cimguiname": "ImGui_ImplSDL2_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -834,13 +834,45 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
"cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_ProcessEvent",
|
"funcname": "ImGui_ImplSDL2_ProcessEvent",
|
||||||
"location": "imgui_impl_sdl2:37",
|
"location": "imgui_impl_sdl2:38",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
"ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(const SDL_Event*)",
|
"signature": "(const SDL_Event*)",
|
||||||
"stname": ""
|
"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:43",
|
||||||
|
"ov_cimguiname": "ImGui_ImplSDL2_SetGamepadMode",
|
||||||
|
"ret": "void",
|
||||||
|
"signature": "(ImGui_ImplSDL2_GamepadMode,struct _SDL_GameController**,int)",
|
||||||
|
"stname": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGui_ImplSDL2_Shutdown": [
|
"ImGui_ImplSDL2_Shutdown": [
|
||||||
{
|
{
|
||||||
"args": "()",
|
"args": "()",
|
||||||
@@ -850,7 +882,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_Shutdown",
|
"cimguiname": "ImGui_ImplSDL2_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_Shutdown",
|
"funcname": "ImGui_ImplSDL2_Shutdown",
|
||||||
"location": "imgui_impl_sdl2:35",
|
"location": "imgui_impl_sdl2:36",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
|
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
|
@@ -597,7 +597,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)"
|
|||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
|
||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D"
|
||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:31"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:32"
|
||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D"
|
||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)"
|
||||||
@@ -615,7 +615,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)"
|
|||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
|
||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal"
|
||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:32"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:33"
|
||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal"
|
||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)"
|
||||||
@@ -636,7 +636,7 @@ 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]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
|
||||||
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL"
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL"
|
||||||
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:29"
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:30"
|
||||||
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL"
|
||||||
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)"
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)"
|
||||||
@@ -654,7 +654,7 @@ defs["ImGui_ImplSDL2_InitForOther"][1]["call_args"] = "(window)"
|
|||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther"
|
defs["ImGui_ImplSDL2_InitForOther"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOther"
|
||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_InitForOther"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther"
|
defs["ImGui_ImplSDL2_InitForOther"][1]["funcname"] = "ImGui_ImplSDL2_InitForOther"
|
||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:34"
|
defs["ImGui_ImplSDL2_InitForOther"][1]["location"] = "imgui_impl_sdl2:35"
|
||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther"
|
defs["ImGui_ImplSDL2_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOther"
|
||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_InitForOther"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)"
|
defs["ImGui_ImplSDL2_InitForOther"][1]["signature"] = "(SDL_Window*)"
|
||||||
@@ -675,7 +675,7 @@ defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["call_args"] = "(window,renderer)"
|
|||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
|
||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["funcname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
|
||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:33"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:34"
|
||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForSDLRenderer"
|
||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["signature"] = "(SDL_Window*,SDL_Renderer*)"
|
||||||
@@ -693,7 +693,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)"
|
|||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
|
||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan"
|
||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:30"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:31"
|
||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan"
|
||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)"
|
||||||
@@ -708,7 +708,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "()"
|
|||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame"
|
||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame"
|
||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:36"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:37"
|
||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame"
|
||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "()"
|
||||||
@@ -726,12 +726,38 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)"
|
|||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent"
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:37"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:38"
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent"
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)"
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = ""
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["stname"] = ""
|
||||||
defs["ImGui_ImplSDL2_ProcessEvent"]["(const SDL_Event*)"] = defs["ImGui_ImplSDL2_ProcessEvent"][1]
|
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:43"
|
||||||
|
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"] = {}
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1] = {}
|
defs["ImGui_ImplSDL2_Shutdown"][1] = {}
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["args"] = "()"
|
||||||
@@ -741,7 +767,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()"
|
|||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown"
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {}
|
defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown"
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:35"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:36"
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown"
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()"
|
||||||
|
@@ -114,7 +114,7 @@ igGetBackgroundDrawList 2
|
|||||||
igGetColorU32 3
|
igGetColorU32 3
|
||||||
1 ImU32 igGetColorU32_Col (ImGuiCol,float)
|
1 ImU32 igGetColorU32_Col (ImGuiCol,float)
|
||||||
2 ImU32 igGetColorU32_Vec4 (const ImVec4)
|
2 ImU32 igGetColorU32_Vec4 (const ImVec4)
|
||||||
3 ImU32 igGetColorU32_U32 (ImU32)
|
3 ImU32 igGetColorU32_U32 (ImU32,float)
|
||||||
igGetForegroundDrawList 3
|
igGetForegroundDrawList 3
|
||||||
1 ImDrawList* igGetForegroundDrawList_Nil ()
|
1 ImDrawList* igGetForegroundDrawList_Nil ()
|
||||||
2 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*)
|
2 ImDrawList* igGetForegroundDrawList_WindowPtr (ImGuiWindow*)
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -50,6 +50,7 @@
|
|||||||
"ImGuiDragDropFlags": "int",
|
"ImGuiDragDropFlags": "int",
|
||||||
"ImGuiErrorLogCallback": "void(*)(void* user_data,const char* fmt,...);",
|
"ImGuiErrorLogCallback": "void(*)(void* user_data,const char* fmt,...);",
|
||||||
"ImGuiFocusRequestFlags": "int",
|
"ImGuiFocusRequestFlags": "int",
|
||||||
|
"ImGuiFocusScopeData": "struct ImGuiFocusScopeData",
|
||||||
"ImGuiFocusedFlags": "int",
|
"ImGuiFocusedFlags": "int",
|
||||||
"ImGuiGroupData": "struct ImGuiGroupData",
|
"ImGuiGroupData": "struct ImGuiGroupData",
|
||||||
"ImGuiHoveredFlags": "int",
|
"ImGuiHoveredFlags": "int",
|
||||||
@@ -139,6 +140,7 @@
|
|||||||
"ImGuiTableColumnsSettings": "struct ImGuiTableColumnsSettings",
|
"ImGuiTableColumnsSettings": "struct ImGuiTableColumnsSettings",
|
||||||
"ImGuiTableDrawChannelIdx": "ImU16",
|
"ImGuiTableDrawChannelIdx": "ImU16",
|
||||||
"ImGuiTableFlags": "int",
|
"ImGuiTableFlags": "int",
|
||||||
|
"ImGuiTableHeaderData": "struct ImGuiTableHeaderData",
|
||||||
"ImGuiTableInstanceData": "struct ImGuiTableInstanceData",
|
"ImGuiTableInstanceData": "struct ImGuiTableInstanceData",
|
||||||
"ImGuiTableRowFlags": "int",
|
"ImGuiTableRowFlags": "int",
|
||||||
"ImGuiTableSettings": "struct ImGuiTableSettings",
|
"ImGuiTableSettings": "struct ImGuiTableSettings",
|
||||||
@@ -159,6 +161,7 @@
|
|||||||
"ImGuiViewportP": "struct ImGuiViewportP",
|
"ImGuiViewportP": "struct ImGuiViewportP",
|
||||||
"ImGuiWindow": "struct ImGuiWindow",
|
"ImGuiWindow": "struct ImGuiWindow",
|
||||||
"ImGuiWindowFlags": "int",
|
"ImGuiWindowFlags": "int",
|
||||||
|
"ImGuiWindowRefreshFlags": "int",
|
||||||
"ImGuiWindowSettings": "struct ImGuiWindowSettings",
|
"ImGuiWindowSettings": "struct ImGuiWindowSettings",
|
||||||
"ImGuiWindowStackData": "struct ImGuiWindowStackData",
|
"ImGuiWindowStackData": "struct ImGuiWindowStackData",
|
||||||
"ImGuiWindowTempData": "struct ImGuiWindowTempData",
|
"ImGuiWindowTempData": "struct ImGuiWindowTempData",
|
||||||
|
@@ -50,6 +50,7 @@ defs["ImGuiDir"] = "int"
|
|||||||
defs["ImGuiDragDropFlags"] = "int"
|
defs["ImGuiDragDropFlags"] = "int"
|
||||||
defs["ImGuiErrorLogCallback"] = "void(*)(void* user_data,const char* fmt,...);"
|
defs["ImGuiErrorLogCallback"] = "void(*)(void* user_data,const char* fmt,...);"
|
||||||
defs["ImGuiFocusRequestFlags"] = "int"
|
defs["ImGuiFocusRequestFlags"] = "int"
|
||||||
|
defs["ImGuiFocusScopeData"] = "struct ImGuiFocusScopeData"
|
||||||
defs["ImGuiFocusedFlags"] = "int"
|
defs["ImGuiFocusedFlags"] = "int"
|
||||||
defs["ImGuiGroupData"] = "struct ImGuiGroupData"
|
defs["ImGuiGroupData"] = "struct ImGuiGroupData"
|
||||||
defs["ImGuiHoveredFlags"] = "int"
|
defs["ImGuiHoveredFlags"] = "int"
|
||||||
@@ -139,6 +140,7 @@ defs["ImGuiTableColumnSortSpecs"] = "struct ImGuiTableColumnSortSpecs"
|
|||||||
defs["ImGuiTableColumnsSettings"] = "struct ImGuiTableColumnsSettings"
|
defs["ImGuiTableColumnsSettings"] = "struct ImGuiTableColumnsSettings"
|
||||||
defs["ImGuiTableDrawChannelIdx"] = "ImU16"
|
defs["ImGuiTableDrawChannelIdx"] = "ImU16"
|
||||||
defs["ImGuiTableFlags"] = "int"
|
defs["ImGuiTableFlags"] = "int"
|
||||||
|
defs["ImGuiTableHeaderData"] = "struct ImGuiTableHeaderData"
|
||||||
defs["ImGuiTableInstanceData"] = "struct ImGuiTableInstanceData"
|
defs["ImGuiTableInstanceData"] = "struct ImGuiTableInstanceData"
|
||||||
defs["ImGuiTableRowFlags"] = "int"
|
defs["ImGuiTableRowFlags"] = "int"
|
||||||
defs["ImGuiTableSettings"] = "struct ImGuiTableSettings"
|
defs["ImGuiTableSettings"] = "struct ImGuiTableSettings"
|
||||||
@@ -159,6 +161,7 @@ defs["ImGuiViewportFlags"] = "int"
|
|||||||
defs["ImGuiViewportP"] = "struct ImGuiViewportP"
|
defs["ImGuiViewportP"] = "struct ImGuiViewportP"
|
||||||
defs["ImGuiWindow"] = "struct ImGuiWindow"
|
defs["ImGuiWindow"] = "struct ImGuiWindow"
|
||||||
defs["ImGuiWindowFlags"] = "int"
|
defs["ImGuiWindowFlags"] = "int"
|
||||||
|
defs["ImGuiWindowRefreshFlags"] = "int"
|
||||||
defs["ImGuiWindowSettings"] = "struct ImGuiWindowSettings"
|
defs["ImGuiWindowSettings"] = "struct ImGuiWindowSettings"
|
||||||
defs["ImGuiWindowStackData"] = "struct ImGuiWindowStackData"
|
defs["ImGuiWindowStackData"] = "struct ImGuiWindowStackData"
|
||||||
defs["ImGuiWindowTempData"] = "struct ImGuiWindowTempData"
|
defs["ImGuiWindowTempData"] = "struct ImGuiWindowTempData"
|
||||||
|
@@ -27,3 +27,7 @@
|
|||||||
#ifdef FLT_MAX
|
#ifdef FLT_MAX
|
||||||
#pragma message(CIMGUI_DEFSTRING(FLT_MAX))
|
#pragma message(CIMGUI_DEFSTRING(FLT_MAX))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ImDrawCallback_ResetRenderState
|
||||||
|
#pragma message(CIMGUI_DEFSTRING(ImDrawCallback_ResetRenderState))
|
||||||
|
#endif
|
||||||
|
2
imgui
2
imgui
Submodule imgui updated: d6cb3c923d...6ccc561a2a
Reference in New Issue
Block a user