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