-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmldelegate.cpp
More file actions
50 lines (38 loc) · 1.85 KB
/
Copy pathhtmldelegate.cpp
File metadata and controls
50 lines (38 loc) · 1.85 KB
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
#include "htmldelegate.h"
#include <QTextBlock>
void HtmlDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QStyleOptionViewItemV4 optionV4 = option;
initStyleOption(&optionV4, index);
QStyle *style = optionV4.widget? optionV4.widget->style() : QApplication::style();
QTextDocument doc;
doc.setHtml(optionV4.text);
// doc.setTextWidth(optionV4.rect.width());
// doc.setDefaultFont(optionV4.font);
// doc.setDocumentMargin(0);
/// Painting item without text
optionV4.text = QString();
style->drawControl(QStyle::CE_ItemViewItem, &optionV4, painter);
QAbstractTextDocumentLayout::PaintContext ctx;
// Highlighting text if item is selected
if (optionV4.state & QStyle::State_Selected)
ctx.palette.setColor(QPalette::Text, optionV4.palette.color(QPalette::Active, QPalette::HighlightedText));
QRect textRect = style->subElementRect(QStyle::SE_ItemViewItemText, &optionV4);
painter->save();
painter->translate(textRect.topLeft());
painter->setClipRect(textRect.translated(-textRect.topLeft()));
doc.documentLayout()->draw(painter, ctx);
painter->restore();
}
QSize HtmlDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QStyleOptionViewItemV4 optionV4 = option;
initStyleOption(&optionV4, index);
QTextDocument doc;
doc.setHtml(optionV4.text);
doc.setTextWidth(optionV4.rect.width());
//int height = doc.documentLayout()->blockBoundingRect(doc.firstBlock()).height();
QFont font(QFont().defaultFamily(),18); // make this bigger, else appears cut off. TODO check why vertical-align:middle; in css does not work
int height = QFontMetrics(font).boundingRect(optionV4.text.length() > 0 ? QString(optionV4.text.at(0)) : "").height();
return QSize(doc.idealWidth(), height);
}