2015-03-10 00:13:55 +00:00
|
|
|
// AircraftItemDelegate.cxx - part of GUI launcher using Qt5
|
|
|
|
//
|
|
|
|
// Written by James Turner, started March 2015.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2014 James Turner <zakalawe@mac.com>
|
|
|
|
//
|
|
|
|
// 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 2 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, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
|
|
|
|
#include "AircraftItemDelegate.hxx"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QLinearGradient>
|
|
|
|
#include <QListView>
|
|
|
|
#include <QMouseEvent>
|
2015-03-16 15:07:44 +00:00
|
|
|
#include <QFontMetrics>
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
#include "AircraftModel.hxx"
|
|
|
|
|
|
|
|
AircraftItemDelegate::AircraftItemDelegate(QListView* view) :
|
|
|
|
m_view(view)
|
|
|
|
{
|
|
|
|
view->viewport()->installEventFilter(this);
|
2015-03-16 15:07:44 +00:00
|
|
|
view->viewport()->setMouseTracking(true);
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
m_leftArrowIcon.load(":/left-arrow-icon");
|
|
|
|
m_rightArrowIcon.load(":/right-arrow-icon");
|
|
|
|
}
|
|
|
|
|
|
|
|
void AircraftItemDelegate::paint(QPainter * painter, const QStyleOptionViewItem & option,
|
|
|
|
const QModelIndex & index) const
|
|
|
|
{
|
2016-04-15 16:06:53 +00:00
|
|
|
QRect contentRect = option.rect.adjusted(MARGIN, MARGIN, -MARGIN, -MARGIN);
|
|
|
|
|
|
|
|
QVariant v = index.data(AircraftPackageStatusRole);
|
|
|
|
AircraftItemStatus status = static_cast<AircraftItemStatus>(v.toInt());
|
|
|
|
if (status == NoOfficialCatalogMessage) {
|
|
|
|
painter->setPen(QColor(0x7f, 0x7f, 0x7f));
|
|
|
|
painter->setBrush(Qt::NoBrush);
|
|
|
|
|
|
|
|
// draw bottom dividing line
|
|
|
|
painter->drawLine(contentRect.left(), contentRect.bottom() + MARGIN,
|
|
|
|
contentRect.right(), contentRect.bottom() + MARGIN);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-10 00:13:55 +00:00
|
|
|
// selection feedback rendering
|
|
|
|
if (option.state & QStyle::State_Selected) {
|
|
|
|
QLinearGradient grad(option.rect.topLeft(), option.rect.bottomLeft());
|
|
|
|
grad.setColorAt(0.0, QColor(152, 163, 180));
|
|
|
|
grad.setColorAt(1.0, QColor(90, 107, 131));
|
|
|
|
|
|
|
|
QBrush backgroundBrush(grad);
|
|
|
|
painter->fillRect(option.rect, backgroundBrush);
|
|
|
|
|
|
|
|
painter->setPen(QColor(90, 107, 131));
|
|
|
|
painter->drawLine(option.rect.topLeft(), option.rect.topRight());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QPixmap thumbnail = index.data(Qt::DecorationRole).value<QPixmap>();
|
2015-03-16 15:07:44 +00:00
|
|
|
quint32 yPos = contentRect.center().y() - (thumbnail.height() / 2);
|
|
|
|
painter->drawPixmap(contentRect.left(), yPos, thumbnail);
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
// draw 1px frame
|
|
|
|
painter->setPen(QColor(0x7f, 0x7f, 0x7f));
|
|
|
|
painter->setBrush(Qt::NoBrush);
|
2015-03-16 15:07:44 +00:00
|
|
|
painter->drawRect(contentRect.left(), yPos, thumbnail.width(), thumbnail.height());
|
2015-03-10 00:13:55 +00:00
|
|
|
|
2015-03-16 16:34:22 +00:00
|
|
|
// draw bottom dividing line
|
|
|
|
painter->drawLine(contentRect.left(), contentRect.bottom() + MARGIN,
|
|
|
|
contentRect.right(), contentRect.bottom() + MARGIN);
|
|
|
|
|
2015-03-10 00:13:55 +00:00
|
|
|
int variantCount = index.data(AircraftVariantCountRole).toInt();
|
2015-11-10 23:28:24 +00:00
|
|
|
int currentVariant = index.data(AircraftVariantRole).toInt();
|
2015-03-10 00:13:55 +00:00
|
|
|
QString description = index.data(Qt::DisplayRole).toString();
|
|
|
|
contentRect.setLeft(contentRect.left() + MARGIN + thumbnail.width());
|
|
|
|
|
|
|
|
painter->setPen(Qt::black);
|
|
|
|
QFont f;
|
|
|
|
f.setPointSize(18);
|
|
|
|
painter->setFont(f);
|
|
|
|
|
|
|
|
QRect descriptionRect = contentRect.adjusted(ARROW_SIZE, 0, -ARROW_SIZE, 0),
|
|
|
|
actualBounds;
|
|
|
|
|
|
|
|
if (variantCount > 0) {
|
|
|
|
bool canLeft = (currentVariant > 0);
|
|
|
|
bool canRight = (currentVariant < variantCount );
|
|
|
|
|
|
|
|
QRect leftArrowRect = leftCycleArrowRect(option.rect, index);
|
|
|
|
if (canLeft) {
|
|
|
|
painter->drawPixmap(leftArrowRect.topLeft() + QPoint(2, 2), m_leftArrowIcon);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect rightArrowRect = rightCycleArrowRect(option.rect, index);
|
|
|
|
if (canRight) {
|
|
|
|
painter->drawPixmap(rightArrowRect.topLeft() + QPoint(2, 2), m_rightArrowIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
painter->drawText(descriptionRect, Qt::TextWordWrap, description, &actualBounds);
|
|
|
|
QString authors = index.data(AircraftAuthorsRole).toString();
|
|
|
|
|
|
|
|
f.setPointSize(12);
|
2016-01-11 05:46:44 +00:00
|
|
|
QFontMetrics smallMetrics(f);
|
|
|
|
|
2015-03-10 00:13:55 +00:00
|
|
|
painter->setFont(f);
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
if (!authors.isEmpty()) {
|
|
|
|
QRect authorsRect = descriptionRect;
|
|
|
|
authorsRect.moveTop(actualBounds.bottom() + MARGIN);
|
|
|
|
painter->drawText(authorsRect, Qt::TextWordWrap,
|
|
|
|
QString("by: %1").arg(authors),
|
|
|
|
&actualBounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString longDescription = index.data(AircraftLongDescriptionRole).toString();
|
|
|
|
if (!longDescription.isEmpty()) {
|
|
|
|
QRect longDescriptionRect = descriptionRect;
|
|
|
|
longDescriptionRect.moveTop(actualBounds.bottom() + MARGIN);
|
|
|
|
painter->drawText(longDescriptionRect, Qt::TextWordWrap,
|
|
|
|
longDescription, &actualBounds);
|
|
|
|
}
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
QRect r = contentRect;
|
2015-03-16 15:07:44 +00:00
|
|
|
r.setWidth(contentRect.width() / 3);
|
2015-03-10 00:13:55 +00:00
|
|
|
r.moveTop(actualBounds.bottom() + MARGIN);
|
2015-03-16 15:07:44 +00:00
|
|
|
r.moveLeft(r.right());
|
2016-01-11 05:46:44 +00:00
|
|
|
r.setHeight(qMax(24, smallMetrics.height() + MARGIN));
|
2015-03-10 00:13:55 +00:00
|
|
|
|
2016-04-15 16:06:53 +00:00
|
|
|
painter->setRenderHint(QPainter::Antialiasing, true);
|
|
|
|
|
2015-03-16 16:34:22 +00:00
|
|
|
if (index.data(AircraftHasRatingsRole).toBool()) {
|
|
|
|
drawRating(painter, "Flight model:", r, index.data(AircraftRatingRole).toInt());
|
|
|
|
r.moveTop(r.bottom());
|
|
|
|
drawRating(painter, "Systems:", r, index.data(AircraftRatingRole + 1).toInt());
|
2015-03-10 00:13:55 +00:00
|
|
|
|
2015-03-16 16:34:22 +00:00
|
|
|
r.moveTop(actualBounds.bottom() + MARGIN);
|
|
|
|
r.moveLeft(r.right());
|
|
|
|
drawRating(painter, "Cockpit:", r, index.data(AircraftRatingRole + 2).toInt());
|
|
|
|
r.moveTop(r.bottom());
|
2016-01-11 05:46:44 +00:00
|
|
|
drawRating(painter, "Exterior:", r, index.data(AircraftRatingRole + 3).toInt());
|
2015-03-16 16:34:22 +00:00
|
|
|
}
|
2015-03-16 15:07:44 +00:00
|
|
|
|
2015-08-03 20:53:56 +00:00
|
|
|
double downloadFraction = 0.0;
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
if (status != PackageInstalled) {
|
2015-08-03 20:53:56 +00:00
|
|
|
QString buttonText, infoText;
|
|
|
|
QColor buttonColor(27, 122, 211);
|
|
|
|
|
|
|
|
double sizeInMBytes = index.data(AircraftPackageSizeRole).toInt();
|
|
|
|
sizeInMBytes /= 0x100000;
|
|
|
|
|
|
|
|
if (status == PackageDownloading) {
|
|
|
|
buttonText = tr("Cancel");
|
|
|
|
double downloadedMB = index.data(AircraftInstallDownloadedSizeRole).toInt();
|
|
|
|
downloadedMB /= 0x100000;
|
|
|
|
infoText = QStringLiteral("%1 MB of %2 MB").arg(downloadedMB, 0, 'f', 1).arg(sizeInMBytes, 0, 'f', 1);
|
|
|
|
buttonColor = QColor(0xcf, 0xcf, 0xcf);
|
|
|
|
downloadFraction = downloadedMB / sizeInMBytes;
|
|
|
|
} else if (status == PackageQueued) {
|
|
|
|
buttonText = tr("Cancel");
|
|
|
|
infoText = tr("Waiting to download %1 MB").arg(sizeInMBytes, 0, 'f', 1);
|
|
|
|
buttonColor = QColor(0xcf, 0xcf, 0xcf);
|
|
|
|
} else {
|
|
|
|
infoText = QStringLiteral("%1MB").arg(sizeInMBytes, 0, 'f', 1);
|
|
|
|
if (status == PackageNotInstalled) {
|
|
|
|
buttonText = "Install";
|
|
|
|
} else if (status == PackageUpdateAvailable) {
|
|
|
|
buttonText = "Update";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
painter->setBrush(Qt::NoBrush);
|
|
|
|
QRect buttonRect = packageButtonRect(option.rect, index);
|
|
|
|
painter->setPen(Qt::NoPen);
|
2015-08-03 20:53:56 +00:00
|
|
|
painter->setBrush(buttonColor);
|
2015-03-16 15:07:44 +00:00
|
|
|
painter->drawRoundedRect(buttonRect, 5, 5);
|
|
|
|
painter->setPen(Qt::white);
|
2015-08-03 20:53:56 +00:00
|
|
|
painter->drawText(buttonRect, Qt::AlignCenter, buttonText);
|
|
|
|
|
|
|
|
QRect infoTextRect = buttonRect;
|
|
|
|
infoTextRect.setLeft(buttonRect.right() + MARGIN);
|
|
|
|
infoTextRect.setWidth(200);
|
|
|
|
|
|
|
|
if (status == PackageDownloading) {
|
|
|
|
QRect progressRect = infoTextRect;
|
|
|
|
progressRect.setHeight(6);
|
|
|
|
painter->setPen(QPen(QColor(0xcf, 0xcf, 0xcf), 0));
|
|
|
|
painter->setBrush(Qt::NoBrush);
|
|
|
|
painter->drawRoundedRect(progressRect, 3, 3);
|
|
|
|
infoTextRect.setTop(progressRect.bottom() + 1);
|
|
|
|
|
|
|
|
QRect progressBarRect = progressRect.marginsRemoved(QMargins(2, 2, 2, 2));
|
|
|
|
|
|
|
|
progressBarRect.setWidth(static_cast<int>(progressBarRect.width() * downloadFraction));
|
|
|
|
|
|
|
|
painter->setBrush(QColor(27, 122, 211));
|
|
|
|
painter->setPen(Qt::NoPen);
|
|
|
|
painter->drawRoundedRect(progressBarRect, 2, 2);
|
2015-03-16 15:07:44 +00:00
|
|
|
}
|
2015-08-03 20:53:56 +00:00
|
|
|
|
|
|
|
painter->setPen(Qt::black);
|
|
|
|
painter->drawText(infoTextRect, Qt::AlignLeft | Qt::AlignVCenter, infoText);
|
|
|
|
} // of update / install / download status
|
2016-04-15 16:06:53 +00:00
|
|
|
|
|
|
|
painter->setRenderHint(QPainter::Antialiasing, false);
|
|
|
|
|
2015-03-10 00:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QSize AircraftItemDelegate::sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const
|
|
|
|
{
|
2016-04-15 16:06:53 +00:00
|
|
|
QVariant v = index.data(AircraftPackageStatusRole);
|
|
|
|
AircraftItemStatus status = static_cast<AircraftItemStatus>(v.toInt());
|
|
|
|
|
|
|
|
if (status == NoOfficialCatalogMessage) {
|
|
|
|
QSize r = option.rect.size();
|
|
|
|
r.setHeight(100);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
QRect contentRect = option.rect.adjusted(MARGIN, MARGIN, -MARGIN, -MARGIN);
|
|
|
|
|
2015-11-10 23:28:24 +00:00
|
|
|
QSize thumbnailSize = index.data(AircraftThumbnailSizeRole).toSize();
|
|
|
|
contentRect.setLeft(contentRect.left() + MARGIN + thumbnailSize.width());
|
2016-01-11 05:46:44 +00:00
|
|
|
contentRect.setBottom(9999); // large value to avoid clipping
|
|
|
|
contentRect.adjust(ARROW_SIZE, 0, -ARROW_SIZE, 0);
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
QFont f;
|
|
|
|
f.setPointSize(18);
|
|
|
|
QFontMetrics metrics(f);
|
|
|
|
|
|
|
|
int textHeight = metrics.boundingRect(contentRect, Qt::TextWordWrap,
|
|
|
|
index.data().toString()).height();
|
|
|
|
|
|
|
|
f.setPointSize(12);
|
|
|
|
QFontMetrics smallMetrics(f);
|
|
|
|
|
2016-01-11 05:46:44 +00:00
|
|
|
QString authors = QString("by: %1").arg(index.data(AircraftAuthorsRole).toString());
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
if (!authors.isEmpty()) {
|
|
|
|
textHeight += MARGIN;
|
|
|
|
textHeight += smallMetrics.boundingRect(contentRect, Qt::TextWordWrap, authors).height();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString desc = index.data(AircraftLongDescriptionRole).toString();
|
|
|
|
if (!desc.isEmpty()) {
|
|
|
|
textHeight += MARGIN;
|
|
|
|
textHeight += smallMetrics.boundingRect(contentRect, Qt::TextWordWrap, desc).height();
|
|
|
|
}
|
|
|
|
|
2015-03-16 16:34:22 +00:00
|
|
|
if (index.data(AircraftHasRatingsRole).toBool()) {
|
|
|
|
// ratings
|
2016-01-11 05:46:44 +00:00
|
|
|
int ratingHeight = qMax(24, smallMetrics.height() + MARGIN);
|
|
|
|
textHeight += ratingHeight * 2;
|
2015-03-16 16:34:22 +00:00
|
|
|
} else {
|
|
|
|
// just the button height
|
|
|
|
textHeight += BUTTON_HEIGHT;
|
|
|
|
}
|
2015-03-16 15:07:44 +00:00
|
|
|
|
2015-11-10 23:28:24 +00:00
|
|
|
textHeight = qMax(textHeight, thumbnailSize.height());
|
2015-03-16 15:07:44 +00:00
|
|
|
return QSize(option.rect.width(), textHeight + (MARGIN * 2));
|
2015-03-10 00:13:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AircraftItemDelegate::eventFilter( QObject*, QEvent* event )
|
|
|
|
{
|
|
|
|
if ( event->type() == QEvent::MouseButtonPress || event->type() == QEvent::MouseButtonRelease )
|
|
|
|
{
|
|
|
|
QMouseEvent* me = static_cast< QMouseEvent* >( event );
|
|
|
|
QModelIndex index = m_view->indexAt( me->pos() );
|
|
|
|
int variantCount = index.data(AircraftVariantCountRole).toInt();
|
|
|
|
int variantIndex = index.data(AircraftVariantRole).toInt();
|
2015-08-03 20:53:56 +00:00
|
|
|
QRect vr = m_view->visualRect(index);
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
if ( (event->type() == QEvent::MouseButtonRelease) && (variantCount > 0) )
|
|
|
|
{
|
|
|
|
QRect leftCycleRect = leftCycleArrowRect(vr, index),
|
|
|
|
rightCycleRect = rightCycleArrowRect(vr, index);
|
|
|
|
|
|
|
|
if ((variantIndex > 0) && leftCycleRect.contains(me->pos())) {
|
|
|
|
m_view->model()->setData(index, variantIndex - 1, AircraftVariantRole);
|
|
|
|
emit variantChanged(index);
|
|
|
|
return true;
|
|
|
|
} else if ((variantIndex < variantCount) && rightCycleRect.contains(me->pos())) {
|
|
|
|
m_view->model()->setData(index, variantIndex + 1, AircraftVariantRole);
|
|
|
|
emit variantChanged(index);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2015-08-03 20:53:56 +00:00
|
|
|
|
|
|
|
if ((event->type() == QEvent::MouseButtonRelease) &&
|
|
|
|
packageButtonRect(vr, index).contains(me->pos()))
|
|
|
|
{
|
|
|
|
QVariant v = index.data(AircraftPackageStatusRole);
|
|
|
|
AircraftItemStatus status = static_cast<AircraftItemStatus>(v.toInt());
|
|
|
|
if (status == PackageNotInstalled) {
|
|
|
|
emit requestInstall(index);
|
|
|
|
} else if ((status == PackageDownloading) || (status == PackageQueued)) {
|
|
|
|
emit cancelDownload(index);
|
|
|
|
} else if (status == PackageUpdateAvailable) {
|
|
|
|
emit requestInstall(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-03-16 15:07:44 +00:00
|
|
|
} else if ( event->type() == QEvent::MouseMove ) {
|
2015-09-28 00:43:50 +00:00
|
|
|
#if 0
|
2015-03-16 15:07:44 +00:00
|
|
|
QMouseEvent* me = static_cast< QMouseEvent* >( event );
|
|
|
|
QModelIndex index = m_view->indexAt( me->pos() );
|
|
|
|
QRect vr = m_view->visualRect(index);
|
|
|
|
|
|
|
|
if (packageButtonRect(vr, index).contains(me->pos())) {
|
|
|
|
qDebug() << "mouse inside button";
|
|
|
|
}
|
2015-09-28 00:43:50 +00:00
|
|
|
#endif
|
2015-03-16 15:07:44 +00:00
|
|
|
}
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QRect AircraftItemDelegate::leftCycleArrowRect(const QRect& visualRect, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
QRect contentRect = visualRect.adjusted(MARGIN, MARGIN, -MARGIN, -MARGIN);
|
|
|
|
QPixmap thumbnail = index.data(Qt::DecorationRole).value<QPixmap>();
|
|
|
|
contentRect.setLeft(contentRect.left() + MARGIN + thumbnail.width());
|
|
|
|
|
|
|
|
QRect r = contentRect;
|
|
|
|
r.setRight(r.left() + ARROW_SIZE);
|
|
|
|
r.setBottom(r.top() + ARROW_SIZE);
|
|
|
|
return r;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect AircraftItemDelegate::rightCycleArrowRect(const QRect& visualRect, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
QRect contentRect = visualRect.adjusted(MARGIN, MARGIN, -MARGIN, -MARGIN);
|
|
|
|
QPixmap thumbnail = index.data(Qt::DecorationRole).value<QPixmap>();
|
|
|
|
contentRect.setLeft(contentRect.left() + MARGIN + thumbnail.width());
|
|
|
|
|
|
|
|
QRect r = contentRect;
|
|
|
|
r.setLeft(r.right() - ARROW_SIZE);
|
|
|
|
r.setBottom(r.top() + ARROW_SIZE);
|
|
|
|
return r;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-03-16 15:07:44 +00:00
|
|
|
QRect AircraftItemDelegate::packageButtonRect(const QRect& visualRect, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
QRect contentRect = visualRect.adjusted(MARGIN, MARGIN, -MARGIN, -MARGIN);
|
|
|
|
QPixmap thumbnail = index.data(Qt::DecorationRole).value<QPixmap>();
|
|
|
|
contentRect.setLeft(contentRect.left() + MARGIN + thumbnail.width());
|
|
|
|
|
2015-08-03 20:53:56 +00:00
|
|
|
return QRect(contentRect.left() + ARROW_SIZE, contentRect.bottom() - 24,
|
|
|
|
BUTTON_WIDTH, BUTTON_HEIGHT);
|
2015-03-16 15:07:44 +00:00
|
|
|
}
|
|
|
|
|
2015-03-10 00:13:55 +00:00
|
|
|
void AircraftItemDelegate::drawRating(QPainter* painter, QString label, const QRect& box, int value) const
|
|
|
|
{
|
|
|
|
const int DOT_SIZE = 10;
|
2015-03-16 16:34:22 +00:00
|
|
|
const int DOT_MARGIN = 2;
|
2015-03-10 00:13:55 +00:00
|
|
|
|
|
|
|
QRect dotBox = box;
|
|
|
|
dotBox.setLeft(box.right() - (DOT_MARGIN * 6 + DOT_SIZE * 5));
|
|
|
|
|
|
|
|
painter->setPen(Qt::black);
|
|
|
|
QRect textBox = box;
|
|
|
|
textBox.setRight(dotBox.left() - DOT_MARGIN);
|
|
|
|
painter->drawText(textBox, Qt::AlignVCenter | Qt::AlignRight, label);
|
|
|
|
|
|
|
|
painter->setPen(Qt::NoPen);
|
|
|
|
QRect dot(dotBox.left() + DOT_MARGIN,
|
|
|
|
dotBox.center().y() - (DOT_SIZE / 2),
|
|
|
|
DOT_SIZE,
|
|
|
|
DOT_SIZE);
|
|
|
|
for (int i=0; i<5; ++i) {
|
|
|
|
painter->setBrush((i < value) ? QColor(0x3f, 0x3f, 0x3f) : QColor(0xaf, 0xaf, 0xaf));
|
|
|
|
painter->drawEllipse(dot);
|
|
|
|
dot.moveLeft(dot.right() + DOT_MARGIN);
|
|
|
|
}
|
|
|
|
}
|