-
Notifications
You must be signed in to change notification settings - Fork 2
/
druseritemdelegate.cpp
94 lines (68 loc) · 3.01 KB
/
druseritemdelegate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
Deriv is a cross-platform client for th Wired 2.0 protocol
Copyright (C) 2014 Rafael Warnault, [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
#include "druseritemdelegate.h"
DRUserItemDelegate::DRUserItemDelegate()
{
}
DRUserItemDelegate::~DRUserItemDelegate()
{
// TODO Auto-generated destructor stub
}
//alocate each item size in listview.
QSize DRUserItemDelegate::sizeHint(const QStyleOptionViewItem & option ,
const QModelIndex & index) const
{
QIcon icon = qvariant_cast<QIcon>(index.data(IconRole));
QSize iconsize = icon.actualSize(option.decorationSize);
QFont font = QApplication::font();
QFontMetrics fm(font);
return(QSize(iconsize.width(),iconsize.height()+fm.height() +4 ));
}
void DRUserItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
QStyledItemDelegate::paint(painter,option,index);
painter->save();
QFont font = QApplication::font();
QFont SubFont = QApplication::font();
font.setBold(true);
SubFont.setWeight(SubFont.weight()-2);
QFontMetrics fm(font);
QIcon icon = qvariant_cast<QIcon>(index.data(IconRole));
QString headerText = qvariant_cast<QString>(index.data(headerTextRole));
QString subText = qvariant_cast<QString>(index.data(subHeaderTextrole));
bool idle = qvariant_cast<bool>(index.data(IdleRole));
if(idle)
painter->setOpacity(0.5);
QSize iconsize = icon.actualSize(option.decorationSize);
QRect headerRect = option.rect;
QRect subheaderRect = option.rect;
QRect iconRect = subheaderRect;
iconRect.setRight(iconsize.width()+15);
iconRect.setTop(iconRect.top()-10);
headerRect.setLeft(iconRect.right());
subheaderRect.setLeft(iconRect.right());
headerRect.setTop(headerRect.top()+5);
headerRect.setBottom(headerRect.top()+fm.height());
subheaderRect.setTop(headerRect.bottom()+2);
//painter->drawPixmap(QPoint(iconRect.right()/2,iconRect.top()/2),icon.pixmap(iconsize.width(),iconsize.height()));
painter->drawPixmap(QPoint(5,iconRect.top()+iconsize.height()/2+3),icon.pixmap(iconsize.width(),iconsize.height()));
painter->setFont(font);
painter->drawText(headerRect,headerText);
painter->setFont(SubFont);
painter->drawText(subheaderRect.left(),subheaderRect.top()+17,subText);
painter->restore();
}