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-24 10:59:48 -05:00
|
|
|
pub use abletk_common::*;
|
2022-04-16 12:18:23 -05:00
|
|
|
pub mod application;
|
|
|
|
pub mod context;
|
|
|
|
pub mod event;
|
2022-04-22 12:00:03 -05:00
|
|
|
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;
|
2022-05-08 13:05:46 -05:00
|
|
|
pub use crate::widget::Column;
|
|
|
|
pub use crate::widget::IntoPadded;
|
2022-04-16 12:18:23 -05:00
|
|
|
pub use crate::widget::Label;
|
2022-04-26 11:20:57 -05:00
|
|
|
pub use crate::widget::Row;
|
2022-05-08 13:05:46 -05:00
|
|
|
pub use crate::widget::Padding;
|
2022-04-16 12:18:23 -05:00
|
|
|
pub use crate::widget::Widget;
|
|
|
|
pub use crate::window::*;
|
2022-04-24 10:59:48 -05:00
|
|
|
pub use crate::rgb;
|
2022-04-16 12:18:23 -05:00
|
|
|
pub use crate::launch;
|
|
|
|
}
|