blob: 30d857ae74ab5d152e065ae69968430d1b47d1a5 [file] [log] [blame]
Edric Milaretdb76aa82015-05-11 16:01:00 -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 CONTACTDELEGATE_H
20#define CONTACTDELEGATE_H
21
22#include <QObject>
23#include <QString>
24#include <QPainter>
25#include <QApplication>
26#include <QStyledItemDelegate>
27
28class ContactDelegate : public QStyledItemDelegate
29{
30 Q_OBJECT
31public:
32 explicit ContactDelegate(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
38private:
39 constexpr static int sizeImage_ = 49;
40};
41
42#endif // CONTACTDELEGATE_H