MCPcopy Create free account
hub / github.com/MeshInspector/MeshLib / inputTextIntoArray

Function inputTextIntoArray

source/MRViewer/MRUIStyle.cpp:1883–1886  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1881}
1882
1883bool inputTextIntoArray( const char* label, char* array, std::size_t size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data )
1884{
1885 return basicTextInputIntoArray( label, array, size, flags, [&]{ return ImGui::InputText( label, array, size, flags, callback, user_data ); } );
1886}
1887
1888bool inputTextMultiline( const char* label, std::string& str, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data )
1889{

Callers 1

Calls 2

basicTextInputIntoArrayFunction · 0.85
InputTextFunction · 0.85

Tested by

no test coverage detected