20 #include <QFontMetricsF> 30 QPainter *painter = context.
painter();
34 QFont scaledFont = settings.
font();
35 scaledFont.setPointSizeF( scaledFont.pointSizeF() * context.
scaleFactor() );
36 painter->setPen( QPen( settings.
fontColor() ) );
41 double currentLabelNumber = 0.0;
44 int segmentCounter = 0;
45 QString currentNumericLabel;
49 for (
int i = 0; i < positions.size(); ++i )
51 if ( segmentCounter == 0 && nSegmentsLeft > 0 )
54 currentNumericLabel = firstLabel;
56 else if ( segmentCounter != 0 && segmentCounter == nSegmentsLeft )
58 currentLabelNumber = 0;
61 if ( segmentCounter >= nSegmentsLeft )
66 if ( segmentCounter == 0 || segmentCounter >= nSegmentsLeft )
70 currentNumericLabel, scaledFont, settings.
fontColor() );
73 if ( segmentCounter >= nSegmentsLeft )
81 if ( !positions.isEmpty() )
101 QString largestNumberLabel = QString::number( largestLabelNumber );
102 QString largestLabel = QString::number( largestLabelNumber ) +
' ' + settings.
unitLabel();
107 double width = firstLabelLeft + totalBarLength + 2 * settings.
pen().widthF() + largestLabelWidth + 2 * settings.
boxContentSpace();
110 return QSizeF( width, height );
121 return QStringLiteral(
"0" );
133 QList<double> positions;
141 positions << currentXCoord;
142 currentXCoord += leftSegmentSize;
148 positions << currentXCoord;
156 QList<double> widths;
164 widths << leftSegmentSize;
double mapUnitsPerScaleBarUnit() const
Returns the number of map units per scale bar unit used by the scalebar.
QString unitLabel() const
Returns the label for units.
static double textWidthMM(const QFont &font, const QString &text)
Calculate a font width in millimeters for a text string, including workarounds for QT font rendering ...
QPen pen() const
Returns the pen used for drawing outlines in the scalebar.
double segmentWidth
Width of each individual segment (in millimeters)
QColor fontColor() const
Returns the color used for drawing text in the scalebar.
QFont font() const
Returns the font used for drawing text in the scalebar.
double firstLabelXOffset(const QgsScaleBarSettings &settings) const
Returns the x-offset (in millimeters) used for the first label in the scalebar.
double height() const
Returns the scalebar height (in millimeters).
int numberOfSegments() const
Returns the number of segments included in the scalebar.
double boxContentSpace() const
Returns the spacing (margin) between the scalebar box and content in millimeters. ...
double labelBarSpace() const
Returns the spacing (in millimeters) between labels and the scalebar.
QList< double > segmentWidths(const QgsScaleBarRenderer::ScaleBarContext &scaleContext, const QgsScaleBarSettings &settings) const
Returns a list of widths of each segment of the scalebar.
static void drawText(QPainter *painter, QPointF position, const QString &text, const QFont &font, const QColor &color=QColor())
Draws text on a painter at a specific position, taking care of layout specific issues (calculation to...
void drawDefaultLabels(QgsRenderContext &context, const QgsScaleBarSettings &settings, const QgsScaleBarRenderer::ScaleBarContext &scaleContext) const
Draws default scalebar labels using the specified settings and scaleContext to a destination render c...
QString firstLabelString(const QgsScaleBarSettings &settings) const
Returns the text used for the first label in the scalebar.
Contains information about the context of a rendering operation.
double convertToPainterUnits(double size, QgsUnitTypes::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale()) const
Converts a size from the specified units to painter units (pixels).
QList< double > segmentPositions(const QgsScaleBarRenderer::ScaleBarContext &scaleContext, const QgsScaleBarSettings &settings) const
Returns a list of positions for each segment within the scalebar.
QPainter * painter()
Returns the destination QPainter for the render operation.
static double fontAscentMM(const QFont &font)
Calculates a font ascent in millimeters, including workarounds for QT font rendering issues...
double unitsPerSegment() const
Returns the number of scalebar units per segment.
virtual QSizeF calculateBoxSize(const QgsScaleBarSettings &settings, const QgsScaleBarRenderer::ScaleBarContext &scaleContext) const
Calculates the required box size (in millimeters) for a scalebar using the specified settings and sca...
int numberOfSegmentsLeft() const
Returns the number of segments included in the left part of the scalebar.
double scaleFactor() const
Returns the scaling factor for the render to convert painter units to physical sizes.
The QgsScaleBarSettings class stores the appearance and layout settings for scalebar drawing with Qgs...
Contains parameters regarding scalebar calculations.