Install gammaray_probe.so to /usr/lib/gammaray
[gammaray-debian.git] / util.h
blobea7a1053f6d55ddb8a7d4eef994c81a8b9ebc41a
1 /*
2 util.h
4 This file is part of GammaRay, the Qt application inspection and
5 manipulation tool.
7 Copyright (C) 2010-2011 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
8 Author: Volker Krause <volker.krause@kdab.com>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #ifndef GAMMARAY_UTIL_H
25 #define GAMMARAY_UTIL_H
27 #include <QtCore/QString>
28 #include <QtCore/QVariant>
30 class QObject;
32 namespace GammaRay {
34 namespace Util
36 QString displayString(const QObject *object);
37 QString variantToString(const QVariant &value);
38 QString addressToString(const void *p);
40 bool descendantOf(QObject *ascendant, QObject *obj);
42 template <typename T>
43 T *findParentOfType(QObject *object) {
44 if (!object) {
45 return 0;
47 if (qobject_cast<T*>(object)) {
48 return qobject_cast<T*>(object);
50 return findParentOfType<T>(object->parent());
56 #endif // GAMMARAY_UTIL_H