Struct egui::containers::combo_box::ComboBox
source · pub struct ComboBox {
id_salt: Id,
label: Option<WidgetText>,
selected_text: WidgetText,
width: Option<f32>,
height: Option<f32>,
icon: Option<IconPainter>,
wrap_mode: Option<TextWrapMode>,
close_behavior: Option<PopupCloseBehavior>,
}
Expand description
A drop-down selection menu with a descriptive label.
egui::ComboBox::from_label("Select one!")
.selected_text(format!("{:?}", selected))
.show_ui(ui, |ui| {
ui.selectable_value(&mut selected, Enum::First, "First");
ui.selectable_value(&mut selected, Enum::Second, "Second");
ui.selectable_value(&mut selected, Enum::Third, "Third");
}
);
Fields§
§id_salt: Id
§label: Option<WidgetText>
§selected_text: WidgetText
§width: Option<f32>
§height: Option<f32>
§icon: Option<IconPainter>
§wrap_mode: Option<TextWrapMode>
§close_behavior: Option<PopupCloseBehavior>
Implementations§
source§impl ComboBox
impl ComboBox
sourcepub fn new(id_salt: impl Hash, label: impl Into<WidgetText>) -> Self
pub fn new(id_salt: impl Hash, label: impl Into<WidgetText>) -> Self
Create new ComboBox
with id and label
sourcepub fn from_label(label: impl Into<WidgetText>) -> Self
pub fn from_label(label: impl Into<WidgetText>) -> Self
Label shown next to the combo box
sourcepub fn from_id_salt(id_salt: impl Hash) -> Self
pub fn from_id_salt(id_salt: impl Hash) -> Self
Without label.
sourcepub fn from_id_source(id_salt: impl Hash) -> Self
👎Deprecated: Renamed id_salt
pub fn from_id_source(id_salt: impl Hash) -> Self
Without label.
sourcepub fn width(self, width: f32) -> Self
pub fn width(self, width: f32) -> Self
Set the outer width of the button and menu.
Default is Spacing::combo_width
.
sourcepub fn height(self, height: f32) -> Self
pub fn height(self, height: f32) -> Self
Set the maximum outer height of the menu.
Default is Spacing::combo_height
.
sourcepub fn selected_text(self, selected_text: impl Into<WidgetText>) -> Self
pub fn selected_text(self, selected_text: impl Into<WidgetText>) -> Self
What we show as the currently selected value
sourcepub fn icon(
self,
icon_fn: impl FnOnce(&Ui, Rect, &WidgetVisuals, bool, AboveOrBelow) + 'static,
) -> Self
pub fn icon( self, icon_fn: impl FnOnce(&Ui, Rect, &WidgetVisuals, bool, AboveOrBelow) + 'static, ) -> Self
Use the provided function to render a different ComboBox
icon.
Defaults to a triangle that expands when the cursor is hovering over the ComboBox
.
For example:
pub fn filled_triangle(
ui: &egui::Ui,
rect: egui::Rect,
visuals: &egui::style::WidgetVisuals,
_is_open: bool,
_above_or_below: egui::AboveOrBelow,
) {
let rect = egui::Rect::from_center_size(
rect.center(),
egui::vec2(rect.width() * 0.6, rect.height() * 0.4),
);
ui.painter().add(egui::Shape::convex_polygon(
vec![rect.left_top(), rect.right_top(), rect.center_bottom()],
visuals.fg_stroke.color,
visuals.fg_stroke,
));
}
egui::ComboBox::from_id_salt("my-combobox")
.selected_text(text)
.icon(filled_triangle)
.show_ui(ui, |_ui| {});
sourcepub fn wrap_mode(self, wrap_mode: TextWrapMode) -> Self
pub fn wrap_mode(self, wrap_mode: TextWrapMode) -> Self
Controls the wrap mode used for the selected text.
By default, Ui::wrap_mode
will be used, which can be overridden with crate::Style::wrap_mode
.
Note that any \n
in the text will always produce a new line.
sourcepub fn wrap(self) -> Self
pub fn wrap(self) -> Self
Set Self::wrap_mode
to TextWrapMode::Wrap
.
sourcepub fn close_behavior(self, close_behavior: PopupCloseBehavior) -> Self
pub fn close_behavior(self, close_behavior: PopupCloseBehavior) -> Self
Controls the close behavior for the popup.
By default, PopupCloseBehavior::CloseOnClick
will be used.
sourcepub fn show_ui<R>(
self,
ui: &mut Ui,
menu_contents: impl FnOnce(&mut Ui) -> R,
) -> InnerResponse<Option<R>>
pub fn show_ui<R>( self, ui: &mut Ui, menu_contents: impl FnOnce(&mut Ui) -> R, ) -> InnerResponse<Option<R>>
Show the combo box, with the given ui code for the menu contents.
Returns InnerResponse { inner: None }
if the combo box is closed.
fn show_ui_dyn<'c, R>( self, ui: &mut Ui, menu_contents: Box<dyn FnOnce(&mut Ui) -> R + 'c>, ) -> InnerResponse<Option<R>>
sourcepub fn show_index<Text: Into<WidgetText>>(
self,
ui: &mut Ui,
selected: &mut usize,
len: usize,
get: impl Fn(usize) -> Text,
) -> Response
pub fn show_index<Text: Into<WidgetText>>( self, ui: &mut Ui, selected: &mut usize, len: usize, get: impl Fn(usize) -> Text, ) -> Response
Show a list of items with the given selected index.
let alternatives = ["a", "b", "c", "d"];
let mut selected = 2;
egui::ComboBox::from_label("Select one!").show_index(
ui,
&mut selected,
alternatives.len(),
|i| alternatives[i]
);
sourcepub fn is_open(ctx: &Context, id: Id) -> bool
pub fn is_open(ctx: &Context, id: Id) -> bool
Check if the ComboBox
with the given id has its popup menu currently opened.
sourcefn widget_to_popup_id(widget_id: Id) -> Id
fn widget_to_popup_id(widget_id: Id) -> Id
Convert a ComboBox
id to the id used to store it’s popup state.