QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgsticksscalebarrenderer.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsticksscalebarrenderer.cpp
3 ----------------------------
4 begin : June 2008
5 copyright : (C) 2008 by Marco Hugentobler
7 ***************************************************************************/
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
18
19#include "qgslinesymbol.h"
20#include "qgsscalebarsettings.h"
21#include "qgssymbol.h"
22#include "qgstextrenderer.h"
23
24#include <QPainter>
25
31
33{
34 switch ( mTickPosition )
35 {
36 case TicksUp:
37 return QStringLiteral( "Line Ticks Up" );
38 case TicksDown:
39 return QStringLiteral( "Line Ticks Down" );
40 case TicksMiddle:
41 return QStringLiteral( "Line Ticks Middle" );
42 }
43 return QString(); // to make gcc happy
44}
45
47{
48 switch ( mTickPosition )
49 {
50 case TicksUp:
51 return QObject::tr( "Line Ticks Up" );
52 case TicksDown:
53 return QObject::tr( "Line Ticks Down" );
54 case TicksMiddle:
55 return QObject::tr( "Line Ticks Middle" );
56 }
57 return QString(); // to make gcc happy
58
59}
60
62{
63 switch ( mTickPosition )
64 {
65 case TicksUp:
66 return 5;
67 case TicksDown:
68 return 4;
69 case TicksMiddle:
70 return 3;
71 }
72 return 6;
73}
74
90
95
96void QgsTicksScaleBarRenderer::draw( QgsRenderContext &context, const QgsScaleBarSettings &settings, const ScaleBarContext &scaleContext ) const
97{
98 if ( !context.painter() )
99 return;
100
101 QPainter *painter = context.painter();
102
103 const double scaledLabelBarSpace = context.convertToPainterUnits( settings.labelBarSpace(), Qgis::RenderUnit::Millimeters );
104 const double scaledBoxContentSpace = context.convertToPainterUnits( settings.boxContentSpace(), Qgis::RenderUnit::Millimeters );
105 const QFontMetricsF fontMetrics = QgsTextRenderer::fontMetrics( context, settings.textFormat() );
106 const double barTopPosition = scaledBoxContentSpace + ( settings.labelVerticalPlacement() == Qgis::ScaleBarDistanceLabelVerticalPlacement::AboveSegment ? fontMetrics.ascent() + scaledLabelBarSpace : 0 );
107 const double scaledHeight = context.convertToPainterUnits( settings.height(), Qgis::RenderUnit::Millimeters );
108 const double scaledSubdivisionsHeight = context.convertToPainterUnits( settings.subdivisionsHeight(), Qgis::RenderUnit::Millimeters );
109 const double scaledMaxHeight = ( ( settings.numberOfSubdivisions() > 1 ) && ( scaledSubdivisionsHeight > scaledHeight ) ) ? scaledSubdivisionsHeight : scaledHeight;
110 const double middlePosition = barTopPosition + scaledMaxHeight / 2.0;
111 const double bottomPosition = barTopPosition + scaledMaxHeight;
112
113 const double xOffset = firstLabelXOffset( settings, context, scaleContext );
114
115 painter->save();
116 context.setPainterFlagsUsingContext( painter );
117
118 std::unique_ptr< QgsLineSymbol > symbol( settings.lineSymbol()->clone() );
119 symbol->startRender( context );
120
121 std::unique_ptr< QgsLineSymbol > divisionSymbol( settings.divisionLineSymbol()->clone() );
122 divisionSymbol->startRender( context );
123
124 std::unique_ptr< QgsLineSymbol > subdivisionSymbol( settings.subdivisionLineSymbol()->clone() );
125 subdivisionSymbol->startRender( context );
126
127 const QList<double> positions = segmentPositions( context, scaleContext, settings );
128
129 // vertical positions
130 double verticalPos = 0.0;
131 QList<double> subTickPositionsY;
132 QList<double> tickPositionsY;
133 switch ( mTickPosition )
134 {
135 case TicksDown:
136 verticalPos = barTopPosition;
137 subTickPositionsY << verticalPos;
138 subTickPositionsY << verticalPos + scaledSubdivisionsHeight;
139 tickPositionsY << verticalPos;
140 tickPositionsY << verticalPos + scaledHeight;
141 break;
142 case TicksMiddle:
143 verticalPos = middlePosition;
144 subTickPositionsY << verticalPos + scaledSubdivisionsHeight / 2.0;
145 subTickPositionsY << verticalPos - scaledSubdivisionsHeight / 2.0;
146 tickPositionsY << verticalPos + scaledHeight / 2.0;
147 tickPositionsY << verticalPos - scaledHeight / 2.0;
148 break;
149 case TicksUp:
150 verticalPos = bottomPosition;
151 subTickPositionsY << verticalPos;
152 subTickPositionsY << verticalPos - scaledSubdivisionsHeight;
153 tickPositionsY << verticalPos;
154 tickPositionsY << verticalPos - scaledHeight;
155 break;
156 }
157
158 int symbolLayerCount = symbol->symbolLayerCount();
159 symbolLayerCount = std::max( symbolLayerCount, divisionSymbol->symbolLayerCount() );
160 symbolLayerCount = std::max( symbolLayerCount, subdivisionSymbol->symbolLayerCount() );
161
162 // we render the bar symbol-layer-by-symbol-layer, to avoid ugliness where the lines overlap in multi-layer symbols
163 for ( int layer = 0; layer < symbolLayerCount; ++ layer )
164 {
165 const bool drawDivisionsForThisSymbolLayer = layer < divisionSymbol->symbolLayerCount();
166 const bool drawSubdivisionsForThisSymbolLayer = layer < subdivisionSymbol->symbolLayerCount();
167 const bool drawLineForThisSymbolLayer = layer < symbol->symbolLayerCount();
168
169 if ( drawDivisionsForThisSymbolLayer )
170 {
171 // first draw the vertical lines for segments
172 for ( int i = 0; i < positions.size(); ++i )
173 {
174 const double thisX = context.convertToPainterUnits( positions.at( i ), Qgis::RenderUnit::Millimeters ) + xOffset;
175 divisionSymbol->renderPolyline( QPolygonF() << QPointF( thisX, tickPositionsY.at( 0 ) )
176 << QPointF( thisX, tickPositionsY.at( 1 ) ), nullptr, context, layer );
177 }
178 }
179
180 // draw the vertical lines for right subdivisions
181 if ( drawSubdivisionsForThisSymbolLayer )
182 {
183 for ( int i = settings.numberOfSegmentsLeft(); i < positions.size(); ++i )
184 {
185 for ( int j = 1; j < settings.numberOfSubdivisions(); ++j )
186 {
187 const double thisSubX = context.convertToPainterUnits( positions.at( i ) + j * scaleContext.segmentWidth / settings.numberOfSubdivisions(), Qgis::RenderUnit::Millimeters ) + xOffset;
188 subdivisionSymbol->renderPolyline( QPolygonF() << QPointF( thisSubX, subTickPositionsY.at( 0 ) )
189 << QPointF( thisSubX, subTickPositionsY.at( 1 ) ), nullptr, context, layer );
190 }
191 }
192 }
193
194 //draw last tick and horizontal line
195 if ( !positions.isEmpty() )
196 {
197 const double lastTickPositionX = context.convertToPainterUnits( positions.at( positions.size() - 1 ) + scaleContext.segmentWidth, Qgis::RenderUnit::Millimeters ) + xOffset;
198
199 //last vertical line
200 if ( drawDivisionsForThisSymbolLayer )
201 {
202 divisionSymbol->renderPolyline( QPolygonF() << QPointF( lastTickPositionX, tickPositionsY.at( 0 ) )
203 << QPointF( lastTickPositionX, tickPositionsY.at( 1 ) ),
204 nullptr, context, layer );
205 }
206
207 //horizontal line
208 if ( drawLineForThisSymbolLayer )
209 {
210 symbol->renderPolyline( QPolygonF() << QPointF( xOffset + context.convertToPainterUnits( positions.at( 0 ), Qgis::RenderUnit::Millimeters ), verticalPos )
211 << QPointF( lastTickPositionX, verticalPos ), nullptr, context, layer );
212 }
213 }
214 }
215
216 symbol->stopRender( context );
217 divisionSymbol->stopRender( context );
218 subdivisionSymbol->stopRender( context );
219
220 painter->restore();
221
222 //draw labels using the default method
223 drawDefaultLabels( context, settings, scaleContext );
224}
225
226
@ AboveSegment
Labels are drawn above the scalebar.
Definition qgis.h:5332
@ Millimeters
Millimeters.
Definition qgis.h:5184
QgsLineSymbol * clone() const override
Returns a deep copy of this symbol.
Contains information about the context of a rendering operation.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
void setPainterFlagsUsingContext(QPainter *painter=nullptr) const
Sets relevant flags on a destination painter, using the flags and settings currently defined for the ...
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...
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.
@ FlagUsesLabelVerticalPlacement
Renderer uses the QgsScaleBarSettings::labelVerticalPlacement() setting.
@ FlagUsesLabelHorizontalPlacement
Renderer uses the QgsScaleBarSettings::labelHorizontalPlacement() setting.
@ FlagUsesLineSymbol
Renderer utilizes the scalebar line symbol (see QgsScaleBarSettings::lineSymbol() ).
@ FlagUsesUnitLabel
Renderer uses the QgsScaleBarSettings::unitLabel() setting.
@ FlagUsesSubdivisionsHeight
Renderer uses the scalebar subdivisions height (see QgsScaleBarSettings::subdivisionsHeight() ).
@ FlagUsesSubdivisionSymbol
Renderer utilizes the scalebar subdivision symbol (see QgsScaleBarSettings::subdivisionLineSymbol() )...
@ FlagUsesSegments
Renderer uses the scalebar segments.
@ FlagUsesLabelBarSpace
Renderer uses the QgsScaleBarSettings::labelBarSpace() setting.
@ FlagRespectsMapUnitsPerScaleBarUnit
Renderer respects the QgsScaleBarSettings::mapUnitsPerScaleBarUnit() setting.
@ FlagRespectsUnits
Renderer respects the QgsScaleBarSettings::units() setting.
@ FlagUsesSubdivisions
Renderer uses the scalebar subdivisions (see QgsScaleBarSettings::numberOfSubdivisions() ).
@ FlagUsesDivisionSymbol
Renderer utilizes the scalebar division symbol (see QgsScaleBarSettings::divisionLineSymbol() ).
Stores the appearance and layout settings for scalebar drawing with QgsScaleBarRenderer.
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).
QgsLineSymbol * subdivisionLineSymbol() const
Returns the line symbol used to render the scalebar subdivisions (only used for some scalebar types).
Qgis::ScaleBarDistanceLabelVerticalPlacement labelVerticalPlacement() const
Returns the vertical placement of text labels.
QgsTextFormat & textFormat()
Returns the text format used for drawing text in the scalebar.
double boxContentSpace() const
Returns the spacing (margin) between the scalebar box and content in millimeters.
int numberOfSubdivisions() const
Returns the number of subdivisions for segments included in the right part of the scalebar (only used...
double labelBarSpace() const
Returns the spacing (in millimeters) between labels and 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.
QgsLineSymbol * divisionLineSymbol() const
Returns the line symbol used to render the scalebar divisions (only used for some scalebar types).
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.
@ TicksUp
Render ticks above line.
@ TicksMiddle
Render ticks crossing line.
@ TicksDown
Render ticks below line.
Flags flags() const override
Returns the scalebar rendering flags, which dictates the renderer's behavior.
QString visibleName() const override
Returns the user friendly, translated name for the renderer.
int sortKey() const override
Returns a sorting key value, where renderers with a lower sort key will be shown earlier in lists.
QgsTicksScaleBarRenderer(TickPosition position=TicksMiddle)
Constructor for QgsTicksScaleBarRenderer.
void draw(QgsRenderContext &context, const QgsScaleBarSettings &settings, const QgsScaleBarRenderer::ScaleBarContext &scaleContext) const override
Draws the scalebar using the specified settings and scaleContext to a destination render context.
QString id() const override
Returns the unique ID for this renderer.
QgsTicksScaleBarRenderer * clone() const override
Returns a clone of the renderer.
Contains parameters regarding scalebar calculations.
double segmentWidth
The width, in millimeters, of each individual segment drawn.