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

13 functions
FunctionDescription
imgui.createCreates an ImGui window and returns its window handle. Active window titles must be unique.
imgui.setvsyncUpdates the ImGui renderer's vertical-synchronization preference. The current presentation path stores this preference but does not apply it.
ImGuiWindow.ButtonAppends a button to a window. The callback is queued when the user clicks the button.
ImGuiWindow.CheckboxAppends a checkbox and reports changed values through a callback.
ImGuiWindow.CollapsingHeaderAppends a collapsing header and groups the controls added by its content callback beneath that header.
ImGuiWindow.ColorPickerAppends an RGBA color editor and reports changed color components through a callback.
ImGuiWindow.destroyRemoves an ImGui window, releases its registered callbacks, and invalidates the handle.
ImGuiWindow.InputTextAppends a single-line text input and reports edited text through a callback.
ImGuiWindow.SameLinePlaces the next appended control on the same line as the preceding control.
ImGuiWindow.SeparatorAppends a horizontal separator to a window.
ImGuiWindow.SliderFloatAppends a floating-point slider and reports changed values through a callback.
ImGuiWindow.SliderIntAppends an integer slider and reports changed values through a callback.
ImGuiWindow.TextAppends a non-interactive text line to a window.