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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//!
//! App window and monitors manager.
//!
//! # Events
//!
//! Events this extension provides:
//!
//! * [`WINDOW_OPEN_EVENT`]
//! * [`WINDOW_CHANGED_EVENT`]
//! * [`WINDOW_FOCUS_CHANGED_EVENT`]
//! * [`WINDOW_CLOSE_REQUESTED_EVENT`]
//! * [`WINDOW_CLOSE_EVENT`]
//! * [`MONITORS_CHANGED_EVENT`]
//!
//! # Services
//!
//! Services this extension provides:
//!
//! * [`WINDOWS`]
//! * [`MONITORS`]
//!
//! # Raw Services
//!
//! Services this extension provides for other more advanced services.
//!
//! * [`WINDOWS_FOCUS`]
//! * [`WINDOWS_EXTENSIONS`]
//! * [`WINDOWS_DIALOG`]
//! * [`WINDOWS_DRAG_DROP`]
//!
//! The [`WINDOWS`] service installs it self as the [`IMAGES_WINDOW`] handler.
//!
//! [`IMAGES_WINDOW`]: zng_ext_image::IMAGES_WINDOW
//!
//! # Crate
//!
// suppress nag about very simple boxed closure signatures.
extern crate bitflags;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;