QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgssingleboxscalebarrenderer.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgssingleboxscalebarrenderer.cpp
3  --------------------------------
4  begin : June 2008
5  copyright : (C) 2008 by Marco Hugentobler
6  email : [email protected]
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 #include "qgsscalebarsettings.h"
19 #include "qgslayoututils.h"
20 #include <QList>
21 #include <QPainter>
22 
23 void QgsSingleBoxScaleBarRenderer::draw( QgsRenderContext &context, const QgsScaleBarSettings &settings, const ScaleBarContext &scaleContext ) const
24 {
25  if ( !context.painter() )
26  {
27  return;
28  }
29  QPainter *painter = context.painter();
30 
31  double scaledLabelBarSpace = context.convertToPainterUnits( settings.labelBarSpace(), QgsUnitTypes::RenderMillimeters );
32  double scaledBoxContentSpace = context.convertToPainterUnits( settings.boxContentSpace(), QgsUnitTypes::RenderMillimeters );
33  QFontMetricsF fontMetrics = QgsTextRenderer::fontMetrics( context, settings.textFormat() );
34  double barTopPosition = fontMetrics.ascent() + scaledLabelBarSpace + scaledBoxContentSpace;
35 
36  painter->save();
37  if ( context.flags() & QgsRenderContext::Antialiasing )
38  painter->setRenderHint( QPainter::Antialiasing, true );
39 
40  QPen pen = settings.pen();
41  pen.setWidthF( context.convertToPainterUnits( pen.widthF(), QgsUnitTypes::RenderMillimeters ) );
42  painter->setPen( pen );
43 
44  bool useColor = true; //alternate brush color/white
45  double xOffset = firstLabelXOffset( settings, context );
46 
47  QList<double> positions = segmentPositions( scaleContext, settings );
48  QList<double> widths = segmentWidths( scaleContext, settings );
49 
50  for ( int i = 0; i < positions.size(); ++i )
51  {
52  if ( useColor ) //alternating colors
53  {
54  painter->setBrush( settings.brush() );
55  }
56  else //secondary color
57  {
58  painter->setBrush( settings.brush2() );
59  }
60 
61  QRectF segmentRect( context.convertToPainterUnits( positions.at( i ), QgsUnitTypes::RenderMillimeters ) + xOffset,
62  barTopPosition, context.convertToPainterUnits( widths.at( i ), QgsUnitTypes::RenderMillimeters ),
64  painter->drawRect( segmentRect );
65  useColor = !useColor;
66  }
67 
68  painter->restore();
69 
70  //draw labels using the default method
71  drawDefaultLabels( context, settings, scaleContext );
72 }
73 
74 
75 
double labelBarSpace() const
Returns the spacing (in millimeters) between labels and the scalebar.
Use antialiasing while drawing.
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.
static QFontMetricsF fontMetrics(QgsRenderContext &context, const QgsTextFormat &format)
Returns the font metrics for the given text format, when rendered in the specified render context...
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. ...
Contains information about the context of a rendering operation.
double height() const
Returns the scalebar height (in millimeters).
QPainter * painter()
Returns the destination QPainter for the render operation.
QBrush brush() const
Returns the primary brush used for filling the scalebar.
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...
QBrush brush2() const
Returns the secondary brush for the scalebar.
QPen pen() const
Returns the pen used for drawing outlines in the scalebar.
Flags flags() const
Returns combination of flags used for rendering.
Q_DECL_DEPRECATED double firstLabelXOffset(const QgsScaleBarSettings &settings) const
Returns the x-offset (in millimeters) used for the first label in the scalebar.
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...
QList< double > segmentWidths(const QgsScaleBarRenderer::ScaleBarContext &scaleContext, const QgsScaleBarSettings &settings) const
Returns a list of widths of each segment of the scalebar.
The QgsScaleBarSettings class stores the appearance and layout settings for scalebar drawing with Qgs...
Contains parameters regarding scalebar calculations.