76 lines
1.7 KiB
Rust
76 lines
1.7 KiB
Rust
//! The core library of [Iced].
|
|
//!
|
|
//! This library holds basic types that can be reused and re-exported in
|
|
//! different runtime implementations.
|
|
//!
|
|
//! 
|
|
//!
|
|
//! [Iced]: https://github.com/iced-rs/iced
|
|
#![doc(
|
|
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
|
|
)]
|
|
pub mod alignment;
|
|
pub mod border;
|
|
pub mod clipboard;
|
|
pub mod event;
|
|
pub mod font;
|
|
pub mod gradient;
|
|
pub mod image;
|
|
pub mod keyboard;
|
|
pub mod layout;
|
|
pub mod mouse;
|
|
pub mod overlay;
|
|
pub mod renderer;
|
|
pub mod svg;
|
|
pub mod text;
|
|
pub mod theme;
|
|
pub mod time;
|
|
pub mod touch;
|
|
pub mod widget;
|
|
pub mod window;
|
|
|
|
mod angle;
|
|
mod background;
|
|
mod color;
|
|
mod content_fit;
|
|
mod element;
|
|
mod length;
|
|
mod padding;
|
|
mod pixels;
|
|
mod point;
|
|
mod rectangle;
|
|
mod shadow;
|
|
mod shell;
|
|
mod size;
|
|
mod transformation;
|
|
mod vector;
|
|
|
|
pub use alignment::Alignment;
|
|
pub use angle::{Degrees, Radians};
|
|
pub use background::Background;
|
|
pub use border::Border;
|
|
pub use clipboard::Clipboard;
|
|
pub use color::Color;
|
|
pub use content_fit::ContentFit;
|
|
pub use element::Element;
|
|
pub use event::Event;
|
|
pub use font::Font;
|
|
pub use gradient::Gradient;
|
|
pub use layout::Layout;
|
|
pub use length::Length;
|
|
pub use overlay::Overlay;
|
|
pub use padding::Padding;
|
|
pub use pixels::Pixels;
|
|
pub use point::Point;
|
|
pub use rectangle::Rectangle;
|
|
pub use renderer::Renderer;
|
|
pub use shadow::Shadow;
|
|
pub use shell::Shell;
|
|
pub use size::Size;
|
|
pub use text::Text;
|
|
pub use theme::Theme;
|
|
pub use transformation::Transformation;
|
|
pub use vector::Vector;
|
|
pub use widget::Widget;
|
|
|
|
pub use smol_str::SmolStr;
|