aethermap-gui 1.5.0

GUI client for aethermap input remapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Aethermap GUI Library
//!
//! This library exposes the main GUI components for testing and reuse.

#![allow(clippy::arc_with_non_send_sync)]

pub mod focus_tracker;
pub mod gui;
pub mod handlers;
pub mod ipc;
pub mod theme;
pub mod views;
pub mod widgets;

// Re-export main types for easier access
pub use focus_tracker::{FocusEvent, FocusTracker};
pub use gui::{Message, State};