blob: 0056c8913cf7e2656d74d0cbfb21af4cbd5713a9 [file] [log] [blame]
Edric Milaret53f57b62015-05-11 11:02:17 -04001/***************************************************************************
2 * Copyright (C) 2015 by Savoir-Faire Linux *
3 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
19#ifndef HISTORYDELEGATE_H
20#define HISTORYDELEGATE_H
21
22#include <QObject>
23#include <QString>
24#include <QPainter>
25#include <QApplication>
26#include <QStyledItemDelegate>
27
28#include "categorizedhistorymodel.h"
29
30class HistoryDelegate : public QStyledItemDelegate
31{
32 Q_OBJECT
33public:
34 explicit HistoryDelegate(QObject *parent = 0);
35
36protected:
37 void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
38 QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
Edric Milaret53f57b62015-05-11 11:02:17 -040039
Edric Milaret12353822015-05-14 14:41:09 -040040private:
41 constexpr static int imgSize_ = 25;
Edric Milaret53f57b62015-05-11 11:02:17 -040042};
43
44#endif // HISTORYDELEGATE_H