]> git.sur5r.net Git - i3/i3/blob - src/window.c
use sstrdup() instead of strdup()
[i3/i3] / src / window.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include "all.h"
9
10 /*
11  * Updates the WM_CLASS (consisting of the class and instance) for the
12  * given window.
13  *
14  */
15 void window_update_class(i3Window *win, xcb_get_property_reply_t *prop) {
16     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
17         DLOG("empty property, not updating\n");
18         return;
19     }
20
21     /* We cannot use asprintf here since this property contains two
22      * null-terminated strings (for compatibility reasons). Instead, we
23      * use strdup() on both strings */
24     char *new_class = xcb_get_property_value(prop);
25
26     FREE(win->class_instance);
27     FREE(win->class_class);
28
29     win->class_instance = sstrdup(new_class);
30     if ((strlen(new_class) + 1) < xcb_get_property_value_length(prop))
31         win->class_class = sstrdup(new_class + strlen(new_class) + 1);
32     else win->class_class = NULL;
33     LOG("WM_CLASS changed to %s (instance), %s (class)\n",
34         win->class_instance, win->class_class);
35 }
36
37 /*
38  * Updates the name by using _NET_WM_NAME (encoded in UTF-8) for the given
39  * window. Further updates using window_update_name_legacy will be ignored.
40  *
41  */
42 void window_update_name(i3Window *win, xcb_get_property_reply_t *prop) {
43     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
44         DLOG("_NET_WM_NAME not specified, not changing\n");
45         return;
46     }
47
48     /* Save the old pointer to make the update atomic */
49     char *new_name;
50     if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop),
51                  (char*)xcb_get_property_value(prop)) == -1) {
52         perror("asprintf()");
53         DLOG("Could not get window name\n");
54     }
55     /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
56     FREE(win->name_x);
57     FREE(win->name_json);
58     win->name_json = new_name;
59     win->name_x = convert_utf8_to_ucs2(win->name_json, &win->name_len);
60     LOG("_NET_WM_NAME changed to \"%s\"\n", win->name_json);
61
62     win->uses_net_wm_name = true;
63 }
64
65 /*
66  * Updates the name by using WM_NAME (encoded in COMPOUND_TEXT). We do not
67  * touch what the client sends us but pass it to xcb_image_text_8. To get
68  * proper unicode rendering, the application has to use _NET_WM_NAME (see
69  * window_update_name()).
70  *
71  */
72 void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop) {
73     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
74         DLOG("prop == NULL\n");
75         return;
76     }
77
78     /* ignore update when the window is known to already have a UTF-8 name */
79     if (win->uses_net_wm_name)
80         return;
81
82     char *new_name;
83     if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop),
84                  (char*)xcb_get_property_value(prop)) == -1) {
85         perror("asprintf()");
86         DLOG("Could not get legacy window name\n");
87         return;
88     }
89
90     LOG("Using legacy window title. Note that in order to get Unicode window "
91         "titles in i3, the application has to set _NET_WM_NAME (UTF-8)\n");
92
93     FREE(win->name_x);
94     FREE(win->name_json);
95     win->name_x = new_name;
96     win->name_json = sstrdup(new_name);
97     win->name_len = strlen(new_name);
98 }
99
100 /**
101  * Updates the CLIENT_LEADER (logical parent window).
102  *
103  */
104 void window_update_leader(i3Window *win, xcb_get_property_reply_t *prop) {
105     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
106         DLOG("prop == NULL\n");
107         return;
108     }
109
110     xcb_window_t *leader = xcb_get_property_value(prop);
111     if (leader == NULL)
112         return;
113
114     DLOG("Client leader changed to %08x\n", *leader);
115
116     win->leader = *leader;
117 }
118
119 /**
120  * Updates the TRANSIENT_FOR (logical parent window).
121  *
122  */
123 void window_update_transient_for(i3Window *win, xcb_get_property_reply_t *prop) {
124     if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
125         DLOG("prop == NULL\n");
126         return;
127     }
128
129     xcb_window_t transient_for;
130     if (!xcb_get_wm_transient_for_from_reply(&transient_for, prop))
131         return;
132
133     DLOG("Transient for changed to %08x\n", transient_for);
134
135     win->transient_for = transient_for;
136 }