25 #include <QFontMetricsF>
35 QPainter *painter = context.
painter();
46 #if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
47 double xOffset = fontMetrics.width( firstLabel ) / 2.0;
49 double xOffset = fontMetrics.horizontalAdvance( firstLabel ) / 2.0;
64 double currentLabelNumber = 0.0;
67 int segmentCounter = 0;
69 QString currentNumericLabel;
70 QList<double> positions =
segmentPositions( context, scaleContext, settings );
85 for (
int i = 0; i < positions.size(); ++i )
87 if ( segmentCounter == 0 && nSegmentsLeft > 0 )
90 currentNumericLabel = firstLabel;
92 else if ( segmentCounter != 0 && segmentCounter == nSegmentsLeft )
94 currentLabelNumber = 0.0;
97 if ( segmentCounter >= nSegmentsLeft )
103 if ( ( segmentCounter == 0 || segmentCounter >= nSegmentsLeft ) && ( currentNumericLabel != QLatin1String(
"0" ) || drawZero ) )
109 if ( segmentCounter == 0 )
127 if ( segmentCounter >= nSegmentsLeft )
135 if ( !positions.isEmpty() )
151 #if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
153 - fontMetrics.width( currentNumericLabel ) / 2.0 );
156 - fontMetrics.horizontalAdvance( currentNumericLabel ) / 2.0 );
167 return QgsScaleBarRenderer::Flags();
186 firstLabelWidth = ( firstLabelWidth - scaleContext.
segmentWidth ) / 2;
190 firstLabelWidth = 0.0;
195 firstLabelWidth = firstLabelWidth / 2;
201 QString largestLabel = largestNumberLabel +
' ' + settings.
unitLabel();
202 double largestLabelWidth;
208 largestLabelWidth = ( largestLabelWidth - scaleContext.
segmentWidth ) / 2;
212 largestLabelWidth = 0.0;
224 double width = firstLabelWidth + totalBarLength + 2 * settings.
pen().widthF() + largestLabelWidth + 2 * settings.
boxContentSpace();
229 return QSizeF( width, height );
242 firstLabelWidth = ( firstLabelWidth - scaleContext.
segmentWidth ) / 2;
246 firstLabelWidth = 0.0;
251 firstLabelWidth = firstLabelWidth / 2;
257 QString largestLabel = largestNumberLabel +
' ' + settings.
unitLabel();
258 double largestLabelWidth;
265 largestLabelWidth = ( largestLabelWidth - scaleContext.
segmentWidth ) / 2;
269 largestLabelWidth = 0.0;
284 double width = firstLabelWidth + totalBarLength + 2 * lineWidth + largestLabelWidth + 2 * settings.
boxContentSpace();
292 height = settings.
height();
298 return QSizeF( width, height );
334 firstLabelWidth = ( firstLabelWidth - scaleContext.
segmentWidth ) / 2;
338 firstLabelWidth = 0.0;
343 firstLabelWidth = firstLabelWidth / 2;
345 return firstLabelWidth;
350 QList<double> positions;
362 positions << currentXCoord;
363 currentXCoord += leftSegmentSize;
369 positions << currentXCoord;
377 QList<double> positions;
390 positions << currentXCoord;
391 currentXCoord += leftSegmentSize;
397 positions << currentXCoord;
405 QList<double> widths;
414 widths << leftSegmentSize;
RAII class to pop scope from an expression context on destruction.
Single scope for storing variables and functions for use within a QgsExpressionContext.
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
static double fontAscentMM(const QFont &font)
Calculates a font ascent in millimeters, including workarounds for QT font rendering issues.
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 ...
A context for numeric formats.
Contains information about the context of a rendering operation.
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsExpressionContext & expressionContext()
Gets the expression context.
double convertToPainterUnits(double size, QgsUnitTypes::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale()) const
Converts a size from the specified units to painter units (pixels).
@ FlagUsesSubdivisionsHeight
Renderer uses the scalebar subdivisions height (see QgsScaleBarSettings::subdivisionsHeight() )
virtual Flags flags() const
Returns the scalebar rendering flags, which dictates the renderer's behavior.
virtual bool applyDefaultSettings(QgsScaleBarSettings &settings) const
Applies any default settings relating to the scalebar to the passed settings object.
virtual int sortKey() const
Returns a sorting key value, where renderers with a lower sort key will be shown earlier in lists.
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...
virtual Q_DECL_DEPRECATED 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...
QString firstLabelString(const QgsScaleBarSettings &settings) const
Returns the text used for the first label in the scalebar.
QList< double > segmentWidths(const QgsScaleBarRenderer::ScaleBarContext &scaleContext, const QgsScaleBarSettings &settings) const
Returns a list of widths of each segment of the scalebar.
Q_DECL_DEPRECATED QList< double > segmentPositions(const QgsScaleBarRenderer::ScaleBarContext &scaleContext, const QgsScaleBarSettings &settings) const
Returns a list of positions for each segment within the scalebar.
Q_DECL_DEPRECATED double firstLabelXOffset(const QgsScaleBarSettings &settings) const
Returns the x-offset (in millimeters) used for the first label in the scalebar.
The QgsScaleBarSettings class stores the appearance and layout settings for scalebar drawing with Qgs...
double subdivisionsHeight() const
Returns the scalebar subdivisions height (in millimeters) for segments included in the right part of ...
QgsLineSymbol * lineSymbol() const
Returns the line symbol used to render the scalebar (only used for some scalebar types).
const QgsNumericFormat * numericFormat() const
Returns the numeric format used for numbers in the scalebar.
int numberOfSegments() const
Returns the number of segments included in the scalebar.
double unitsPerSegment() const
Returns the number of scalebar units per segment.
Q_DECL_DEPRECATED QPen pen() const
Returns the pen used for drawing outlines in the scalebar.
LabelHorizontalPlacement labelHorizontalPlacement() const
Returns the horizontal placement of text labels.
double boxContentSpace() const
Returns the spacing (margin) between the scalebar box and content in millimeters.
LabelVerticalPlacement labelVerticalPlacement() const
Returns the vertical placement of text labels.
QString unitLabel() const
Returns the label for units.
int numberOfSubdivisions() const
Returns the number of subdivisions for segments included in the right part of the scalebar (only used...
Q_DECL_DEPRECATED QFont font() const
Returns the font used for drawing text in the scalebar.
@ LabelCenteredSegment
Labels are drawn centered relative to segment.
@ LabelCenteredEdge
Labels are drawn centered relative to segment's edge.
@ LabelBelowSegment
Labels are drawn below the scalebar.
double labelBarSpace() const
Returns the spacing (in millimeters) between labels and the scalebar.
QgsTextFormat & textFormat()
Returns the text format used for drawing text in the scalebar.
double height() const
Returns the scalebar height (in millimeters).
int numberOfSegmentsLeft() const
Returns the number of segments included in the left part of the scalebar.
double mapUnitsPerScaleBarUnit() const
Returns the number of map units per scale bar unit used by the scalebar.
static double estimateMaxSymbolBleed(QgsSymbol *symbol, const QgsRenderContext &context)
Returns the maximum estimated bleed for the symbol.
Container for all settings relating to text rendering.
QFont toQFont() const
Returns a QFont matching the relevant settings from this text format.
static double textWidth(const QgsRenderContext &context, const QgsTextFormat &format, const QStringList &textLines, QFontMetricsF *fontMetrics=nullptr)
Returns the width of a text based on a given format.
@ AlignCenter
Center align.
static double textHeight(const QgsRenderContext &context, const QgsTextFormat &format, const QStringList &textLines, DrawMode mode=Point, QFontMetricsF *fontMetrics=nullptr)
Returns the height of a text based on a given format.
static QFontMetricsF fontMetrics(QgsRenderContext &context, const QgsTextFormat &format, double scaleFactor=1.0)
Returns the font metrics for the given text format, when rendered in the specified render context.
static void drawText(const QRectF &rect, double rotation, HAlignment alignment, const QStringList &textLines, QgsRenderContext &context, const QgsTextFormat &format, bool drawAsOutlines=true, VAlignment vAlignment=AlignTop)
Draws text within a rectangle using the specified settings.
@ RenderMillimeters
Millimeters.
#define Q_NOWARN_DEPRECATED_POP
#define Q_NOWARN_DEPRECATED_PUSH
Single variable definition for use within a QgsExpressionContextScope.
Contains parameters regarding scalebar calculations.
Flags flags
Scalebar renderer flags.
double segmentWidth
The width, in millimeters, of each individual segment drawn.