]> git.sur5r.net Git - i3/i3/blob - src/client.c
use decimal coordinates in debug message
[i3/i3] / src / client.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * client.c: holds all client-specific functions
11  *
12  */
13 #include <stdlib.h>
14 #include <string.h>
15 #include <assert.h>
16 #include <limits.h>
17
18 #include <xcb/xcb.h>
19 #include <xcb/xcb_icccm.h>
20
21 #include "data.h"
22 #include "i3.h"
23 #include "xcb.h"
24 #include "util.h"
25 #include "queue.h"
26 #include "layout.h"
27 #include "client.h"
28 #include "table.h"
29 #include "workspace.h"
30 #include "config.h"
31 #include "log.h"
32
33 /*
34  * Removes the given client from the container, either because it will be inserted into another
35  * one or because it was unmapped
36  *
37  */
38 void client_remove_from_container(xcb_connection_t *conn, Client *client, Container *container, bool remove_from_focusstack) {
39         CIRCLEQ_REMOVE(&(container->clients), client, clients);
40
41         if (remove_from_focusstack)
42                 SLIST_REMOVE(&(container->workspace->focus_stack), client, Client, focus_clients);
43
44         /* If the container will be empty now and is in stacking mode, we need to
45            unmap the stack_win */
46         if (CIRCLEQ_EMPTY(&(container->clients)) &&
47             (container->mode == MODE_STACK ||
48              container->mode == MODE_TABBED)) {
49                 DLOG("Unmapping stack window\n");
50                 struct Stack_Window *stack_win = &(container->stack_win);
51                 stack_win->rect.height = 0;
52                 xcb_unmap_window(conn, stack_win->window);
53                 xcb_flush(conn);
54         }
55 }
56
57 /*
58  * Warps the pointer into the given client (in the middle of it, to be specific), therefore
59  * selecting it
60  *
61  */
62 void client_warp_pointer_into(xcb_connection_t *conn, Client *client) {
63         int mid_x = client->rect.width / 2,
64             mid_y = client->rect.height / 2;
65         xcb_warp_pointer(conn, XCB_NONE, client->child, 0, 0, 0, 0, mid_x, mid_y);
66 }
67
68 /*
69  * Returns true if the client supports the given protocol atom (like WM_DELETE_WINDOW)
70  *
71  */
72 static bool client_supports_protocol(xcb_connection_t *conn, Client *client, xcb_atom_t atom) {
73         xcb_get_property_cookie_t cookie;
74         xcb_get_wm_protocols_reply_t protocols;
75         bool result = false;
76
77         cookie = xcb_get_wm_protocols_unchecked(conn, client->child, atoms[WM_PROTOCOLS]);
78         if (xcb_get_wm_protocols_reply(conn, cookie, &protocols, NULL) != 1)
79                 return false;
80
81         /* Check if the client’s protocols have the requested atom set */
82         for (uint32_t i = 0; i < protocols.atoms_len; i++)
83                 if (protocols.atoms[i] == atom)
84                         result = true;
85
86         xcb_get_wm_protocols_reply_wipe(&protocols);
87
88         return result;
89 }
90
91 /*
92  * Kills the given window using WM_DELETE_WINDOW or xcb_kill_window
93  *
94  */
95 void client_kill(xcb_connection_t *conn, Client *window) {
96         /* If the client does not support WM_DELETE_WINDOW, we kill it the hard way */
97         if (!client_supports_protocol(conn, window, atoms[WM_DELETE_WINDOW])) {
98                 LOG("Killing window the hard way\n");
99                 xcb_kill_client(conn, window->child);
100                 return;
101         }
102
103         xcb_client_message_event_t ev;
104
105         memset(&ev, 0, sizeof(xcb_client_message_event_t));
106
107         ev.response_type = XCB_CLIENT_MESSAGE;
108         ev.window = window->child;
109         ev.type = atoms[WM_PROTOCOLS];
110         ev.format = 32;
111         ev.data.data32[0] = atoms[WM_DELETE_WINDOW];
112         ev.data.data32[1] = XCB_CURRENT_TIME;
113
114         LOG("Sending WM_DELETE to the client\n");
115         xcb_send_event(conn, false, window->child, XCB_EVENT_MASK_NO_EVENT, (char*)&ev);
116         xcb_flush(conn);
117 }
118
119 /*
120  * Checks if the given window class and title match the given client
121  * Window title is passed as "normal" string and as UCS-2 converted string for
122  * matching _NET_WM_NAME capable clients as well as those using legacy hints.
123  *
124  */
125 bool client_matches_class_name(Client *client, char *to_class, char *to_title,
126                                char *to_title_ucs, int to_title_ucs_len) {
127         /* Check if the given class is part of the window class */
128         if ((client->window_class_instance == NULL ||
129              strcasestr(client->window_class_instance, to_class) == NULL) &&
130             (client->window_class_class == NULL ||
131              strcasestr(client->window_class_class, to_class) == NULL))
132                 return false;
133
134         /* If no title was given, we’re done */
135         if (to_title == NULL)
136                 return true;
137
138         if (client->name_len > -1) {
139                 /* UCS-2 converted window titles */
140                 if (client->name == NULL || memmem(client->name, (client->name_len * 2), to_title_ucs, (to_title_ucs_len * 2)) == NULL)
141                         return false;
142         } else {
143                 /* Legacy hints */
144                 if (client->name == NULL || strcasestr(client->name, to_title) == NULL)
145                         return false;
146         }
147
148         return true;
149 }
150
151 /*
152  * Sets the position of the given client in the X stack to the highest (tiling layer is always
153  * on the same position, so this doesn’t matter) below the first floating client, so that
154  * floating windows are always on top.
155  *
156  */
157 void client_set_below_floating(xcb_connection_t *conn, Client *client) {
158         /* Ensure that it is below all floating clients */
159         Workspace *ws = client->workspace;
160         Client *first_floating = TAILQ_FIRST(&(ws->floating_clients));
161         if (first_floating == TAILQ_END(&(ws->floating_clients)))
162                 return;
163
164         DLOG("Setting below floating\n");
165         uint32_t values[] = { first_floating->frame, XCB_STACK_MODE_BELOW };
166         xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
167
168         if (client->workspace->fullscreen_client == NULL)
169                 return;
170
171         DLOG("(and below fullscreen)\n");
172         /* Ensure that the window is still below the fullscreen window */
173         values[0] = client->workspace->fullscreen_client->frame;
174         xcb_configure_window(conn, client->frame, XCB_CONFIG_WINDOW_SIBLING | XCB_CONFIG_WINDOW_STACK_MODE, values);
175 }
176
177 /*
178  * Returns true if the client is floating. Makes the code more beatiful, as floating
179  * is not simply a boolean, but also saves whether the user selected the current state
180  * or whether it was automatically set.
181  *
182  */
183 bool client_is_floating(Client *client) {
184         return (client->floating >= FLOATING_AUTO_ON);
185 }
186
187 /*
188  * Change the border type for the given client to normal (n), 1px border (p) or
189  * completely borderless (b) without actually re-rendering the layout. Useful
190  * for calling it when initializing a new client.
191  *
192  */
193 bool client_init_border(xcb_connection_t *conn, Client *client, char border_type) {
194         switch (border_type) {
195                 case 'n':
196                         LOG("Changing to normal border\n");
197                         client->titlebar_position = TITLEBAR_TOP;
198                         client->borderless = false;
199                         return true;
200                 case 'p':
201                         LOG("Changing to 1px border\n");
202                         client->titlebar_position = TITLEBAR_OFF;
203                         client->borderless = false;
204                         return true;
205                 case 'b':
206                         LOG("Changing to borderless\n");
207                         client->titlebar_position = TITLEBAR_OFF;
208                         client->borderless = true;
209                         return true;
210                 default:
211                         LOG("Unknown border mode\n");
212                         return false;
213         }
214 }
215
216 /*
217  * Change the border type for the given client to normal (n), 1px border (p) or
218  * completely borderless (b).
219  *
220  */
221 void client_change_border(xcb_connection_t *conn, Client *client, char border_type) {
222         if (!client_init_border(conn, client, border_type))
223                 return;
224
225         /* Ensure that the child’s position inside our window gets updated */
226         client->force_reconfigure = true;
227
228         /* For clients inside a container, we can simply render the container */
229         if (client->container != NULL)
230                 render_container(conn, client->container);
231         else {
232                 /* If the client is floating, directly push its size */
233                 if (client_is_floating(client))
234                         resize_client(conn, client);
235                 /* Otherwise, it may be a dock client, thus render the whole layout */
236                 else render_layout(conn);
237         }
238
239         redecorate_window(conn, client);
240 }
241
242 /*
243  * Unmap the client, correctly setting any state which is needed.
244  *
245  */
246 void client_unmap(xcb_connection_t *conn, Client *client) {
247         /* Set WM_STATE_WITHDRAWN, it seems like Java apps need it */
248         long data[] = { XCB_WM_STATE_WITHDRAWN, XCB_NONE };
249         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, client->child, atoms[WM_STATE], atoms[WM_STATE], 32, 2, data);
250
251         xcb_unmap_window(conn, client->frame);
252 }
253
254 /*
255  * Map the client, correctly restoring any state needed.
256  *
257  */
258 void client_map(xcb_connection_t *conn, Client *client) {
259         /* Set WM_STATE_NORMAL because GTK applications don’t want to drag & drop if we don’t.
260          * Also, xprop(1) needs that to work. */
261         long data[] = { XCB_WM_STATE_NORMAL, XCB_NONE };
262         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, client->child, atoms[WM_STATE], atoms[WM_STATE], 32, 2, data);
263
264         xcb_map_window(conn, client->frame);
265 }
266
267 /*
268  * Set the given mark for this client. Used for jumping to the client
269  * afterwards (like m<mark> and '<mark> in vim).
270  *
271  */
272 void client_mark(xcb_connection_t *conn, Client *client, const char *mark) {
273         if (client->mark != NULL)
274                 free(client->mark);
275         client->mark = sstrdup(mark);
276
277         /* Make sure no other client has this mark set */
278         Client *current;
279         Workspace *ws;
280         TAILQ_FOREACH(ws, workspaces, workspaces)
281                 SLIST_FOREACH(current, &(ws->focus_stack), focus_clients) {
282                         if (current == client ||
283                             current->mark == NULL ||
284                             strcmp(current->mark, mark) != 0)
285                                 continue;
286
287                         free(current->mark);
288                         current->mark = NULL;
289                         /* We can break here since there can only be one other
290                          * client with this mark. */
291                         break;
292                 }
293 }
294
295 /*
296  * Returns the minimum height of a specific window. The height is calculated
297  * by using 2 pixels (for the client window itself), possibly padding this to
298  * comply with the client’s base_height and then adding the decoration height.
299  *
300  */
301 uint32_t client_min_height(Client *client) {
302         uint32_t height = max(2, client->base_height);
303         i3Font *font = load_font(global_conn, config.font);
304
305         if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
306                 return height;
307
308         if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
309                 return height + 2;
310
311         return height + font->height + 2 + 2;
312 }
313
314 /*
315  * See client_min_height.
316  *
317  */
318 uint32_t client_min_width(Client *client) {
319         uint32_t width = max(2, client->base_width);
320
321         if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
322                 return width;
323
324         if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
325                 return width + 2;
326
327         return width + 2 + 2;
328 }