| 1924 | } |
| 1925 | |
| 1926 | bool inputTextMultilineFullyScrollable( CachedTextSize& cache, const char* label, std::string& str, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data ) |
| 1927 | { |
| 1928 | return basicTextInputMultilineFullyScrollable( |
| 1929 | cache, label, str.c_str(), size, |
| 1930 | // Since the textbox is inside a child window, we don't pass the actual label. It wouldn't fit anyway. |
| 1931 | [&]( ImVec2 size ){ return inputTextMultiline( "###textbox", str, size, flags | ImGuiInputTextFlags_NoHorizontalScroll, callback, user_data ); } |
| 1932 | ); |
| 1933 | } |
| 1934 | |
| 1935 | bool inputTextIntoArrayMultilineFullyScrollable( CachedTextSize& cache, const char* label, char* buf, size_t buf_size, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data ) |
| 1936 | { |
nothing calls this directly
no test coverage detected