Don't use const'ref for QChar
[kdepim.git] / akonadiconsole / jobtrackermodel.h
blob91376d0f632de4b5243004139bb69d6e336f19a2
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 AKONADICONSOLE_JOBTRACKERMODEL_H
23 #define AKONADICONSOLE_JOBTRACKERMODEL_H
25 #include <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 QModelIndex index(int, int, const QModelIndex &) const Q_DECL_OVERRIDE;
36 QModelIndex parent(const QModelIndex &) const Q_DECL_OVERRIDE;
37 int rowCount(const QModelIndex &) const Q_DECL_OVERRIDE;
38 int columnCount(const QModelIndex &) const Q_DECL_OVERRIDE;
39 QVariant data(const QModelIndex &, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
40 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
41 bool isEnabled() const;
42 public Q_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_ */