Build with clang.
[kdepim.git] / akonadiconsole / jobtrackermodel.h
bloba0d9a304066ab9b83fc7788e517830b3bbe9ab13
1 /*
2 This file is part of Akonadi.
4 Copyright (c) 2009 Till Adam <adam@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 USA.
22 #ifndef JOBTRACKERMODEL_H_
23 #define JOBTRACKERMODEL_H_
25 #include <QtCore/QAbstractItemModel>
27 class JobTrackerModel : public QAbstractItemModel
29 Q_OBJECT
30 public:
31 JobTrackerModel( const char *name, QObject *parent );
32 virtual ~JobTrackerModel();
34 /* QAIM API */
35 virtual QModelIndex index(int, int, const QModelIndex&) const;
36 virtual QModelIndex parent(const QModelIndex&) const;
37 virtual int rowCount(const QModelIndex&) const;
38 virtual int columnCount(const QModelIndex&) const;
39 virtual QVariant data(const QModelIndex&, int role = Qt::DisplayRole) const;
40 virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
41 bool isEnabled() const;
42 public slots:
43 void resetTracker();
44 void jobsAdded( const QList< QPair<int, int> >& );
45 void jobsUpdated( const QList< QPair<int, int> >& );
46 void setEnabled(bool);
48 private:
49 class Private;
50 Private * const d;
54 #endif /* JOBTRACKERMODEL_H_ */