//! Chrome widget — window decoration container with titlebar, tabs, and
//! system buttons (min / max / close).
//!
//! # Design
//!
//! Chrome is a composite widget. Its titlebar buttons are registered as atomic
//! `Button` children via the coordinator. Tabs are registered as `Button`
//! children as well; the coordinator's last-registered-wins rule ensures tabs
//! receive events ahead of the chrome background.
//!
//! # Render kinds
//!
//! | Kind | tabs | drag | menu | win-controls |
//! |---------------------|------|------|------|--------------|
//! | `Default` | ✓ | ✓ | ✓ | ✓ |
//! | `Minimal` | ✓ | ✓ | ✓ | ✗ |
//! | `WindowControlsOnly`| ✗ | ✓ | ✗ | ✓ |
//! | `Custom` | caller manages everything |
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;