mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
176a62f752
The time axis might need some space and the average depth item puts a formatted depth at to right of the profile. Consider these when calculating the right border. Since I found no way to turn of the average depth, this creates a permanent border, which might or might not be a good thing. Contains some refactoring of the label-size functions provided by DiveTextItem. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
106 lines
2.9 KiB
C++
106 lines
2.9 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "divetextitem.h"
|
|
#include "profilewidget2.h"
|
|
#include "core/color.h"
|
|
#include "core/errorhelper.h"
|
|
|
|
#include <QBrush>
|
|
#include <QApplication>
|
|
|
|
static const double outlineSize = 3.0;
|
|
|
|
DiveTextItem::DiveTextItem(double dpr, double scale, int alignFlags, QGraphicsItem *parent) : QGraphicsPixmapItem(parent),
|
|
internalAlignFlags(alignFlags),
|
|
dpr(dpr),
|
|
scale(scale)
|
|
{
|
|
setFlag(ItemIgnoresTransformations);
|
|
}
|
|
|
|
static QFont getFont(double dpr, double scale)
|
|
{
|
|
QFont fnt(qApp->font());
|
|
double size = fnt.pixelSize();
|
|
if (size > 0) {
|
|
// set in pixels - so the scale factor may not make a difference if it's too close to 1
|
|
size *= scale * dpr;
|
|
fnt.setPixelSize(lrint(size));
|
|
} else {
|
|
size = fnt.pointSizeF();
|
|
size *= scale * dpr;
|
|
fnt.setPointSizeF(size);
|
|
}
|
|
return fnt;
|
|
}
|
|
|
|
void DiveTextItem::set(const QString &t, const QBrush &b)
|
|
{
|
|
internalText = t;
|
|
if (internalText.isEmpty()) {
|
|
setPixmap(QPixmap());
|
|
return;
|
|
}
|
|
|
|
QFont fnt = getFont(dpr, scale);
|
|
|
|
QPainterPath textPath;
|
|
textPath.addText(0.0, 0.0, fnt, internalText);
|
|
QPainterPathStroker stroker;
|
|
stroker.setWidth(outlineSize * dpr);
|
|
QPainterPath outlinePath = stroker.createStroke(textPath);
|
|
|
|
QRectF outlineRect = outlinePath.boundingRect();
|
|
textPath.translate(-outlineRect.topLeft());
|
|
outlinePath.translate(-outlineRect.topLeft());
|
|
|
|
QPixmap pixmap(outlineRect.size().toSize());
|
|
pixmap.fill(Qt::transparent);
|
|
{
|
|
QPainter painter(&pixmap);
|
|
painter.setRenderHints(QPainter::Antialiasing);
|
|
painter.setBrush(QBrush(getColor(TEXT_BACKGROUND)));
|
|
painter.setPen(Qt::NoPen);
|
|
painter.drawPath(outlinePath);
|
|
painter.setBrush(b);
|
|
painter.setPen(Qt::NoPen);
|
|
painter.drawPath(textPath);
|
|
}
|
|
setPixmap(pixmap);
|
|
|
|
double yOffset = (internalAlignFlags & Qt::AlignTop) ? 0.0 :
|
|
(internalAlignFlags & Qt::AlignBottom) ? -outlineRect.height() :
|
|
/*(internalAlignFlags & Qt::AlignVCenter ? */ -outlineRect.height() / 2.0;
|
|
|
|
double xOffset = (internalAlignFlags & Qt::AlignLeft) ? -outlineRect.width() :
|
|
(internalAlignFlags & Qt::AlignHCenter) ? -outlineRect.width() / 2.0 :
|
|
/* (internalAlignFlags & Qt::AlignRight) */ 0.0;
|
|
setOffset(xOffset, yOffset);
|
|
}
|
|
|
|
const QString &DiveTextItem::text()
|
|
{
|
|
return internalText;
|
|
}
|
|
|
|
double DiveTextItem::fontHeight(double dpr, double scale)
|
|
{
|
|
QFont fnt = getFont(dpr, scale);
|
|
QFontMetrics fm(fnt);
|
|
return (double)fm.height();
|
|
}
|
|
|
|
double DiveTextItem::height() const
|
|
{
|
|
return fontHeight(dpr, scale) + outlineSize * dpr;
|
|
}
|
|
|
|
std::pair<double, double> DiveTextItem::getLabelSize(double dpr, double scale, const QString &label)
|
|
{
|
|
QFont fnt = getFont(dpr, scale);
|
|
double outlineSpace = outlineSize * dpr;
|
|
QFontMetrics fm(fnt);
|
|
/* Round up, because non-integers tend to give abysmal rendering. */
|
|
double width = ceil(fm.size(Qt::TextSingleLine, label).width() + outlineSpace);
|
|
double height = ceil(fm.height() + outlineSpace);
|
|
return std::make_pair(width, height);
|
|
}
|