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
39
40
41
//! `WindowHost` — capabilities the L3 `LayoutManager` asks the host
//! (window manager / runtime) to perform.
//!
//! Implemented by L4 runtimes (uzor-desktop, uzor-web, uzor-mobile).
//! L3 calls this trait rather than touching winit / platform APIs directly.
use crateResizeDirection;
use crateWindowSpec;
/// Capabilities a window manager must provide to the L3 layout layer.
///
/// Default implementations are no-ops so that stub / test hosts can
/// implement only the methods they care about.