Searched refs:ImGuiInputTextFlags_CallbackResize (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h753 ImGuiInputTextFlags_CallbackResize = 1 << 18, // Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misc/cpp/imgui_stdlib.h for an example of using this) enumerator in enum:ImGuiInputTextFlags_
1420 // - ImGuiInputTextFlags_CallbackResize: Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow.
H A Dimgui_widgets.cpp2948 const bool is_resizable = (obj->UserFlags & ImGuiInputTextFlags_CallbackResize) != 0;
3034 const bool is_resizable = (Flags & ImGuiInputTextFlags_CallbackResize) != 0;
3146 const bool is_resizable = (flags & ImGuiInputTextFlags_CallbackResize) != 0;
3148 IM_ASSERT(callback != NULL); // Must provide a callback if you set the ImGuiInputTextFlags_CallbackResize flag!
3578 callback_data.EventFlag = ImGuiInputTextFlags_CallbackResize;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h753 ImGuiInputTextFlags_CallbackResize = 1 << 18, // Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misc/cpp/imgui_stdlib.h for an example of using this) enumerator in enum:ImGuiInputTextFlags_
1420 // - ImGuiInputTextFlags_CallbackResize: Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow.
H A Dimgui_widgets.cpp2948 const bool is_resizable = (obj->UserFlags & ImGuiInputTextFlags_CallbackResize) != 0;
3034 const bool is_resizable = (Flags & ImGuiInputTextFlags_CallbackResize) != 0;
3146 const bool is_resizable = (flags & ImGuiInputTextFlags_CallbackResize) != 0;
3148 IM_ASSERT(callback != NULL); // Must provide a callback if you set the ImGuiInputTextFlags_CallbackResize flag!
3578 callback_data.EventFlag = ImGuiInputTextFlags_CallbackResize;

Completed in 41 milliseconds