Skip to main content

aethermap_gui/
lib.rs

1//! Aethermap GUI Library
2//!
3//! This library exposes the main GUI components for testing and reuse.
4
5pub mod ipc;
6pub mod gui;
7pub mod theme;
8pub mod focus_tracker;
9pub mod widgets;
10
11// Re-export main types for easier access
12pub use gui::{State, Message};
13pub use focus_tracker::{FocusTracker, FocusEvent};