]> Dogcows Code - chaz/openbox/blob - otk/property.cc
75f9a7cf20f9974b6c33c12ff5177454963fcfe5
[chaz/openbox] / otk / property.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2
3 #include "config.h"
4
5 #include "property.hh"
6 #include "display.hh"
7
8 extern "C" {
9 #include <X11/Xatom.h>
10 }
11
12 #include <algorithm>
13 #include <cassert>
14
15 namespace otk {
16
17 Atoms Property::atoms;
18
19 static Atom create(char *name) { return XInternAtom(**display, name, false); }
20
21 void Property::initialize()
22 {
23 assert(display);
24
25 // make sure asserts fire if there is a problem
26 memset(&atoms, 0, sizeof(Atoms));
27
28 atoms.cardinal = XA_CARDINAL;
29 atoms.window = XA_WINDOW;
30 atoms.pixmap = XA_PIXMAP;
31 atoms.atom = XA_ATOM;
32 atoms.string = XA_STRING;
33 atoms.utf8 = create("UTF8_STRING");
34
35 atoms.openbox_pid = create("_OPENBOX_PID");
36
37 atoms.wm_colormap_windows = create("WM_COLORMAP_WINDOWS");
38 atoms.wm_protocols = create("WM_PROTOCOLS");
39 atoms.wm_state = create("WM_STATE");
40 atoms.wm_change_state = create("WM_CHANGE_STATE");
41 atoms.wm_delete_window = create("WM_DELETE_WINDOW");
42 atoms.wm_take_focus = create("WM_TAKE_FOCUS");
43 atoms.wm_name = create("WM_NAME");
44 atoms.wm_icon_name = create("WM_ICON_NAME");
45 atoms.wm_class = create("WM_CLASS");
46 atoms.wm_window_role = create("WM_WINDOW_ROLE");
47 atoms.motif_wm_hints = create("_MOTIF_WM_HINTS");
48
49 atoms.openbox_show_root_menu = create("_OPENBOX_SHOW_ROOT_MENU");
50 atoms.openbox_show_workspace_menu = create("_OPENBOX_SHOW_WORKSPACE_MENU");
51
52 atoms.net_supported = create("_NET_SUPPORTED");
53 atoms.net_client_list = create("_NET_CLIENT_LIST");
54 atoms.net_client_list_stacking = create("_NET_CLIENT_LIST_STACKING");
55 atoms.net_number_of_desktops = create("_NET_NUMBER_OF_DESKTOPS");
56 atoms.net_desktop_geometry = create("_NET_DESKTOP_GEOMETRY");
57 atoms.net_desktop_viewport = create("_NET_DESKTOP_VIEWPORT");
58 atoms.net_current_desktop = create("_NET_CURRENT_DESKTOP");
59 atoms.net_desktop_names = create("_NET_DESKTOP_NAMES");
60 atoms.net_active_window = create("_NET_ACTIVE_WINDOW");
61 atoms.net_workarea = create("_NET_WORKAREA");
62 atoms.net_supporting_wm_check = create("_NET_SUPPORTING_WM_CHECK");
63 // atoms.net_virtual_roots = create("_NET_VIRTUAL_ROOTS");
64 atoms.net_desktop_layout = create("_NET_DESKTOP_LAYOUT");
65 atoms.net_showing_desktop = create("_NET_SHOWING_DESKTOP");
66
67 atoms.net_close_window = create("_NET_CLOSE_WINDOW");
68 atoms.net_wm_moveresize = create("_NET_WM_MOVERESIZE");
69
70 // atoms.net_properties = create("_NET_PROPERTIES");
71 atoms.net_wm_name = create("_NET_WM_NAME");
72 atoms.net_wm_visible_name = create("_NET_WM_VISIBLE_NAME");
73 atoms.net_wm_icon_name = create("_NET_WM_ICON_NAME");
74 atoms.net_wm_visible_icon_name = create("_NET_WM_VISIBLE_ICON_NAME");
75 atoms.net_wm_desktop = create("_NET_WM_DESKTOP");
76 atoms.net_wm_window_type = create("_NET_WM_WINDOW_TYPE");
77 atoms.net_wm_state = create("_NET_WM_STATE");
78 atoms.net_wm_strut = create("_NET_WM_STRUT");
79 // atoms.net_wm_icon_geometry = create("_NET_WM_ICON_GEOMETRY");
80 atoms.net_wm_icon = create("_NET_WM_ICON");
81 // atoms.net_wm_pid = create("_NET_WM_PID");
82 // atoms.net_wm_handled_icons = create("_NET_WM_HANDLED_ICONS");
83 atoms.net_wm_allowed_actions = create("_NET_WM_ALLOWED_ACTIONS");
84
85 // atoms.net_wm_ping = create("_NET_WM_PING");
86
87 atoms.net_wm_window_type_desktop = create("_NET_WM_WINDOW_TYPE_DESKTOP");
88 atoms.net_wm_window_type_dock = create("_NET_WM_WINDOW_TYPE_DOCK");
89 atoms.net_wm_window_type_toolbar = create("_NET_WM_WINDOW_TYPE_TOOLBAR");
90 atoms.net_wm_window_type_menu = create("_NET_WM_WINDOW_TYPE_MENU");
91 atoms.net_wm_window_type_utility = create("_NET_WM_WINDOW_TYPE_UTILITY");
92 atoms.net_wm_window_type_splash = create("_NET_WM_WINDOW_TYPE_SPLASH");
93 atoms.net_wm_window_type_dialog = create("_NET_WM_WINDOW_TYPE_DIALOG");
94 atoms.net_wm_window_type_normal = create("_NET_WM_WINDOW_TYPE_NORMAL");
95
96 atoms.net_wm_moveresize_size_topleft =
97 create("_NET_WM_MOVERESIZE_SIZE_TOPLEFT");
98 atoms.net_wm_moveresize_size_topright =
99 create("_NET_WM_MOVERESIZE_SIZE_TOPRIGHT");
100 atoms.net_wm_moveresize_size_bottomleft =
101 create("_NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT");
102 atoms.net_wm_moveresize_size_bottomright =
103 create("_NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT");
104 atoms.net_wm_moveresize_move =
105 create("_NET_WM_MOVERESIZE_MOVE");
106
107 atoms.net_wm_action_move = create("_NET_WM_ACTION_MOVE");
108 atoms.net_wm_action_resize = create("_NET_WM_ACTION_RESIZE");
109 atoms.net_wm_action_minimize = create("_NET_WM_ACTION_MINIMIZE");
110 atoms.net_wm_action_shade = create("_NET_WM_ACTION_SHADE");
111 atoms.net_wm_action_stick = create("_NET_WM_ACTION_STICK");
112 atoms.net_wm_action_maximize_horz = create("_NET_WM_ACTION_MAXIMIZE_HORZ");
113 atoms.net_wm_action_maximize_vert = create("_NET_WM_ACTION_MAXIMIZE_VERT");
114 atoms.net_wm_action_fullscreen = create("_NET_WM_ACTION_FULLSCREEN");
115 atoms.net_wm_action_change_desktop =
116 create("_NET_WM_ACTION_CHANGE_DESKTOP");
117 atoms.net_wm_action_close = create("_NET_WM_ACTION_CLOSE");
118
119 atoms.net_wm_state_modal = create("_NET_WM_STATE_MODAL");
120 atoms.net_wm_state_sticky = create("_NET_WM_STATE_STICKY");
121 atoms.net_wm_state_maximized_vert = create("_NET_WM_STATE_MAXIMIZED_VERT");
122 atoms.net_wm_state_maximized_horz = create("_NET_WM_STATE_MAXIMIZED_HORZ");
123 atoms.net_wm_state_shaded = create("_NET_WM_STATE_SHADED");
124 atoms.net_wm_state_skip_taskbar = create("_NET_WM_STATE_SKIP_TASKBAR");
125 atoms.net_wm_state_skip_pager = create("_NET_WM_STATE_SKIP_PAGER");
126 atoms.net_wm_state_hidden = create("_NET_WM_STATE_HIDDEN");
127 atoms.net_wm_state_fullscreen = create("_NET_WM_STATE_FULLSCREEN");
128 atoms.net_wm_state_above = create("_NET_WM_STATE_ABOVE");
129 atoms.net_wm_state_below = create("_NET_WM_STATE_BELOW");
130
131 atoms.kde_net_system_tray_windows = create("_KDE_NET_SYSTEM_TRAY_WINDOWS");
132 atoms.kde_net_wm_system_tray_window_for =
133 create("_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR");
134 atoms.kde_net_wm_window_type_override =
135 create("_KDE_NET_WM_WINDOW_TYPE_OVERRIDE");
136
137 atoms.openbox_premax = create("_OPENBOX_PREMAX");
138 atoms.openbox_active_window = create("_OPENBOX_ACTIVE_WINDOW");
139 }
140
141 void Property::set(Window win, Atom atom, Atom type, unsigned char* data,
142 int size, int nelements, bool append)
143 {
144 assert(win != None); assert(atom != None); assert(type != None);
145 assert(nelements == 0 || (nelements > 0 && data != (unsigned char *) 0));
146 assert(size == 8 || size == 16 || size == 32);
147 XChangeProperty(**display, win, atom, type, size,
148 (append ? PropModeAppend : PropModeReplace),
149 data, nelements);
150 }
151
152 void Property::set(Window win, Atom atom, Atom type, unsigned long value)
153 {
154 set(win, atom, type, (unsigned char*) &value, 32, 1, false);
155 }
156
157 void Property::set(Window win, Atom atom, Atom type, unsigned long value[],
158 int elements)
159 {
160 set(win, atom, type, (unsigned char*) value, 32, elements, false);
161 }
162
163 void Property::set(Window win, Atom atom, StringType type,
164 const ustring &value)
165 {
166 Atom t;
167 switch (type) {
168 case ascii: t = atoms.string; assert(!value.utf8()); break;
169 case utf8: t = atoms.utf8; assert(value.utf8()); break;
170 default: assert(false); return; // unhandled StringType
171 }
172
173 // add 1 to the size to include the trailing null
174 set(win, atom, t, (unsigned char*) value.c_str(), 8, value.bytes() + 1,
175 false);
176 }
177
178 void Property::set(Window win, Atom atom, StringType type,
179 const StringVect &strings)
180 {
181 Atom t;
182 bool u; // utf8 encoded?
183 switch (type) {
184 case ascii: t = atoms.string; u = false; break;
185 case utf8: t = atoms.utf8; u = true; break;
186 default: assert(false); return; // unhandled StringType
187 }
188
189 ustring value(u);
190
191 StringVect::const_iterator it = strings.begin();
192 const StringVect::const_iterator end = strings.end();
193 for (; it != end; ++it) {
194 assert(it->utf8() == u); // the ustring is encoded correctly?
195 value += *it;
196 value += '\0';
197 }
198
199 // add 1 to the size to include the trailing null
200 set(win, atom, t, (unsigned char*)value.c_str(), 8,
201 value.bytes() + 1, false);
202 }
203
204 bool Property::get(Window win, Atom atom, Atom type, unsigned long *nelements,
205 unsigned char **value, int size)
206 {
207 assert(win != None); assert(atom != None); assert(type != None);
208 assert(size == 8 || size == 16 || size == 32);
209 assert(*nelements > 0);
210 unsigned char *c_val = 0; // value alloc'd in Xlib, must be XFree()d
211 Atom ret_type;
212 int ret_size;
213 unsigned long ret_bytes;
214 int result;
215 unsigned long maxread = *nelements;
216 bool ret = false;
217
218 // try get the first element
219 result = XGetWindowProperty(**display, win, atom, 0l, 1l,
220 false, AnyPropertyType, &ret_type, &ret_size,
221 nelements, &ret_bytes, &c_val);
222 ret = (result == Success && ret_type == type && ret_size == size &&
223 *nelements > 0);
224 if (ret) {
225 if (ret_bytes == 0 || maxread <= *nelements) {
226 // we got the whole property's value
227 *value = new unsigned char[*nelements * size/8 + 1];
228 memcpy(*value, c_val, *nelements * size/8 + 1);
229 } else {
230 // get the entire property since it is larger than one long
231 XFree(c_val);
232 // the number of longs that need to be retreived to get the property's
233 // entire value. The last + 1 is the first long that we retrieved above.
234 int remain = (ret_bytes - 1)/sizeof(long) + 1 + 1;
235 if (remain > size/8 * (signed)maxread) // dont get more than the max
236 remain = size/8 * (signed)maxread;
237 result = XGetWindowProperty(**display, win, atom, 0l,
238 remain, false, type, &ret_type, &ret_size,
239 nelements, &ret_bytes, &c_val);
240 ret = (result == Success && ret_type == type && ret_size == size &&
241 ret_bytes == 0);
242 /*
243 If the property has changed type/size, or has grown since our first
244 read of it, then stop here and try again. If it shrank, then this will
245 still work.
246 */
247 if (! ret)
248 return get(win, atom, type, &maxread, value, size);
249
250 *value = new unsigned char[*nelements * size/8 + 1];
251 memcpy(*value, c_val, *nelements * size/8 + 1);
252 }
253 }
254 if (c_val) XFree(c_val);
255 return ret;
256 }
257
258 bool Property::get(Window win, Atom atom, Atom type, unsigned long *nelements,
259 unsigned long **value)
260 {
261 return get(win, atom, type, nelements, (unsigned char**) value, 32);
262 }
263
264 bool Property::get(Window win, Atom atom, Atom type, unsigned long *value)
265 {
266 unsigned long *temp;
267 unsigned long num = 1;
268 if (! get(win, atom, type, &num, (unsigned char **) &temp, 32))
269 return false;
270 *value = temp[0];
271 delete [] temp;
272 return true;
273 }
274
275 bool Property::get(Window win, Atom atom, StringType type, ustring *value)
276 {
277 unsigned long n = 1;
278 StringVect s;
279
280 if (get(win, atom, type, &n, &s)) {
281 *value = s[0];
282 return true;
283 }
284 return false;
285 }
286
287 bool Property::get(Window win, Atom atom, StringType type,
288 unsigned long *nelements, StringVect *strings)
289 {
290 assert(*nelements > 0);
291
292 Atom t;
293 bool u; // utf8 encoded?
294 switch (type) {
295 case ascii: t = atoms.string; u = false; break;
296 case utf8: t = atoms.utf8; u = true; break;
297 default: assert(false); return false; // unhandled StringType
298 }
299
300 unsigned char *value;
301 unsigned long elements = (unsigned) -1;
302 if (!get(win, atom, t, &elements, &value, 8) || elements < 1)
303 return false;
304
305 std::string s((char*)value, elements);
306 delete [] value;
307
308 std::string::const_iterator it = s.begin(), end = s.end();
309 unsigned long num = 0;
310 while(num < *nelements) {
311 std::string::const_iterator tmp = it; // current string.begin()
312 it = std::find(tmp, end, '\0'); // look for null between tmp and end
313 strings->push_back(std::string(tmp, it)); // s[tmp:it)
314 strings->back().setUtf8(u);
315 ++num;
316 if (it == end) break;
317 ++it;
318 if (it == end) break;
319 }
320
321 *nelements = num;
322
323 return true;
324 }
325
326
327 /*
328 * Removes a property entirely from a window.
329 */
330 void Property::erase(Window win, Atom atom)
331 {
332 XDeleteProperty(**display, win, atom);
333 }
334
335 }
This page took 0.050656 seconds and 3 git commands to generate.