x11-overlay 0.1.0

A library for creating overlay interfaces on X11 systems using Cairo for rendering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod component;
pub mod composite;
pub mod indicators;
pub mod layout;
pub mod shapes;
pub mod text_component;

pub use component::{Component, ComponentExt};
pub use composite::{NotificationComponent, ProgressBarComponent, StatusPanel};
pub use layout::{Alignment, LayoutBuilder, LayoutContainer, Spacing};
#[allow(unused_imports)] // Library components not yet used in main app
pub use shapes::{CircleComponent, LineComponent, RectangleComponent};
pub use text_component::TextComponent;