orbtk-core 0.3.1-alpha4

Core crate that provides base api and elements for OrbTk like widgets basis.
1
2
3
4
5
6
7
8
9
//! This module contains the base elements of an OrbTk application (Application, WindowBuilder and Window).

pub use self::context_provider::*;
pub use self::overlay::*;
pub use self::window_adapter::*;

mod context_provider;
mod overlay;
mod window_adapter;