Searched refs:ImGuiCond (Results 1 - 8 of 8) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_internal.h | 708 ImGuiCond PosCond; 709 ImGuiCond SizeCond; 710 ImGuiCond ContentSizeCond; 711 ImGuiCond CollapsedCond; 712 ImGuiCond SizeConstraintCond; 713 ImGuiCond FocusCond; 714 ImGuiCond BgAlphaCond; 817 ImGuiCond NextTreeNodeOpenCond; 1170 ImGuiCond SetWindowPosAllowFlags; // store acceptable condition flags for SetNextWindowPos() use. 1171 ImGuiCond SetWindowSizeAllowFlag [all...] |
| H A D | imgui.h | 125 typedef int ImGuiCond; // -> enum ImGuiCond_ // Enum: A condition for Set*() typedef in typeref:typename:int 271 IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. 272 IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin() 275 IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin() 278 IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects. 279 IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects. 280 IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed(). 283 IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position. 284 IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis. 285 IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond con [all...] |
| H A D | imgui.cpp | 4459 static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled) 6048 void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond) 6065 void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond) 6071 void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond) 6083 void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) 6115 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) 6120 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) 6126 void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond) 6137 void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond) 6154 void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond con [all...] |
| H A D | imgui_widgets.cpp | 1284 ImGuiCond backup_next_window_size_constraint = g.NextWindowData.SizeConstraintCond; 4967 void ImGui::SetNextTreeNodeOpen(bool is_open, ImGuiCond cond)
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_internal.h | 708 ImGuiCond PosCond; 709 ImGuiCond SizeCond; 710 ImGuiCond ContentSizeCond; 711 ImGuiCond CollapsedCond; 712 ImGuiCond SizeConstraintCond; 713 ImGuiCond FocusCond; 714 ImGuiCond BgAlphaCond; 817 ImGuiCond NextTreeNodeOpenCond; 1170 ImGuiCond SetWindowPosAllowFlags; // store acceptable condition flags for SetNextWindowPos() use. 1171 ImGuiCond SetWindowSizeAllowFlag [all...] |
| H A D | imgui.h | 125 typedef int ImGuiCond; // -> enum ImGuiCond_ // Enum: A condition for Set*() typedef in typeref:typename:int 271 IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. 272 IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin() 275 IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin() 278 IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects. 279 IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0,0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects. 280 IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed(). 283 IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position. 284 IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis. 285 IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond con [all...] |
| H A D | imgui.cpp | 4459 static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled) 6048 void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond) 6065 void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond) 6071 void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond) 6083 void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) 6115 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) 6120 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) 6126 void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond) 6137 void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond) 6154 void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond con [all...] |
| H A D | imgui_widgets.cpp | 1284 ImGuiCond backup_next_window_size_constraint = g.NextWindowData.SizeConstraintCond; 4967 void ImGui::SetNextTreeNodeOpen(bool is_open, ImGuiCond cond)
|
Completed in 68 milliseconds