GammaRay  2.2.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros 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-2014 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 <common/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 Util::shortDisplayString(object);
85  } else if (index.column() == 1) {
86  return object->metaObject()->className();
87  }
88  } else if (role == ObjectModel::ObjectRole) {
89  return QVariant::fromValue(object);
90  } else if (role == Qt::ToolTipRole) {
91  return Util::tooltipForObject(object);
92  } else if (role == Qt::DecorationRole && index.column() == 0) {
93  return Util::iconForObject(object);
94  }
95 
96  return QVariant();
97  }
98 
110  QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const
111  {
112  if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
113  switch (section) {
114  case 0:
115  return QObject::tr("Object");
116  case 1:
117  return QObject::tr("Type");
118  }
119  }
120  return Base::headerData(section, orientation, role);
121  }
122 };
123 
124 }
125 
126 #endif

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