Lines Matching refs:ImGuiID
1016 static bool BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, bool bor…
1025 static void NavProcessItem(ImGuiWindow* window, const ImRect& nav_bb, const ImGuiID id);
1865 static ImGuiStorage::Pair* LowerBound(ImVector<ImGuiStorage::Pair>& data, ImGuiID key) in LowerBound()
1904 int ImGuiStorage::GetInt(ImGuiID key, int default_val) const in GetInt()
1912 bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const in GetBool()
1917 float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const in GetFloat()
1925 void* ImGuiStorage::GetVoidPtr(ImGuiID key) const in GetVoidPtr()
1934 int* ImGuiStorage::GetIntRef(ImGuiID key, int default_val) in GetIntRef()
1942 bool* ImGuiStorage::GetBoolRef(ImGuiID key, bool default_val) in GetBoolRef()
1947 float* ImGuiStorage::GetFloatRef(ImGuiID key, float default_val) in GetFloatRef()
1955 void** ImGuiStorage::GetVoidPtrRef(ImGuiID key, void* default_val) in GetVoidPtrRef()
1964 void ImGuiStorage::SetInt(ImGuiID key, int val) in SetInt()
1975 void ImGuiStorage::SetBool(ImGuiID key, bool val) in SetBool()
1980 void ImGuiStorage::SetFloat(ImGuiID key, float val) in SetFloat()
1991 void ImGuiStorage::SetVoidPtr(ImGuiID key, void* val) in SetVoidPtr()
2458 void ImGui::RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags) in RenderNavHighlight()
2566 ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) in GetID()
2568 ImGuiID seed = IDStack.back(); in GetID()
2569 ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetID()
2574 ImGuiID ImGuiWindow::GetID(const void* ptr) in GetID()
2576 ImGuiID seed = IDStack.back(); in GetID()
2577 ImGuiID id = ImHashData(&ptr, sizeof(void*), seed); in GetID()
2582 ImGuiID ImGuiWindow::GetIDNoKeepAlive(const char* str, const char* str_end) in GetIDNoKeepAlive()
2584 ImGuiID seed = IDStack.back(); in GetIDNoKeepAlive()
2588 ImGuiID ImGuiWindow::GetIDNoKeepAlive(const void* ptr) in GetIDNoKeepAlive()
2590 ImGuiID seed = IDStack.back(); in GetIDNoKeepAlive()
2595 ImGuiID ImGuiWindow::GetIDFromRectangle(const ImRect& r_abs) in GetIDFromRectangle()
2597 ImGuiID seed = IDStack.back(); in GetIDFromRectangle()
2599 ImGuiID id = ImHashData(&r_rel, sizeof(r_rel), seed); in GetIDFromRectangle()
2612 void ImGui::SetNavID(ImGuiID id, int nav_layer) in SetNavID()
2621 void ImGui::SetNavIDWithRectRel(ImGuiID id, int nav_layer, const ImRect& rect_rel) in SetNavIDWithRectRel()
2631 void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window) in SetActiveID()
2659 void ImGui::SetFocusID(ImGuiID id, ImGuiWindow* window) in SetFocusID()
2686 void ImGui::SetHoveredID(ImGuiID id) in SetHoveredID()
2695 ImGuiID ImGui::GetHoveredID() in GetHoveredID()
2701 void ImGui::KeepAliveID(ImGuiID id) in KeepAliveID()
2710 void ImGui::MarkItemEdited(ImGuiID id) in MarkItemEdited()
2778 bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg) in ItemAdd()
2862 bool ImGui::ItemHoverable(const ImRect& bb, ImGuiID id) in ItemHoverable()
2884 bool ImGui::IsClippedEx(const ImRect& bb, ImGuiID id, bool clip_even_when_logged) in IsClippedEx()
2895 bool ImGui::FocusableItemRegister(ImGuiWindow* window, ImGuiID id, bool tab_stop) in FocusableItemRegister()
4321 static bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, bool border, … in BeginChildEx()
4378 bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flag… in BeginChild()
4424 bool ImGui::BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags) in BeginChildFrame()
4466 ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) in FindWindowByID()
4474 ImGuiID id = ImHashStr(name, 0); in FindWindowByName()
6437 void ImGui::ActivateItem(ImGuiID id) in ActivateItem()
6511 ImGuiID ImGui::GetID(const char* str_id) in GetID()
6517 ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) in GetID()
6523 ImGuiID ImGui::GetID(const void* ptr_id) in GetID()
6724 bool ImGui::IsPopupOpen(ImGuiID id) in IsPopupOpen()
6756 void ImGui::OpenPopupEx(ImGuiID id) in OpenPopupEx()
6803 …ImGuiID id = str_id ? window->GetID(str_id) : window->DC.LastItemId; // If user hasn't passed an I… in OpenPopupOnItemClick()
6902 bool ImGui::BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_flags) in BeginPopupEx()
6942 const ImGuiID id = window->GetID(name); in BeginPopupModal()
6984 …ImGuiID id = str_id ? window->GetID(str_id) : window->DC.LastItemId; // If user hasn't passed an I… in BeginPopupContextItem()
6995 ImGuiID id = GImGui->CurrentWindow->GetID(str_id); in BeginPopupContextWindow()
7006 ImGuiID id = GImGui->CurrentWindow->GetID(str_id); in BeginPopupContextVoid()
7291 static void ImGui::NavProcessItem(ImGuiWindow* window, const ImRect& nav_bb, const ImGuiID id) in NavProcessItem()
8217 IM_ASSERT(g.ActiveId == columns->ID + ImGuiID(column_index)); in GetDraggedColumnOffset()
8309 static ImGuiColumnsSet* FindOrAddColumnsSet(ImGuiWindow* window, ImGuiID id) in FindOrAddColumnsSet()
8332 ImGuiID id = window->GetID(str_id ? str_id : "columns"); in BeginColumns()
8411 const ImGuiID column_id = columns->ID + ImGuiID(n); in EndColumns()
8496 ImGuiID source_id = 0; in BeginDragDropSource()
8497 ImGuiID source_parent_id = 0; in BeginDragDropSource()
8647 bool ImGui::BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id) in BeginDragDropTargetCustom()
8686 ImGuiID id = window->DC.LastItemId; in BeginDragDropTarget()
8969 ImGuiWindowSettings* ImGui::FindWindowSettings(ImGuiID id) in FindWindowSettings()
8998 const ImGuiID type_hash = ImHashStr(type_name, 0); in FindSettingsHandler()