8 #define CREATE(var, name) (prop_atoms.var = \
9 XInternAtom(ob_display, name, FALSE))
13 CREATE(cardinal
, "CARDINAL");
14 CREATE(window
, "WINDOW");
15 CREATE(pixmap
, "PIXMAP");
17 CREATE(string
, "STRING");
18 CREATE(utf8
, "UTF8_STRING");
20 CREATE(wm_colormap_windows
, "WM_COLORMAP_WINDOWS");
21 CREATE(wm_protocols
, "WM_PROTOCOLS");
22 CREATE(wm_state
, "WM_STATE");
23 CREATE(wm_change_state
, "WM_CHANGE_STATE");
24 CREATE(wm_delete_window
, "WM_DELETE_WINDOW");
25 CREATE(wm_take_focus
, "WM_TAKE_FOCUS");
26 CREATE(wm_name
, "WM_NAME");
27 CREATE(wm_icon_name
, "WM_ICON_NAME");
28 CREATE(wm_class
, "WM_CLASS");
29 CREATE(wm_window_role
, "WM_WINDOW_ROLE");
30 CREATE(motif_wm_hints
, "_MOTIF_WM_HINTS");
32 CREATE(net_supported
, "_NET_SUPPORTED");
33 CREATE(net_client_list
, "_NET_CLIENT_LIST");
34 CREATE(net_client_list_stacking
, "_NET_CLIENT_LIST_STACKING");
35 CREATE(net_number_of_desktops
, "_NET_NUMBER_OF_DESKTOPS");
36 CREATE(net_desktop_geometry
, "_NET_DESKTOP_GEOMETRY");
37 CREATE(net_desktop_viewport
, "_NET_DESKTOP_VIEWPORT");
38 CREATE(net_current_desktop
, "_NET_CURRENT_DESKTOP");
39 CREATE(net_desktop_names
, "_NET_DESKTOP_NAMES");
40 CREATE(net_active_window
, "_NET_ACTIVE_WINDOW");
41 CREATE(net_workarea
, "_NET_WORKAREA");
42 CREATE(net_supporting_wm_check
, "_NET_SUPPORTING_WM_CHECK");
43 CREATE(net_desktop_layout
, "_NET_DESKTOP_LAYOUT");
44 CREATE(net_showing_desktop
, "_NET_SHOWING_DESKTOP");
46 CREATE(net_close_window
, "_NET_CLOSE_WINDOW");
47 CREATE(net_wm_moveresize
, "_NET_WM_MOVERESIZE");
49 CREATE(net_wm_name
, "_NET_WM_NAME");
50 CREATE(net_wm_visible_name
, "_NET_WM_VISIBLE_NAME");
51 CREATE(net_wm_icon_name
, "_NET_WM_ICON_NAME");
52 CREATE(net_wm_visible_icon_name
, "_NET_WM_VISIBLE_ICON_NAME");
53 CREATE(net_wm_desktop
, "_NET_WM_DESKTOP");
54 CREATE(net_wm_window_type
, "_NET_WM_WINDOW_TYPE");
55 CREATE(net_wm_state
, "_NET_WM_STATE");
56 CREATE(net_wm_strut
, "_NET_WM_STRUT");
57 CREATE(net_wm_icon
, "_NET_WM_ICON");
58 /* CREATE(net_wm_pid, "_NET_WM_PID"); */
59 CREATE(net_wm_allowed_actions
, "_NET_WM_ALLOWED_ACTIONS");
61 /* CREATE(net_wm_ping, "_NET_WM_PING"); */
63 CREATE(net_wm_window_type_desktop
, "_NET_WM_WINDOW_TYPE_DESKTOP");
64 CREATE(net_wm_window_type_dock
, "_NET_WM_WINDOW_TYPE_DOCK");
65 CREATE(net_wm_window_type_toolbar
, "_NET_WM_WINDOW_TYPE_TOOLBAR");
66 CREATE(net_wm_window_type_menu
, "_NET_WM_WINDOW_TYPE_MENU");
67 CREATE(net_wm_window_type_utility
, "_NET_WM_WINDOW_TYPE_UTILITY");
68 CREATE(net_wm_window_type_splash
, "_NET_WM_WINDOW_TYPE_SPLASH");
69 CREATE(net_wm_window_type_dialog
, "_NET_WM_WINDOW_TYPE_DIALOG");
70 CREATE(net_wm_window_type_normal
, "_NET_WM_WINDOW_TYPE_NORMAL");
72 prop_atoms
.net_wm_moveresize_size_topleft
= 0;
73 prop_atoms
.net_wm_moveresize_size_top
= 1;
74 prop_atoms
.net_wm_moveresize_size_topright
= 2;
75 prop_atoms
.net_wm_moveresize_size_right
= 3;
76 prop_atoms
.net_wm_moveresize_size_bottomright
= 4;
77 prop_atoms
.net_wm_moveresize_size_bottom
= 5;
78 prop_atoms
.net_wm_moveresize_size_bottomleft
= 6;
79 prop_atoms
.net_wm_moveresize_size_left
= 7;
80 prop_atoms
.net_wm_moveresize_move
= 8;
81 prop_atoms
.net_wm_moveresize_size_keyboard
= 9;
82 prop_atoms
.net_wm_moveresize_move_keyboard
= 10;
84 CREATE(net_wm_action_move
, "_NET_WM_ACTION_MOVE");
85 CREATE(net_wm_action_resize
, "_NET_WM_ACTION_RESIZE");
86 CREATE(net_wm_action_minimize
, "_NET_WM_ACTION_MINIMIZE");
87 CREATE(net_wm_action_shade
, "_NET_WM_ACTION_SHADE");
88 CREATE(net_wm_action_stick
, "_NET_WM_ACTION_STICK");
89 CREATE(net_wm_action_maximize_horz
, "_NET_WM_ACTION_MAXIMIZE_HORZ");
90 CREATE(net_wm_action_maximize_vert
, "_NET_WM_ACTION_MAXIMIZE_VERT");
91 CREATE(net_wm_action_fullscreen
, "_NET_WM_ACTION_FULLSCREEN");
92 CREATE(net_wm_action_change_desktop
, "_NET_WM_ACTION_CHANGE_DESKTOP");
93 CREATE(net_wm_action_close
, "_NET_WM_ACTION_CLOSE");
94 CREATE(net_wm_state_modal
, "_NET_WM_STATE_MODAL");
95 CREATE(net_wm_state_sticky
, "_NET_WM_STATE_STICKY");
96 CREATE(net_wm_state_maximized_vert
, "_NET_WM_STATE_MAXIMIZED_VERT");
97 CREATE(net_wm_state_maximized_horz
, "_NET_WM_STATE_MAXIMIZED_HORZ");
98 CREATE(net_wm_state_shaded
, "_NET_WM_STATE_SHADED");
99 CREATE(net_wm_state_skip_taskbar
, "_NET_WM_STATE_SKIP_TASKBAR");
100 CREATE(net_wm_state_skip_pager
, "_NET_WM_STATE_SKIP_PAGER");
101 CREATE(net_wm_state_hidden
, "_NET_WM_STATE_HIDDEN");
102 CREATE(net_wm_state_fullscreen
, "_NET_WM_STATE_FULLSCREEN");
103 CREATE(net_wm_state_above
, "_NET_WM_STATE_ABOVE");
104 CREATE(net_wm_state_below
, "_NET_WM_STATE_BELOW");
106 prop_atoms
.net_wm_state_add
= 1;
107 prop_atoms
.net_wm_state_remove
= 0;
108 prop_atoms
.net_wm_state_toggle
= 2;
110 prop_atoms
.net_wm_orientation_horz
= 0;
111 prop_atoms
.net_wm_orientation_vert
= 1;
112 prop_atoms
.net_wm_topleft
= 0;
113 prop_atoms
.net_wm_topright
= 1;
114 prop_atoms
.net_wm_bottomright
= 2;
115 prop_atoms
.net_wm_bottomleft
= 3;
117 CREATE(kde_net_system_tray_windows
, "_KDE_NET_SYSTEM_TRAY_WINDOWS");
118 CREATE(kde_net_wm_system_tray_window_for
,
119 "_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR");
120 CREATE(kde_net_wm_window_type_override
,
121 "_KDE_NET_WM_WINDOW_TYPE_OVERRIDE");
123 CREATE(kwm_win_icon
, "KWM_WIN_ICON");
125 CREATE(rootpmapid
, "_XROOTPMAP_ID");
126 CREATE(esetrootid
, "ESETROOT_PMAP_ID");
128 CREATE(openbox_pid
, "_OPENBOX_PID");
129 CREATE(openbox_premax
, "_OPENBOX_PREMAX");
132 #include <X11/Xutil.h>
136 /* this just isn't used... and it also breaks on 64bit, watch out
137 static gboolean get(Window win, Atom prop, Atom type, int size,
138 guchar **data, gulong num)
140 gboolean ret = FALSE;
142 guchar *xdata = NULL;
145 gulong ret_items, bytes_left;
146 long num32 = 32 / size * num; /\* num in 32-bit elements *\/
148 res = XGetWindowProperty(display, win, prop, 0l, num32,
149 FALSE, type, &ret_type, &ret_size,
150 &ret_items, &bytes_left, &xdata);
151 if (res == Success && ret_items && xdata) {
152 if (ret_size == size && ret_items >= num) {
153 *data = g_memdup(xdata, num * (size / 8));
162 static gboolean
get_prealloc(Window win
, Atom prop
, Atom type
, int size
,
163 guchar
*data
, gulong num
)
165 gboolean ret
= FALSE
;
167 guchar
*xdata
= NULL
;
170 gulong ret_items
, bytes_left
;
171 long num32
= 32 / size
* num
; /* num in 32-bit elements */
173 res
= XGetWindowProperty(ob_display
, win
, prop
, 0l, num32
,
174 FALSE
, type
, &ret_type
, &ret_size
,
175 &ret_items
, &bytes_left
, &xdata
);
176 if (res
== Success
&& ret_items
&& xdata
) {
177 if (ret_size
== size
&& ret_items
>= num
) {
179 for (i
= 0; i
< num
; ++i
)
185 ((guint16
*)data
)[i
] = ((guint16
*)xdata
)[i
];
188 ((guint32
*)data
)[i
] = ((guint32
*)xdata
)[i
];
191 g_assert_not_reached(); /* unhandled size */
200 static gboolean
get_all(Window win
, Atom prop
, Atom type
, int size
,
201 guchar
**data
, guint
*num
)
203 gboolean ret
= FALSE
;
205 guchar
*xdata
= NULL
;
208 gulong ret_items
, bytes_left
;
210 res
= XGetWindowProperty(ob_display
, win
, prop
, 0l, G_MAXLONG
,
211 FALSE
, type
, &ret_type
, &ret_size
,
212 &ret_items
, &bytes_left
, &xdata
);
213 if (res
== Success
) {
214 if (ret_size
== size
&& ret_items
> 0) {
217 *data
= g_malloc(ret_items
* (size
/ 8));
218 for (i
= 0; i
< ret_items
; ++i
)
221 (*data
)[i
] = xdata
[i
];
224 ((guint16
*)*data
)[i
] = ((guint16
*)xdata
)[i
];
227 ((guint32
*)*data
)[i
] = ((guint32
*)xdata
)[i
];
230 g_assert_not_reached(); /* unhandled size */
240 static gboolean
get_stringlist(Window win
, Atom prop
, char ***list
, int *nstr
)
243 gboolean ret
= FALSE
;
245 if (XGetTextProperty(ob_display
, win
, &tprop
, prop
) && tprop
.nitems
) {
246 if (XTextPropertyToStringList(&tprop
, list
, nstr
))
253 gboolean
prop_get32(Window win
, Atom prop
, Atom type
, guint32
*ret
)
255 return get_prealloc(win
, prop
, type
, 32, (guchar
*)ret
, 1);
258 gboolean
prop_get_array32(Window win
, Atom prop
, Atom type
, guint32
**ret
,
261 return get_all(win
, prop
, type
, 32, (guchar
**)ret
, nret
);
264 gboolean
prop_get_string_locale(Window win
, Atom prop
, char **ret
)
269 if (get_stringlist(win
, prop
, &list
, &nstr
) && nstr
) {
270 *ret
= g_locale_to_utf8(list
[0], -1, NULL
, NULL
, NULL
);
271 XFreeStringList(list
);
272 if (ret
) return TRUE
;
277 gboolean
prop_get_strings_locale(Window win
, Atom prop
, char ***ret
)
282 if (get_all(win
, prop
, prop_atoms
.string
, 8, (guchar
**)&raw
, &num
)){
283 *ret
= g_new(char*, num
+ 1);
284 (*ret
)[num
] = NULL
; /* null terminated list */
287 for (i
= 0; i
< num
; ++i
) {
288 (*ret
)[i
] = g_locale_to_utf8(p
, -1, NULL
, NULL
, NULL
);
289 /* make sure translation did not fail */
291 g_strfreev(*ret
); /* free what we did so far */
292 break; /* the force is not strong with us */
303 gboolean
prop_get_string_utf8(Window win
, Atom prop
, char **ret
)
308 if (get_all(win
, prop
, prop_atoms
.utf8
, 8, (guchar
**)&raw
, &num
)) {
309 *ret
= g_strndup(raw
, num
); /* grab the first string from the list */
316 gboolean
prop_get_strings_utf8(Window win
, Atom prop
, char ***ret
)
321 if (get_all(win
, prop
, prop_atoms
.utf8
, 8, (guchar
**)&raw
, &num
)) {
322 *ret
= g_new(char*, num
+ 1);
323 (*ret
)[num
] = NULL
; /* null terminated list */
326 for (i
= 0; i
< num
; ++i
) {
327 (*ret
)[i
] = g_strdup(p
);
336 void prop_set32(Window win
, Atom prop
, Atom type
, guint32 val
)
338 XChangeProperty(ob_display
, win
, prop
, type
, 32, PropModeReplace
,
342 void prop_set_array32(Window win
, Atom prop
, Atom type
, guint32
*val
,
345 XChangeProperty(ob_display
, win
, prop
, type
, 32, PropModeReplace
,
349 void prop_set_string_utf8(Window win
, Atom prop
, char *val
)
351 XChangeProperty(ob_display
, win
, prop
, prop_atoms
.utf8
, 8,
352 PropModeReplace
, (guchar
*)val
, strlen(val
));
355 void prop_set_strings_utf8(Window win
, Atom prop
, char **strs
)
360 str
= g_string_sized_new(0);
361 for (s
= strs
; *s
; ++s
) {
362 str
= g_string_append(str
, *s
);
363 str
= g_string_append_c(str
, '\0');
365 XChangeProperty(ob_display
, win
, prop
, prop_atoms
.utf8
, 8,
366 PropModeReplace
, (guchar
*)str
->str
, str
->len
);
369 void prop_erase(Window win
, Atom prop
)
371 XDeleteProperty(ob_display
, win
, prop
);
374 void prop_message(Window about
, Atom messagetype
, long data0
, long data1
,
375 long data2
, long data3
)
378 ce
.xclient
.type
= ClientMessage
;
379 ce
.xclient
.message_type
= messagetype
;
380 ce
.xclient
.display
= ob_display
;
381 ce
.xclient
.window
= about
;
382 ce
.xclient
.format
= 32;
383 ce
.xclient
.data
.l
[0] = data0
;
384 ce
.xclient
.data
.l
[1] = data1
;
385 ce
.xclient
.data
.l
[2] = data2
;
386 ce
.xclient
.data
.l
[3] = data3
;
387 XSendEvent(ob_display
, ob_root
, FALSE
,
388 SubstructureNotifyMask
| SubstructureRedirectMask
, &ce
);