
This PR extracts a singular title bar (`title_bar::TitleBar`) from `ui::TitleBar` and `collab_ui::collab_titlebar_item::CollabTitlebarItem`. This is a first step towards organizing title bar things into one place, and standardizing platform titlebar/window control implementations. Release Notes: - N/A
35 lines
596 B
Rust
35 lines
596 B
Rust
mod avatar;
|
|
mod button;
|
|
mod checkbox;
|
|
mod context_menu;
|
|
mod disclosure;
|
|
mod icon;
|
|
mod icon_button;
|
|
mod keybinding;
|
|
mod label;
|
|
mod list;
|
|
mod list_header;
|
|
mod list_item;
|
|
mod setting;
|
|
mod tab;
|
|
mod tab_bar;
|
|
mod toggle_button;
|
|
mod tool_strip;
|
|
|
|
pub use avatar::*;
|
|
pub use button::*;
|
|
pub use checkbox::*;
|
|
pub use context_menu::*;
|
|
pub use disclosure::*;
|
|
pub use icon::*;
|
|
pub use icon_button::*;
|
|
pub use keybinding::*;
|
|
pub use label::*;
|
|
pub use list::*;
|
|
pub use list_header::*;
|
|
pub use list_item::*;
|
|
pub use setting::*;
|
|
pub use tab::*;
|
|
pub use tab_bar::*;
|
|
pub use toggle_button::*;
|
|
pub use tool_strip::*;
|