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

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp1773 if (ImGui::BeginTabItem("Avocado"))
1778 if (ImGui::BeginTabItem("Broccoli"))
1783 if (ImGui::BeginTabItem("Cucumber"))
1818 // Passing a bool* to BeginTabItem() is similar to passing one to Begin(): the underlying bool will be set to false when the tab is closed.
1822 if (opened[n] && ImGui::BeginTabItem(names[n], &opened[n]))
2821 if (ImGui::BeginTabItem("Sizes"))
2855 if (ImGui::BeginTabItem("Colors"))
2913 if (ImGui::BeginTabItem("Fonts"))
2998 if (ImGui::BeginTabItem("Rendering"))
3639 if (ImGui::BeginTabItem("Descriptio
[all...]
H A Dimgui.h146 typedef int ImGuiTabItemFlags; // -> enum ImGuiTabItemFlags_ // Flags: for BeginTabItem()
569 IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.
570 IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!
824 // Flags for ImGui::BeginTabItem()
829 ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()
831 ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()
H A Dimgui_widgets.cpp26 // [SECTION] Widgets: BeginTabItem, EndTabItem, etc.
6032 // and we cannot wait for the next BeginTabItem() call. We cannot compute this width within TabBarAddTab() because font size depends on the active window.
6294 // [SECTION] Widgets: BeginTabItem, EndTabItem, etc.
6299 // - BeginTabItem()
6308 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) function in class:ImGui
6333 IM_ASSERT(tab_bar->LastTabItemIdx >= 0 && "Needs to be called between BeginTabItem() and EndTabItem()");
6529 // To use it to need to call the function SetTabItemClosed() after BeginTabBar() and before any call to BeginTabItem()
6537 IM_ASSERT(tab_bar->WantLayout); // Needs to be called AFTER BeginTabBar() and BEFORE the first call to BeginTabItem()
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h146 typedef int ImGuiTabItemFlags; // -> enum ImGuiTabItemFlags_ // Flags: for BeginTabItem()
569 IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.
570 IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true!
824 // Flags for ImGui::BeginTabItem()
829 ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programatically make the tab selected when calling BeginTabItem()
831 ImGuiTabItemFlags_NoPushId = 1 << 3 // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem()
H A Dimgui_widgets.cpp26 // [SECTION] Widgets: BeginTabItem, EndTabItem, etc.
6032 // and we cannot wait for the next BeginTabItem() call. We cannot compute this width within TabBarAddTab() because font size depends on the active window.
6294 // [SECTION] Widgets: BeginTabItem, EndTabItem, etc.
6299 // - BeginTabItem()
6308 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) function in class:ImGui
6333 IM_ASSERT(tab_bar->LastTabItemIdx >= 0 && "Needs to be called between BeginTabItem() and EndTabItem()");
6529 // To use it to need to call the function SetTabItemClosed() after BeginTabBar() and before any call to BeginTabItem()
6537 IM_ASSERT(tab_bar->WantLayout); // Needs to be called AFTER BeginTabBar() and BEFORE the first call to BeginTabItem()

Completed in 48 milliseconds