dear-imgui-rs 0.14.0

High-level Rust bindings to Dear ImGui v1.92.7 with docking, WGPU/GL backends, and extensions (ImPlot/ImPlot3D, ImNodes, ImGuizmo, file browser, reflection-based UI)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Combo boxes
//!
//! Single-selection dropdowns with optional height and popup alignment flags.
//! Builders provide both string and custom item sources.
//!
mod builder;
mod options;
mod token;
mod ui;

pub use builder::ComboBox;
pub use options::{ComboBoxFlags, ComboBoxHeight, ComboBoxOptions, ComboBoxPreviewMode};
pub use token::ComboBoxToken;