Lines Matching defs:extra_flags
4372 bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags)
4375 return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags);
4378 bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags)
4381 return BeginChildEx(NULL, id, size_arg, border, extra_flags);
4424 bool ImGui::BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags)
4432 bool ret = BeginChild(id, size, true, ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysUseWindowPadding | extra_flags);
6677 void ImGui::BeginTooltipEx(ImGuiWindowFlags extra_flags, bool override_previous_tooltip)
6692 Begin(window_name, NULL, flags | extra_flags);
6902 bool ImGui::BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_flags)
6912 if (extra_flags & ImGuiWindowFlags_ChildMenu)
6917 bool is_open = Begin(name, NULL, extra_flags | ImGuiWindowFlags_Popup);