GammaRay  1.3.0
 All Classes Namespaces Files Functions Enumerations Enumerator Pages
objectmodelbase.h
Go to the documentation of this file.
1 /*
2  objectmodelbase.h
3 
4  This file is part of GammaRay, the Qt application inspection and
5  manipulation tool.
6 
7  Copyright (C) 2010-2013 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
8  Author: Volker Krause <volker.krause@kdab.com>
9 
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.
14 
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.
19 
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/>.
22 */
33 #ifndef GAMMARAY_OBJECTMODELBASE_H
34 #define GAMMARAY_OBJECTMODELBASE_H
35 
36 #include "util.h"
37 #include "objectmodel.h"
38 
39 #include <QModelIndex>
40 #include <QObject>
41 
42 namespace GammaRay {
43 
47 template<typename Base>
48 class ObjectModelBase : public Base
49 {
50  public:
55  explicit ObjectModelBase<Base>(QObject *parent) : Base(parent)
56  {
57  }
58 
65  int columnCount(const QModelIndex &parent = QModelIndex()) const
66  {
67  Q_UNUSED(parent);
68  return 2;
69  }
70 
80  QVariant dataForObject(QObject *object, const QModelIndex &index, int role) const
81  {
82  if (role == Qt::DisplayRole) {
83  if (index.column() == 0) {
84  return
85  object->objectName().isEmpty() ?
86  Util::addressToString(object) :
87  object->objectName();
88  } else if (index.column() == 1) {
89  return object->metaObject()->className();
90  }
91  } else if (role == ObjectModel::ObjectRole) {
92  return QVariant::fromValue(object);
93  } else if (role == Qt::ToolTipRole) {
94  return
95  QObject::tr("Object name: %1\nType: %2\nParent: %3 (Address: %4)\nNumber of children: %5").
96  arg(object->objectName().isEmpty() ? "<Not set>" : object->objectName()).
97  arg(object->metaObject()->className()).
98  arg(object->parent() ? object->parent()->metaObject()->className() : "<No parent>").
99  arg(Util::addressToString(object->parent())).
100  arg(object->children().size());
101  } else if (role == Qt::DecorationRole && index.column() == 0) {
102  return Util::iconForObject(object);
103  }
104 
105  return QVariant();
106  }
107 
119  QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const
120  {
121  if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
122  switch (section) {
123  case 0:
124  return QObject::tr("Object");
125  case 1:
126  return QObject::tr("Type");
127  }
128  }
129  return Base::headerData(section, orientation, role);
130  }
131 };
132 
133 }
134 
135 #endif

Klarälvdalens Datakonsult AB (KDAB)
"The Cross-Platform Experts"
http://www.kdab.com/
GammaRay
Qt-application inspection and manipulation tool
http://www.kdab.com/kdab-products/gammaray/