1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! `uzor-desktop` — winit-based desktop runtime for uzor apps.
//!
//! Provides the full native desktop lifecycle for uzor applications:
//!
//! - [`manager::Manager`] — the L4 event-loop driver (winit `ApplicationHandler`).
//! - [`builder_run::AppRun`] — extension trait that adds `.run()` to
//! `uzor::framework::AppBuilder`.
//! - [`builder_run::AppRun3D`] — additive sibling that adds
//! `.run_with_3d()` for apps implementing [`scene3d_app::Scene3DApp`]
//! (W3D arc plan §1.7, Wave 2).
//! - [`tray`] — system tray icon + context menu wrapper.
//! - [`chrome`] — desktop chrome wiring helpers.
//! - [`utils`] — screenshot, single-instance guard, Win32 resource embedding.
//! - [`platform`] — Win32 cursor polling and DWM border helpers.
//! - [`window`] — lower-level window creation, per-window state, window registry.
pub
// ── Primary re-exports ────────────────────────────────────────────────────────
pub use ;
pub use ;
pub use ;
pub use ;