mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-05 06:01:07 +00:00
d2a75db930
To minimise source code modifications, colored input text has been moved to their own functions. The ImFont is still modified tho.
5 lines
458 B
C++
5 lines
458 B
C++
namespace ImGui
|
|
{
|
|
IMGUI_API bool ColoredInputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0, 0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);
|
|
IMGUI_API bool ColoredInputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback = NULL, void* user_data = NULL);
|
|
} |