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 mod frame;
9pub mod modal;
10pub mod panel;
11pub mod popup;
12pub(crate) mod resize;
13mod scene;
14pub mod scroll_area;
15mod sides;
16pub(crate) mod window;
17
18pub use {
19    area::{Area, AreaState},
20    collapsing_header::{CollapsingHeader, CollapsingResponse},
21    combo_box::*,
22    frame::Frame,
23    modal::{Modal, ModalResponse},
24    panel::{CentralPanel, SidePanel, TopBottomPanel},
25    popup::*,
26    resize::Resize,
27    scene::Scene,
28    scroll_area::ScrollArea,
29    sides::Sides,
30    window::Window,
31};