]> icculus.org git repositories - mikachu/openbox.git/blob - otk/property.cc
80 cols
[mikachu/openbox.git] / 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.kwm_win_icon = create("KWM_WIN_ICON");
138   
139   atoms.rootpmapid = create("_XROOTPMAP_ID");
140   atoms.esetrootid = create("ESETROOT_PMAP_ID");
141
142   atoms.openbox_premax = create("_OPENBOX_PREMAX");
143   atoms.openbox_active_window = create("_OPENBOX_ACTIVE_WINDOW");
144 }
145
146 void Property::set(Window win, Atom atom, Atom type, unsigned char* data,
147                    int size, int nelements, bool append)
148 {
149   assert(win != None); assert(atom != None); assert(type != None);
150   assert(nelements == 0 || (nelements > 0 && data != (unsigned char *) 0));
151   assert(size == 8 || size == 16 || size == 32);
152   XChangeProperty(**display, win, atom, type, size,
153                   (append ? PropModeAppend : PropModeReplace),
154                   data, nelements);
155 }
156
157 void Property::set(Window win, Atom atom, Atom type, unsigned long value)
158 {
159   set(win, atom, type, (unsigned char*) &value, 32, 1, false);
160 }
161
162 void Property::set(Window win, Atom atom, Atom type, unsigned long value[],
163                    int elements)
164 {
165   set(win, atom, type, (unsigned char*) value, 32, elements, false);
166 }
167
168 void Property::set(Window win, Atom atom, StringType type,
169                    const ustring &value)
170 {
171   Atom t;
172   switch (type) {
173   case ascii: t = atoms.string; assert(!value.utf8()); break;
174   case utf8:  t = atoms.utf8;   assert(value.utf8());  break;
175   default: assert(false); return; // unhandled StringType
176   }
177
178   // add 1 to the size to include the trailing null
179   set(win, atom, t, (unsigned char*) value.c_str(), 8, value.bytes() + 1,
180       false);
181 }
182
183 void Property::set(Window win, Atom atom, StringType type,
184                      const StringVect &strings)
185 {
186   Atom t;
187   bool u; // utf8 encoded?
188   switch (type) {
189   case ascii: t = atoms.string; u = false; break;
190   case utf8:  t = atoms.utf8;   u = true;  break;
191   default: assert(false); return; // unhandled StringType
192   }
193
194   ustring value(u);
195
196   StringVect::const_iterator it = strings.begin();
197   const StringVect::const_iterator end = strings.end();
198   for (; it != end; ++it) {
199     assert(it->utf8() == u); // the ustring is encoded correctly?
200     value += *it;
201     value += '\0';
202   }
203
204   // add 1 to the size to include the trailing null
205   set(win, atom, t, (unsigned char*)value.c_str(), 8,
206       value.bytes() + 1, false);
207 }
208
209 bool Property::get(Window win, Atom atom, Atom type, unsigned long *nelements,
210                    unsigned char **value, int size)
211 {
212   assert(win != None); assert(atom != None); assert(type != None);
213   assert(size == 8 || size == 16 || size == 32);
214   assert(*nelements > 0);
215   unsigned char *c_val = 0;        // value alloc'd in Xlib, must be XFree()d
216   Atom ret_type;
217   int ret_size;
218   unsigned long ret_bytes;
219   int result;
220   unsigned long maxread = *nelements;
221   bool ret = false;
222
223   // try get the first element
224   result = XGetWindowProperty(**display, win, atom, 0l, 1l,
225                               false, AnyPropertyType, &ret_type, &ret_size,
226                               nelements, &ret_bytes, &c_val);
227   ret = (result == Success && ret_type == type && ret_size == size &&
228          *nelements > 0);
229   if (ret) {
230     if (ret_bytes == 0 || maxread <= *nelements) {
231       // we got the whole property's value
232       *value = new unsigned char[*nelements * size/8 + 1];
233       memcpy(*value, c_val, *nelements * size/8 + 1);
234     } else {
235       // get the entire property since it is larger than one long
236       XFree(c_val);
237       // the number of longs that need to be retreived to get the property's
238       // entire value. The last + 1 is the first long that we retrieved above.
239       int remain = (ret_bytes - 1)/sizeof(long) + 1 + 1;
240       if (remain > size/8 * (signed)maxread) // dont get more than the max
241         remain = size/8 * (signed)maxread;
242       result = XGetWindowProperty(**display, win, atom, 0l,
243                                   remain, false, type, &ret_type, &ret_size,
244                                   nelements, &ret_bytes, &c_val);
245       ret = (result == Success && ret_type == type && ret_size == size &&
246              ret_bytes == 0);
247       /*
248         If the property has changed type/size, or has grown since our first
249         read of it, then stop here and try again. If it shrank, then this will
250         still work.
251       */
252       if (! ret)
253         return get(win, atom, type, &maxread, value, size);
254   
255       *value = new unsigned char[*nelements * size/8 + 1];
256       memcpy(*value, c_val, *nelements * size/8 + 1);
257     }    
258   }
259   if (c_val) XFree(c_val);
260   return ret;
261 }
262
263 bool Property::get(Window win, Atom atom, Atom type, unsigned long *nelements,
264                    unsigned long **value)
265 {
266   return get(win, atom, type, nelements, (unsigned char**) value, 32);
267 }
268
269 bool Property::get(Window win, Atom atom, Atom type, unsigned long *value)
270 {
271   unsigned long *temp;
272   unsigned long num = 1;
273   if (! get(win, atom, type, &num, (unsigned char **) &temp, 32))
274     return false;
275   *value = temp[0];
276   delete [] temp;
277   return true;
278 }
279
280 bool Property::get(Window win, Atom atom, StringType type, ustring *value)
281 {
282   unsigned long n = 1;
283   StringVect s;
284
285   if (get(win, atom, type, &n, &s)) {
286     *value = s[0];
287     return true;
288   }
289   return false;
290 }
291
292 bool Property::get(Window win, Atom atom, StringType type,
293                    unsigned long *nelements, StringVect *strings)
294 {
295   assert(*nelements > 0);
296
297   Atom t;
298   bool u; // utf8 encoded?
299   switch (type) {
300   case ascii: t = atoms.string; u = false; break;
301   case utf8:  t = atoms.utf8;   u = true;  break;
302   default: assert(false); return false; // unhandled StringType
303   }
304   
305   unsigned char *value;
306   unsigned long elements = (unsigned) -1;
307   if (!get(win, atom, t, &elements, &value, 8) || elements < 1)
308     return false;
309
310   std::string s((char*)value, elements);
311   delete [] value;
312
313   std::string::const_iterator it = s.begin(), end = s.end();
314   unsigned long num = 0;
315   while(num < *nelements) {
316     std::string::const_iterator tmp = it; // current string.begin()
317     it = std::find(tmp, end, '\0');       // look for null between tmp and end
318     strings->push_back(std::string(tmp, it));   // s[tmp:it)
319     strings->back().setUtf8(u);
320     ++num;
321     if (it == end) break;
322     ++it;
323     if (it == end) break;
324   }
325
326   *nelements = num;
327
328   return true;
329 }
330
331
332 /*
333  * Removes a property entirely from a window.
334  */
335 void Property::erase(Window win, Atom atom)
336 {
337   XDeleteProperty(**display, win, atom);
338 }
339
340 }