mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-28 18:40:19 +01:00
Merge branch 'docking_inter'
This commit is contained in:
@@ -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.89.3 of Dear ImGui with internal api]
|
* currently this wrapper is based on version [1.89.5 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.
|
||||||
@@ -42,8 +42,9 @@ Notes:
|
|||||||
* edit config_generator.lua for adding includes needed by your chosen backends (vulkan needs that).
|
* edit config_generator.lua for adding includes needed by your chosen backends (vulkan needs that).
|
||||||
* Run generator.bat or generator.sh with gcc, clang or cl and LuaJIT on your PATH.
|
* Run generator.bat or generator.sh with gcc, clang or cl and LuaJIT on your PATH.
|
||||||
* as a result some files are generated: `cimgui.cpp`, `cimgui.h` and `cimgui_impl.h` for compiling and some lua/json files with information about the binding: `definitions.json` with function info, `structs_and_enums.json` with struct and enum info, `impl_definitions.json` with functions from the backends info.
|
* as a result some files are generated: `cimgui.cpp`, `cimgui.h` and `cimgui_impl.h` for compiling and some lua/json files with information about the binding: `definitions.json` with function info, `structs_and_enums.json` with struct and enum info, `impl_definitions.json` with functions from the backends info.
|
||||||
* You can pass compiler flags to generator.sh or generator.bat at the end of the call to further specify the compiler behavior. (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
|
* You can pass compiler flags to generator.sh or generator.bat by editing them at the end of the call to further specify the compiler behavior. (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
|
||||||
|
* You are able to pass any extra argument to generator.sh (.bat) in the command-line.
|
||||||
|
* If you are using different options than cimgui repo and if you want to keep them after a cimgui update, you can keep them in a copy of generator.sh (.bat) outside of cimgui folder where `cd cimgui/generator` is used before luajit call. See https://github.com/cimgui/cimgui/issues/232#issuecomment-1497059497
|
||||||
# generate binding
|
# generate binding
|
||||||
* C interface is exposed by cimgui.h when you define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
* C interface is exposed by cimgui.h when you define CIMGUI_DEFINE_ENUMS_AND_STRUCTS
|
||||||
* with your prefered language you can use the lua or json files generated as in:
|
* with your prefered language you can use the lua or json files generated as in:
|
||||||
|
@@ -103,7 +103,7 @@ target_link_libraries(cimgui_sdl ${IMGUI_LIBRARIES} ${IMGUI_SDL_LIBRARY})
|
|||||||
#using library
|
#using library
|
||||||
include_directories(../../generator/output/)
|
include_directories(../../generator/output/)
|
||||||
add_executable(test_sdl main.c)
|
add_executable(test_sdl main.c)
|
||||||
target_compile_definitions(test_sdl PUBLIC -DCIMGUI_USE_OPENGL3 -DCIMGUI_USE_SDL)
|
target_compile_definitions(test_sdl PUBLIC -DCIMGUI_USE_OPENGL3 -DCIMGUI_USE_SDL2)
|
||||||
if (MINGW)
|
if (MINGW)
|
||||||
target_link_options(test_sdl PRIVATE "-mconsole")
|
target_link_options(test_sdl PRIVATE "-mconsole")
|
||||||
endif()
|
endif()
|
||||||
|
@@ -92,7 +92,7 @@ target_link_libraries(cimgui_sdl ${IMGUI_LIBRARIES} ${IMGUI_SDL_LIBRARY})
|
|||||||
#using library
|
#using library
|
||||||
include_directories(../../generator/output/)
|
include_directories(../../generator/output/)
|
||||||
add_executable(test_sdl main.c)
|
add_executable(test_sdl main.c)
|
||||||
target_compile_definitions(test_sdl PUBLIC -DCIMGUI_USE_VULKAN -DCIMGUI_USE_SDL)
|
target_compile_definitions(test_sdl PUBLIC -DCIMGUI_USE_VULKAN -DCIMGUI_USE_SDL2)
|
||||||
if (MINGW)
|
if (MINGW)
|
||||||
target_link_options(test_sdl PRIVATE "-mconsole")
|
target_link_options(test_sdl PRIVATE "-mconsole")
|
||||||
endif()
|
endif()
|
||||||
|
80
cimgui.cpp
80
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.89.3" 18930 from Dear ImGui https://github.com/ocornut/imgui
|
//based on imgui.h file version "1.89.5" 18950 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
|
||||||
@@ -347,13 +347,13 @@ CIMGUI_API void igPopStyleVar(int count)
|
|||||||
{
|
{
|
||||||
return ImGui::PopStyleVar(count);
|
return ImGui::PopStyleVar(count);
|
||||||
}
|
}
|
||||||
CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus)
|
CIMGUI_API void igPushTabStop(bool tab_stop)
|
||||||
{
|
{
|
||||||
return ImGui::PushAllowKeyboardFocus(allow_keyboard_focus);
|
return ImGui::PushTabStop(tab_stop);
|
||||||
}
|
}
|
||||||
CIMGUI_API void igPopAllowKeyboardFocus()
|
CIMGUI_API void igPopTabStop()
|
||||||
{
|
{
|
||||||
return ImGui::PopAllowKeyboardFocus();
|
return ImGui::PopTabStop();
|
||||||
}
|
}
|
||||||
CIMGUI_API void igPushButtonRepeat(bool repeat)
|
CIMGUI_API void igPushButtonRepeat(bool repeat)
|
||||||
{
|
{
|
||||||
@@ -1041,7 +1041,7 @@ CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool*
|
|||||||
{
|
{
|
||||||
return ImGui::MenuItem(label,shortcut,p_selected,enabled);
|
return ImGui::MenuItem(label,shortcut,p_selected,enabled);
|
||||||
}
|
}
|
||||||
CIMGUI_API void igBeginTooltip()
|
CIMGUI_API bool igBeginTooltip()
|
||||||
{
|
{
|
||||||
return ImGui::BeginTooltip();
|
return ImGui::BeginTooltip();
|
||||||
}
|
}
|
||||||
@@ -1616,6 +1616,10 @@ CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float whe
|
|||||||
{
|
{
|
||||||
return self->AddMouseWheelEvent(wheel_x,wheel_y);
|
return self->AddMouseWheelEvent(wheel_x,wheel_y);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source)
|
||||||
|
{
|
||||||
|
return self->AddMouseSourceEvent(source);
|
||||||
|
}
|
||||||
CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused)
|
CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused)
|
||||||
{
|
{
|
||||||
return self->AddFocusEvent(focused);
|
return self->AddFocusEvent(focused);
|
||||||
@@ -3143,6 +3147,10 @@ CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(ImDrawDataBuilder* self
|
|||||||
{
|
{
|
||||||
return self->FlattenIntoSingleLayer();
|
return self->FlattenIntoSingleLayer();
|
||||||
}
|
}
|
||||||
|
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);
|
||||||
@@ -3187,9 +3195,21 @@ CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool
|
|||||||
{
|
{
|
||||||
return self->CalcNextTotalWidth(update_offsets);
|
return self->CalcNextTotalWidth(update_offsets);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(ImGuiContext* ctx)
|
CIMGUI_API ImGuiInputTextDeactivatedState* ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState(void)
|
||||||
{
|
{
|
||||||
return IM_NEW(ImGuiInputTextState)(ctx);
|
return IM_NEW(ImGuiInputTextDeactivatedState)();
|
||||||
|
}
|
||||||
|
CIMGUI_API void ImGuiInputTextDeactivatedState_destroy(ImGuiInputTextDeactivatedState* self)
|
||||||
|
{
|
||||||
|
IM_DELETE(self);
|
||||||
|
}
|
||||||
|
CIMGUI_API void ImGuiInputTextDeactivatedState_ClearFreeMemory(ImGuiInputTextDeactivatedState* self)
|
||||||
|
{
|
||||||
|
return self->ClearFreeMemory();
|
||||||
|
}
|
||||||
|
CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(void)
|
||||||
|
{
|
||||||
|
return IM_NEW(ImGuiInputTextState)();
|
||||||
}
|
}
|
||||||
CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self)
|
CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self)
|
||||||
{
|
{
|
||||||
@@ -3295,13 +3315,13 @@ CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self)
|
|||||||
{
|
{
|
||||||
IM_DELETE(self);
|
IM_DELETE(self);
|
||||||
}
|
}
|
||||||
CIMGUI_API void ImGuiStackSizes_SetToCurrentState(ImGuiStackSizes* self)
|
CIMGUI_API void ImGuiStackSizes_SetToContextState(ImGuiStackSizes* self,ImGuiContext* ctx)
|
||||||
{
|
{
|
||||||
return self->SetToCurrentState();
|
return self->SetToContextState(ctx);
|
||||||
}
|
}
|
||||||
CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self)
|
CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,ImGuiContext* ctx)
|
||||||
{
|
{
|
||||||
return self->CompareWithCurrentState();
|
return self->CompareWithContextState(ctx);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr)
|
CIMGUI_API ImGuiPtrOrIndex* ImGuiPtrOrIndex_ImGuiPtrOrIndex_Ptr(void* ptr)
|
||||||
{
|
{
|
||||||
@@ -3655,6 +3675,10 @@ CIMGUI_API void igSetWindowHitTestHole(ImGuiWindow* window,const ImVec2 pos,cons
|
|||||||
{
|
{
|
||||||
return ImGui::SetWindowHitTestHole(window,pos,size);
|
return ImGui::SetWindowHitTestHole(window,pos,size);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void igSetWindowHiddendAndSkipItemsForCurrentFrame(ImGuiWindow* window)
|
||||||
|
{
|
||||||
|
return ImGui::SetWindowHiddendAndSkipItemsForCurrentFrame(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);
|
||||||
@@ -3911,6 +3935,10 @@ CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id)
|
|||||||
{
|
{
|
||||||
return ImGui::ItemHoverable(bb,id);
|
return ImGui::ItemHoverable(bb,id);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API bool igIsWindowContentHoverable(ImGuiWindow* window,ImGuiHoveredFlags flags)
|
||||||
|
{
|
||||||
|
return ImGui::IsWindowContentHoverable(window,flags);
|
||||||
|
}
|
||||||
CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id)
|
CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id)
|
||||||
{
|
{
|
||||||
return ImGui::IsClippedEx(bb,id);
|
return ImGui::IsClippedEx(bb,id);
|
||||||
@@ -3951,6 +3979,10 @@ CIMGUI_API void igPopItemFlag()
|
|||||||
{
|
{
|
||||||
return ImGui::PopItemFlag();
|
return ImGui::PopItemFlag();
|
||||||
}
|
}
|
||||||
|
CIMGUI_API const ImGuiDataVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx)
|
||||||
|
{
|
||||||
|
return ImGui::GetStyleVarInfo(idx);
|
||||||
|
}
|
||||||
CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth)
|
CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth)
|
||||||
{
|
{
|
||||||
return ImGui::LogBegin(type,auto_open_depth);
|
return ImGui::LogBegin(type,auto_open_depth);
|
||||||
@@ -3995,7 +4027,7 @@ CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags)
|
|||||||
{
|
{
|
||||||
return ImGui::BeginPopupEx(id,extra_flags);
|
return ImGui::BeginPopupEx(id,extra_flags);
|
||||||
}
|
}
|
||||||
CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags)
|
CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags)
|
||||||
{
|
{
|
||||||
return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags);
|
return ImGui::BeginTooltipEx(tooltip_flags,extra_window_flags);
|
||||||
}
|
}
|
||||||
@@ -4123,11 +4155,15 @@ CIMGUI_API ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord)
|
|||||||
{
|
{
|
||||||
return ImGui::ConvertShortcutMod(key_chord);
|
return ImGui::ConvertShortcutMod(key_chord);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key)
|
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key)
|
||||||
{
|
{
|
||||||
return ImGui::ConvertSingleModFlagToKey(key);
|
return ImGui::ConvertSingleModFlagToKey(ctx,key);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key)
|
CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key)
|
||||||
|
{
|
||||||
|
return ImGui::GetKeyData(ctx,key);
|
||||||
|
}
|
||||||
|
CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key)
|
||||||
{
|
{
|
||||||
return ImGui::GetKeyData(key);
|
return ImGui::GetKeyData(key);
|
||||||
}
|
}
|
||||||
@@ -4175,6 +4211,10 @@ CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flag
|
|||||||
{
|
{
|
||||||
return ImGui::SetKeyOwner(key,owner_id,flags);
|
return ImGui::SetKeyOwner(key,owner_id,flags);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags)
|
||||||
|
{
|
||||||
|
return ImGui::SetKeyOwnersForKeyChord(key,owner_id,flags);
|
||||||
|
}
|
||||||
CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags)
|
CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags)
|
||||||
{
|
{
|
||||||
return ImGui::SetItemKeyOwner(key,flags);
|
return ImGui::SetItemKeyOwner(key,flags);
|
||||||
@@ -4183,9 +4223,9 @@ CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id)
|
|||||||
{
|
{
|
||||||
return ImGui::TestKeyOwner(key,owner_id);
|
return ImGui::TestKeyOwner(key,owner_id);
|
||||||
}
|
}
|
||||||
CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key)
|
CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key)
|
||||||
{
|
{
|
||||||
return ImGui::GetKeyOwnerData(key);
|
return ImGui::GetKeyOwnerData(ctx,key);
|
||||||
}
|
}
|
||||||
CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id)
|
CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id)
|
||||||
{
|
{
|
||||||
@@ -4755,6 +4795,10 @@ CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int b
|
|||||||
{
|
{
|
||||||
return ImGui::InputTextEx(label,hint,buf,buf_size,size_arg,flags,callback,user_data);
|
return ImGui::InputTextEx(label,hint,buf,buf_size,size_arg,flags,callback,user_data);
|
||||||
}
|
}
|
||||||
|
CIMGUI_API void igInputTextDeactivateHook(ImGuiID id)
|
||||||
|
{
|
||||||
|
return ImGui::InputTextDeactivateHook(id);
|
||||||
|
}
|
||||||
CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)
|
CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags)
|
||||||
{
|
{
|
||||||
return ImGui::TempInputText(bb,id,label,buf,buf_size,flags);
|
return ImGui::TempInputText(bb,id,label,buf,buf_size,flags);
|
||||||
|
86
cimgui.h
86
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.89.3" 18930 from Dear ImGui https://github.com/ocornut/imgui
|
//based on imgui.h file version "1.89.5" 18950 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
|
||||||
@@ -75,9 +75,11 @@ typedef struct ImRect ImRect;
|
|||||||
typedef struct ImDrawDataBuilder ImDrawDataBuilder;
|
typedef struct ImDrawDataBuilder ImDrawDataBuilder;
|
||||||
typedef struct ImGuiColorMod ImGuiColorMod;
|
typedef struct ImGuiColorMod ImGuiColorMod;
|
||||||
typedef struct ImGuiContextHook ImGuiContextHook;
|
typedef struct ImGuiContextHook ImGuiContextHook;
|
||||||
|
typedef struct ImGuiDataVarInfo ImGuiDataVarInfo;
|
||||||
typedef struct ImGuiDataTypeInfo ImGuiDataTypeInfo;
|
typedef struct ImGuiDataTypeInfo ImGuiDataTypeInfo;
|
||||||
typedef struct ImGuiGroupData ImGuiGroupData;
|
typedef struct ImGuiGroupData ImGuiGroupData;
|
||||||
typedef struct ImGuiInputTextState ImGuiInputTextState;
|
typedef struct ImGuiInputTextState ImGuiInputTextState;
|
||||||
|
typedef struct ImGuiInputTextDeactivateData ImGuiInputTextDeactivateData;
|
||||||
typedef struct ImGuiLastItemData ImGuiLastItemData;
|
typedef struct ImGuiLastItemData ImGuiLastItemData;
|
||||||
typedef struct ImGuiLocEntry ImGuiLocEntry;
|
typedef struct ImGuiLocEntry ImGuiLocEntry;
|
||||||
typedef struct ImGuiMenuColumns ImGuiMenuColumns;
|
typedef struct ImGuiMenuColumns ImGuiMenuColumns;
|
||||||
@@ -796,6 +798,12 @@ typedef enum {
|
|||||||
ImGuiMouseCursor_NotAllowed,
|
ImGuiMouseCursor_NotAllowed,
|
||||||
ImGuiMouseCursor_COUNT
|
ImGuiMouseCursor_COUNT
|
||||||
}ImGuiMouseCursor_;
|
}ImGuiMouseCursor_;
|
||||||
|
typedef enum {
|
||||||
|
ImGuiMouseSource_Mouse=0,
|
||||||
|
ImGuiMouseSource_TouchScreen=1,
|
||||||
|
ImGuiMouseSource_Pen=2,
|
||||||
|
ImGuiMouseSource_COUNT=3,
|
||||||
|
}ImGuiMouseSource;
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ImGuiCond_None = 0,
|
ImGuiCond_None = 0,
|
||||||
ImGuiCond_Always = 1 << 0,
|
ImGuiCond_Always = 1 << 0,
|
||||||
@@ -890,6 +898,8 @@ struct ImGuiIO
|
|||||||
bool ConfigWindowsResizeFromEdges;
|
bool ConfigWindowsResizeFromEdges;
|
||||||
bool ConfigWindowsMoveFromTitleBarOnly;
|
bool ConfigWindowsMoveFromTitleBarOnly;
|
||||||
float ConfigMemoryCompactTimer;
|
float ConfigMemoryCompactTimer;
|
||||||
|
bool ConfigDebugBeginReturnValueOnce;
|
||||||
|
bool ConfigDebugBeginReturnValueLoop;
|
||||||
const char* BackendPlatformName;
|
const char* BackendPlatformName;
|
||||||
const char* BackendRendererName;
|
const char* BackendRendererName;
|
||||||
void* BackendPlatformUserData;
|
void* BackendPlatformUserData;
|
||||||
@@ -917,10 +927,12 @@ struct ImGuiIO
|
|||||||
int KeyMap[ImGuiKey_COUNT];
|
int KeyMap[ImGuiKey_COUNT];
|
||||||
bool KeysDown[ImGuiKey_COUNT];
|
bool KeysDown[ImGuiKey_COUNT];
|
||||||
float NavInputs[ImGuiNavInput_COUNT];
|
float NavInputs[ImGuiNavInput_COUNT];
|
||||||
|
ImGuiContext* Ctx;
|
||||||
ImVec2 MousePos;
|
ImVec2 MousePos;
|
||||||
bool MouseDown[5];
|
bool MouseDown[5];
|
||||||
float MouseWheel;
|
float MouseWheel;
|
||||||
float MouseWheelH;
|
float MouseWheelH;
|
||||||
|
ImGuiMouseSource MouseSource;
|
||||||
bool KeyCtrl;
|
bool KeyCtrl;
|
||||||
bool KeyShift;
|
bool KeyShift;
|
||||||
bool KeyAlt;
|
bool KeyAlt;
|
||||||
@@ -938,6 +950,7 @@ struct ImGuiIO
|
|||||||
bool MouseReleased[5];
|
bool MouseReleased[5];
|
||||||
bool MouseDownOwned[5];
|
bool MouseDownOwned[5];
|
||||||
bool MouseDownOwnedUnlessPopupClose[5];
|
bool MouseDownOwnedUnlessPopupClose[5];
|
||||||
|
bool MouseWheelRequestAxisSwap;
|
||||||
float MouseDownDuration[5];
|
float MouseDownDuration[5];
|
||||||
float MouseDownDurationPrev[5];
|
float MouseDownDurationPrev[5];
|
||||||
float MouseDragMaxDistanceSqr[5];
|
float MouseDragMaxDistanceSqr[5];
|
||||||
@@ -951,6 +964,7 @@ struct ImGuiIO
|
|||||||
};
|
};
|
||||||
struct ImGuiInputTextCallbackData
|
struct ImGuiInputTextCallbackData
|
||||||
{
|
{
|
||||||
|
ImGuiContext* Ctx;
|
||||||
ImGuiInputTextFlags EventFlag;
|
ImGuiInputTextFlags EventFlag;
|
||||||
ImGuiInputTextFlags Flags;
|
ImGuiInputTextFlags Flags;
|
||||||
void* UserData;
|
void* UserData;
|
||||||
@@ -1037,6 +1051,7 @@ struct ImGuiStorage
|
|||||||
typedef struct ImGuiStoragePair ImGuiStoragePair;
|
typedef struct ImGuiStoragePair ImGuiStoragePair;
|
||||||
struct ImGuiListClipper
|
struct ImGuiListClipper
|
||||||
{
|
{
|
||||||
|
ImGuiContext* Ctx;
|
||||||
int DisplayStart;
|
int DisplayStart;
|
||||||
int DisplayEnd;
|
int DisplayEnd;
|
||||||
int ItemsCount;
|
int ItemsCount;
|
||||||
@@ -1287,9 +1302,11 @@ struct ImDrawListSharedData;
|
|||||||
struct ImGuiColorMod;
|
struct ImGuiColorMod;
|
||||||
struct ImGuiContext;
|
struct ImGuiContext;
|
||||||
struct ImGuiContextHook;
|
struct ImGuiContextHook;
|
||||||
|
struct ImGuiDataVarInfo;
|
||||||
struct ImGuiDataTypeInfo;
|
struct ImGuiDataTypeInfo;
|
||||||
struct ImGuiGroupData;
|
struct ImGuiGroupData;
|
||||||
struct ImGuiInputTextState;
|
struct ImGuiInputTextState;
|
||||||
|
struct ImGuiInputTextDeactivateData;
|
||||||
struct ImGuiLastItemData;
|
struct ImGuiLastItemData;
|
||||||
struct ImGuiLocEntry;
|
struct ImGuiLocEntry;
|
||||||
struct ImGuiMenuColumns;
|
struct ImGuiMenuColumns;
|
||||||
@@ -1533,6 +1550,12 @@ typedef enum {
|
|||||||
ImGuiPopupPositionPolicy_ComboBox,
|
ImGuiPopupPositionPolicy_ComboBox,
|
||||||
ImGuiPopupPositionPolicy_Tooltip,
|
ImGuiPopupPositionPolicy_Tooltip,
|
||||||
}ImGuiPopupPositionPolicy;
|
}ImGuiPopupPositionPolicy;
|
||||||
|
struct ImGuiDataVarInfo
|
||||||
|
{
|
||||||
|
ImGuiDataType Type;
|
||||||
|
ImU32 Count;
|
||||||
|
ImU32 Offset;
|
||||||
|
};
|
||||||
typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage;
|
typedef struct ImGuiDataTypeTempStorage ImGuiDataTypeTempStorage;
|
||||||
struct ImGuiDataTypeTempStorage
|
struct ImGuiDataTypeTempStorage
|
||||||
{
|
{
|
||||||
@@ -1595,6 +1618,12 @@ struct ImGuiMenuColumns
|
|||||||
ImU16 OffsetMark;
|
ImU16 OffsetMark;
|
||||||
ImU16 Widths[4];
|
ImU16 Widths[4];
|
||||||
};
|
};
|
||||||
|
typedef struct ImGuiInputTextDeactivatedState ImGuiInputTextDeactivatedState;
|
||||||
|
struct ImGuiInputTextDeactivatedState
|
||||||
|
{
|
||||||
|
ImGuiID ID;
|
||||||
|
ImVector_char TextA;
|
||||||
|
};
|
||||||
struct ImGuiInputTextState
|
struct ImGuiInputTextState
|
||||||
{
|
{
|
||||||
ImGuiContext* Ctx;
|
ImGuiContext* Ctx;
|
||||||
@@ -1726,20 +1755,19 @@ typedef enum {
|
|||||||
ImGuiInputSource_Keyboard,
|
ImGuiInputSource_Keyboard,
|
||||||
ImGuiInputSource_Gamepad,
|
ImGuiInputSource_Gamepad,
|
||||||
ImGuiInputSource_Clipboard,
|
ImGuiInputSource_Clipboard,
|
||||||
ImGuiInputSource_Nav,
|
|
||||||
ImGuiInputSource_COUNT
|
ImGuiInputSource_COUNT
|
||||||
}ImGuiInputSource;
|
}ImGuiInputSource;
|
||||||
typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos;
|
typedef struct ImGuiInputEventMousePos ImGuiInputEventMousePos;
|
||||||
struct ImGuiInputEventMousePos
|
struct ImGuiInputEventMousePos
|
||||||
{ float PosX, PosY;
|
{ float PosX, PosY; ImGuiMouseSource MouseSource;
|
||||||
};
|
};
|
||||||
typedef struct ImGuiInputEventMouseWheel ImGuiInputEventMouseWheel;
|
typedef struct ImGuiInputEventMouseWheel ImGuiInputEventMouseWheel;
|
||||||
struct ImGuiInputEventMouseWheel
|
struct ImGuiInputEventMouseWheel
|
||||||
{ float WheelX, WheelY;
|
{ float WheelX, WheelY; ImGuiMouseSource MouseSource;
|
||||||
};
|
};
|
||||||
typedef struct ImGuiInputEventMouseButton ImGuiInputEventMouseButton;
|
typedef struct ImGuiInputEventMouseButton ImGuiInputEventMouseButton;
|
||||||
struct ImGuiInputEventMouseButton
|
struct ImGuiInputEventMouseButton
|
||||||
{ int Button; bool Down;
|
{ int Button; bool Down; ImGuiMouseSource MouseSource;
|
||||||
};
|
};
|
||||||
typedef struct ImGuiInputEventKey ImGuiInputEventKey;
|
typedef struct ImGuiInputEventKey ImGuiInputEventKey;
|
||||||
struct ImGuiInputEventKey
|
struct ImGuiInputEventKey
|
||||||
@@ -1758,6 +1786,7 @@ struct ImGuiInputEvent
|
|||||||
{
|
{
|
||||||
ImGuiInputEventType Type;
|
ImGuiInputEventType Type;
|
||||||
ImGuiInputSource Source;
|
ImGuiInputSource Source;
|
||||||
|
ImU32 EventId;
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
ImGuiInputEventMousePos MousePos;
|
ImGuiInputEventMousePos MousePos;
|
||||||
@@ -1990,8 +2019,9 @@ typedef enum {
|
|||||||
ImGuiDebugLogFlags_EventPopup = 1 << 2,
|
ImGuiDebugLogFlags_EventPopup = 1 << 2,
|
||||||
ImGuiDebugLogFlags_EventNav = 1 << 3,
|
ImGuiDebugLogFlags_EventNav = 1 << 3,
|
||||||
ImGuiDebugLogFlags_EventClipper = 1 << 4,
|
ImGuiDebugLogFlags_EventClipper = 1 << 4,
|
||||||
ImGuiDebugLogFlags_EventIO = 1 << 5,
|
ImGuiDebugLogFlags_EventSelection = 1 << 5,
|
||||||
ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO,
|
ImGuiDebugLogFlags_EventIO = 1 << 6,
|
||||||
|
ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO,
|
||||||
ImGuiDebugLogFlags_OutputToTTY = 1 << 10,
|
ImGuiDebugLogFlags_OutputToTTY = 1 << 10,
|
||||||
}ImGuiDebugLogFlags_;
|
}ImGuiDebugLogFlags_;
|
||||||
struct ImGuiMetricsConfig
|
struct ImGuiMetricsConfig
|
||||||
@@ -2089,8 +2119,6 @@ struct ImGuiContext
|
|||||||
bool Initialized;
|
bool Initialized;
|
||||||
bool FontAtlasOwnedByContext;
|
bool FontAtlasOwnedByContext;
|
||||||
ImGuiIO IO;
|
ImGuiIO IO;
|
||||||
ImVector_ImGuiInputEvent InputEventsQueue;
|
|
||||||
ImVector_ImGuiInputEvent InputEventsTrail;
|
|
||||||
ImGuiStyle Style;
|
ImGuiStyle Style;
|
||||||
ImFont* Font;
|
ImFont* Font;
|
||||||
float FontSize;
|
float FontSize;
|
||||||
@@ -2106,6 +2134,10 @@ struct ImGuiContext
|
|||||||
bool GcCompactAll;
|
bool GcCompactAll;
|
||||||
bool TestEngineHookItems;
|
bool TestEngineHookItems;
|
||||||
void* TestEngine;
|
void* TestEngine;
|
||||||
|
ImVector_ImGuiInputEvent InputEventsQueue;
|
||||||
|
ImVector_ImGuiInputEvent InputEventsTrail;
|
||||||
|
ImGuiMouseSource InputEventsNextMouseSource;
|
||||||
|
ImU32 InputEventsNextEventId;
|
||||||
ImVector_ImGuiWindowPtr Windows;
|
ImVector_ImGuiWindowPtr Windows;
|
||||||
ImVector_ImGuiWindowPtr WindowsFocusOrder;
|
ImVector_ImGuiWindowPtr WindowsFocusOrder;
|
||||||
ImVector_ImGuiWindowPtr WindowsTempSortBuffer;
|
ImVector_ImGuiWindowPtr WindowsTempSortBuffer;
|
||||||
@@ -2176,7 +2208,6 @@ struct ImGuiContext
|
|||||||
ImGuiID NavActivateId;
|
ImGuiID NavActivateId;
|
||||||
ImGuiID NavActivateDownId;
|
ImGuiID NavActivateDownId;
|
||||||
ImGuiID NavActivatePressedId;
|
ImGuiID NavActivatePressedId;
|
||||||
ImGuiID NavActivateInputId;
|
|
||||||
ImGuiActivateFlags NavActivateFlags;
|
ImGuiActivateFlags NavActivateFlags;
|
||||||
ImGuiID NavJustMovedToId;
|
ImGuiID NavJustMovedToId;
|
||||||
ImGuiID NavJustMovedToFocusScopeId;
|
ImGuiID NavJustMovedToFocusScopeId;
|
||||||
@@ -2259,6 +2290,7 @@ struct ImGuiContext
|
|||||||
float HoverDelayClearTimer;
|
float HoverDelayClearTimer;
|
||||||
ImVec2 MouseLastValidPos;
|
ImVec2 MouseLastValidPos;
|
||||||
ImGuiInputTextState InputTextState;
|
ImGuiInputTextState InputTextState;
|
||||||
|
ImGuiInputTextDeactivatedState InputTextDeactivatedState;
|
||||||
ImFont InputTextPasswordFont;
|
ImFont InputTextPasswordFont;
|
||||||
ImGuiID TempInputId;
|
ImGuiID TempInputId;
|
||||||
ImGuiColorEditFlags ColorEditOptions;
|
ImGuiColorEditFlags ColorEditOptions;
|
||||||
@@ -2307,7 +2339,9 @@ struct ImGuiContext
|
|||||||
ImGuiDebugLogFlags DebugLogFlags;
|
ImGuiDebugLogFlags DebugLogFlags;
|
||||||
ImGuiTextBuffer DebugLogBuf;
|
ImGuiTextBuffer DebugLogBuf;
|
||||||
ImGuiTextIndex DebugLogIndex;
|
ImGuiTextIndex DebugLogIndex;
|
||||||
|
ImU8 DebugLogClipperAutoDisableFrames;
|
||||||
ImU8 DebugLocateFrames;
|
ImU8 DebugLocateFrames;
|
||||||
|
ImS8 DebugBeginReturnValueCullDepth;
|
||||||
bool DebugItemPickerActive;
|
bool DebugItemPickerActive;
|
||||||
ImU8 DebugItemPickerMouseButton;
|
ImU8 DebugItemPickerMouseButton;
|
||||||
ImGuiID DebugItemPickerBreakId;
|
ImGuiID DebugItemPickerBreakId;
|
||||||
@@ -2364,6 +2398,7 @@ typedef struct ImVector_ImGuiOldColumns {int Size;int Capacity;ImGuiOldColumns*
|
|||||||
|
|
||||||
struct ImGuiWindow
|
struct ImGuiWindow
|
||||||
{
|
{
|
||||||
|
ImGuiContext* Ctx;
|
||||||
char* Name;
|
char* Name;
|
||||||
ImGuiID ID;
|
ImGuiID ID;
|
||||||
ImGuiWindowFlags Flags;
|
ImGuiWindowFlags Flags;
|
||||||
@@ -2880,8 +2915,8 @@ CIMGUI_API void igPopStyleColor(int count);
|
|||||||
CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val);
|
CIMGUI_API void igPushStyleVar_Float(ImGuiStyleVar idx,float val);
|
||||||
CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val);
|
CIMGUI_API void igPushStyleVar_Vec2(ImGuiStyleVar idx,const ImVec2 val);
|
||||||
CIMGUI_API void igPopStyleVar(int count);
|
CIMGUI_API void igPopStyleVar(int count);
|
||||||
CIMGUI_API void igPushAllowKeyboardFocus(bool allow_keyboard_focus);
|
CIMGUI_API void igPushTabStop(bool tab_stop);
|
||||||
CIMGUI_API void igPopAllowKeyboardFocus(void);
|
CIMGUI_API void igPopTabStop(void);
|
||||||
CIMGUI_API void igPushButtonRepeat(bool repeat);
|
CIMGUI_API void igPushButtonRepeat(bool repeat);
|
||||||
CIMGUI_API void igPopButtonRepeat(void);
|
CIMGUI_API void igPopButtonRepeat(void);
|
||||||
CIMGUI_API void igPushItemWidth(float item_width);
|
CIMGUI_API void igPushItemWidth(float item_width);
|
||||||
@@ -3045,7 +3080,7 @@ CIMGUI_API bool igBeginMenu(const char* label,bool enabled);
|
|||||||
CIMGUI_API void igEndMenu(void);
|
CIMGUI_API void igEndMenu(void);
|
||||||
CIMGUI_API bool igMenuItem_Bool(const char* label,const char* shortcut,bool selected,bool enabled);
|
CIMGUI_API bool igMenuItem_Bool(const char* label,const char* shortcut,bool selected,bool enabled);
|
||||||
CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* p_selected,bool enabled);
|
CIMGUI_API bool igMenuItem_BoolPtr(const char* label,const char* shortcut,bool* p_selected,bool enabled);
|
||||||
CIMGUI_API void igBeginTooltip(void);
|
CIMGUI_API bool igBeginTooltip(void);
|
||||||
CIMGUI_API void igEndTooltip(void);
|
CIMGUI_API void igEndTooltip(void);
|
||||||
CIMGUI_API void igSetTooltip(const char* fmt,...);
|
CIMGUI_API void igSetTooltip(const char* fmt,...);
|
||||||
CIMGUI_API void igSetTooltipV(const char* fmt,va_list args);
|
CIMGUI_API void igSetTooltipV(const char* fmt,va_list args);
|
||||||
@@ -3188,6 +3223,7 @@ CIMGUI_API void ImGuiIO_AddKeyAnalogEvent(ImGuiIO* self,ImGuiKey key,bool down,f
|
|||||||
CIMGUI_API void ImGuiIO_AddMousePosEvent(ImGuiIO* self,float x,float y);
|
CIMGUI_API void ImGuiIO_AddMousePosEvent(ImGuiIO* self,float x,float y);
|
||||||
CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down);
|
CIMGUI_API void ImGuiIO_AddMouseButtonEvent(ImGuiIO* self,int button,bool down);
|
||||||
CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y);
|
CIMGUI_API void ImGuiIO_AddMouseWheelEvent(ImGuiIO* self,float wheel_x,float wheel_y);
|
||||||
|
CIMGUI_API void ImGuiIO_AddMouseSourceEvent(ImGuiIO* self,ImGuiMouseSource source);
|
||||||
CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused);
|
CIMGUI_API void ImGuiIO_AddFocusEvent(ImGuiIO* self,bool focused);
|
||||||
CIMGUI_API void ImGuiIO_AddInputCharacter(ImGuiIO* self,unsigned int c);
|
CIMGUI_API void ImGuiIO_AddInputCharacter(ImGuiIO* self,unsigned int c);
|
||||||
CIMGUI_API void ImGuiIO_AddInputCharacterUTF16(ImGuiIO* self,ImWchar16 c);
|
CIMGUI_API void ImGuiIO_AddInputCharacterUTF16(ImGuiIO* self,ImWchar16 c);
|
||||||
@@ -3568,6 +3604,7 @@ CIMGUI_API void ImDrawDataBuilder_Clear(ImDrawDataBuilder* self);
|
|||||||
CIMGUI_API void ImDrawDataBuilder_ClearFreeMemory(ImDrawDataBuilder* self);
|
CIMGUI_API void ImDrawDataBuilder_ClearFreeMemory(ImDrawDataBuilder* self);
|
||||||
CIMGUI_API int ImDrawDataBuilder_GetDrawListCount(ImDrawDataBuilder* self);
|
CIMGUI_API int ImDrawDataBuilder_GetDrawListCount(ImDrawDataBuilder* self);
|
||||||
CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(ImDrawDataBuilder* self);
|
CIMGUI_API void ImDrawDataBuilder_FlattenIntoSingleLayer(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);
|
||||||
@@ -3579,7 +3616,10 @@ CIMGUI_API void ImGuiMenuColumns_destroy(ImGuiMenuColumns* self);
|
|||||||
CIMGUI_API void ImGuiMenuColumns_Update(ImGuiMenuColumns* self,float spacing,bool window_reappearing);
|
CIMGUI_API void ImGuiMenuColumns_Update(ImGuiMenuColumns* self,float spacing,bool window_reappearing);
|
||||||
CIMGUI_API float ImGuiMenuColumns_DeclColumns(ImGuiMenuColumns* self,float w_icon,float w_label,float w_shortcut,float w_mark);
|
CIMGUI_API float ImGuiMenuColumns_DeclColumns(ImGuiMenuColumns* self,float w_icon,float w_label,float w_shortcut,float w_mark);
|
||||||
CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool update_offsets);
|
CIMGUI_API void ImGuiMenuColumns_CalcNextTotalWidth(ImGuiMenuColumns* self,bool update_offsets);
|
||||||
CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(ImGuiContext* ctx);
|
CIMGUI_API ImGuiInputTextDeactivatedState* ImGuiInputTextDeactivatedState_ImGuiInputTextDeactivatedState(void);
|
||||||
|
CIMGUI_API void ImGuiInputTextDeactivatedState_destroy(ImGuiInputTextDeactivatedState* self);
|
||||||
|
CIMGUI_API void ImGuiInputTextDeactivatedState_ClearFreeMemory(ImGuiInputTextDeactivatedState* self);
|
||||||
|
CIMGUI_API ImGuiInputTextState* ImGuiInputTextState_ImGuiInputTextState(void);
|
||||||
CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self);
|
CIMGUI_API void ImGuiInputTextState_destroy(ImGuiInputTextState* self);
|
||||||
CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self);
|
CIMGUI_API void ImGuiInputTextState_ClearText(ImGuiInputTextState* self);
|
||||||
CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self);
|
CIMGUI_API void ImGuiInputTextState_ClearFreeMemory(ImGuiInputTextState* self);
|
||||||
@@ -3606,8 +3646,8 @@ CIMGUI_API ImGuiLastItemData* ImGuiLastItemData_ImGuiLastItemData(void);
|
|||||||
CIMGUI_API void ImGuiLastItemData_destroy(ImGuiLastItemData* self);
|
CIMGUI_API void ImGuiLastItemData_destroy(ImGuiLastItemData* self);
|
||||||
CIMGUI_API ImGuiStackSizes* ImGuiStackSizes_ImGuiStackSizes(void);
|
CIMGUI_API ImGuiStackSizes* ImGuiStackSizes_ImGuiStackSizes(void);
|
||||||
CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self);
|
CIMGUI_API void ImGuiStackSizes_destroy(ImGuiStackSizes* self);
|
||||||
CIMGUI_API void ImGuiStackSizes_SetToCurrentState(ImGuiStackSizes* self);
|
CIMGUI_API void ImGuiStackSizes_SetToContextState(ImGuiStackSizes* self,ImGuiContext* ctx);
|
||||||
CIMGUI_API void ImGuiStackSizes_CompareWithCurrentState(ImGuiStackSizes* self);
|
CIMGUI_API void ImGuiStackSizes_CompareWithContextState(ImGuiStackSizes* self,ImGuiContext* ctx);
|
||||||
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);
|
||||||
@@ -3696,6 +3736,7 @@ CIMGUI_API void igSetWindowPos_WindowPtr(ImGuiWindow* window,const ImVec2 pos,Im
|
|||||||
CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size,ImGuiCond cond);
|
CIMGUI_API void igSetWindowSize_WindowPtr(ImGuiWindow* window,const ImVec2 size,ImGuiCond cond);
|
||||||
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 igSetWindowHiddendAndSkipItemsForCurrentFrame(ImGuiWindow* 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 igFocusWindow(ImGuiWindow* window);
|
CIMGUI_API void igFocusWindow(ImGuiWindow* window);
|
||||||
@@ -3760,6 +3801,7 @@ CIMGUI_API void igItemSize_Vec2(const ImVec2 size,float text_baseline_y);
|
|||||||
CIMGUI_API void igItemSize_Rect(const ImRect bb,float text_baseline_y);
|
CIMGUI_API void igItemSize_Rect(const ImRect bb,float text_baseline_y);
|
||||||
CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags);
|
CIMGUI_API bool igItemAdd(const ImRect bb,ImGuiID id,const ImRect* nav_bb,ImGuiItemFlags extra_flags);
|
||||||
CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id);
|
CIMGUI_API bool igItemHoverable(const ImRect bb,ImGuiID id);
|
||||||
|
CIMGUI_API bool igIsWindowContentHoverable(ImGuiWindow* window,ImGuiHoveredFlags flags);
|
||||||
CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id);
|
CIMGUI_API bool igIsClippedEx(const ImRect bb,ImGuiID id);
|
||||||
CIMGUI_API void igSetLastItemData(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect item_rect);
|
CIMGUI_API void igSetLastItemData(ImGuiID item_id,ImGuiItemFlags in_flags,ImGuiItemStatusFlags status_flags,const ImRect item_rect);
|
||||||
CIMGUI_API void igCalcItemSize(ImVec2 *pOut,ImVec2 size,float default_w,float default_h);
|
CIMGUI_API void igCalcItemSize(ImVec2 *pOut,ImVec2 size,float default_w,float default_h);
|
||||||
@@ -3770,6 +3812,7 @@ CIMGUI_API void igGetContentRegionMaxAbs(ImVec2 *pOut);
|
|||||||
CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess);
|
CIMGUI_API void igShrinkWidths(ImGuiShrinkWidthItem* items,int count,float width_excess);
|
||||||
CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled);
|
CIMGUI_API void igPushItemFlag(ImGuiItemFlags option,bool enabled);
|
||||||
CIMGUI_API void igPopItemFlag(void);
|
CIMGUI_API void igPopItemFlag(void);
|
||||||
|
CIMGUI_API const ImGuiDataVarInfo* igGetStyleVarInfo(ImGuiStyleVar idx);
|
||||||
CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth);
|
CIMGUI_API void igLogBegin(ImGuiLogType type,int auto_open_depth);
|
||||||
CIMGUI_API void igLogToBuffer(int auto_open_depth);
|
CIMGUI_API void igLogToBuffer(int auto_open_depth);
|
||||||
CIMGUI_API void igLogRenderedText(const ImVec2* ref_pos,const char* text,const char* text_end);
|
CIMGUI_API void igLogRenderedText(const ImVec2* ref_pos,const char* text,const char* text_end);
|
||||||
@@ -3781,7 +3824,7 @@ CIMGUI_API void igClosePopupsOverWindow(ImGuiWindow* ref_window,bool restore_foc
|
|||||||
CIMGUI_API void igClosePopupsExceptModals(void);
|
CIMGUI_API void igClosePopupsExceptModals(void);
|
||||||
CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags);
|
CIMGUI_API bool igIsPopupOpen_ID(ImGuiID id,ImGuiPopupFlags popup_flags);
|
||||||
CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags);
|
CIMGUI_API bool igBeginPopupEx(ImGuiID id,ImGuiWindowFlags extra_flags);
|
||||||
CIMGUI_API void igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags);
|
CIMGUI_API bool igBeginTooltipEx(ImGuiTooltipFlags tooltip_flags,ImGuiWindowFlags extra_window_flags);
|
||||||
CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window);
|
CIMGUI_API void igGetPopupAllowedExtentRect(ImRect *pOut,ImGuiWindow* window);
|
||||||
CIMGUI_API ImGuiWindow* igGetTopMostPopupModal(void);
|
CIMGUI_API ImGuiWindow* igGetTopMostPopupModal(void);
|
||||||
CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal(void);
|
CIMGUI_API ImGuiWindow* igGetTopMostAndVisiblePopupModal(void);
|
||||||
@@ -3813,8 +3856,9 @@ 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 ImGuiKeyChord igConvertShortcutMod(ImGuiKeyChord key_chord);
|
||||||
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiKey key);
|
CIMGUI_API ImGuiKey igConvertSingleModFlagToKey(ImGuiContext* ctx,ImGuiKey key);
|
||||||
CIMGUI_API ImGuiKeyData* igGetKeyData(ImGuiKey key);
|
CIMGUI_API ImGuiKeyData* igGetKeyData_ContextPtr(ImGuiContext* ctx,ImGuiKey key);
|
||||||
|
CIMGUI_API ImGuiKeyData* igGetKeyData_Key(ImGuiKey key);
|
||||||
CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size);
|
CIMGUI_API void igGetKeyChordName(ImGuiKeyChord key_chord,char* out_buf,int out_buf_size);
|
||||||
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);
|
||||||
@@ -3826,9 +3870,10 @@ CIMGUI_API void igSetActiveIdUsingAllKeyboardKeys(void);
|
|||||||
CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir);
|
CIMGUI_API bool igIsActiveIdUsingNavDir(ImGuiDir dir);
|
||||||
CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key);
|
CIMGUI_API ImGuiID igGetKeyOwner(ImGuiKey key);
|
||||||
CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags);
|
CIMGUI_API void igSetKeyOwner(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags);
|
||||||
|
CIMGUI_API void igSetKeyOwnersForKeyChord(ImGuiKeyChord key,ImGuiID owner_id,ImGuiInputFlags flags);
|
||||||
CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags);
|
CIMGUI_API void igSetItemKeyOwner(ImGuiKey key,ImGuiInputFlags flags);
|
||||||
CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id);
|
CIMGUI_API bool igTestKeyOwner(ImGuiKey key,ImGuiID owner_id);
|
||||||
CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiKey key);
|
CIMGUI_API ImGuiKeyOwnerData* igGetKeyOwnerData(ImGuiContext* ctx,ImGuiKey key);
|
||||||
CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id);
|
CIMGUI_API bool igIsKeyDown_ID(ImGuiKey key,ImGuiID owner_id);
|
||||||
CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags);
|
CIMGUI_API bool igIsKeyPressed_ID(ImGuiKey key,ImGuiID owner_id,ImGuiInputFlags flags);
|
||||||
CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id);
|
CIMGUI_API bool igIsKeyReleased_ID(ImGuiKey key,ImGuiID owner_id);
|
||||||
@@ -3971,6 +4016,7 @@ CIMGUI_API bool igDataTypeApplyFromText(const char* buf,ImGuiDataType data_type,
|
|||||||
CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2);
|
CIMGUI_API int igDataTypeCompare(ImGuiDataType data_type,const void* arg_1,const void* arg_2);
|
||||||
CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max);
|
CIMGUI_API bool igDataTypeClamp(ImGuiDataType data_type,void* p_data,const void* p_min,const void* p_max);
|
||||||
CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data);
|
CIMGUI_API bool igInputTextEx(const char* label,const char* hint,char* buf,int buf_size,const ImVec2 size_arg,ImGuiInputTextFlags flags,ImGuiInputTextCallback callback,void* user_data);
|
||||||
|
CIMGUI_API void igInputTextDeactivateHook(ImGuiID id);
|
||||||
CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags);
|
CIMGUI_API bool igTempInputText(const ImRect bb,ImGuiID id,const char* label,char* buf,int buf_size,ImGuiInputTextFlags flags);
|
||||||
CIMGUI_API bool igTempInputScalar(const ImRect bb,ImGuiID id,const char* label,ImGuiDataType data_type,void* p_data,const char* format,const void* p_clamp_min,const void* p_clamp_max);
|
CIMGUI_API bool igTempInputScalar(const ImRect bb,ImGuiID id,const char* label,ImGuiDataType data_type,void* p_data,const char* format,const void* p_clamp_min,const void* p_clamp_max);
|
||||||
CIMGUI_API bool igTempInputIsActive(ImGuiID id);
|
CIMGUI_API bool igTempInputIsActive(ImGuiID id);
|
||||||
|
@@ -986,15 +986,28 @@ local function ADDIMSTR_S(FP)
|
|||||||
if dd.signature == defT2.signature then
|
if dd.signature == defT2.signature then
|
||||||
doadd = false;
|
doadd = false;
|
||||||
print("skip _S addition",defT2.cimguiname)
|
print("skip _S addition",defT2.cimguiname)
|
||||||
|
--M.prtable(defT2)
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
--delete imstrv generation
|
||||||
|
if FP.NOIMSTRV then
|
||||||
|
newcdefs[#newcdefs] = nil
|
||||||
|
cimf[t.signature] = nil
|
||||||
|
for i,v in ipairs(cimf) do
|
||||||
|
if v.signature == t.signature then
|
||||||
|
table.remove(cimf, i)
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
--add _S version
|
--add _S version
|
||||||
if doadd then
|
if doadd and not FP.NOCHAR then
|
||||||
cimf[#cimf+1] = defT2
|
cimf[#cimf+1] = defT2
|
||||||
cimf[defT2.signature] = defT2
|
cimf[defT2.signature] = defT2
|
||||||
newcdefs[#newcdefs+1] = {stname=t.stname,funcname=t.funcname,args=defT2.args,signature=defT2.signature,cimguiname=defT2.cimguiname,ret =defT2.ret}
|
newcdefs[#newcdefs+1] = {stname=t.stname,funcname=t.funcname,args=defT2.args,signature=defT2.signature,cimguiname=defT2.cimguiname,ret =defT2.ret}
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
else print("not cimguiname in");M.prtable(t)
|
else print("not cimguiname in");M.prtable(t)
|
||||||
end
|
end
|
||||||
|
@@ -15,10 +15,10 @@ set PATH=%PATH%;C:\anima;C:\mingws\i686-7.2.0-release-posix-dwarf-rt_v5-rev1\min
|
|||||||
:: set PATH=%PATH%;C:\luaGL\sources\luajit-master\luajit-master\bin\mingw32;C:\mingw32\bin;
|
:: set PATH=%PATH%;C:\luaGL\sources\luajit-master\luajit-master\bin\mingw32;C:\mingw32\bin;
|
||||||
::process files
|
::process files
|
||||||
:: arg[1] compiler name gcc, clang or cl
|
:: arg[1] compiler name gcc, clang or cl
|
||||||
:: arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation
|
:: arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation, nochar to skip char* function version, noimstrv to skip imstrv
|
||||||
:: examples: "" "internal" "internal freetype comments"
|
:: examples: "" "internal" "internal freetype comments"
|
||||||
:: arg[3..n] name of implementations to generate and/or CFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
|
:: arg[3..n] name of implementations to generate and/or CFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
|
||||||
luajit ./generator.lua gcc "internal" glfw opengl3 opengl2 sdl2
|
luajit ./generator.lua gcc "internal noimstrv" glfw opengl3 opengl2 sdl2 %*
|
||||||
|
|
||||||
::leave console open
|
::leave console open
|
||||||
cmd /k
|
cmd /k
|
||||||
|
@@ -9,6 +9,8 @@ local COMPILER = script_args[1]
|
|||||||
local INTERNAL_GENERATION = script_args[2]:match("internal") and true or false
|
local INTERNAL_GENERATION = script_args[2]:match("internal") and true or false
|
||||||
local FREETYPE_GENERATION = script_args[2]:match("freetype") and true or false
|
local FREETYPE_GENERATION = script_args[2]:match("freetype") and true or false
|
||||||
local COMMENTS_GENERATION = script_args[2]:match("comments") and true or false
|
local COMMENTS_GENERATION = script_args[2]:match("comments") and true or false
|
||||||
|
local NOCHAR = script_args[2]:match("nochar") and true or false
|
||||||
|
local NOIMSTRV = script_args[2]:match("noimstrv") and true or false
|
||||||
local IMGUI_PATH = os.getenv"IMGUI_PATH" or "../imgui"
|
local IMGUI_PATH = os.getenv"IMGUI_PATH" or "../imgui"
|
||||||
local CFLAGS = ""
|
local CFLAGS = ""
|
||||||
local CPRE,CTEST
|
local CPRE,CTEST
|
||||||
@@ -249,8 +251,10 @@ local function cimgui_generation(parser)
|
|||||||
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_DOCK 1\n"
|
cstructsstr = cstructsstr.."\n#define IMGUI_HAS_DOCK 1\n"
|
||||||
end
|
end
|
||||||
if gdefines.IMGUI_HAS_IMSTR then
|
if gdefines.IMGUI_HAS_IMSTR 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"
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
hstrfile = hstrfile:gsub([[#include "imgui_structs%.h"]],cstructsstr)
|
hstrfile = hstrfile:gsub([[#include "imgui_structs%.h"]],cstructsstr)
|
||||||
local cfuncsstr = func_header_generate(parser)
|
local cfuncsstr = func_header_generate(parser)
|
||||||
@@ -291,7 +295,10 @@ if gdefines.IMGUI_HAS_DOCK then
|
|||||||
]]
|
]]
|
||||||
|
|
||||||
end
|
end
|
||||||
|
assert(not NOCHAR or not NOIMSTRV,"nochar and noimstrv cant be set at the same time")
|
||||||
print("IMGUI_HAS_IMSTR",gdefines.IMGUI_HAS_IMSTR)
|
print("IMGUI_HAS_IMSTR",gdefines.IMGUI_HAS_IMSTR)
|
||||||
|
print("NOCHAR",NOCHAR)
|
||||||
|
print("NOIMSTRV",NOIMSTRV)
|
||||||
print("IMGUI_HAS_DOCK",gdefines.IMGUI_HAS_DOCK)
|
print("IMGUI_HAS_DOCK",gdefines.IMGUI_HAS_DOCK)
|
||||||
print("IMGUI_VERSION",gdefines.IMGUI_VERSION)
|
print("IMGUI_VERSION",gdefines.IMGUI_VERSION)
|
||||||
|
|
||||||
@@ -311,6 +318,8 @@ local function parseImGuiHeader(header,names)
|
|||||||
parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"}
|
parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"}
|
||||||
--parser.gen_template_typedef = gen_template_typedef --use auto
|
--parser.gen_template_typedef = gen_template_typedef --use auto
|
||||||
parser.COMMENTS_GENERATION = COMMENTS_GENERATION
|
parser.COMMENTS_GENERATION = COMMENTS_GENERATION
|
||||||
|
parser.NOCHAR = NOCHAR
|
||||||
|
parser.NOIMSTRV = NOIMSTRV
|
||||||
local defines = parser:take_lines(CPRE..header,names,COMPILER)
|
local defines = parser:take_lines(CPRE..header,names,COMPILER)
|
||||||
|
|
||||||
return parser
|
return parser
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# this script must be executed in this directory
|
# this script must be executed in this directory
|
||||||
# all the output goes to generator/output folder
|
# all the output goes to generator/output folder
|
||||||
@@ -13,13 +13,65 @@
|
|||||||
|
|
||||||
#process files
|
#process files
|
||||||
# arg[1] compiler name gcc, clang, or cl
|
# arg[1] compiler name gcc, clang, or cl
|
||||||
# arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation
|
# arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation, nochar to skip char* function version, noimstrv to skip imstrv
|
||||||
# examples: "" "internal" "internal freetype" "comments internal"
|
# examples: "" "internal" "internal freetype" "comments internal"
|
||||||
# arg[3..n] name of implementations to generate and/or CLFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
|
# arg[3..n] name of implementations to generate and/or CLFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
|
||||||
|
#
|
||||||
|
|
||||||
|
# parse command line arguments
|
||||||
|
# ref: https://stackoverflow.com/questions/192249/how-do-i-parse-command-line-arguments-in-bash
|
||||||
|
POSITIONAL_ARGS=()
|
||||||
|
|
||||||
|
TARGETS="internal noimstrv"
|
||||||
|
CFLAGS="glfw opengl3 opengl2 sdl2"
|
||||||
|
|
||||||
|
help() {
|
||||||
|
cat <<EOF
|
||||||
|
Usage of generator.sh:
|
||||||
|
-t --target specify which imgui features should be generated
|
||||||
|
(default: $TARGETS)
|
||||||
|
-c --cflags specify additional gcc flags
|
||||||
|
(default: $CFLAGS
|
||||||
|
-h --help show this message and exit
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case $1 in
|
||||||
|
-c|--cflags)
|
||||||
|
CFLAGS="$2"
|
||||||
|
shift # past argument
|
||||||
|
shift # past value
|
||||||
|
;;
|
||||||
|
-t|--target)
|
||||||
|
TARGETS="$2"
|
||||||
|
shift # past argument
|
||||||
|
shift # past value
|
||||||
|
;;
|
||||||
|
-h|--help)
|
||||||
|
help
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
-*|--*)
|
||||||
|
echo "Unknown option $1"
|
||||||
|
help
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
POSITIONAL_ARGS+=("$1") # save positional arg
|
||||||
|
shift # past argument
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
set -- "${POSITIONAL_ARGS[@]}" # restore positional parameters
|
||||||
|
|
||||||
if [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" || "$OSTYPE" == "win32" ]];
|
if [[ "$OSTYPE" == "cygwin" || "$OSTYPE" == "msys" || "$OSTYPE" == "win32" ]];
|
||||||
then
|
then
|
||||||
suffix='.exe'
|
suffix='.exe'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
luajit$suffix ./generator.lua gcc "internal" glfw opengl3 opengl2 sdl2
|
echo "CFLAGS: " $CFLAGS
|
||||||
|
echo "TARGETS: " $TARGETS
|
||||||
|
|
||||||
|
luajit$suffix ./generator.lua gcc "$TARGETS" $CFLAGS
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -17,7 +17,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_CharCallback",
|
"cimguiname": "ImGui_ImplGlfw_CharCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_CharCallback",
|
"funcname": "ImGui_ImplGlfw_CharCallback",
|
||||||
"location": "imgui_impl_glfw:45",
|
"location": "imgui_impl_glfw:46",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_CharCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,unsigned int)",
|
"signature": "(GLFWwindow*,unsigned int)",
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
"cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
|
"funcname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
"location": "imgui_impl_glfw:40",
|
"location": "imgui_impl_glfw:41",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_CursorEnterCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int)",
|
"signature": "(GLFWwindow*,int)",
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
"cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
|
"funcname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||||
"location": "imgui_impl_glfw:41",
|
"location": "imgui_impl_glfw:42",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_CursorPosCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,double,double)",
|
"signature": "(GLFWwindow*,double,double)",
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
"cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
|
"funcname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||||
"location": "imgui_impl_glfw:22",
|
"location": "imgui_impl_glfw:23",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
"ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(GLFWwindow*,bool)",
|
"signature": "(GLFWwindow*,bool)",
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InitForOther",
|
"cimguiname": "ImGui_ImplGlfw_InitForOther",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InitForOther",
|
"funcname": "ImGui_ImplGlfw_InitForOther",
|
||||||
"location": "imgui_impl_glfw:24",
|
"location": "imgui_impl_glfw:25",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
|
"ov_cimguiname": "ImGui_ImplGlfw_InitForOther",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(GLFWwindow*,bool)",
|
"signature": "(GLFWwindow*,bool)",
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
"cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InitForVulkan",
|
"funcname": "ImGui_ImplGlfw_InitForVulkan",
|
||||||
"location": "imgui_impl_glfw:23",
|
"location": "imgui_impl_glfw:24",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
"ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(GLFWwindow*,bool)",
|
"signature": "(GLFWwindow*,bool)",
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
"cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
|
"funcname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||||
"location": "imgui_impl_glfw:31",
|
"location": "imgui_impl_glfw:32",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
"ov_cimguiname": "ImGui_ImplGlfw_InstallCallbacks",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*)",
|
"signature": "(GLFWwindow*)",
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
"cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_KeyCallback",
|
"funcname": "ImGui_ImplGlfw_KeyCallback",
|
||||||
"location": "imgui_impl_glfw:44",
|
"location": "imgui_impl_glfw:45",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_KeyCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int,int,int,int)",
|
"signature": "(GLFWwindow*,int,int,int,int)",
|
||||||
@@ -229,7 +229,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
"cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_MonitorCallback",
|
"funcname": "ImGui_ImplGlfw_MonitorCallback",
|
||||||
"location": "imgui_impl_glfw:46",
|
"location": "imgui_impl_glfw:47",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_MonitorCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWmonitor*,int)",
|
"signature": "(GLFWmonitor*,int)",
|
||||||
@@ -262,7 +262,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
"cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
|
"funcname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
"location": "imgui_impl_glfw:42",
|
"location": "imgui_impl_glfw:43",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int,int,int)",
|
"signature": "(GLFWwindow*,int,int,int)",
|
||||||
@@ -278,7 +278,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_NewFrame",
|
"cimguiname": "ImGui_ImplGlfw_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_NewFrame",
|
"funcname": "ImGui_ImplGlfw_NewFrame",
|
||||||
"location": "imgui_impl_glfw:26",
|
"location": "imgui_impl_glfw:27",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
|
"ov_cimguiname": "ImGui_ImplGlfw_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -299,7 +299,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
"cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
|
"funcname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
"location": "imgui_impl_glfw:32",
|
"location": "imgui_impl_glfw:33",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
"ov_cimguiname": "ImGui_ImplGlfw_RestoreCallbacks",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*)",
|
"signature": "(GLFWwindow*)",
|
||||||
@@ -328,7 +328,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
"cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_ScrollCallback",
|
"funcname": "ImGui_ImplGlfw_ScrollCallback",
|
||||||
"location": "imgui_impl_glfw:43",
|
"location": "imgui_impl_glfw:44",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,double,double)",
|
"signature": "(GLFWwindow*,double,double)",
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
"cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
"funcname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
"location": "imgui_impl_glfw:36",
|
"location": "imgui_impl_glfw:37",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
"ov_cimguiname": "ImGui_ImplGlfw_SetCallbacksChainForAllWindows",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(bool)",
|
"signature": "(bool)",
|
||||||
@@ -365,7 +365,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_Shutdown",
|
"cimguiname": "ImGui_ImplGlfw_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_Shutdown",
|
"funcname": "ImGui_ImplGlfw_Shutdown",
|
||||||
"location": "imgui_impl_glfw:25",
|
"location": "imgui_impl_glfw:26",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
|
"ov_cimguiname": "ImGui_ImplGlfw_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -390,7 +390,7 @@
|
|||||||
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
"cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
|
"funcname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
"location": "imgui_impl_glfw:39",
|
"location": "imgui_impl_glfw:40",
|
||||||
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
"ov_cimguiname": "ImGui_ImplGlfw_WindowFocusCallback",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "(GLFWwindow*,int)",
|
"signature": "(GLFWwindow*,int)",
|
||||||
@@ -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:26",
|
"location": "imgui_impl_sdl2:27",
|
||||||
"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:27",
|
"location": "imgui_impl_sdl2:28",
|
||||||
"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:24",
|
"location": "imgui_impl_sdl2:25",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*,void*)",
|
"signature": "(SDL_Window*,void*)",
|
||||||
@@ -755,7 +755,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
"cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
"funcname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
||||||
"location": "imgui_impl_sdl2:28",
|
"location": "imgui_impl_sdl2:29",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForSDLRenderer",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*,SDL_Renderer*)",
|
"signature": "(SDL_Window*,SDL_Renderer*)",
|
||||||
@@ -776,7 +776,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
"cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_InitForVulkan",
|
"funcname": "ImGui_ImplSDL2_InitForVulkan",
|
||||||
"location": "imgui_impl_sdl2:25",
|
"location": "imgui_impl_sdl2:26",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
"ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(SDL_Window*)",
|
"signature": "(SDL_Window*)",
|
||||||
@@ -792,7 +792,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_NewFrame",
|
"cimguiname": "ImGui_ImplSDL2_NewFrame",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_NewFrame",
|
"funcname": "ImGui_ImplSDL2_NewFrame",
|
||||||
"location": "imgui_impl_sdl2:30",
|
"location": "imgui_impl_sdl2:31",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_NewFrame",
|
"ov_cimguiname": "ImGui_ImplSDL2_NewFrame",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
@@ -813,7 +813,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
"cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_ProcessEvent",
|
"funcname": "ImGui_ImplSDL2_ProcessEvent",
|
||||||
"location": "imgui_impl_sdl2:31",
|
"location": "imgui_impl_sdl2:32",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
"ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent",
|
||||||
"ret": "bool",
|
"ret": "bool",
|
||||||
"signature": "(const SDL_Event*)",
|
"signature": "(const SDL_Event*)",
|
||||||
@@ -829,7 +829,7 @@
|
|||||||
"cimguiname": "ImGui_ImplSDL2_Shutdown",
|
"cimguiname": "ImGui_ImplSDL2_Shutdown",
|
||||||
"defaults": {},
|
"defaults": {},
|
||||||
"funcname": "ImGui_ImplSDL2_Shutdown",
|
"funcname": "ImGui_ImplSDL2_Shutdown",
|
||||||
"location": "imgui_impl_sdl2:29",
|
"location": "imgui_impl_sdl2:30",
|
||||||
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
|
"ov_cimguiname": "ImGui_ImplSDL2_Shutdown",
|
||||||
"ret": "void",
|
"ret": "void",
|
||||||
"signature": "()",
|
"signature": "()",
|
||||||
|
@@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)"
|
|||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback"
|
defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback"
|
||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback"
|
defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback"
|
||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:45"
|
defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:46"
|
||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback"
|
defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback"
|
||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)"
|
defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)"
|
||||||
@@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["call_args"] = "(window,entered)"
|
|||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
|
||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback"
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorEnterCallback"
|
||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:40"
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["location"] = "imgui_impl_glfw:41"
|
||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorEnterCallback"
|
||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)"
|
defs["ImGui_ImplGlfw_CursorEnterCallback"][1]["signature"] = "(GLFWwindow*,int)"
|
||||||
@@ -59,7 +59,7 @@ defs["ImGui_ImplGlfw_CursorPosCallback"][1]["call_args"] = "(window,x,y)"
|
|||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
|
||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback"
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["funcname"] = "ImGui_ImplGlfw_CursorPosCallback"
|
||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:41"
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["location"] = "imgui_impl_glfw:42"
|
||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CursorPosCallback"
|
||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
|
defs["ImGui_ImplGlfw_CursorPosCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
|
||||||
@@ -80,7 +80,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback
|
|||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
|
||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL"
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL"
|
||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:22"
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:23"
|
||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL"
|
||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool"
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)"
|
defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)"
|
||||||
@@ -101,7 +101,7 @@ defs["ImGui_ImplGlfw_InitForOther"][1]["call_args"] = "(window,install_callbacks
|
|||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther"
|
defs["ImGui_ImplGlfw_InitForOther"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOther"
|
||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_InitForOther"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther"
|
defs["ImGui_ImplGlfw_InitForOther"][1]["funcname"] = "ImGui_ImplGlfw_InitForOther"
|
||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:24"
|
defs["ImGui_ImplGlfw_InitForOther"][1]["location"] = "imgui_impl_glfw:25"
|
||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther"
|
defs["ImGui_ImplGlfw_InitForOther"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOther"
|
||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool"
|
defs["ImGui_ImplGlfw_InitForOther"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)"
|
defs["ImGui_ImplGlfw_InitForOther"][1]["signature"] = "(GLFWwindow*,bool)"
|
||||||
@@ -122,7 +122,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback
|
|||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
|
||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan"
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan"
|
||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:23"
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:24"
|
||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan"
|
||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool"
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool"
|
||||||
defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)"
|
defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)"
|
||||||
@@ -140,7 +140,7 @@ defs["ImGui_ImplGlfw_InstallCallbacks"][1]["call_args"] = "(window)"
|
|||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
|
||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks"
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_InstallCallbacks"
|
||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:31"
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["location"] = "imgui_impl_glfw:32"
|
||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InstallCallbacks"
|
||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)"
|
defs["ImGui_ImplGlfw_InstallCallbacks"][1]["signature"] = "(GLFWwindow*)"
|
||||||
@@ -170,7 +170,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio
|
|||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
|
||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback"
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback"
|
||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:44"
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:45"
|
||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback"
|
||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)"
|
defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)"
|
||||||
@@ -191,7 +191,7 @@ defs["ImGui_ImplGlfw_MonitorCallback"][1]["call_args"] = "(monitor,event)"
|
|||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
|
||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback"
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["funcname"] = "ImGui_ImplGlfw_MonitorCallback"
|
||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:46"
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["location"] = "imgui_impl_glfw:47"
|
||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MonitorCallback"
|
||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)"
|
defs["ImGui_ImplGlfw_MonitorCallback"][1]["signature"] = "(GLFWmonitor*,int)"
|
||||||
@@ -218,7 +218,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act
|
|||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
|
||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback"
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback"
|
||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:42"
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:43"
|
||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback"
|
||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)"
|
defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)"
|
||||||
@@ -233,7 +233,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()"
|
|||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame"
|
defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame"
|
||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame"
|
defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame"
|
||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:26"
|
defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:27"
|
||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame"
|
defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame"
|
||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()"
|
defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()"
|
||||||
@@ -251,7 +251,7 @@ defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["call_args"] = "(window)"
|
|||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
|
||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks"
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["funcname"] = "ImGui_ImplGlfw_RestoreCallbacks"
|
||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:32"
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["location"] = "imgui_impl_glfw:33"
|
||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_RestoreCallbacks"
|
||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)"
|
defs["ImGui_ImplGlfw_RestoreCallbacks"][1]["signature"] = "(GLFWwindow*)"
|
||||||
@@ -275,7 +275,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset
|
|||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
|
||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback"
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback"
|
||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:43"
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:44"
|
||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback"
|
||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
|
defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)"
|
||||||
@@ -293,7 +293,7 @@ defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["call_args"] = "(chain_
|
|||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
|
||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["funcname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
|
||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:36"
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["location"] = "imgui_impl_glfw:37"
|
||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_SetCallbacksChainForAllWindows"
|
||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)"
|
defs["ImGui_ImplGlfw_SetCallbacksChainForAllWindows"][1]["signature"] = "(bool)"
|
||||||
@@ -308,7 +308,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()"
|
|||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown"
|
defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown"
|
||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown"
|
defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown"
|
||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:25"
|
defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:26"
|
||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown"
|
defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown"
|
||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()"
|
defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()"
|
||||||
@@ -329,7 +329,7 @@ defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["call_args"] = "(window,focused)"
|
|||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
|
||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {}
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["defaults"] = {}
|
||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback"
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["funcname"] = "ImGui_ImplGlfw_WindowFocusCallback"
|
||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:39"
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["location"] = "imgui_impl_glfw:40"
|
||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_WindowFocusCallback"
|
||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void"
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["ret"] = "void"
|
||||||
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)"
|
defs["ImGui_ImplGlfw_WindowFocusCallback"][1]["signature"] = "(GLFWwindow*,int)"
|
||||||
@@ -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:26"
|
defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl2:27"
|
||||||
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:27"
|
defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl2:28"
|
||||||
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:24"
|
defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl2:25"
|
||||||
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*)"
|
||||||
@@ -657,7 +657,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:28"
|
defs["ImGui_ImplSDL2_InitForSDLRenderer"][1]["location"] = "imgui_impl_sdl2:29"
|
||||||
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*)"
|
||||||
@@ -675,7 +675,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:25"
|
defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl2:26"
|
||||||
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*)"
|
||||||
@@ -690,7 +690,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:30"
|
defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl2:31"
|
||||||
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"] = "()"
|
||||||
@@ -708,7 +708,7 @@ 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:31"
|
defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl2:32"
|
||||||
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*)"
|
||||||
@@ -723,7 +723,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:29"
|
defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl2:30"
|
||||||
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"] = "()"
|
||||||
|
@@ -126,6 +126,9 @@ igGetID 3
|
|||||||
igGetIDWithSeed 2
|
igGetIDWithSeed 2
|
||||||
1 ImGuiID igGetIDWithSeed_Str (const char*,const char*,ImGuiID)
|
1 ImGuiID igGetIDWithSeed_Str (const char*,const char*,ImGuiID)
|
||||||
2 ImGuiID igGetIDWithSeed_Int (int,ImGuiID)
|
2 ImGuiID igGetIDWithSeed_Int (int,ImGuiID)
|
||||||
|
igGetKeyData 2
|
||||||
|
1 ImGuiKeyData* igGetKeyData_ContextPtr (ImGuiContext*,ImGuiKey)
|
||||||
|
2 ImGuiKeyData* igGetKeyData_Key (ImGuiKey)
|
||||||
igImAbs 3
|
igImAbs 3
|
||||||
1 int igImAbs_Int (int)
|
1 int igImAbs_Int (int)
|
||||||
2 float igImAbs_Float (float)
|
2 float igImAbs_Float (float)
|
||||||
@@ -278,4 +281,4 @@ igValue 4
|
|||||||
2 void igValue_Int (const char*,int)
|
2 void igValue_Int (const char*,int)
|
||||||
3 void igValue_Uint (const char*,unsigned int)
|
3 void igValue_Uint (const char*,unsigned int)
|
||||||
4 void igValue_Float (const char*,float,const char*)
|
4 void igValue_Float (const char*,float,const char*)
|
||||||
195 overloaded
|
197 overloaded
|
@@ -1012,13 +1012,18 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 32,
|
"calc_value": 32,
|
||||||
"name": "ImGuiDebugLogFlags_EventIO",
|
"name": "ImGuiDebugLogFlags_EventSelection",
|
||||||
"value": "1 << 5"
|
"value": "1 << 5"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 63,
|
"calc_value": 64,
|
||||||
|
"name": "ImGuiDebugLogFlags_EventIO",
|
||||||
|
"value": "1 << 6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 127,
|
||||||
"name": "ImGuiDebugLogFlags_EventMask_",
|
"name": "ImGuiDebugLogFlags_EventMask_",
|
||||||
"value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventIO"
|
"value": "ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 1024,
|
"calc_value": 1024,
|
||||||
@@ -1416,13 +1421,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"calc_value": 5,
|
"calc_value": 5,
|
||||||
"name": "ImGuiInputSource_Nav",
|
|
||||||
"value": "5"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"calc_value": 6,
|
|
||||||
"name": "ImGuiInputSource_COUNT",
|
"name": "ImGuiInputSource_COUNT",
|
||||||
"value": "6"
|
"value": "5"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiInputTextFlagsPrivate_": [
|
"ImGuiInputTextFlagsPrivate_": [
|
||||||
@@ -2600,6 +2600,28 @@
|
|||||||
"value": "9"
|
"value": "9"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGuiMouseSource": [
|
||||||
|
{
|
||||||
|
"calc_value": 0,
|
||||||
|
"name": "ImGuiMouseSource_Mouse",
|
||||||
|
"value": "0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 1,
|
||||||
|
"name": "ImGuiMouseSource_TouchScreen",
|
||||||
|
"value": "1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 2,
|
||||||
|
"name": "ImGuiMouseSource_Pen",
|
||||||
|
"value": "2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"calc_value": 3,
|
||||||
|
"name": "ImGuiMouseSource_COUNT",
|
||||||
|
"value": "3"
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGuiNavHighlightFlags_": [
|
"ImGuiNavHighlightFlags_": [
|
||||||
{
|
{
|
||||||
"calc_value": 0,
|
"calc_value": 0,
|
||||||
@@ -4122,168 +4144,172 @@
|
|||||||
},
|
},
|
||||||
"enumtypes": {
|
"enumtypes": {
|
||||||
"ImGuiKey": "int",
|
"ImGuiKey": "int",
|
||||||
"ImGuiLocKey": "int"
|
"ImGuiLocKey": "int",
|
||||||
|
"ImGuiMouseSource": "int"
|
||||||
},
|
},
|
||||||
"locations": {
|
"locations": {
|
||||||
"ImBitVector": "imgui_internal:595",
|
"ImBitVector": "imgui_internal:581",
|
||||||
"ImColor": "imgui:2351",
|
"ImColor": "imgui:2403",
|
||||||
"ImDrawChannel": "imgui:2441",
|
"ImDrawChannel": "imgui:2493",
|
||||||
"ImDrawCmd": "imgui:2400",
|
"ImDrawCmd": "imgui:2452",
|
||||||
"ImDrawCmdHeader": "imgui:2433",
|
"ImDrawCmdHeader": "imgui:2485",
|
||||||
"ImDrawData": "imgui:2633",
|
"ImDrawData": "imgui:2684",
|
||||||
"ImDrawDataBuilder": "imgui_internal:785",
|
"ImDrawDataBuilder": "imgui_internal:771",
|
||||||
"ImDrawFlags_": "imgui:2467",
|
"ImDrawFlags_": "imgui:2519",
|
||||||
"ImDrawList": "imgui:2505",
|
"ImDrawList": "imgui:2557",
|
||||||
"ImDrawListFlags_": "imgui:2487",
|
"ImDrawListFlags_": "imgui:2539",
|
||||||
"ImDrawListSharedData": "imgui_internal:762",
|
"ImDrawListSharedData": "imgui_internal:748",
|
||||||
"ImDrawListSplitter": "imgui:2450",
|
"ImDrawListSplitter": "imgui:2502",
|
||||||
"ImDrawVert": "imgui:2418",
|
"ImDrawVert": "imgui:2470",
|
||||||
"ImFont": "imgui:2852",
|
"ImFont": "imgui:2903",
|
||||||
"ImFontAtlas": "imgui:2749",
|
"ImFontAtlas": "imgui:2800",
|
||||||
"ImFontAtlasCustomRect": "imgui:2711",
|
"ImFontAtlasCustomRect": "imgui:2762",
|
||||||
"ImFontAtlasFlags_": "imgui:2724",
|
"ImFontAtlasFlags_": "imgui:2775",
|
||||||
"ImFontBuilderIO": "imgui_internal:3212",
|
"ImFontBuilderIO": "imgui_internal:3239",
|
||||||
"ImFontConfig": "imgui:2655",
|
"ImFontConfig": "imgui:2706",
|
||||||
"ImFontGlyph": "imgui:2684",
|
"ImFontGlyph": "imgui:2735",
|
||||||
"ImFontGlyphRangesBuilder": "imgui:2696",
|
"ImFontGlyphRangesBuilder": "imgui:2747",
|
||||||
"ImGuiActivateFlags_": "imgui_internal:1420",
|
"ImGuiActivateFlags_": "imgui_internal:1426",
|
||||||
"ImGuiAxis": "imgui_internal:951",
|
"ImGuiAxis": "imgui_internal:939",
|
||||||
"ImGuiBackendFlags_": "imgui:1509",
|
"ImGuiBackendFlags_": "imgui:1510",
|
||||||
"ImGuiButtonFlagsPrivate_": "imgui_internal:856",
|
"ImGuiButtonFlagsPrivate_": "imgui_internal:844",
|
||||||
"ImGuiButtonFlags_": "imgui:1619",
|
"ImGuiButtonFlags_": "imgui:1620",
|
||||||
"ImGuiCol_": "imgui:1519",
|
"ImGuiCol_": "imgui:1520",
|
||||||
"ImGuiColorEditFlags_": "imgui:1632",
|
"ImGuiColorEditFlags_": "imgui:1633",
|
||||||
"ImGuiColorMod": "imgui_internal:994",
|
"ImGuiColorMod": "imgui_internal:990",
|
||||||
"ImGuiComboFlagsPrivate_": "imgui_internal:881",
|
"ImGuiComboFlagsPrivate_": "imgui_internal:869",
|
||||||
"ImGuiComboFlags_": "imgui:1081",
|
"ImGuiComboFlags_": "imgui:1080",
|
||||||
"ImGuiComboPreviewData": "imgui_internal:1011",
|
"ImGuiComboPreviewData": "imgui_internal:1007",
|
||||||
"ImGuiCond_": "imgui:1723",
|
"ImGuiCond_": "imgui:1734",
|
||||||
"ImGuiConfigFlags_": "imgui:1493",
|
"ImGuiConfigFlags_": "imgui:1494",
|
||||||
"ImGuiContext": "imgui_internal:1733",
|
"ImGuiContext": "imgui_internal:1740",
|
||||||
"ImGuiContextHook": "imgui_internal:1718",
|
"ImGuiContextHook": "imgui_internal:1725",
|
||||||
"ImGuiContextHookType": "imgui_internal:1716",
|
"ImGuiContextHookType": "imgui_internal:1723",
|
||||||
"ImGuiDataTypeInfo": "imgui_internal:977",
|
"ImGuiDataTypeInfo": "imgui_internal:973",
|
||||||
"ImGuiDataTypePrivate_": "imgui_internal:986",
|
"ImGuiDataTypePrivate_": "imgui_internal:982",
|
||||||
"ImGuiDataTypeTempStorage": "imgui_internal:971",
|
"ImGuiDataTypeTempStorage": "imgui_internal:967",
|
||||||
"ImGuiDataType_": "imgui:1318",
|
"ImGuiDataType_": "imgui:1317",
|
||||||
"ImGuiDebugLogFlags_": "imgui_internal:1659",
|
"ImGuiDataVarInfo": "imgui_internal:959",
|
||||||
"ImGuiDir_": "imgui:1334",
|
"ImGuiDebugLogFlags_": "imgui_internal:1665",
|
||||||
"ImGuiDragDropFlags_": "imgui:1296",
|
"ImGuiDir_": "imgui:1333",
|
||||||
"ImGuiFocusedFlags_": "imgui:1258",
|
"ImGuiDragDropFlags_": "imgui:1295",
|
||||||
"ImGuiGroupData": "imgui_internal:1024",
|
"ImGuiFocusedFlags_": "imgui:1257",
|
||||||
"ImGuiHoveredFlags_": "imgui:1272",
|
"ImGuiGroupData": "imgui_internal:1020",
|
||||||
"ImGuiIO": "imgui:1903",
|
"ImGuiHoveredFlags_": "imgui:1271",
|
||||||
"ImGuiInputEvent": "imgui_internal:1279",
|
"ImGuiIO": "imgui:1914",
|
||||||
"ImGuiInputEventAppFocused": "imgui_internal:1277",
|
"ImGuiInputEvent": "imgui_internal:1284",
|
||||||
"ImGuiInputEventKey": "imgui_internal:1275",
|
"ImGuiInputEventAppFocused": "imgui_internal:1282",
|
||||||
"ImGuiInputEventMouseButton": "imgui_internal:1274",
|
"ImGuiInputEventKey": "imgui_internal:1280",
|
||||||
"ImGuiInputEventMousePos": "imgui_internal:1272",
|
"ImGuiInputEventMouseButton": "imgui_internal:1279",
|
||||||
"ImGuiInputEventMouseWheel": "imgui_internal:1273",
|
"ImGuiInputEventMousePos": "imgui_internal:1277",
|
||||||
"ImGuiInputEventText": "imgui_internal:1276",
|
"ImGuiInputEventMouseWheel": "imgui_internal:1278",
|
||||||
"ImGuiInputEventType": "imgui_internal:1247",
|
"ImGuiInputEventText": "imgui_internal:1281",
|
||||||
"ImGuiInputFlags_": "imgui_internal:1341",
|
"ImGuiInputEventType": "imgui_internal:1253",
|
||||||
"ImGuiInputSource": "imgui_internal:1259",
|
"ImGuiInputFlags_": "imgui_internal:1347",
|
||||||
"ImGuiInputTextCallbackData": "imgui:2076",
|
"ImGuiInputSource": "imgui_internal:1265",
|
||||||
"ImGuiInputTextFlagsPrivate_": "imgui_internal:847",
|
"ImGuiInputTextCallbackData": "imgui:2100",
|
||||||
"ImGuiInputTextFlags_": "imgui:993",
|
"ImGuiInputTextDeactivatedState": "imgui_internal:1054",
|
||||||
"ImGuiInputTextState": "imgui_internal:1059",
|
"ImGuiInputTextFlagsPrivate_": "imgui_internal:835",
|
||||||
"ImGuiItemFlags_": "imgui_internal:804",
|
"ImGuiInputTextFlags_": "imgui:994",
|
||||||
"ImGuiItemStatusFlags_": "imgui_internal:824",
|
"ImGuiInputTextState": "imgui_internal:1064",
|
||||||
|
"ImGuiItemFlags_": "imgui_internal:790",
|
||||||
|
"ImGuiItemStatusFlags_": "imgui_internal:810",
|
||||||
"ImGuiKey": "imgui:1356",
|
"ImGuiKey": "imgui:1356",
|
||||||
"ImGuiKeyData": "imgui:1895",
|
"ImGuiKeyData": "imgui:1906",
|
||||||
"ImGuiKeyOwnerData": "imgui_internal:1329",
|
"ImGuiKeyOwnerData": "imgui_internal:1335",
|
||||||
"ImGuiKeyRoutingData": "imgui_internal:1304",
|
"ImGuiKeyRoutingData": "imgui_internal:1310",
|
||||||
"ImGuiKeyRoutingTable": "imgui_internal:1317",
|
"ImGuiKeyRoutingTable": "imgui_internal:1323",
|
||||||
"ImGuiLastItemData": "imgui_internal:1166",
|
"ImGuiLastItemData": "imgui_internal:1171",
|
||||||
"ImGuiLayoutType_": "imgui_internal:935",
|
"ImGuiLayoutType_": "imgui_internal:923",
|
||||||
"ImGuiListClipper": "imgui:2300",
|
"ImGuiListClipper": "imgui:2325",
|
||||||
"ImGuiListClipperData": "imgui_internal:1404",
|
"ImGuiListClipperData": "imgui_internal:1410",
|
||||||
"ImGuiListClipperRange": "imgui_internal:1391",
|
"ImGuiListClipperRange": "imgui_internal:1397",
|
||||||
"ImGuiLocEntry": "imgui_internal:1648",
|
"ImGuiLocEntry": "imgui_internal:1654",
|
||||||
"ImGuiLocKey": "imgui_internal:1636",
|
"ImGuiLocKey": "imgui_internal:1642",
|
||||||
"ImGuiLogType": "imgui_internal:941",
|
"ImGuiLogType": "imgui_internal:929",
|
||||||
"ImGuiMenuColumns": "imgui_internal:1040",
|
"ImGuiMenuColumns": "imgui_internal:1036",
|
||||||
"ImGuiMetricsConfig": "imgui_internal:1673",
|
"ImGuiMetricsConfig": "imgui_internal:1680",
|
||||||
"ImGuiMouseButton_": "imgui:1695",
|
"ImGuiMouseButton_": "imgui:1694",
|
||||||
"ImGuiMouseCursor_": "imgui:1705",
|
"ImGuiMouseCursor_": "imgui:1704",
|
||||||
"ImGuiNavHighlightFlags_": "imgui_internal:1443",
|
"ImGuiMouseSource": "imgui:1723",
|
||||||
"ImGuiNavInput": "imgui:1484",
|
"ImGuiNavHighlightFlags_": "imgui_internal:1449",
|
||||||
"ImGuiNavItemData": "imgui_internal:1477",
|
"ImGuiNavInput": "imgui:1485",
|
||||||
"ImGuiNavLayer": "imgui_internal:1470",
|
"ImGuiNavItemData": "imgui_internal:1483",
|
||||||
"ImGuiNavMoveFlags_": "imgui_internal:1452",
|
"ImGuiNavLayer": "imgui_internal:1476",
|
||||||
"ImGuiNextItemData": "imgui_internal:1153",
|
"ImGuiNavMoveFlags_": "imgui_internal:1458",
|
||||||
"ImGuiNextItemDataFlags_": "imgui_internal:1146",
|
"ImGuiNextItemData": "imgui_internal:1158",
|
||||||
"ImGuiNextWindowData": "imgui_internal:1124",
|
"ImGuiNextItemDataFlags_": "imgui_internal:1151",
|
||||||
"ImGuiNextWindowDataFlags_": "imgui_internal:1110",
|
"ImGuiNextWindowData": "imgui_internal:1129",
|
||||||
"ImGuiOldColumnData": "imgui_internal:1517",
|
"ImGuiNextWindowDataFlags_": "imgui_internal:1115",
|
||||||
"ImGuiOldColumnFlags_": "imgui_internal:1497",
|
"ImGuiOldColumnData": "imgui_internal:1523",
|
||||||
"ImGuiOldColumns": "imgui_internal:1527",
|
"ImGuiOldColumnFlags_": "imgui_internal:1503",
|
||||||
"ImGuiOnceUponAFrame": "imgui:2175",
|
"ImGuiOldColumns": "imgui_internal:1533",
|
||||||
"ImGuiPayload": "imgui:2116",
|
"ImGuiOnceUponAFrame": "imgui:2200",
|
||||||
"ImGuiPlatformImeData": "imgui:2948",
|
"ImGuiPayload": "imgui:2141",
|
||||||
"ImGuiPlotType": "imgui_internal:958",
|
"ImGuiPlatformImeData": "imgui:2999",
|
||||||
"ImGuiPopupData": "imgui_internal:1096",
|
"ImGuiPlotType": "imgui_internal:946",
|
||||||
"ImGuiPopupFlags_": "imgui:1054",
|
"ImGuiPopupData": "imgui_internal:1101",
|
||||||
"ImGuiPopupPositionPolicy": "imgui_internal:964",
|
"ImGuiPopupFlags_": "imgui:1053",
|
||||||
"ImGuiPtrOrIndex": "imgui_internal:1210",
|
"ImGuiPopupPositionPolicy": "imgui_internal:952",
|
||||||
"ImGuiScrollFlags_": "imgui_internal:1429",
|
"ImGuiPtrOrIndex": "imgui_internal:1215",
|
||||||
"ImGuiSelectableFlagsPrivate_": "imgui_internal:894",
|
"ImGuiScrollFlags_": "imgui_internal:1435",
|
||||||
"ImGuiSelectableFlags_": "imgui:1070",
|
"ImGuiSelectableFlagsPrivate_": "imgui_internal:882",
|
||||||
"ImGuiSeparatorFlags_": "imgui_internal:913",
|
"ImGuiSelectableFlags_": "imgui:1069",
|
||||||
"ImGuiSettingsHandler": "imgui_internal:1616",
|
"ImGuiSeparatorFlags_": "imgui_internal:901",
|
||||||
"ImGuiShrinkWidthItem": "imgui_internal:1203",
|
"ImGuiSettingsHandler": "imgui_internal:1622",
|
||||||
"ImGuiSizeCallbackData": "imgui:2107",
|
"ImGuiShrinkWidthItem": "imgui_internal:1208",
|
||||||
"ImGuiSliderFlagsPrivate_": "imgui_internal:887",
|
"ImGuiSizeCallbackData": "imgui:2132",
|
||||||
"ImGuiSliderFlags_": "imgui:1678",
|
"ImGuiSliderFlagsPrivate_": "imgui_internal:875",
|
||||||
"ImGuiSortDirection_": "imgui:1345",
|
"ImGuiSliderFlags_": "imgui:1679",
|
||||||
"ImGuiStackLevelInfo": "imgui_internal:1687",
|
"ImGuiSortDirection_": "imgui:1344",
|
||||||
"ImGuiStackSizes": "imgui_internal:1178",
|
"ImGuiStackLevelInfo": "imgui_internal:1694",
|
||||||
"ImGuiStackTool": "imgui_internal:1699",
|
"ImGuiStackSizes": "imgui_internal:1183",
|
||||||
"ImGuiStorage": "imgui:2237",
|
"ImGuiStackTool": "imgui_internal:1706",
|
||||||
"ImGuiStoragePair": "imgui:2240",
|
"ImGuiStorage": "imgui:2262",
|
||||||
"ImGuiStyle": "imgui:1835",
|
"ImGuiStoragePair": "imgui:2265",
|
||||||
"ImGuiStyleMod": "imgui_internal:1001",
|
"ImGuiStyle": "imgui:1846",
|
||||||
"ImGuiStyleVar_": "imgui:1584",
|
"ImGuiStyleMod": "imgui_internal:997",
|
||||||
"ImGuiTabBar": "imgui_internal:2399",
|
"ImGuiStyleVar_": "imgui:1585",
|
||||||
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2364",
|
"ImGuiTabBar": "imgui_internal:2420",
|
||||||
"ImGuiTabBarFlags_": "imgui:1095",
|
"ImGuiTabBarFlagsPrivate_": "imgui_internal:2385",
|
||||||
"ImGuiTabItem": "imgui_internal:2380",
|
"ImGuiTabBarFlags_": "imgui:1094",
|
||||||
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2372",
|
"ImGuiTabItem": "imgui_internal:2401",
|
||||||
"ImGuiTabItemFlags_": "imgui:1111",
|
"ImGuiTabItemFlagsPrivate_": "imgui_internal:2393",
|
||||||
"ImGuiTable": "imgui_internal:2528",
|
"ImGuiTabItemFlags_": "imgui:1110",
|
||||||
"ImGuiTableBgTarget_": "imgui:1249",
|
"ImGuiTable": "imgui_internal:2549",
|
||||||
"ImGuiTableCellData": "imgui_internal:2510",
|
"ImGuiTableBgTarget_": "imgui:1248",
|
||||||
"ImGuiTableColumn": "imgui_internal:2451",
|
"ImGuiTableCellData": "imgui_internal:2531",
|
||||||
"ImGuiTableColumnFlags_": "imgui:1197",
|
"ImGuiTableColumn": "imgui_internal:2472",
|
||||||
"ImGuiTableColumnSettings": "imgui_internal:2664",
|
"ImGuiTableColumnFlags_": "imgui:1196",
|
||||||
"ImGuiTableColumnSortSpecs": "imgui:2138",
|
"ImGuiTableColumnSettings": "imgui_internal:2685",
|
||||||
"ImGuiTableFlags_": "imgui:1146",
|
"ImGuiTableColumnSortSpecs": "imgui:2163",
|
||||||
"ImGuiTableInstanceData": "imgui_internal:2517",
|
"ImGuiTableFlags_": "imgui:1145",
|
||||||
"ImGuiTableRowFlags_": "imgui:1234",
|
"ImGuiTableInstanceData": "imgui_internal:2538",
|
||||||
"ImGuiTableSettings": "imgui_internal:2688",
|
"ImGuiTableRowFlags_": "imgui:1233",
|
||||||
"ImGuiTableSortSpecs": "imgui:2152",
|
"ImGuiTableSettings": "imgui_internal:2709",
|
||||||
"ImGuiTableTempData": "imgui_internal:2643",
|
"ImGuiTableSortSpecs": "imgui:2177",
|
||||||
"ImGuiTextBuffer": "imgui:2210",
|
"ImGuiTableTempData": "imgui_internal:2664",
|
||||||
"ImGuiTextFilter": "imgui:2183",
|
"ImGuiTextBuffer": "imgui:2235",
|
||||||
"ImGuiTextFlags_": "imgui_internal:921",
|
"ImGuiTextFilter": "imgui:2208",
|
||||||
"ImGuiTextIndex": "imgui_internal:719",
|
"ImGuiTextFlags_": "imgui_internal:909",
|
||||||
"ImGuiTextRange": "imgui:2193",
|
"ImGuiTextIndex": "imgui_internal:705",
|
||||||
"ImGuiTooltipFlags_": "imgui_internal:927",
|
"ImGuiTextRange": "imgui:2218",
|
||||||
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:908",
|
"ImGuiTooltipFlags_": "imgui_internal:915",
|
||||||
"ImGuiTreeNodeFlags_": "imgui:1025",
|
"ImGuiTreeNodeFlagsPrivate_": "imgui_internal:896",
|
||||||
"ImGuiViewport": "imgui:2925",
|
"ImGuiTreeNodeFlags_": "imgui:1024",
|
||||||
"ImGuiViewportFlags_": "imgui:2910",
|
"ImGuiViewport": "imgui:2976",
|
||||||
"ImGuiViewportP": "imgui_internal:1570",
|
"ImGuiViewportFlags_": "imgui:2961",
|
||||||
"ImGuiWindow": "imgui_internal:2240",
|
"ImGuiViewportP": "imgui_internal:1576",
|
||||||
"ImGuiWindowFlags_": "imgui:955",
|
"ImGuiWindow": "imgui_internal:2260",
|
||||||
"ImGuiWindowSettings": "imgui_internal:1603",
|
"ImGuiWindowFlags_": "imgui:956",
|
||||||
"ImGuiWindowStackData": "imgui_internal:1196",
|
"ImGuiWindowSettings": "imgui_internal:1609",
|
||||||
"ImGuiWindowTempData": "imgui_internal:2192",
|
"ImGuiWindowStackData": "imgui_internal:1201",
|
||||||
"ImRect": "imgui_internal:518",
|
"ImGuiWindowTempData": "imgui_internal:2212",
|
||||||
"ImVec1": "imgui_internal:500",
|
"ImRect": "imgui_internal:504",
|
||||||
"ImVec2": "imgui:253",
|
"ImVec1": "imgui_internal:486",
|
||||||
"ImVec2ih": "imgui_internal:508",
|
"ImVec2": "imgui:254",
|
||||||
"ImVec4": "imgui:266",
|
"ImVec2ih": "imgui_internal:494",
|
||||||
|
"ImVec4": "imgui:267",
|
||||||
"STB_TexteditState": "imstb_textedit:320",
|
"STB_TexteditState": "imstb_textedit:320",
|
||||||
"StbTexteditRow": "imstb_textedit:367",
|
"StbTexteditRow": "imstb_textedit:367",
|
||||||
"StbUndoRecord": "imstb_textedit:302",
|
"StbUndoRecord": "imstb_textedit:302",
|
||||||
@@ -4959,16 +4985,6 @@
|
|||||||
"name": "IO",
|
"name": "IO",
|
||||||
"type": "ImGuiIO"
|
"type": "ImGuiIO"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "InputEventsQueue",
|
|
||||||
"template_type": "ImGuiInputEvent",
|
|
||||||
"type": "ImVector_ImGuiInputEvent"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "InputEventsTrail",
|
|
||||||
"template_type": "ImGuiInputEvent",
|
|
||||||
"type": "ImVector_ImGuiInputEvent"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Style",
|
"name": "Style",
|
||||||
"type": "ImGuiStyle"
|
"type": "ImGuiStyle"
|
||||||
@@ -5029,6 +5045,24 @@
|
|||||||
"name": "TestEngine",
|
"name": "TestEngine",
|
||||||
"type": "void*"
|
"type": "void*"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "InputEventsQueue",
|
||||||
|
"template_type": "ImGuiInputEvent",
|
||||||
|
"type": "ImVector_ImGuiInputEvent"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "InputEventsTrail",
|
||||||
|
"template_type": "ImGuiInputEvent",
|
||||||
|
"type": "ImVector_ImGuiInputEvent"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "InputEventsNextMouseSource",
|
||||||
|
"type": "ImGuiMouseSource"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "InputEventsNextEventId",
|
||||||
|
"type": "ImU32"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Windows",
|
"name": "Windows",
|
||||||
"template_type": "ImGuiWindow*",
|
"template_type": "ImGuiWindow*",
|
||||||
@@ -5323,10 +5357,6 @@
|
|||||||
"name": "NavActivatePressedId",
|
"name": "NavActivatePressedId",
|
||||||
"type": "ImGuiID"
|
"type": "ImGuiID"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "NavActivateInputId",
|
|
||||||
"type": "ImGuiID"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "NavActivateFlags",
|
"name": "NavActivateFlags",
|
||||||
"type": "ImGuiActivateFlags"
|
"type": "ImGuiActivateFlags"
|
||||||
@@ -5665,6 +5695,10 @@
|
|||||||
"name": "InputTextState",
|
"name": "InputTextState",
|
||||||
"type": "ImGuiInputTextState"
|
"type": "ImGuiInputTextState"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "InputTextDeactivatedState",
|
||||||
|
"type": "ImGuiInputTextDeactivatedState"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "InputTextPasswordFont",
|
"name": "InputTextPasswordFont",
|
||||||
"type": "ImFont"
|
"type": "ImFont"
|
||||||
@@ -5864,10 +5898,18 @@
|
|||||||
"name": "DebugLogIndex",
|
"name": "DebugLogIndex",
|
||||||
"type": "ImGuiTextIndex"
|
"type": "ImGuiTextIndex"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "DebugLogClipperAutoDisableFrames",
|
||||||
|
"type": "ImU8"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DebugLocateFrames",
|
"name": "DebugLocateFrames",
|
||||||
"type": "ImU8"
|
"type": "ImU8"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "DebugBeginReturnValueCullDepth",
|
||||||
|
"type": "ImS8"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DebugItemPickerActive",
|
"name": "DebugItemPickerActive",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
@@ -5970,6 +6012,20 @@
|
|||||||
"type": "ImU8"
|
"type": "ImU8"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGuiDataVarInfo": [
|
||||||
|
{
|
||||||
|
"name": "Type",
|
||||||
|
"type": "ImGuiDataType"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Count",
|
||||||
|
"type": "ImU32"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Offset",
|
||||||
|
"type": "ImU32"
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGuiGroupData": [
|
"ImGuiGroupData": [
|
||||||
{
|
{
|
||||||
"name": "WindowID",
|
"name": "WindowID",
|
||||||
@@ -6133,6 +6189,14 @@
|
|||||||
"name": "ConfigMemoryCompactTimer",
|
"name": "ConfigMemoryCompactTimer",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "ConfigDebugBeginReturnValueOnce",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "ConfigDebugBeginReturnValueLoop",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "BackendPlatformName",
|
"name": "BackendPlatformName",
|
||||||
"type": "const char*"
|
"type": "const char*"
|
||||||
@@ -6244,6 +6308,10 @@
|
|||||||
"size": 16,
|
"size": 16,
|
||||||
"type": "float"
|
"type": "float"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Ctx",
|
||||||
|
"type": "ImGuiContext*"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "MousePos",
|
"name": "MousePos",
|
||||||
"type": "ImVec2"
|
"type": "ImVec2"
|
||||||
@@ -6261,6 +6329,10 @@
|
|||||||
"name": "MouseWheelH",
|
"name": "MouseWheelH",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "MouseSource",
|
||||||
|
"type": "ImGuiMouseSource"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "KeyCtrl",
|
"name": "KeyCtrl",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
@@ -6339,6 +6411,10 @@
|
|||||||
"size": 5,
|
"size": 5,
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "MouseWheelRequestAxisSwap",
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "MouseDownDuration[5]",
|
"name": "MouseDownDuration[5]",
|
||||||
"size": 5,
|
"size": 5,
|
||||||
@@ -6393,6 +6469,10 @@
|
|||||||
"name": "Source",
|
"name": "Source",
|
||||||
"type": "ImGuiInputSource"
|
"type": "ImGuiInputSource"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "EventId",
|
||||||
|
"type": "ImU32"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "",
|
"name": "",
|
||||||
"type": "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}"
|
"type": "union { ImGuiInputEventMousePos MousePos; ImGuiInputEventMouseWheel MouseWheel; ImGuiInputEventMouseButton MouseButton; ImGuiInputEventKey Key; ImGuiInputEventText Text; ImGuiInputEventAppFocused AppFocused;}"
|
||||||
@@ -6430,6 +6510,10 @@
|
|||||||
{
|
{
|
||||||
"name": "Down",
|
"name": "Down",
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "MouseSource",
|
||||||
|
"type": "ImGuiMouseSource"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiInputEventMousePos": [
|
"ImGuiInputEventMousePos": [
|
||||||
@@ -6440,6 +6524,10 @@
|
|||||||
{
|
{
|
||||||
"name": "PosY",
|
"name": "PosY",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "MouseSource",
|
||||||
|
"type": "ImGuiMouseSource"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiInputEventMouseWheel": [
|
"ImGuiInputEventMouseWheel": [
|
||||||
@@ -6450,6 +6538,10 @@
|
|||||||
{
|
{
|
||||||
"name": "WheelY",
|
"name": "WheelY",
|
||||||
"type": "float"
|
"type": "float"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "MouseSource",
|
||||||
|
"type": "ImGuiMouseSource"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiInputEventText": [
|
"ImGuiInputEventText": [
|
||||||
@@ -6459,6 +6551,10 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiInputTextCallbackData": [
|
"ImGuiInputTextCallbackData": [
|
||||||
|
{
|
||||||
|
"name": "Ctx",
|
||||||
|
"type": "ImGuiContext*"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "EventFlag",
|
"name": "EventFlag",
|
||||||
"type": "ImGuiInputTextFlags"
|
"type": "ImGuiInputTextFlags"
|
||||||
@@ -6508,6 +6604,17 @@
|
|||||||
"type": "int"
|
"type": "int"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"ImGuiInputTextDeactivatedState": [
|
||||||
|
{
|
||||||
|
"name": "ID",
|
||||||
|
"type": "ImGuiID"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TextA",
|
||||||
|
"template_type": "char",
|
||||||
|
"type": "ImVector_char"
|
||||||
|
}
|
||||||
|
],
|
||||||
"ImGuiInputTextState": [
|
"ImGuiInputTextState": [
|
||||||
{
|
{
|
||||||
"name": "Ctx",
|
"name": "Ctx",
|
||||||
@@ -6679,6 +6786,10 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiListClipper": [
|
"ImGuiListClipper": [
|
||||||
|
{
|
||||||
|
"name": "Ctx",
|
||||||
|
"type": "ImGuiContext*"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DisplayStart",
|
"name": "DisplayStart",
|
||||||
"type": "int"
|
"type": "int"
|
||||||
@@ -8568,6 +8679,10 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"ImGuiWindow": [
|
"ImGuiWindow": [
|
||||||
|
{
|
||||||
|
"name": "Ctx",
|
||||||
|
"type": "ImGuiContext*"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"type": "char*"
|
"type": "char*"
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -41,6 +41,7 @@
|
|||||||
"ImGuiDataType": "int",
|
"ImGuiDataType": "int",
|
||||||
"ImGuiDataTypeInfo": "struct ImGuiDataTypeInfo",
|
"ImGuiDataTypeInfo": "struct ImGuiDataTypeInfo",
|
||||||
"ImGuiDataTypeTempStorage": "struct ImGuiDataTypeTempStorage",
|
"ImGuiDataTypeTempStorage": "struct ImGuiDataTypeTempStorage",
|
||||||
|
"ImGuiDataVarInfo": "struct ImGuiDataVarInfo",
|
||||||
"ImGuiDebugLogFlags": "int",
|
"ImGuiDebugLogFlags": "int",
|
||||||
"ImGuiDir": "int",
|
"ImGuiDir": "int",
|
||||||
"ImGuiDragDropFlags": "int",
|
"ImGuiDragDropFlags": "int",
|
||||||
@@ -60,6 +61,8 @@
|
|||||||
"ImGuiInputFlags": "int",
|
"ImGuiInputFlags": "int",
|
||||||
"ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);",
|
"ImGuiInputTextCallback": "int(*)(ImGuiInputTextCallbackData* data);",
|
||||||
"ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData",
|
"ImGuiInputTextCallbackData": "struct ImGuiInputTextCallbackData",
|
||||||
|
"ImGuiInputTextDeactivateData": "struct ImGuiInputTextDeactivateData",
|
||||||
|
"ImGuiInputTextDeactivatedState": "struct ImGuiInputTextDeactivatedState",
|
||||||
"ImGuiInputTextFlags": "int",
|
"ImGuiInputTextFlags": "int",
|
||||||
"ImGuiInputTextState": "struct ImGuiInputTextState",
|
"ImGuiInputTextState": "struct ImGuiInputTextState",
|
||||||
"ImGuiItemFlags": "int",
|
"ImGuiItemFlags": "int",
|
||||||
|
@@ -41,6 +41,7 @@ defs["ImGuiContextHookCallback"] = "void(*)(ImGuiContext* ctx,ImGuiContextHook*
|
|||||||
defs["ImGuiDataType"] = "int"
|
defs["ImGuiDataType"] = "int"
|
||||||
defs["ImGuiDataTypeInfo"] = "struct ImGuiDataTypeInfo"
|
defs["ImGuiDataTypeInfo"] = "struct ImGuiDataTypeInfo"
|
||||||
defs["ImGuiDataTypeTempStorage"] = "struct ImGuiDataTypeTempStorage"
|
defs["ImGuiDataTypeTempStorage"] = "struct ImGuiDataTypeTempStorage"
|
||||||
|
defs["ImGuiDataVarInfo"] = "struct ImGuiDataVarInfo"
|
||||||
defs["ImGuiDebugLogFlags"] = "int"
|
defs["ImGuiDebugLogFlags"] = "int"
|
||||||
defs["ImGuiDir"] = "int"
|
defs["ImGuiDir"] = "int"
|
||||||
defs["ImGuiDragDropFlags"] = "int"
|
defs["ImGuiDragDropFlags"] = "int"
|
||||||
@@ -60,6 +61,8 @@ defs["ImGuiInputEventText"] = "struct ImGuiInputEventText"
|
|||||||
defs["ImGuiInputFlags"] = "int"
|
defs["ImGuiInputFlags"] = "int"
|
||||||
defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);"
|
defs["ImGuiInputTextCallback"] = "int(*)(ImGuiInputTextCallbackData* data);"
|
||||||
defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData"
|
defs["ImGuiInputTextCallbackData"] = "struct ImGuiInputTextCallbackData"
|
||||||
|
defs["ImGuiInputTextDeactivateData"] = "struct ImGuiInputTextDeactivateData"
|
||||||
|
defs["ImGuiInputTextDeactivatedState"] = "struct ImGuiInputTextDeactivatedState"
|
||||||
defs["ImGuiInputTextFlags"] = "int"
|
defs["ImGuiInputTextFlags"] = "int"
|
||||||
defs["ImGuiInputTextState"] = "struct ImGuiInputTextState"
|
defs["ImGuiInputTextState"] = "struct ImGuiInputTextState"
|
||||||
defs["ImGuiItemFlags"] = "int"
|
defs["ImGuiItemFlags"] = "int"
|
||||||
|
2
imgui
2
imgui
Submodule imgui updated: 458a109031...1ebb913827
Reference in New Issue
Block a user