blob: 00986112a365e328d22176f4f84bdeb3941765d0 [file] [log] [blame]
Edric Milaret83b248c2015-06-02 11:42:23 -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 IMDELEGATE_H
20#define IMDELEGATE_H
21
22#include <QObject>
23#include <QApplication>
24#include <QPainter>
25#include <QStyledItemDelegate>
26#include <QSettings>
27
28class ImDelegate : public QStyledItemDelegate
29{
30 Q_OBJECT
31public:
32 explicit ImDelegate(QObject *parent = 0);
33 enum DisplayOptions {
34 AUTHOR = 1,
35 DATE
36 };
37
38 void setDisplayOptions(DisplayOptions opt);
39protected:
40 void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
41 QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
42private:
43 bool showDate_;
44 bool showAuthor_;
45};
46
47#endif // IMDELEGATE_H