aumate 0.2.8

Cross-platform desktop automation library with GUI support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Window module

mod builder;
pub mod commands;
pub mod config;
mod floating;
mod manager;

pub use builder::FloatingWindowBuilder;
pub use commands::{
    CommandReceiver, CommandSender, WidgetUpdate, WindowCommand, WindowRegistry,
    create_command_channel,
};
pub use config::{Position, Size, WindowConfig, WindowLevel};
pub use floating::FloatingWindow;
pub use manager::FloatingWindowManager;