abletk/src/lib.rs

32 lines
944 B
Rust
Raw Normal View History

2022-04-16 12:25:56 -05:00
/*
* Copyright (C) 2022 Umut İnan Erdoğan <umutinanerdogan@pm.me>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
2022-04-16 12:18:23 -05:00
//! Able GUI Toolkit (AbleTK)
#[doc(inline)] pub use abletk_macros::*;
2022-04-21 09:59:16 -05:00
pub use abletk_common::color;
2022-04-16 12:18:23 -05:00
pub mod application;
pub mod context;
pub mod event;
pub mod layout;
2022-04-16 12:18:23 -05:00
pub mod platform;
pub mod plugin;
pub mod widget;
pub mod window;
pub mod prelude {
pub use crate::application::*;
2022-04-21 09:59:16 -05:00
pub use crate::color::*;
2022-04-16 12:18:23 -05:00
pub use crate::event::application::Event as ApplicationEvent;
pub use crate::event::window::Event as WindowEvent;
pub use crate::platform::Platform;
pub use crate::widget::Label;
pub use crate::widget::Widget;
pub use crate::window::*;
2022-04-23 03:56:47 -05:00
pub use crate::color;
2022-04-16 12:18:23 -05:00
pub use crate::launch;
}