Searched refs:ListBoxHeader (Results 1 - 5 of 5) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h498 // - FIXME: To be consistent with all the newer API, ListBoxHeader/ListBoxFooter should in reality be called BeginListBox/EndListBox. Will rename them.
501 IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. if the function return true, you can output elements then call ListBoxFooter() afterwards.
502 IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // "
503 IMGUI_API void ListBoxFooter(); // terminate the scrolling region. only call ListBoxFooter() if ListBoxHeader() returned true!
H A Dimgui_widgets.cpp5126 // - ListBoxHeader()
5133 bool ImGui::ListBoxHeader(const char* label, const ImVec2& size_arg) function in class:ImGui
5166 bool ImGui::ListBoxHeader(const char* label, int items_count, int height_in_items) function in class:ImGui
5181 return ListBoxHeader(label, size);
5209 if (!ListBoxHeader(label, items_count, height_in_items))
H A Dimgui_demo.cpp1871 if (ImGui::ListBoxHeader("List", size))
4278 ImGui::ListBoxHeader("##", close_queue_unsaved_documents, 6);
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h498 // - FIXME: To be consistent with all the newer API, ListBoxHeader/ListBoxFooter should in reality be called BeginListBox/EndListBox. Will rename them.
501 IMGUI_API bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0,0)); // use if you want to reimplement ListBox() will custom data or interactions. if the function return true, you can output elements then call ListBoxFooter() afterwards.
502 IMGUI_API bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1); // "
503 IMGUI_API void ListBoxFooter(); // terminate the scrolling region. only call ListBoxFooter() if ListBoxHeader() returned true!
H A Dimgui_widgets.cpp5126 // - ListBoxHeader()
5133 bool ImGui::ListBoxHeader(const char* label, const ImVec2& size_arg) function in class:ImGui
5166 bool ImGui::ListBoxHeader(const char* label, int items_count, int height_in_items) function in class:ImGui
5181 return ListBoxHeader(label, size);
5209 if (!ListBoxHeader(label, items_count, height_in_items))

Completed in 50 milliseconds