Searched refs:ImGuiID (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui_internal.h | 274 …T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1… in GetByKey() 277 …T* GetOrAddByKey(ImGuiID key) { int* p_idx = Map.GetIntRef(key, -1); if (*p_idx … in GetOrAddByKey() 280 void Remove(ImGuiID key, const T* p) { Remove(key, GetIndex(p)); } in Remove() 281 …void Remove(ImGuiID key, ImPoolIdx idx) { Data[idx].~T(); *(int*)&Data[idx] = FreeIdx; Fre… in Remove() 541 ImGuiID BackupActiveIdIsAlive; 563 ImGuiID ID; // widget id owning the text state 593 ImGuiID ID; 604 ImGuiID TypeHash; // == ImHashStr(TypeName, 0, 0) 616 ImGuiID PopupId; // Set on OpenPopup() 620 …ImGuiID OpenParentId; // Set on OpenPopup(), we need this to differenciate multiple … [all …]
|
D | imgui.h | 122 typedef unsigned int ImGuiID; // Unique ID used by widgets (typically hashed from a stack of … typedef 249 …IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = fal… 365 …IMGUI_API ImGuiID GetID(const char* str_id); // calcula… 366 IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end); 367 IMGUI_API ImGuiID GetID(const void* ptr_id); 633 …IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags flags = 0… 1466 ImGuiID SourceId; // Source item id 1467 ImGuiID SourceParentId; // Source parent id (if available) 1611 ImGuiID key; 1613 Pair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; } in Pair() [all …]
|
D | imgui.cpp | 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() [all …]
|
D | imgui_widgets.cpp | 388 bool ImGui::ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiBu… in ButtonBehavior() 552 const ImGuiID id = window->GetID(label); in ButtonEx() 613 const ImGuiID id = window->GetID(str_id); in InvisibleButton() 633 const ImGuiID id = window->GetID(str_id); in ArrowButtonEx() 662 bool ImGui::CloseButton(ImGuiID id, const ImVec2& pos, float radius) in CloseButton() 691 bool ImGui::CollapseButton(ImGuiID id, const ImVec2& pos) in CollapseButton() 713 ImGuiID ImGui::GetScrollbarID(ImGuiLayoutType direction) in GetScrollbarID() 732 const ImGuiID id = GetScrollbarID(direction); in Scrollbar() 882 const ImGuiID id = window->GetID("#image"); in ImageButton() 914 const ImGuiID id = window->GetID(label); in Checkbox() [all …]
|