d/control: Recommend gdb
[gammaray-debian.git] / toolmodel.h
blob4d46b4f8952aff528d3188a6bbb467fc99c1c5b7
1 /*
2 toolmodel.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_TOOLMODEL_H
25 #define GAMMARAY_TOOLMODEL_H
27 #include <qabstractitemmodel.h>
28 #include <qvector.h>
29 #include <QSet>
31 class QStringList;
32 namespace GammaRay {
34 class ToolFactory;
36 /**
37 * Manages the list of available probing tools.
39 class ToolModel : public QAbstractListModel
41 Q_OBJECT
42 public:
43 enum Role {
44 ToolFactoryRole = Qt::UserRole + 1,
45 ToolWidgetRole,
46 ToolIdRole
48 explicit ToolModel(QObject *parent = 0);
49 virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
50 virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
51 virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
52 virtual Qt::ItemFlags flags(const QModelIndex &index) const;
53 virtual QVariant headerData(int section, Qt::Orientation orientation,
54 int role = Qt::DisplayRole) const;
56 public slots:
57 /** Check if we have to activate tools for this type */
58 void objectAdded(QObject *obj);
59 void objectAddedMainThread(QObject *obj);
61 private:
62 /**
63 * Check if we have to activate tools for this type
65 * NOTE: must be called from the GUI thread
67 void objectAdded(const QMetaObject *mo);
69 private:
70 QVector<ToolFactory*> m_tools;
71 QHash<ToolFactory*, QWidget*> m_toolWidgets;
72 QSet<ToolFactory*> m_inactiveTools;
77 #endif // GAMMARAY_TOOLMODEL_H