par-term 0.29.0

Cross-platform GPU-accelerated terminal emulator with inline graphics support (Sixel, iTerm2, Kitty)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Application event handler
//!
//! This module implements the winit `ApplicationHandler` trait for `WindowManager`,
//! routing window events to the appropriate `WindowState` and handling menu events.
//!
//! ## Sub-modules
//!
//! - `window_state_impl`: `impl WindowState` — shell integration, window event routing,
//!   focus change, and per-frame `about_to_wait` polling.
//! - `app_handler_impl`: `impl ApplicationHandler for WindowManager` — winit event loop
//!   entry points (`resumed`, `window_event`, `about_to_wait`).

mod app_handler_impl;
mod window_state_impl;