blob: 4dc61e3ef558efe6bd98c2823e493d2dcf19c37c [file] [log] [blame]
Olivier SOLDANO69361192017-04-20 10:32:05 -04001/**************************************************************************
2* Copyright (C) 2015-2017 by Savoir-faire Linux *
3* Author: Anthony LĂ©onard <anthony.leonard@savoirfairelinux.com> *
4* Author: Olivier Soldano <olivier.soldano@savoirfairelinux.com> *
5* *
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 3 of the License, or *
9* (at your option) any later version. *
10* *
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. *
15* *
16* You should have received a copy of the GNU General Public License *
17* along with this program. If not, see <http://www.gnu.org/licenses/>. *
18**************************************************************************/
19
20#ifndef CONTACTREQUESTLISTWIDGET_H
21#define CONTACTREQUESTLISTWIDGET_H
22
23#include <QTreeView>
24
25class ContactRequestListWidget : public QTreeView
26{
27 Q_OBJECT
28
29public:
30 explicit ContactRequestListWidget(QWidget *parent = 0);
31 ~ContactRequestListWidget();
32 void setItemModel(QAbstractItemModel *model);
33
34private:
35 QModelIndex hoveredCRIndex_;
36
37protected:
38 void enterEvent(QEvent *event);
39 void leaveEvent(QEvent *event);
40 bool eventFilter(QObject *watched, QEvent *event);
41 void drawRow(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
42};
43
44#endif // CONTACTREQUESTLISTWIDGET_H