Add PLUGIN_CLASS_NAME to qtbase plugins
[profile/ivi/qtbase.git] / src / plugins / platforms / xcb / qxcbwmsupport.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qxcbwmsupport.h"
43 #include "qxcbscreen.h"
44
45 #include <qdebug.h>
46
47 QT_BEGIN_NAMESPACE
48
49 QXcbWMSupport::QXcbWMSupport(QXcbConnection *c)
50     : QXcbObject(c)
51 {
52     updateNetWMAtoms();
53     updateVirtualRoots();
54 }
55
56 bool QXcbWMSupport::isSupportedByWM(xcb_atom_t atom) const
57 {
58     return net_wm_atoms.contains(atom);
59 }
60
61
62
63 void QXcbWMSupport::updateNetWMAtoms()
64 {
65     net_wm_atoms.clear();
66
67     xcb_window_t root = connection()->screens().at(connection()->primaryScreen())->root();
68     int offset = 0;
69     int remaining = 0;
70     do {
71         xcb_get_property_cookie_t cookie = xcb_get_property(xcb_connection(), false, root, atom(QXcbAtom::_NET_SUPPORTED), XCB_ATOM_ATOM, offset, 1024);
72         xcb_get_property_reply_t *reply = xcb_get_property_reply(xcb_connection(), cookie, NULL);
73         if (!reply)
74             break;
75
76         remaining = 0;
77
78         if (reply->type == XCB_ATOM_ATOM && reply->format == 32) {
79             int len = xcb_get_property_value_length(reply)/4;
80             xcb_atom_t *atoms = (xcb_atom_t *)xcb_get_property_value(reply);
81             int s = net_wm_atoms.size();
82             net_wm_atoms.resize(s + len);
83             memcpy(net_wm_atoms.data() + s, atoms, len*sizeof(xcb_atom_t));
84
85             remaining = reply->bytes_after;
86             offset += len;
87         }
88
89         free(reply);
90     } while (remaining > 0);
91 }
92
93 // update the virtual roots array
94 void QXcbWMSupport::updateVirtualRoots()
95 {
96     net_virtual_roots.clear();
97
98     if (!isSupportedByWM(atom(QXcbAtom::_NET_VIRTUAL_ROOTS)))
99         return;
100
101     xcb_window_t root = connection()->screens().at(connection()->primaryScreen())->root();
102     int offset = 0;
103     int remaining = 0;
104     do {
105         xcb_get_property_cookie_t cookie = xcb_get_property(xcb_connection(), false, root, atom(QXcbAtom::_NET_VIRTUAL_ROOTS), XCB_ATOM_ATOM, offset, 1024);
106         xcb_get_property_reply_t *reply = xcb_get_property_reply(xcb_connection(), cookie, NULL);
107         if (!reply)
108             break;
109
110         remaining = 0;
111
112         if (reply->type == XCB_ATOM_ATOM && reply->format == 32) {
113             int len = xcb_get_property_value_length(reply)/4;
114             xcb_atom_t *atoms = (xcb_atom_t *)xcb_get_property_value(reply);
115             int s = net_wm_atoms.size();
116             net_wm_atoms.resize(s + len);
117             memcpy(net_wm_atoms.data() + s, atoms, len*sizeof(xcb_atom_t));
118
119             remaining = reply->bytes_after;
120             offset += len;
121         }
122
123         free(reply);
124     } while (remaining > 0);
125
126 #ifdef Q_XCB_DEBUG
127     qDebug() << "======== updateVirtualRoots";
128     for (int i = 0; i < net_virtual_roots.size(); ++i)
129         qDebug() << connection()->atomName(net_virtual_roots.at(i));
130     qDebug() << "======== updateVirtualRoots";
131 #endif
132 }
133
134 QT_END_NAMESPACE