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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
use xcb::{
x::{self, Atom, ChangeProperty, GetProperty, Pixmap, PropMode, Window},
Xid, XidNew,
};
use crate::conn_info::Connection;
/// EWM Hints set on a window.
pub struct Ewm {
flags: u32,
input: bool,
initial_state: i32,
icon_pixmap: Pixmap,
icon_window: Window,
icon_x: i32,
icon_y: i32,
icon_mask: Pixmap,
window_group: u32,
}
impl Ewm {
/// Get the EWM hints for the given window, if they exist and are valid.
pub fn get(conn: &Connection<'_>, window: Window) -> Option<Self> {
// https://github.com/mirror/libX11/blob/ff8706a5eae25b8bafce300527079f68a201d27f/src/GetHints.c#L106
// https://github.com/mirror/libX11/blob/master/src/Xatomtype.h#L111
let hints = conn
.wait_for_reply(conn.send_request(&GetProperty {
window,
delete: false,
property: x::ATOM_WM_HINTS,
r#type: x::ATOM_WM_HINTS,
long_offset: 0,
long_length: 9,
}))
.ok()?;
if hints.r#type() != x::ATOM_WM_HINTS || hints.length() < 8 || hints.format() != 32 {
return None;
}
let [flags, input, initial_state, icon_pixmap, icon_window, icon_x, icon_y, icon_mask, window_group] =
match hints.value::<u32>() {
[f, i, is, ip, iw, ix, iy, im, wg] => [f, i, is, ip, iw, ix, iy, im, wg],
[f, i, is, ip, iw, ix, iy, im] => [f, i, is, ip, iw, ix, iy, im, &0],
_ => unreachable!(),
};
unsafe {
Some(Self {
flags: *flags,
input: *input > 0,
initial_state: std::mem::transmute::<u32, i32>(*initial_state),
icon_pixmap: Pixmap::new(*icon_pixmap),
icon_window: Window::new(*icon_window),
icon_x: std::mem::transmute::<u32, i32>(*icon_x),
icon_y: std::mem::transmute::<u32, i32>(*icon_y),
icon_mask: Pixmap::new(*icon_mask),
window_group: *window_group,
})
}
}
/// Set these WM hints on the given window.
pub fn apply(&self, conn: &Connection<'_>, window: Window) {
conn.send_request(&ChangeProperty {
mode: PropMode::Replace,
window,
property: x::ATOM_WM_HINTS,
r#type: x::ATOM_WM_HINTS,
data: unsafe {
&[
self.flags,
u32::from(self.input),
std::mem::transmute::<i32, u32>(self.initial_state),
self.icon_pixmap.resource_id(),
self.icon_window.resource_id(),
std::mem::transmute::<i32, u32>(self.icon_x),
std::mem::transmute::<i32, u32>(self.icon_y),
self.icon_mask.resource_id(),
self.window_group,
]
},
});
}
/// If the window is flagged as urgent
pub const fn is_urgent(&self) -> bool {
(self.flags & 1 << 8) > 0
}
/// Set the urgent flag. [`Self::apply`] should be called afterwards.
pub fn set_urgent(&mut self, urgent: bool) {
self.flags &= u32::from(urgent) << 8;
}
/// Whether the window has the `input` flag set, unset, or not specified.
pub const fn input(&self) -> Option<bool> {
if (self.flags & 1 << 0) > 0 {
Some(self.input)
} else {
None
}
}
}
/// Gets the `WM_TRANSIENT_FOR` hint set on a window
pub fn transient_for(conn: &Connection, window: Window) -> Option<Window> {
let hints = conn
.wait_for_reply(conn.send_request(&GetProperty {
window,
delete: false,
property: x::ATOM_WM_TRANSIENT_FOR,
r#type: x::ATOM_WINDOW,
long_offset: 0,
long_length: 1,
}))
.ok()?;
if hints.r#type() != x::ATOM_WINDOW || hints.length() < 1 || hints.format() != 32 {
return None;
}
Some(hints.value::<Window>()[0])
}
/// Check if the given window is flagged as a dialog with the `NET_WM_WINDOW_TYPE` property
pub fn is_dialog(conn: &Connection, window: Window) -> bool {
let Ok(hints) = conn.wait_for_reply(conn.send_request(&GetProperty {
window,
delete: false,
property: conn.atoms.net_wm_window_type,
r#type: x::ATOM_ATOM,
long_offset: 0,
long_length: 1,
})) else {
return false;
};
hints.r#type() == x::ATOM_ATOM
&& hints.length() == 1
&& hints.format() == 32
&& hints.value::<Atom>()[0] == conn.atoms.net_wm_window_type_dialog
}
/// Check if the given window wants to be fullscreen, using the `NET_WM_STATE` property
pub fn is_fullscreen(conn: &Connection, window: Window) -> bool {
let Ok(hints) = conn.wait_for_reply(conn.send_request(&GetProperty {
window,
delete: false,
property: conn.atoms.net_wm_state,
r#type: x::ATOM_ATOM,
long_offset: 0,
long_length: 9999,
})) else {
return false;
};
hints.r#type() == x::ATOM_ATOM
&& hints.format() == 32
&& hints
.value::<Atom>()
.iter()
.any(|a| *a == conn.atoms.net_wm_fullscreen)
}
|