egui/containers/
mod.rs

1//! Containers are pieces of the UI which wraps other pieces of UI. Examples: [`Window`], [`ScrollArea`], [`Resize`], [`SidePanel`], etc.
2//!
3//! For instance, a [`Frame`] adds a frame and background to some contained UI.
4
5pub(crate) mod area;
6pub mod collapsing_header;
7mod combo_box;
8pub(crate) mod frame;
9pub mod panel;
10pub mod popup;
11pub(crate) mod resize;
12pub mod scroll_area;
13pub(crate) mod window;
14
15pub use {
16    area::{Area, AreaState},
17    collapsing_header::{CollapsingHeader, CollapsingResponse},
18    combo_box::*,
19    frame::Frame,
20    panel::{CentralPanel, SidePanel, TopBottomPanel},
21    popup::*,
22    resize::Resize,
23    scroll_area::ScrollArea,
24    window::Window,
25};