QGIS API Documentation 3.43.0-Master (4da382ed187)
qgslegendsettings.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgslegendsettings.cpp
3 --------------------------------------
4 Date : July 2014
5 Copyright : (C) 2014 by Martin Dobias
6 Email : wonder dot sk at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#include "qgslegendsettings.h"
18#include "qgsexpression.h"
19#include "qgsrendercontext.h"
20
21#include <QPainter>
22
24 : mSymbolSize( 7, 4 )
25 , mWmsLegendSize( 50, 25 )
26 , mRasterStrokeColor( Qt::black )
27{
28 mStyleMap.resize( static_cast< int >( Qgis::LegendComponent::SymbolLabel ) + 1 );
29
38
40 f.setSize( 16.0 );
42 // these default line heights are not ideal, but needed to maintain api
43 f.setLineHeight( 1.1 );
46
48 f.setSize( 14.0 );
50 f.setLineHeight( 1.1 );
53
55 f.setSize( 12.0 );
57 f.setLineHeight( 1.1 );
60
62 f.setSize( 12.0 );
64 f.setLineHeight( 1.1 );
67}
68
76
81
89
94
100
102{
103 // line spacing *was* a fixed amount (in mm) added between each line of text.
104 mLineSpacing = s;
105
106 QgsTextFormat f = rstyle( Qgis::LegendComponent::Title ).textFormat();
107 // assume font sizes in points, since that was what we always had from before this method was deprecated
108 f.setLineHeight( f.size() * 0.352778 + s );
110 rstyle( Qgis::LegendComponent::Title ).setTextFormat( f );
111
112 f = rstyle( Qgis::LegendComponent::Group ).textFormat();
113 f.setLineHeight( f.size() * 0.352778 + s );
115 rstyle( Qgis::LegendComponent::Group ).setTextFormat( f );
116
117 f = rstyle( Qgis::LegendComponent::Subgroup ).textFormat();
118 f.setLineHeight( f.size() * 0.352778 + s );
120 rstyle( Qgis::LegendComponent::Subgroup ).setTextFormat( f );
121
122 f = rstyle( Qgis::LegendComponent::SymbolLabel ).textFormat();
123 f.setLineHeight( f.size() * 0.352778 + s );
125 rstyle( Qgis::LegendComponent::SymbolLabel ).setTextFormat( f );
126}
127
129{
130 return mMmPerMapUnit;
131}
132
133void QgsLegendSettings::setMmPerMapUnit( double mmPerMapUnit )
134{
135 mMmPerMapUnit = mmPerMapUnit;
136}
137
139{
140 return mUseAdvancedEffects;
141}
142
144{
145 mUseAdvancedEffects = use;
146}
147
149{
150 return mMapScale;
151}
152
154{
155 mMapScale = scale;
156}
157
159{
160 return 1 / ( mMmPerMapUnit * ( mDpi / 25.4 ) );
161}
162
163void QgsLegendSettings::setMapUnitsPerPixel( double mapUnitsPerPixel )
164{
165 mMmPerMapUnit = 1 / mapUnitsPerPixel / ( mDpi / 25.4 );
166}
167
169{
170 return mDpi;
171}
172
174{
175 mDpi = dpi;
176}
177
178QStringList QgsLegendSettings::evaluateItemText( const QString &text, const QgsExpressionContext &context ) const
179{
180 const QString textToRender = QgsExpression::replaceExpressionText( text, &context );
181 return splitStringForWrapping( textToRender );
182}
183
184QStringList QgsLegendSettings::splitStringForWrapping( const QString &stringToSplit ) const
185{
186 const QStringList lines = stringToSplit.split( '\n' );
187
188 // If the string contains nothing then just return the string without splitting.
189 if ( wrapChar().isEmpty() )
190 return lines;
191
192 QStringList res;
193 for ( const QString &line : lines )
194 {
195 res.append( line.split( wrapChar() ) );
196 }
197 return res;
198}
199
200#define FONT_WORKAROUND_SCALE 10 //scale factor for upscaling fontsize and downscaling painter
201
202
203void QgsLegendSettings::drawText( QPainter *p, double x, double y, const QString &text, const QFont &font ) const
204{
205 const QFont textFont = scaledFontPixelSize( font );
206
207 const QgsScopedQPainterState painterState( p );
208 p->setFont( textFont );
209 const double scaleFactor = 1.0 / FONT_WORKAROUND_SCALE;
210 p->scale( scaleFactor, scaleFactor );
211 p->drawText( QPointF( x * FONT_WORKAROUND_SCALE, y * FONT_WORKAROUND_SCALE ), text );
212}
213
214
215void QgsLegendSettings::drawText( QPainter *p, const QRectF &rect, const QString &text, const QFont &font, Qt::AlignmentFlag halignment, Qt::AlignmentFlag valignment, int flags ) const
216{
217 const QFont textFont = scaledFontPixelSize( font );
218
219 const QRectF scaledRect( rect.x() * FONT_WORKAROUND_SCALE, rect.y() * FONT_WORKAROUND_SCALE,
220 rect.width() * FONT_WORKAROUND_SCALE, rect.height() * FONT_WORKAROUND_SCALE );
221
222 const QgsScopedQPainterState painterState( p );
223 p->setFont( textFont );
224 const double scaleFactor = 1.0 / FONT_WORKAROUND_SCALE;
225 p->scale( scaleFactor, scaleFactor );
226 p->drawText( scaledRect, halignment | valignment | flags, text );
227}
228
229
230QFont QgsLegendSettings::scaledFontPixelSize( const QFont &font ) const
231{
232 QFont scaledFont = font;
233 const double pixelSize = pixelFontSize( font.pointSizeF() ) * FONT_WORKAROUND_SCALE + 0.5;
234 scaledFont.setPixelSize( pixelSize );
235 return scaledFont;
236}
237
238double QgsLegendSettings::pixelFontSize( double pointSize ) const
239{
240 return ( pointSize * 0.3527 );
241}
242
243double QgsLegendSettings::textWidthMillimeters( const QFont &font, const QString &text ) const
244{
245 const QFont metricsFont = scaledFontPixelSize( font );
246 const QFontMetricsF fontMetrics( metricsFont );
247 return ( fontMetrics.horizontalAdvance( text ) / FONT_WORKAROUND_SCALE );
248}
249
250double QgsLegendSettings::fontHeightCharacterMM( const QFont &font, QChar c ) const
251{
252 const QFont metricsFont = scaledFontPixelSize( font );
253 const QFontMetricsF fontMetrics( metricsFont );
254 return ( fontMetrics.boundingRect( c ).height() / FONT_WORKAROUND_SCALE );
255}
256
257double QgsLegendSettings::fontAscentMillimeters( const QFont &font ) const
258{
259 const QFont metricsFont = scaledFontPixelSize( font );
260 const QFontMetricsF fontMetrics( metricsFont );
261 return ( fontMetrics.ascent() / FONT_WORKAROUND_SCALE );
262}
263
264double QgsLegendSettings::fontDescentMillimeters( const QFont &font ) const
265{
266 const QFont metricsFont = scaledFontPixelSize( font );
267 const QFontMetricsF fontMetrics( metricsFont );
268 return ( fontMetrics.descent() / FONT_WORKAROUND_SCALE );
269}
270
272{
273 return mJsonRenderFlags;
274}
275
277{
278 mJsonRenderFlags = jsonRenderFlags;
279}
@ Symbol
Symbol icon (excluding label)
@ Group
Legend group title.
@ Subgroup
Legend subgroup title.
@ Title
Legend title.
@ SymbolLabel
Symbol label (excluding icon)
@ Percentage
Percentage of another measurement (e.g., canvas size, feature size)
@ Millimeters
Millimeters.
@ Points
Points (e.g., for font sizes)
QFlags< LegendJsonRenderFlag > LegendJsonRenderFlags
Definition qgis.h:4430
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
static QString replaceExpressionText(const QString &action, const QgsExpressionContext *context, const QgsDistanceArea *distanceArea=nullptr)
This function replaces each expression between [% and %] in the string with the result of its evaluat...
QString wrapChar() const
Returns the string used as a wrapping character.
Q_DECL_DEPRECATED void setFontColor(const QColor &c)
Sets the font color used for legend items.
Q_DECL_DEPRECATED QColor layerFontColor() const
Returns layer font color, defaults to fontColor()
void drawText(QPainter *p, double x, double y, const QString &text, const QFont &font) const
Draws Text.
QgsLegendStyle & rstyle(Qgis::LegendComponent s)
Returns modifiable reference to the style for a legend component.
Q_DECL_DEPRECATED void setMapScale(double scale)
Sets the legend map scale.
Q_DECL_DEPRECATED void setLayerFontColor(const QColor &fontColor)
Sets layer font color to fontColor Overrides fontColor()
Q_DECL_DEPRECATED void setMapUnitsPerPixel(double mapUnitsPerPixel)
Sets the mmPerMapUnit calculated by mapUnitsPerPixel mostly taken from the map settings.
Q_DECL_DEPRECATED void setLineSpacing(double s)
Sets the line spacing to use between lines of legend text.
Q_DECL_DEPRECATED void setMmPerMapUnit(double mmPerMapUnit)
Q_DECL_DEPRECATED void setDpi(int dpi)
void setJsonRenderFlags(const Qgis::LegendJsonRenderFlags &jsonRenderFlags)
Sets the JSON export flags to jsonRenderFlags.
double fontDescentMillimeters(const QFont &font) const
Returns the font descent in Millimeters (considers upscaling and downscaling with FONT_WORKAROUND_SCA...
Q_DECL_DEPRECATED QColor fontColor() const
Returns the font color used for legend items.
double textWidthMillimeters(const QFont &font, const QString &text) const
Returns the font width in millimeters (considers upscaling and downscaling with FONT_WORKAROUND_SCALE...
Q_DECL_DEPRECATED bool useAdvancedEffects() const
double pixelFontSize(double pointSize) const
Calculates font to from point size to pixel size.
double fontHeightCharacterMM(const QFont &font, QChar c) const
Returns the font height of a character in millimeters.
Q_DECL_DEPRECATED void setUseAdvancedEffects(bool use)
void updateDataDefinedProperties(QgsRenderContext &context)
Updates any data-defined properties in the settings, using the specified render context.
double fontAscentMillimeters(const QFont &font) const
Returns the font ascent in Millimeters (considers upscaling and downscaling with FONT_WORKAROUND_SCAL...
QgsLegendStyle style(Qgis::LegendComponent s) const
Returns the style for a legend component.
Q_DECL_DEPRECATED int dpi() const
QFont scaledFontPixelSize(const QFont &font) const
Returns a font where size is in pixel and font size is upscaled with FONT_WORKAROUND_SCALE.
Q_DECL_DEPRECATED double mapUnitsPerPixel() const
Returns the factor of map units per pixel for symbols with size given in map units calculated by dpi ...
Q_DECL_DEPRECATED double mmPerMapUnit() const
QStringList evaluateItemText(const QString &text, const QgsExpressionContext &context) const
Splits a string using the wrap char taking into account handling empty wrap char which means no wrapp...
Qgis::LegendJsonRenderFlags jsonRenderFlags() const
Returns the JSON export flags.
QStringList splitStringForWrapping(const QString &stringToSplt) const
Splits a string using the wrap char taking into account handling empty wrap char which means no wrapp...
Q_DECL_DEPRECATED double mapScale() const
Returns the legend map scale.
void setIndent(double indent)
Sets the indent (in mm) of a group or subgroup.
QgsTextFormat & textFormat()
Returns the text format used for rendering this legend component.
void setMargin(Side side, double margin)
Sets the margin (in mm) for the specified side of the component.
void updateDataDefinedProperties(QgsRenderContext &context)
Updates any data-defined properties in the style, using the specified render context.
@ Left
Left side.
@ Bottom
Bottom side.
void setTextFormat(const QgsTextFormat &format)
Sets the text format used for rendering this legend component.
Contains information about the context of a rendering operation.
Scoped object for saving and restoring a QPainter object's state.
Container for all settings relating to text rendering.
void setColor(const QColor &color)
Sets the color that text will be rendered in.
void setSize(double size)
Sets the size for rendered text.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the size of rendered text.
void setLineHeightUnit(Qgis::RenderUnit unit)
Sets the unit for the line height for text.
double size() const
Returns the size for rendered text.
QColor color() const
Returns the color that text will be rendered in.
void setLineHeight(double height)
Sets the line height for text.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define SIP_DEPRECATED
Definition qgis_sip.h:106
#define FONT_WORKAROUND_SCALE