29 QPainter *painter = context.
painter();
35 painter->setRenderHint( QPainter::Antialiasing,
true );
37 QPen pen = settings.
pen();
39 painter->setPen( pen );
45 QList<double> widths =
segmentWidths( scaleContext, settings );
47 for (
int i = 0; i < positions.size(); ++i )
51 painter->setBrush( settings.
brush() );
55 painter->setBrush( settings.
brush2() );
61 painter->drawRect( segmentRect );
QBrush brush() const
Returns the primary brush used for filling the scalebar.
QPen pen() const
Returns the pen used for drawing outlines in the scalebar.
Use antialiasing while drawing.
Flags flags() const
Return combination of flags used for rendering.
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).
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.
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...
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...
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.
The QgsScaleBarSettings class stores the appearance and layout settings for scalebar drawing with Qgs...
Contains parameters regarding scalebar calculations.