Category
ImGui
Immediate-mode windows and callback-driven controls.Category guide
Overview
Use this overview to understand the category before opening a specific function.- See what this group of functions is meant to solve.
- Compare function names and descriptions in one table.
- Open a function for syntax, arguments, returns, and examples.
ImGui
Available functions
| Function | Description |
|---|---|
imgui.create | Creates an ImGui window and returns its window handle. Active window titles must be unique. |
imgui.setvsync | Updates the ImGui renderer's vertical-synchronization preference. The current presentation path stores this preference but does not apply it. |
ImGuiWindow.Button | Appends a button to a window. The callback is queued when the user clicks the button. |
ImGuiWindow.Checkbox | Appends a checkbox and reports changed values through a callback. |
ImGuiWindow.CollapsingHeader | Appends a collapsing header and groups the controls added by its content callback beneath that header. |
ImGuiWindow.ColorPicker | Appends an RGBA color editor and reports changed color components through a callback. |
ImGuiWindow.destroy | Removes an ImGui window, releases its registered callbacks, and invalidates the handle. |
ImGuiWindow.InputText | Appends a single-line text input and reports edited text through a callback. |
ImGuiWindow.SameLine | Places the next appended control on the same line as the preceding control. |
ImGuiWindow.Separator | Appends a horizontal separator to a window. |
ImGuiWindow.SliderFloat | Appends a floating-point slider and reports changed values through a callback. |
ImGuiWindow.SliderInt | Appends an integer slider and reports changed values through a callback. |
ImGuiWindow.Text | Appends a non-interactive text line to a window. |