mirror of
https://github.com/cimgui/cimgui.git
synced 2025-08-18 06:58:30 +01:00
- support varargs text method
- support more methods
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
|
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "../imgui/imgui.h"
|
#include "../imgui/imgui.h"
|
||||||
|
|
||||||
#if defined _WIN32 || defined __CYGWIN__
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
@@ -27,9 +30,35 @@ extern "C" API void ImGui_Render()
|
|||||||
ImGui::Render();
|
ImGui::Render();
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" API void ImGui_Text(const char* text)
|
extern "C" API bool ImGui_Begin(const char* name, bool* p_opened, ImGuiWindowFlags flags)
|
||||||
{
|
{
|
||||||
ImGui::Text(text);
|
return ImGui::Begin(name, p_opened, flags);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" API void ImGui_End()
|
||||||
|
{
|
||||||
|
ImGui::End();
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" API void ImGui_Text(const char* text, ...)
|
||||||
|
{
|
||||||
|
char buffer[256];
|
||||||
|
va_list args;
|
||||||
|
va_start (args, text);
|
||||||
|
vsprintf (buffer, text, args);
|
||||||
|
va_end (args);
|
||||||
|
|
||||||
|
ImGui::Text(buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" API bool ImGui_ColorEdit3(const char* label, float col[3])
|
||||||
|
{
|
||||||
|
return ImGui::ColorEdit3(label,col);
|
||||||
|
}
|
||||||
|
|
||||||
|
extern "C" API void ImGui_SetNextWindowSize(const ImVec2 size, ImGuiSetCond cond)
|
||||||
|
{
|
||||||
|
ImGui::SetNextWindowSize(size, cond);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" API void ImGui_SliderFloat(const char* label, float* v, float v_min, float v_max, const char* display_format, float power)
|
extern "C" API void ImGui_SliderFloat(const char* label, float* v, float v_min, float v_max, const char* display_format, float power)
|
||||||
@@ -71,3 +100,8 @@ extern "C" API ImDrawCmd* ImDrawList_GetCmdPtr(ImDrawList* list, int n)
|
|||||||
{
|
{
|
||||||
return &list->commands[n];
|
return &list->commands[n];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern "C" API void ImGuiIO_AddInputCharacter(unsigned short c)
|
||||||
|
{
|
||||||
|
ImGui::GetIO().AddInputCharacter(c);
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user