Searched refs:ImGuiWindow (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui_internal.h | 79 struct ImGuiWindow; // Storage for one window 617 …ImGuiWindow* Window; // Resolved on BeginPopup() - may stay unresolved if user neve… 618 ImGuiWindow* ParentWindow; // Set on OpenPopup() 695 ImGuiWindow* Window; // Best candidate window 776 …ImVector<ImGuiWindow*> Windows; // Windows, sorted in display order, b… 777 …ImVector<ImGuiWindow*> WindowsFocusOrder; // Windows, sorted in focus order, bac… 778 ImVector<ImGuiWindow*> WindowsSortBuffer; 779 ImVector<ImGuiWindow*> CurrentWindowStack; 782 ImGuiWindow* CurrentWindow; // Being drawn into 783 ImGuiWindow* HoveredWindow; // Will catch mouse inputs [all …]
|
D | imgui.cpp | 993 static void SetCurrentWindow(ImGuiWindow* window); 995 static ImGuiWindow* CreateNewWindow(const char* name, ImVec2 size, ImGuiWindowFlags flags); 996 static void CheckStacksSize(ImGuiWindow* window, bool write); 997 static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window, bool snap_on_ed… 1000 …atic void AddWindowToSortBuffer(ImVector<ImGuiWindow*>* out_sorted_windows, ImGuiWindo… 1025 static void NavProcessItem(ImGuiWindow* window, const ImRect& nav_bb, const ImGuiID id); 1027 static void NavSaveLastChildNavWindow(ImGuiWindow* nav_window); 1028 static ImGuiWindow* NavRestoreLastChildNavWindow(ImGuiWindow* window); 1033 static void UpdateManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* b… 1034 static void RenderOuterBorders(ImGuiWindow* window); [all …]
|
D | imgui_widgets.cpp | 129 ImGuiWindow* window = GetCurrentWindow(); in TextUnformatted() 244 ImGuiWindow* window = GetCurrentWindow(); in TextV() 312 ImGuiWindow* window = GetCurrentWindow(); in LabelTextV() 346 ImGuiWindow* window = GetCurrentWindow(); in BulletTextV() 391 ImGuiWindow* window = GetCurrentWindow(); in ButtonBehavior() 405 ImGuiWindow* backup_hovered_window = g.HoveredWindow; in ButtonBehavior() 546 ImGuiWindow* window = GetCurrentWindow(); in ButtonEx() 606 ImGuiWindow* window = GetCurrentWindow(); in InvisibleButton() 628 ImGuiWindow* window = GetCurrentWindow(); in ArrowButtonEx() 665 ImGuiWindow* window = g.CurrentWindow; in CloseButton() [all …]
|