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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "callgrindnamedelegate.h"
#include "callgrindhelper.h"
#include <QApplication>
#include <QPainter>
namespace Valgrind::Internal {
NameDelegate::NameDelegate(QObject *parent)
: QStyledItemDelegate(parent)
{
}
void NameDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
// init
QStyleOptionViewItem opt(option);
initStyleOption(&opt, index);
const int margin = 2;
const int size = 10;
const QString text = index.data().toString();
QStyle *style = opt.widget ? opt.widget->style() : QApplication::style();
// draw controls, but no text
opt.text.clear();
style->drawControl(QStyle::CE_ItemViewItem, &opt, painter);
// draw bar in the first few pixels
painter->save();
const QRectF barRect = opt.rect.adjusted(
margin, margin, -opt.rect.width() + size - margin, -margin);
painter->setPen(Qt::black);
painter->setBrush(CallgrindHelper::colorForString(text));
painter->drawRect(barRect);
// move cell rect to right
opt.rect.adjust(size+margin, 0, 0, 0);
// draw text
const QString elidedText = painter->fontMetrics().elidedText(text, Qt::ElideRight,
opt.rect.width());
const QBrush &textBrush = (option.state & QStyle::State_Selected)
? opt.palette.highlightedText()
: opt.palette.text();
painter->setBrush(Qt::NoBrush);
painter->setPen(textBrush.color());
painter->drawText(opt.rect, elidedText);
painter->restore();
}
} // namespace Valgrind::Internal
|