backwards compatibility..
[mikachu/openbox.git] / openbox / prop.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    prop.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "prop.h"
21 #include "openbox.h"
22
23 #include <X11/Xatom.h>
24
25 Atoms prop_atoms;
26
27 #define CREATE(var, name) (prop_atoms.var = \
28                            XInternAtom(ob_display, name, FALSE))
29
30 void prop_startup()
31 {
32     CREATE(cardinal, "CARDINAL");
33     CREATE(window, "WINDOW");
34     CREATE(pixmap, "PIXMAP");
35     CREATE(atom, "ATOM");
36     CREATE(string, "STRING");
37     CREATE(utf8, "UTF8_STRING");
38
39     CREATE(manager, "MANAGER");
40      
41     CREATE(wm_colormap_windows, "WM_COLORMAP_WINDOWS");
42     CREATE(wm_protocols, "WM_PROTOCOLS");
43     CREATE(wm_state, "WM_STATE");
44     CREATE(wm_change_state, "WM_CHANGE_STATE");
45     CREATE(wm_delete_window, "WM_DELETE_WINDOW");
46     CREATE(wm_take_focus, "WM_TAKE_FOCUS");
47     CREATE(wm_name, "WM_NAME");
48     CREATE(wm_icon_name, "WM_ICON_NAME");
49     CREATE(wm_class, "WM_CLASS");
50     CREATE(wm_window_role, "WM_WINDOW_ROLE");
51     CREATE(wm_client_machine, "WM_CLIENT_MACHINE");
52     CREATE(wm_command, "WM_COMMAND");
53     CREATE(wm_client_leader, "WM_CLIENT_LEADER");
54     CREATE(motif_wm_hints, "_MOTIF_WM_HINTS");
55
56     CREATE(sm_client_id, "SM_CLIENT_ID");
57
58     CREATE(net_wm_full_placement, "_NET_WM_FULL_PLACEMENT");
59
60     CREATE(net_supported, "_NET_SUPPORTED");
61     CREATE(net_client_list, "_NET_CLIENT_LIST");
62     CREATE(net_client_list_stacking, "_NET_CLIENT_LIST_STACKING");
63     CREATE(net_number_of_desktops, "_NET_NUMBER_OF_DESKTOPS");
64     CREATE(net_desktop_geometry, "_NET_DESKTOP_GEOMETRY");
65     CREATE(net_desktop_viewport, "_NET_DESKTOP_VIEWPORT");
66     CREATE(net_current_desktop, "_NET_CURRENT_DESKTOP");
67     CREATE(net_desktop_names, "_NET_DESKTOP_NAMES");
68     CREATE(net_active_window, "_NET_ACTIVE_WINDOW");
69 /*    CREATE(net_restack_window, "_NET_RESTACK_WINDOW");*/
70     CREATE(net_workarea, "_NET_WORKAREA");
71     CREATE(net_supporting_wm_check, "_NET_SUPPORTING_WM_CHECK");
72     CREATE(net_desktop_layout, "_NET_DESKTOP_LAYOUT");
73     CREATE(net_showing_desktop, "_NET_SHOWING_DESKTOP");
74
75     CREATE(net_close_window, "_NET_CLOSE_WINDOW");
76     CREATE(net_wm_moveresize, "_NET_WM_MOVERESIZE");
77     CREATE(net_moveresize_window, "_NET_MOVERESIZE_WINDOW");
78
79     CREATE(net_startup_id, "_NET_STARTUP_ID");
80
81     CREATE(net_wm_name, "_NET_WM_NAME");
82     CREATE(net_wm_visible_name, "_NET_WM_VISIBLE_NAME");
83     CREATE(net_wm_icon_name, "_NET_WM_ICON_NAME");
84     CREATE(net_wm_visible_icon_name, "_NET_WM_VISIBLE_ICON_NAME");
85     CREATE(net_wm_desktop, "_NET_WM_DESKTOP");
86     CREATE(net_wm_window_type, "_NET_WM_WINDOW_TYPE");
87     CREATE(net_wm_state, "_NET_WM_STATE");
88     CREATE(net_wm_strut, "_NET_WM_STRUT");
89     CREATE(net_wm_strut_partial, "_NET_WM_STRUT_PARTIAL");
90     CREATE(net_wm_icon, "_NET_WM_ICON");
91     CREATE(net_wm_icon_geometry, "_NET_WM_ICON_GEOMETRY");
92 /*   CREATE(net_wm_pid, "_NET_WM_PID"); */
93     CREATE(net_wm_allowed_actions, "_NET_WM_ALLOWED_ACTIONS");
94     CREATE(net_wm_user_time, "_NET_WM_USER_TIME");
95     CREATE(net_wm_user_time_window, "_NET_WM_USER_TIME_WINDOW");
96     CREATE(kde_net_wm_frame_strut, "_KDE_NET_WM_FRAME_STRUT");
97     CREATE(net_frame_extents, "_NET_FRAME_EXTENTS");
98     CREATE(net_request_frame_extents, "_NET_REQUEST_FRAME_EXTENTS");
99
100 /*   CREATE(net_wm_ping, "_NET_WM_PING"); */
101 #ifdef SYNC
102     CREATE(net_wm_sync_request, "_NET_WM_SYNC_REQUEST");
103     CREATE(net_wm_sync_request_counter, "_NET_WM_SYNC_REQUEST_COUNTER");
104 #endif
105
106     CREATE(net_wm_window_type_desktop, "_NET_WM_WINDOW_TYPE_DESKTOP");
107     CREATE(net_wm_window_type_dock, "_NET_WM_WINDOW_TYPE_DOCK");
108     CREATE(net_wm_window_type_toolbar, "_NET_WM_WINDOW_TYPE_TOOLBAR");
109     CREATE(net_wm_window_type_menu, "_NET_WM_WINDOW_TYPE_MENU");
110     CREATE(net_wm_window_type_utility, "_NET_WM_WINDOW_TYPE_UTILITY");
111     CREATE(net_wm_window_type_splash, "_NET_WM_WINDOW_TYPE_SPLASH");
112     CREATE(net_wm_window_type_dialog, "_NET_WM_WINDOW_TYPE_DIALOG");
113     CREATE(net_wm_window_type_normal, "_NET_WM_WINDOW_TYPE_NORMAL");
114
115     prop_atoms.net_wm_moveresize_size_topleft = 0;
116     prop_atoms.net_wm_moveresize_size_top = 1;
117     prop_atoms.net_wm_moveresize_size_topright = 2;
118     prop_atoms.net_wm_moveresize_size_right = 3;
119     prop_atoms.net_wm_moveresize_size_bottomright = 4;
120     prop_atoms.net_wm_moveresize_size_bottom = 5;
121     prop_atoms.net_wm_moveresize_size_bottomleft = 6;
122     prop_atoms.net_wm_moveresize_size_left = 7;
123     prop_atoms.net_wm_moveresize_move = 8;
124     prop_atoms.net_wm_moveresize_size_keyboard = 9;
125     prop_atoms.net_wm_moveresize_move_keyboard = 10;
126     prop_atoms.net_wm_moveresize_cancel = 11;
127
128     CREATE(net_wm_action_move, "_NET_WM_ACTION_MOVE");
129     CREATE(net_wm_action_resize, "_NET_WM_ACTION_RESIZE");
130     CREATE(net_wm_action_minimize, "_NET_WM_ACTION_MINIMIZE");
131     CREATE(net_wm_action_shade, "_NET_WM_ACTION_SHADE");
132     CREATE(net_wm_action_maximize_horz, "_NET_WM_ACTION_MAXIMIZE_HORZ");
133     CREATE(net_wm_action_maximize_vert, "_NET_WM_ACTION_MAXIMIZE_VERT");
134     CREATE(net_wm_action_fullscreen, "_NET_WM_ACTION_FULLSCREEN");
135     CREATE(net_wm_action_change_desktop, "_NET_WM_ACTION_CHANGE_DESKTOP");
136     CREATE(net_wm_action_close, "_NET_WM_ACTION_CLOSE");
137     CREATE(net_wm_state_modal, "_NET_WM_STATE_MODAL");
138 /*    CREATE(net_wm_state_sticky, "_NET_WM_STATE_STICKY");*/
139     CREATE(net_wm_state_maximized_vert, "_NET_WM_STATE_MAXIMIZED_VERT");
140     CREATE(net_wm_state_maximized_horz, "_NET_WM_STATE_MAXIMIZED_HORZ");
141     CREATE(net_wm_state_shaded, "_NET_WM_STATE_SHADED");
142     CREATE(net_wm_state_skip_taskbar, "_NET_WM_STATE_SKIP_TASKBAR");
143     CREATE(net_wm_state_skip_pager, "_NET_WM_STATE_SKIP_PAGER");
144     CREATE(net_wm_state_hidden, "_NET_WM_STATE_HIDDEN");
145     CREATE(net_wm_state_fullscreen, "_NET_WM_STATE_FULLSCREEN");
146     CREATE(net_wm_state_above, "_NET_WM_STATE_ABOVE");
147     CREATE(net_wm_state_below, "_NET_WM_STATE_BELOW");
148     CREATE(net_wm_state_demands_attention, "_NET_WM_STATE_DEMANDS_ATTENTION");
149   
150     prop_atoms.net_wm_state_add = 1;
151     prop_atoms.net_wm_state_remove = 0;
152     prop_atoms.net_wm_state_toggle = 2;
153
154     prop_atoms.net_wm_orientation_horz = 0;
155     prop_atoms.net_wm_orientation_vert = 1;
156     prop_atoms.net_wm_topleft = 0;
157     prop_atoms.net_wm_topright = 1;
158     prop_atoms.net_wm_bottomright = 2;
159     prop_atoms.net_wm_bottomleft = 3;
160
161     CREATE(kde_wm_change_state, "_KDE_WM_CHANGE_STATE");
162     CREATE(kde_net_wm_window_type_override,"_KDE_NET_WM_WINDOW_TYPE_OVERRIDE");
163
164 /*
165     CREATE(rootpmapid, "_XROOTPMAP_ID");
166     CREATE(esetrootid, "ESETROOT_PMAP_ID");
167 */
168
169     CREATE(openbox_pid, "_OPENBOX_PID");
170     CREATE(openbox_config, "_OPENBOX_CONFIG");
171     CREATE(openbox_wm_state_undecorated, "_OB_WM_STATE_UNDECORATED");
172     CREATE(openbox_control, "_OPENBOX_CONTROL");
173 }
174
175 #include <X11/Xutil.h>
176 #include <glib.h>
177 #include <string.h>
178
179 /* this just isn't used... and it also breaks on 64bit, watch out
180 static gboolean get(Window win, Atom prop, Atom type, gint size,
181                     guchar **data, gulong num)
182 {
183     gboolean ret = FALSE;
184     gint res;
185     guchar *xdata = NULL;
186     Atom ret_type;
187     gint ret_size;
188     gulong ret_items, bytes_left;
189     glong num32 = 32 / size * num; /\* num in 32-bit elements *\/
190
191     res = XGetWindowProperty(display, win, prop, 0l, num32,
192                              FALSE, type, &ret_type, &ret_size,
193                              &ret_items, &bytes_left, &xdata);
194     if (res == Success && ret_items && xdata) {
195         if (ret_size == size && ret_items >= num) {
196             *data = g_memdup(xdata, num * (size / 8));
197             ret = TRUE;
198         }
199         XFree(xdata);
200     }
201     return ret;
202 }
203 */
204
205 static gboolean get_prealloc(Window win, Atom prop, Atom type, gint size,
206                              guchar *data, gulong num)
207 {
208     gboolean ret = FALSE;
209     gint res;
210     guchar *xdata = NULL;
211     Atom ret_type;
212     gint ret_size;
213     gulong ret_items, bytes_left;
214     glong num32 = 32 / size * num; /* num in 32-bit elements */
215
216     res = XGetWindowProperty(ob_display, win, prop, 0l, num32,
217                              FALSE, type, &ret_type, &ret_size,
218                              &ret_items, &bytes_left, &xdata);
219     if (res == Success && ret_items && xdata) {
220         if (ret_size == size && ret_items >= num) {
221             guint i;
222             for (i = 0; i < num; ++i)
223                 switch (size) {
224                 case 8:
225                     data[i] = xdata[i];
226                     break;
227                 case 16:
228                     ((guint16*)data)[i] = ((gushort*)xdata)[i];
229                     break;
230                 case 32:
231                     ((guint32*)data)[i] = ((gulong*)xdata)[i];
232                     break;
233                 default:
234                     g_assert_not_reached(); /* unhandled size */
235                 }
236             ret = TRUE;
237         }
238         XFree(xdata);
239     }
240     return ret;
241 }
242
243 static gboolean get_all(Window win, Atom prop, Atom type, gint size,
244                         guchar **data, guint *num)
245 {
246     gboolean ret = FALSE;
247     gint res;
248     guchar *xdata = NULL;
249     Atom ret_type;
250     gint ret_size;
251     gulong ret_items, bytes_left;
252
253     res = XGetWindowProperty(ob_display, win, prop, 0l, G_MAXLONG,
254                              FALSE, type, &ret_type, &ret_size,
255                              &ret_items, &bytes_left, &xdata);
256     if (res == Success) {
257         if (ret_size == size && ret_items > 0) {
258             guint i;
259
260             *data = g_malloc(ret_items * (size / 8));
261             for (i = 0; i < ret_items; ++i)
262                 switch (size) {
263                 case 8:
264                     (*data)[i] = xdata[i];
265                     break;
266                 case 16:
267                     ((guint16*)*data)[i] = ((gushort*)xdata)[i];
268                     break;
269                 case 32:
270                     ((guint32*)*data)[i] = ((gulong*)xdata)[i];
271                     break;
272                 default:
273                     g_assert_not_reached(); /* unhandled size */
274                 }
275             *num = ret_items;
276             ret = TRUE;
277         }
278         XFree(xdata);
279     }
280     return ret;
281 }
282
283 static gboolean get_stringlist(Window win, Atom prop, gchar ***list, gint *nstr)
284 {
285     XTextProperty tprop;
286     gboolean ret = FALSE;
287
288     if (XGetTextProperty(ob_display, win, &tprop, prop) && tprop.nitems) {
289         if (XTextPropertyToStringList(&tprop, list, nstr))
290             ret = TRUE;
291         XFree(tprop.value);
292     }
293     return ret;
294 }
295
296 gboolean prop_get32(Window win, Atom prop, Atom type, guint32 *ret)
297 {
298     return get_prealloc(win, prop, type, 32, (guchar*)ret, 1);
299 }
300
301 gboolean prop_get_array32(Window win, Atom prop, Atom type, guint32 **ret,
302                           guint *nret)
303 {
304     return get_all(win, prop, type, 32, (guchar**)ret, nret);
305 }
306
307 gboolean prop_get_string_locale(Window win, Atom prop, gchar **ret)
308 {
309     gchar **list;
310     gint nstr;
311     gchar *s;
312
313     if (get_stringlist(win, prop, &list, &nstr) && nstr) {
314         s = g_locale_to_utf8(list[0], -1, NULL, NULL, NULL);
315         XFreeStringList(list);
316         if (s) {
317             *ret = s;
318             return TRUE;
319         }
320     }
321     return FALSE;
322 }
323
324 gboolean prop_get_strings_locale(Window win, Atom prop, gchar ***ret)
325 {
326     GSList *strs = NULL, *it;
327     gchar *raw, *p;
328     guint num, i, count = 0;
329
330     if (get_all(win, prop, prop_atoms.string, 8, (guchar**)&raw, &num)) {
331
332         p = raw;
333         while (p < raw + num) {
334             ++count;
335             strs = g_slist_append(strs, p);
336             p += strlen(p) + 1; /* next string */
337         }
338
339         *ret = g_new0(gchar*, count + 1);
340         (*ret)[count] = NULL; /* null terminated list */
341
342         for (i = 0, it = strs; it; ++i, it = g_slist_next(it)) {
343             (*ret)[i] = g_locale_to_utf8(it->data, -1, NULL, NULL, NULL);
344             /* make sure translation did not fail */
345             if (!(*ret)[i])
346                 (*ret)[i] = g_strdup("");
347         }
348         g_free(raw);
349         g_slist_free(strs);
350         return TRUE;
351     }
352     return FALSE;
353 }
354
355 gboolean prop_get_string_utf8(Window win, Atom prop, gchar **ret)
356 {
357     gchar *raw;
358     gchar *str;
359     guint num;
360      
361     if (get_all(win, prop, prop_atoms.utf8, 8, (guchar**)&raw, &num)) {
362         str = g_strndup(raw, num); /* grab the first string from the list */
363         g_free(raw);
364         if (g_utf8_validate(str, -1, NULL)) {
365             *ret = str;
366             return TRUE;
367         }
368         g_free(str);
369     }
370     return FALSE;
371 }
372
373 gboolean prop_get_strings_utf8(Window win, Atom prop, gchar ***ret)
374 {
375     GSList *strs = NULL, *it;
376     gchar *raw, *p;
377     guint num, i, count = 0;
378
379     if (get_all(win, prop, prop_atoms.utf8, 8, (guchar**)&raw, &num)) {
380
381         p = raw;
382         while (p < raw + num) {
383             ++count;
384             strs = g_slist_append(strs, p);
385             p += strlen(p) + 1; /* next string */
386         }
387
388         *ret = g_new0(gchar*, count + 1);
389
390         for (i = 0, it = strs; it; ++i, it = g_slist_next(it)) {
391             if (g_utf8_validate(it->data, -1, NULL))
392                 (*ret)[i] = g_strdup(it->data);
393             else
394                 (*ret)[i] = g_strdup("");
395         }
396         g_free(raw);
397         g_slist_free(strs);
398         return TRUE;
399     }
400     return FALSE;
401 }
402
403 void prop_set32(Window win, Atom prop, Atom type, gulong val)
404 {
405     XChangeProperty(ob_display, win, prop, type, 32, PropModeReplace,
406                     (guchar*)&val, 1);
407 }
408
409 void prop_set_array32(Window win, Atom prop, Atom type, gulong *val,
410                       guint num)
411 {
412     XChangeProperty(ob_display, win, prop, type, 32, PropModeReplace,
413                     (guchar*)val, num);
414 }
415
416 void prop_set_string_utf8(Window win, Atom prop, const gchar *val)
417 {
418     XChangeProperty(ob_display, win, prop, prop_atoms.utf8, 8,
419                     PropModeReplace, (const guchar*)val, strlen(val));
420 }
421
422 void prop_set_strings_utf8(Window win, Atom prop, gchar **strs)
423 {
424     GString *str;
425     gchar **s;
426
427     str = g_string_sized_new(0);
428     for (s = strs; *s; ++s) {
429         str = g_string_append(str, *s);
430         str = g_string_append_c(str, '\0');
431     }
432     XChangeProperty(ob_display, win, prop, prop_atoms.utf8, 8,
433                     PropModeReplace, (guchar*)str->str, str->len);
434     g_string_free(str, TRUE);
435 }
436
437 void prop_erase(Window win, Atom prop)
438 {
439     XDeleteProperty(ob_display, win, prop);
440 }
441
442 void prop_message(Window about, Atom messagetype, glong data0, glong data1,
443                   glong data2, glong data3, glong mask)
444 {
445     XEvent ce;
446     ce.xclient.type = ClientMessage;
447     ce.xclient.message_type = messagetype;
448     ce.xclient.display = ob_display;
449     ce.xclient.window = about;
450     ce.xclient.format = 32;
451     ce.xclient.data.l[0] = data0;
452     ce.xclient.data.l[1] = data1;
453     ce.xclient.data.l[2] = data2;
454     ce.xclient.data.l[3] = data3;
455     ce.xclient.data.l[4] = 0;
456     XSendEvent(ob_display, RootWindow(ob_display, ob_screen), FALSE,
457                mask, &ce);
458 }