]> code.delx.au - pulseaudio/blob - src/pulsecore/x11prop.c
dc8ec2947650e35f6906e6c790e12daccf84da13
[pulseaudio] / src / pulsecore / x11prop.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27
28 #include <X11/Xlib.h>
29 #include <X11/Xatom.h>
30
31 #include "x11prop.h"
32
33 void pa_x11_set_prop(Display *d, const char *name, const char *data) {
34 Atom a = XInternAtom(d, name, False);
35 XChangeProperty(d, DefaultRootWindow(d), a, XA_STRING, 8, PropModeReplace, (const unsigned char*) data, (int) (strlen(data)+1));
36 }
37
38 void pa_x11_del_prop(Display *d, const char *name) {
39 Atom a = XInternAtom(d, name, False);
40 XDeleteProperty(d, DefaultRootWindow(d), a);
41 }
42
43 char* pa_x11_get_prop(Display *d, const char *name, char *p, size_t l) {
44 Atom actual_type;
45 int actual_format;
46 unsigned long nitems;
47 unsigned long nbytes_after;
48 unsigned char *prop = NULL;
49 char *ret = NULL;
50 int window_ret;
51
52 Atom a = XInternAtom(d, name, False);
53
54 window_ret = XGetWindowProperty(d, DefaultRootWindow(d), a, 0, (long) ((l+2)/4), False, XA_STRING, &actual_type, &actual_format, &nitems, &nbytes_after, &prop);
55
56 if (window_ret != Success || actual_type != XA_STRING) {
57 if (DefaultScreen(d) != 0) {
58 window_ret = XGetWindowProperty(d, RootWindow(d, 0), a, 0, (long) ((l+2)/4), False, XA_STRING, &actual_type, &actual_format, &nitems, &nbytes_after, &prop);
59
60 if (window_ret != Success || actual_type != XA_STRING)
61 goto finish;
62 } else
63 goto finish;
64 }
65
66 memcpy(p, prop, nitems);
67 p[nitems] = 0;
68
69 ret = p;
70
71 finish:
72
73 if (prop)
74 XFree(prop);
75
76 return ret;
77 }