QGIS API Documentation  3.0.2-Girona (307d082)
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"
17 
18 #include <QPainter>
19 
21  : mTitle( QObject::tr( "Legend" ) )
22  , mFontColor( QColor( 0, 0, 0 ) )
23  , mSymbolSize( 7, 4 )
24  , mWmsLegendSize( 50, 25 )
25  , mRasterStrokeColor( Qt::black )
26 {
33  rstyle( QgsLegendStyle::Title ).rfont().setPointSizeF( 16.0 );
34  rstyle( QgsLegendStyle::Group ).rfont().setPointSizeF( 14.0 );
35  rstyle( QgsLegendStyle::Subgroup ).rfont().setPointSizeF( 12.0 );
36  rstyle( QgsLegendStyle::SymbolLabel ).rfont().setPointSizeF( 12.0 );
37 }
38 
39 QStringList QgsLegendSettings::splitStringForWrapping( const QString &stringToSplt ) const
40 {
41  QStringList list;
42  // If the string contains nothing then just return the string without spliting.
43  if ( wrapChar().count() == 0 )
44  list << stringToSplt;
45  else
46  list = stringToSplt.split( wrapChar() );
47  return list;
48 }
49 
50 #define FONT_WORKAROUND_SCALE 10 //scale factor for upscaling fontsize and downscaling painter
51 
52 
53 void QgsLegendSettings::drawText( QPainter *p, double x, double y, const QString &text, const QFont &font ) const
54 {
55  QFont textFont = scaledFontPixelSize( font );
56 
57  p->save();
58  p->setFont( textFont );
59  double scaleFactor = 1.0 / FONT_WORKAROUND_SCALE;
60  p->scale( scaleFactor, scaleFactor );
61  p->drawText( QPointF( x * FONT_WORKAROUND_SCALE, y * FONT_WORKAROUND_SCALE ), text );
62  p->restore();
63 }
64 
65 
66 void QgsLegendSettings::drawText( QPainter *p, const QRectF &rect, const QString &text, const QFont &font, Qt::AlignmentFlag halignment, Qt::AlignmentFlag valignment, int flags ) const
67 {
68  QFont textFont = scaledFontPixelSize( font );
69 
70  QRectF scaledRect( rect.x() * FONT_WORKAROUND_SCALE, rect.y() * FONT_WORKAROUND_SCALE,
71  rect.width() * FONT_WORKAROUND_SCALE, rect.height() * FONT_WORKAROUND_SCALE );
72 
73  p->save();
74  p->setFont( textFont );
75  double scaleFactor = 1.0 / FONT_WORKAROUND_SCALE;
76  p->scale( scaleFactor, scaleFactor );
77  p->drawText( scaledRect, halignment | valignment | flags, text );
78  p->restore();
79 }
80 
81 
82 QFont QgsLegendSettings::scaledFontPixelSize( const QFont &font ) const
83 {
84  QFont scaledFont = font;
85  double pixelSize = pixelFontSize( font.pointSizeF() ) * FONT_WORKAROUND_SCALE + 0.5;
86  scaledFont.setPixelSize( pixelSize );
87  return scaledFont;
88 }
89 
90 double QgsLegendSettings::pixelFontSize( double pointSize ) const
91 {
92  return ( pointSize * 0.3527 );
93 }
94 
95 double QgsLegendSettings::textWidthMillimeters( const QFont &font, const QString &text ) const
96 {
97  QFont metricsFont = scaledFontPixelSize( font );
98  QFontMetricsF fontMetrics( metricsFont );
99  return ( fontMetrics.width( text ) / FONT_WORKAROUND_SCALE );
100 }
101 
102 double QgsLegendSettings::fontHeightCharacterMM( const QFont &font, QChar c ) const
103 {
104  QFont metricsFont = scaledFontPixelSize( font );
105  QFontMetricsF fontMetrics( metricsFont );
106  return ( fontMetrics.boundingRect( c ).height() / FONT_WORKAROUND_SCALE );
107 }
108 
109 double QgsLegendSettings::fontAscentMillimeters( const QFont &font ) const
110 {
111  QFont metricsFont = scaledFontPixelSize( font );
112  QFontMetricsF fontMetrics( metricsFont );
113  return ( fontMetrics.ascent() / FONT_WORKAROUND_SCALE );
114 }
115 
116 double QgsLegendSettings::fontDescentMillimeters( const QFont &font ) const
117 {
118  QFont metricsFont = scaledFontPixelSize( font );
119  QFontMetricsF fontMetrics( metricsFont );
120  return ( fontMetrics.descent() / FONT_WORKAROUND_SCALE );
121 }
122 
double pixelFontSize(double pointSize) const
Calculates font to from point size to pixel size.
void drawText(QPainter *p, double x, double y, const QString &text, const QFont &font) const
Draws Text.
double fontAscentMillimeters(const QFont &font) const
Returns the font ascent in Millimeters (considers upscaling and downscaling with FONT_WORKAROUND_SCAL...
QString wrapChar() const
QStringList splitStringForWrapping(const QString &stringToSplt) const
Splits a string using the wrap char taking into account handling empty wrap char which means no wrapp...
double textWidthMillimeters(const QFont &font, const QString &text) const
Returns the font width in millimeters (considers upscaling and downscaling with FONT_WORKAROUND_SCALE...
QFont scaledFontPixelSize(const QFont &font) const
Returns a font where size is in pixel and font size is upscaled with FONT_WORKAROUND_SCALE.
Symbol without label.
void setMargin(Side side, double margin)
double fontHeightCharacterMM(const QFont &font, QChar c) const
Returns the font height of a character in millimeters.
QgsLegendStyle & rstyle(QgsLegendStyle::Style s)
Returns reference to modifiable style.
#define FONT_WORKAROUND_SCALE
QFont & rfont()
Modifiable reference to font.
double fontDescentMillimeters(const QFont &font) const
Returns the font descent in Millimeters (considers upscaling and downscaling with FONT_WORKAROUND_SCA...