aboutsummaryrefslogtreecommitdiff
path: root/src/PropertyTools.cc
blob: 91152783b4bc01e6870c647e97389847112ce032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "PropertyTools.hh"

#include "FbTk/App.hh"

#include <X11/Xatom.h>

namespace PropertyTools {

std::string getAtomName(Atom atom) {
    char* xstr = XGetAtomName(FbTk::App::instance()->display(), atom);
    std::string name = xstr;
    XFree(xstr);
    return name;
}


unsigned int getIntProperty(Window win, Atom atom) throw (PropertyException){
    Atom ret_type = 0;
    int fmt = 0;
    unsigned long nitems = 0, bytes_after = 0;
    long *data = 0;
    if ( XGetWindowProperty(FbTk::App::instance()->display(), win,
                            atom, 0, 1, False, XA_CARDINAL,
                            &ret_type, &fmt, &nitems,
                            &bytes_after, (unsigned char**)&data) != Success) {
        throw PropertyException(getAtomName(atom));
    }

    unsigned int val = (unsigned int)( *data );
    XFree(data);
    return val;
}

Window getWinProperty(Window win, Atom atom) throw (PropertyException){
    Atom ret_type = 0;
    int fmt = 0;
    unsigned long nitems = 0, bytes_after = 0;
    long *data = 0;
    if ( XGetWindowProperty(FbTk::App::instance()->display(), win,
                            atom, 0, 1, False, XA_WINDOW,
                            &ret_type, &fmt, &nitems,
                            &bytes_after, (unsigned char**)&data) != Success) {
        throw PropertyException(getAtomName(atom));
    }

    Window val = (Window)( *data );
    XFree(data);
    return val;
}

void getWinArrayProperty(Window win, Atom atom, std::vector<Window> &cont)
    throw (PropertyException) {
    Atom ret_type = 0;
    int fmt = 0;
    unsigned long nitems = 0, bytes_after = 0;
    long *data = 0;
    if ( XGetWindowProperty(FbTk::App::instance()->display(), win,
                            atom, 0, 0xFFFFFF, False, XA_WINDOW,
                            &ret_type, &fmt, &nitems,
                            &bytes_after, (unsigned char**)&data) != Success) {
        throw PropertyException(getAtomName(atom));
    }
    for (unsigned long i = 0; i < nitems; ++i ) {
        cont.push_back(((Window*)data)[i]);
    }

    XFree(data);

}

} // PropertyTools