1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

PluginListDelegate: Remove line with author info

One plugin in list now takes only two rows, allowing
to show more plugins without scrolling.
This commit is contained in:
David Rosca 2018-03-01 21:02:38 +01:00
parent ea0497be55
commit fd2c7960c5
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8

View File

@ -102,18 +102,9 @@ void PluginListDelegate::paint(QPainter* painter, const QStyleOptionViewItem &op
painter->setFont(versionFont);
style->drawItemText(painter, versionRect, Qt::AlignLeft, textPalette, true, version, colorRole);
// Draw author
const int infoYPos = nameRect.bottom() + opt.fontMetrics.leading();
QRect infoRect(nameRect.x(), infoYPos, nameRect.width(), opt.fontMetrics.height());
const QString info = opt.fontMetrics.elidedText(index.data(Qt::UserRole + 1).toString(), Qt::ElideRight, infoRect.width());
QFont font = opt.font;
font.setPointSize(font.pointSize() - 1);
painter->setFont(font);
style->drawItemText(painter, infoRect, Qt::TextSingleLine | Qt::AlignLeft, textPalette, true, info, colorRole);
// Draw description
const int descriptionYPos = infoRect.bottom() + opt.fontMetrics.leading();
QRect descriptionRect(infoRect.x(), descriptionYPos, infoRect.width(), opt.fontMetrics.height());
const int descriptionYPos = nameRect.bottom() + opt.fontMetrics.leading();
QRect descriptionRect(nameRect.x(), descriptionYPos, nameRect.width(), opt.fontMetrics.height());
const QString description = opt.fontMetrics.elidedText(index.data(Qt::UserRole + 2).toString(), Qt::ElideRight, descriptionRect.width());
painter->setFont(opt.font);
style->drawItemText(painter, descriptionRect, Qt::TextSingleLine | Qt::AlignLeft, textPalette, true, description, colorRole);
@ -139,7 +130,7 @@ QSize PluginListDelegate::sizeHint(const QStyleOptionViewItem &option, const QMo
const QFontMetrics titleMetrics(titleFont);
m_rowHeight = 2 * m_padding + 2 * opt.fontMetrics.leading() + 2 * opt.fontMetrics.height() + titleMetrics.height();
m_rowHeight = 2 * m_padding + 2 * opt.fontMetrics.leading() + opt.fontMetrics.height() + titleMetrics.height();
}
return QSize(200, m_rowHeight);