blob: 9a50f04e9a071158d1b4bf01fb98bcb75cb30bdb [file] [log] [blame]
Edric Milaret5d61a062015-06-12 11:16:08 -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 ACCOUNTSTATEDELEGATE_H
20#define ACCOUNTSTATEDELEGATE_H
21
22#include <QObject>
23#include <QString>
24#include <QPainter>
25#include <QApplication>
26#include <QStyledItemDelegate>
27
28class AccountStateDelegate : public QStyledItemDelegate
29{
30 Q_OBJECT
31public:
32 explicit AccountStateDelegate(QObject *parent = 0);
33
34protected:
35 void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
36 QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
37};
38
39#endif // ACCOUNTSTATEDELEGATE_H