Branch data Line data Source code
1 : : /***************************************************************************
2 : : qgslayoutitemmapgrid.cpp
3 : : ----------------------
4 : : begin : October 2017
5 : : copyright : (C) 2017 by Marco Hugentobler, Nyall Dawson
6 : : email : marco dot hugentobler at sourcepole dot ch
7 : : ***************************************************************************/
8 : :
9 : : /***************************************************************************
10 : : * *
11 : : * This program is free software; you can redistribute it and/or modify *
12 : : * it under the terms of the GNU General Public License as published by *
13 : : * the Free Software Foundation; either version 2 of the License, or *
14 : : * (at your option) any later version. *
15 : : * *
16 : : ***************************************************************************/
17 : :
18 : : #include "qgsmessagelog.h"
19 : : #include "qgslayoutitemmapgrid.h"
20 : : #include "qgslayoututils.h"
21 : : #include "qgsclipper.h"
22 : : #include "qgsgeometry.h"
23 : : #include "qgslayoutitemmap.h"
24 : : #include "qgslayout.h"
25 : : #include "qgsmapsettings.h"
26 : : #include "qgspathresolver.h"
27 : : #include "qgsreadwritecontext.h"
28 : : #include "qgsrendercontext.h"
29 : : #include "qgssymbollayerutils.h"
30 : : #include "qgssymbol.h"
31 : : #include "qgscoordinatereferencesystem.h"
32 : : #include "qgslogger.h"
33 : : #include "qgsfontutils.h"
34 : : #include "qgsexpressioncontext.h"
35 : : #include "qgsexception.h"
36 : : #include "qgssettings.h"
37 : : #include "qgscoordinateformatter.h"
38 : : #include "qgsstyleentityvisitor.h"
39 : : #include "qgstextrenderer.h"
40 : :
41 : : #include <QVector2D>
42 : : #include <math.h>
43 : :
44 : : #include <QPainter>
45 : : #include <QPen>
46 : :
47 : : #define MAX_GRID_LINES 1000 //maximum number of horizontal or vertical grid lines to draw
48 : :
49 : 0 : QgsLayoutItemMapGridStack::QgsLayoutItemMapGridStack( QgsLayoutItemMap *map )
50 : 0 : : QgsLayoutItemMapItemStack( map )
51 : 0 : {
52 : :
53 : 0 : }
54 : :
55 : 0 : void QgsLayoutItemMapGridStack::addGrid( QgsLayoutItemMapGrid *grid )
56 : : {
57 : 0 : QgsLayoutItemMapItemStack::addItem( grid );
58 : 0 : }
59 : :
60 : 0 : void QgsLayoutItemMapGridStack::removeGrid( const QString &gridId )
61 : : {
62 : 0 : QgsLayoutItemMapItemStack::removeItem( gridId );
63 : 0 : }
64 : :
65 : 0 : void QgsLayoutItemMapGridStack::moveGridUp( const QString &gridId )
66 : : {
67 : 0 : QgsLayoutItemMapItemStack::moveItemUp( gridId );
68 : 0 : }
69 : :
70 : 0 : void QgsLayoutItemMapGridStack::moveGridDown( const QString &gridId )
71 : : {
72 : 0 : QgsLayoutItemMapItemStack::moveItemDown( gridId );
73 : 0 : }
74 : :
75 : 0 : QgsLayoutItemMapGrid *QgsLayoutItemMapGridStack::grid( const QString &gridId ) const
76 : : {
77 : 0 : QgsLayoutItemMapItem *item = QgsLayoutItemMapItemStack::item( gridId );
78 : 0 : return qobject_cast<QgsLayoutItemMapGrid *>( item );
79 : : }
80 : :
81 : 0 : QgsLayoutItemMapGrid *QgsLayoutItemMapGridStack::grid( const int index ) const
82 : : {
83 : 0 : QgsLayoutItemMapItem *item = QgsLayoutItemMapItemStack::item( index );
84 : 0 : return qobject_cast<QgsLayoutItemMapGrid *>( item );
85 : : }
86 : :
87 : 0 : QList<QgsLayoutItemMapGrid *> QgsLayoutItemMapGridStack::asList() const
88 : : {
89 : 0 : QList< QgsLayoutItemMapGrid * > list;
90 : 0 : for ( QgsLayoutItemMapItem *item : mItems )
91 : : {
92 : 0 : if ( QgsLayoutItemMapGrid *grid = qobject_cast<QgsLayoutItemMapGrid *>( item ) )
93 : : {
94 : 0 : list.append( grid );
95 : 0 : }
96 : : }
97 : 0 : return list;
98 : 0 : }
99 : :
100 : 0 : QgsLayoutItemMapGrid &QgsLayoutItemMapGridStack::operator[]( int idx )
101 : : {
102 : 0 : QgsLayoutItemMapItem *item = mItems.at( idx );
103 : 0 : QgsLayoutItemMapGrid *grid = qobject_cast<QgsLayoutItemMapGrid *>( item );
104 : 0 : return *grid;
105 : : }
106 : :
107 : 0 : bool QgsLayoutItemMapGridStack::readXml( const QDomElement &elem, const QDomDocument &doc, const QgsReadWriteContext &context )
108 : : {
109 : 0 : removeItems();
110 : :
111 : : //read grid stack
112 : 0 : QDomNodeList mapGridNodeList = elem.elementsByTagName( QStringLiteral( "ComposerMapGrid" ) );
113 : 0 : for ( int i = 0; i < mapGridNodeList.size(); ++i )
114 : : {
115 : 0 : QDomElement mapGridElem = mapGridNodeList.at( i ).toElement();
116 : 0 : QgsLayoutItemMapGrid *mapGrid = new QgsLayoutItemMapGrid( mapGridElem.attribute( QStringLiteral( "name" ) ), mMap );
117 : 0 : mapGrid->readXml( mapGridElem, doc, context );
118 : 0 : mItems.append( mapGrid );
119 : 0 : }
120 : :
121 : : return true;
122 : 0 : }
123 : :
124 : 0 : double QgsLayoutItemMapGridStack::maxGridExtension() const
125 : : {
126 : 0 : double top = 0.0;
127 : 0 : double right = 0.0;
128 : 0 : double bottom = 0.0;
129 : 0 : double left = 0.0;
130 : 0 : calculateMaxGridExtension( top, right, bottom, left );
131 : 0 : return std::max( std::max( std::max( top, right ), bottom ), left );
132 : : }
133 : :
134 : 0 : void QgsLayoutItemMapGridStack::calculateMaxGridExtension( double &top, double &right, double &bottom, double &left ) const
135 : : {
136 : 0 : top = 0.0;
137 : 0 : right = 0.0;
138 : 0 : bottom = 0.0;
139 : 0 : left = 0.0;
140 : :
141 : 0 : for ( QgsLayoutItemMapItem *item : mItems )
142 : : {
143 : 0 : if ( QgsLayoutItemMapGrid *grid = qobject_cast<QgsLayoutItemMapGrid *>( item ) )
144 : : {
145 : 0 : double gridTop = 0.0;
146 : 0 : double gridRight = 0.0;
147 : 0 : double gridBottom = 0.0;
148 : 0 : double gridLeft = 0.0;
149 : 0 : grid->calculateMaxExtension( gridTop, gridRight, gridBottom, gridLeft );
150 : 0 : top = std::max( top, gridTop );
151 : 0 : right = std::max( right, gridRight );
152 : 0 : bottom = std::max( bottom, gridBottom );
153 : 0 : left = std::max( left, gridLeft );
154 : 0 : }
155 : : }
156 : 0 : }
157 : :
158 : :
159 : : //
160 : : // QgsLayoutItemMapGrid
161 : : //
162 : :
163 : 0 : QVector2D borderToVector2D( QgsLayoutItemMapGrid::BorderSide border )
164 : : {
165 : : // returns a border as a vector2D for vector arithmetic
166 : 0 : switch ( border )
167 : : {
168 : : case QgsLayoutItemMapGrid::Left:
169 : 0 : return QVector2D( 0, 1 );
170 : : case QgsLayoutItemMapGrid::Top:
171 : 0 : return QVector2D( -1, 0 );
172 : : case QgsLayoutItemMapGrid::Right:
173 : 0 : return QVector2D( 0, -1 );
174 : : case QgsLayoutItemMapGrid::Bottom:
175 : 0 : return QVector2D( 1, 0 );
176 : : }
177 : 0 : return QVector2D();
178 : 0 : }
179 : 0 : QVector2D borderToNormal2D( QgsLayoutItemMapGrid::BorderSide border )
180 : : {
181 : : // returns a border normal (towards center) as a vector2D for vector arithmetic
182 : 0 : QVector2D borderVector = borderToVector2D( border );
183 : 0 : return QVector2D( borderVector.y(), -borderVector.x() );
184 : : }
185 : :
186 : 0 : QgsLayoutItemMapGrid::QgsLayoutItemMapGrid( const QString &name, QgsLayoutItemMap *map )
187 : 0 : : QgsLayoutItemMapItem( name, map )
188 : 0 : , mGridFrameSides( QgsLayoutItemMapGrid::FrameLeft | QgsLayoutItemMapGrid::FrameRight |
189 : 0 : QgsLayoutItemMapGrid::FrameTop | QgsLayoutItemMapGrid::FrameBottom )
190 : 0 : {
191 : : //get default layout font from settings
192 : 0 : QgsSettings settings;
193 : 0 : QString defaultFontString = settings.value( QStringLiteral( "LayoutDesigner/defaultFont" ), QVariant(), QgsSettings::Gui ).toString();
194 : 0 : if ( !defaultFontString.isEmpty() )
195 : : {
196 : 0 : QFont font;
197 : 0 : font.setFamily( defaultFontString );
198 : 0 : mAnnotationFormat.setFont( font );
199 : 0 : }
200 : :
201 : 0 : createDefaultGridLineSymbol();
202 : 0 : createDefaultGridMarkerSymbol();
203 : :
204 : 0 : connect( mMap, &QgsLayoutItemMap::extentChanged, this, &QgsLayoutItemMapGrid::refreshDataDefinedProperties );
205 : 0 : connect( mMap, &QgsLayoutItemMap::mapRotationChanged, this, &QgsLayoutItemMapGrid::refreshDataDefinedProperties );
206 : 0 : connect( mMap, &QgsLayoutItemMap::crsChanged, this, [ = ]
207 : : {
208 : 0 : if ( !mCRS.isValid() )
209 : 0 : emit crsChanged();
210 : 0 : } );
211 : 0 : }
212 : :
213 : 0 : void QgsLayoutItemMapGrid::createDefaultGridLineSymbol()
214 : : {
215 : 0 : QVariantMap properties;
216 : 0 : properties.insert( QStringLiteral( "color" ), QStringLiteral( "0,0,0,255" ) );
217 : 0 : properties.insert( QStringLiteral( "width" ), QStringLiteral( "0.3" ) );
218 : 0 : properties.insert( QStringLiteral( "capstyle" ), QStringLiteral( "flat" ) );
219 : 0 : mGridLineSymbol.reset( QgsLineSymbol::createSimple( properties ) );
220 : 0 : }
221 : :
222 : 0 : void QgsLayoutItemMapGrid::createDefaultGridMarkerSymbol()
223 : : {
224 : 0 : QVariantMap properties;
225 : 0 : properties.insert( QStringLiteral( "name" ), QStringLiteral( "circle" ) );
226 : 0 : properties.insert( QStringLiteral( "size" ), QStringLiteral( "2.0" ) );
227 : 0 : properties.insert( QStringLiteral( "color" ), QStringLiteral( "0,0,0,255" ) );
228 : 0 : mGridMarkerSymbol.reset( QgsMarkerSymbol::createSimple( properties ) );
229 : 0 : }
230 : :
231 : 0 : void QgsLayoutItemMapGrid::setGridLineWidth( const double width )
232 : : {
233 : 0 : if ( mGridLineSymbol )
234 : : {
235 : 0 : mGridLineSymbol->setWidth( width );
236 : 0 : }
237 : 0 : }
238 : :
239 : 0 : void QgsLayoutItemMapGrid::setGridLineColor( const QColor &c )
240 : : {
241 : 0 : if ( mGridLineSymbol )
242 : : {
243 : 0 : mGridLineSymbol->setColor( c );
244 : 0 : }
245 : 0 : }
246 : :
247 : 0 : bool QgsLayoutItemMapGrid::writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const
248 : : {
249 : 0 : if ( elem.isNull() )
250 : : {
251 : 0 : return false;
252 : : }
253 : :
254 : 0 : QDomElement mapGridElem = doc.createElement( QStringLiteral( "ComposerMapGrid" ) );
255 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridStyle" ), mGridStyle );
256 : 0 : mapGridElem.setAttribute( QStringLiteral( "intervalX" ), qgsDoubleToString( mGridIntervalX ) );
257 : 0 : mapGridElem.setAttribute( QStringLiteral( "intervalY" ), qgsDoubleToString( mGridIntervalY ) );
258 : 0 : mapGridElem.setAttribute( QStringLiteral( "offsetX" ), qgsDoubleToString( mGridOffsetX ) );
259 : 0 : mapGridElem.setAttribute( QStringLiteral( "offsetY" ), qgsDoubleToString( mGridOffsetY ) );
260 : 0 : mapGridElem.setAttribute( QStringLiteral( "crossLength" ), qgsDoubleToString( mCrossLength ) );
261 : :
262 : 0 : QDomElement lineStyleElem = doc.createElement( QStringLiteral( "lineStyle" ) );
263 : 0 : QDomElement gridLineStyleElem = QgsSymbolLayerUtils::saveSymbol( QString(), mGridLineSymbol.get(), doc, context );
264 : 0 : lineStyleElem.appendChild( gridLineStyleElem );
265 : 0 : mapGridElem.appendChild( lineStyleElem );
266 : :
267 : 0 : QDomElement markerStyleElem = doc.createElement( QStringLiteral( "markerStyle" ) );
268 : 0 : QDomElement gridMarkerStyleElem = QgsSymbolLayerUtils::saveSymbol( QString(), mGridMarkerSymbol.get(), doc, context );
269 : 0 : markerStyleElem.appendChild( gridMarkerStyleElem );
270 : 0 : mapGridElem.appendChild( markerStyleElem );
271 : :
272 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridFrameStyle" ), mGridFrameStyle );
273 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridFrameSideFlags" ), mGridFrameSides );
274 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridFrameWidth" ), qgsDoubleToString( mGridFrameWidth ) );
275 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridFrameMargin" ), qgsDoubleToString( mGridFrameMargin ) );
276 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridFramePenThickness" ), qgsDoubleToString( mGridFramePenThickness ) );
277 : 0 : mapGridElem.setAttribute( QStringLiteral( "gridFramePenColor" ), QgsSymbolLayerUtils::encodeColor( mGridFramePenColor ) );
278 : 0 : mapGridElem.setAttribute( QStringLiteral( "frameFillColor1" ), QgsSymbolLayerUtils::encodeColor( mGridFrameFillColor1 ) );
279 : 0 : mapGridElem.setAttribute( QStringLiteral( "frameFillColor2" ), QgsSymbolLayerUtils::encodeColor( mGridFrameFillColor2 ) );
280 : 0 : mapGridElem.setAttribute( QStringLiteral( "leftFrameDivisions" ), mLeftFrameDivisions );
281 : 0 : mapGridElem.setAttribute( QStringLiteral( "rightFrameDivisions" ), mRightFrameDivisions );
282 : 0 : mapGridElem.setAttribute( QStringLiteral( "topFrameDivisions" ), mTopFrameDivisions );
283 : 0 : mapGridElem.setAttribute( QStringLiteral( "bottomFrameDivisions" ), mBottomFrameDivisions );
284 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedTicksLengthMode" ), mRotatedTicksLengthMode );
285 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedTicksEnabled" ), mRotatedTicksEnabled );
286 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedTicksMinimumAngle" ), QString::number( mRotatedTicksMinimumAngle ) );
287 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedTicksMarginToCorner" ), QString::number( mRotatedTicksMarginToCorner ) );
288 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedAnnotationsLengthMode" ), mRotatedAnnotationsLengthMode );
289 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedAnnotationsEnabled" ), mRotatedAnnotationsEnabled );
290 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedAnnotationsMinimumAngle" ), QString::number( mRotatedAnnotationsMinimumAngle ) );
291 : 0 : mapGridElem.setAttribute( QStringLiteral( "rotatedAnnotationsMarginToCorner" ), QString::number( mRotatedAnnotationsMarginToCorner ) );
292 : 0 : if ( mCRS.isValid() )
293 : : {
294 : 0 : mCRS.writeXml( mapGridElem, doc );
295 : 0 : }
296 : :
297 : 0 : mapGridElem.setAttribute( QStringLiteral( "annotationFormat" ), mGridAnnotationFormat );
298 : 0 : mapGridElem.setAttribute( QStringLiteral( "showAnnotation" ), mShowGridAnnotation );
299 : 0 : mapGridElem.setAttribute( QStringLiteral( "annotationExpression" ), mGridAnnotationExpressionString );
300 : 0 : mapGridElem.setAttribute( QStringLiteral( "leftAnnotationDisplay" ), mLeftGridAnnotationDisplay );
301 : 0 : mapGridElem.setAttribute( QStringLiteral( "rightAnnotationDisplay" ), mRightGridAnnotationDisplay );
302 : 0 : mapGridElem.setAttribute( QStringLiteral( "topAnnotationDisplay" ), mTopGridAnnotationDisplay );
303 : 0 : mapGridElem.setAttribute( QStringLiteral( "bottomAnnotationDisplay" ), mBottomGridAnnotationDisplay );
304 : 0 : mapGridElem.setAttribute( QStringLiteral( "leftAnnotationPosition" ), mLeftGridAnnotationPosition );
305 : 0 : mapGridElem.setAttribute( QStringLiteral( "rightAnnotationPosition" ), mRightGridAnnotationPosition );
306 : 0 : mapGridElem.setAttribute( QStringLiteral( "topAnnotationPosition" ), mTopGridAnnotationPosition );
307 : 0 : mapGridElem.setAttribute( QStringLiteral( "bottomAnnotationPosition" ), mBottomGridAnnotationPosition );
308 : 0 : mapGridElem.setAttribute( QStringLiteral( "leftAnnotationDirection" ), mLeftGridAnnotationDirection );
309 : 0 : mapGridElem.setAttribute( QStringLiteral( "rightAnnotationDirection" ), mRightGridAnnotationDirection );
310 : 0 : mapGridElem.setAttribute( QStringLiteral( "topAnnotationDirection" ), mTopGridAnnotationDirection );
311 : 0 : mapGridElem.setAttribute( QStringLiteral( "bottomAnnotationDirection" ), mBottomGridAnnotationDirection );
312 : 0 : mapGridElem.setAttribute( QStringLiteral( "frameAnnotationDistance" ), QString::number( mAnnotationFrameDistance ) );
313 : 0 : mapGridElem.appendChild( mAnnotationFormat.writeXml( doc, context ) );
314 : 0 : mapGridElem.setAttribute( QStringLiteral( "annotationPrecision" ), mGridAnnotationPrecision );
315 : 0 : mapGridElem.setAttribute( QStringLiteral( "unit" ), mGridUnit );
316 : 0 : mapGridElem.setAttribute( QStringLiteral( "blendMode" ), mBlendMode );
317 : 0 : mapGridElem.setAttribute( QStringLiteral( "minimumIntervalWidth" ), QString::number( mMinimumIntervalWidth ) );
318 : 0 : mapGridElem.setAttribute( QStringLiteral( "maximumIntervalWidth" ), QString::number( mMaximumIntervalWidth ) );
319 : :
320 : 0 : bool ok = QgsLayoutItemMapItem::writeXml( mapGridElem, doc, context );
321 : 0 : elem.appendChild( mapGridElem );
322 : 0 : return ok;
323 : 0 : }
324 : :
325 : 0 : bool QgsLayoutItemMapGrid::readXml( const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context )
326 : : {
327 : 0 : Q_UNUSED( doc )
328 : 0 : if ( itemElem.isNull() )
329 : : {
330 : 0 : return false;
331 : : }
332 : :
333 : 0 : bool ok = QgsLayoutItemMapItem::readXml( itemElem, doc, context );
334 : :
335 : : //grid
336 : 0 : mGridStyle = QgsLayoutItemMapGrid::GridStyle( itemElem.attribute( QStringLiteral( "gridStyle" ), QStringLiteral( "0" ) ).toInt() );
337 : 0 : mGridIntervalX = itemElem.attribute( QStringLiteral( "intervalX" ), QStringLiteral( "0" ) ).toDouble();
338 : 0 : mGridIntervalY = itemElem.attribute( QStringLiteral( "intervalY" ), QStringLiteral( "0" ) ).toDouble();
339 : 0 : mGridOffsetX = itemElem.attribute( QStringLiteral( "offsetX" ), QStringLiteral( "0" ) ).toDouble();
340 : 0 : mGridOffsetY = itemElem.attribute( QStringLiteral( "offsetY" ), QStringLiteral( "0" ) ).toDouble();
341 : 0 : mCrossLength = itemElem.attribute( QStringLiteral( "crossLength" ), QStringLiteral( "3" ) ).toDouble();
342 : 0 : mGridFrameStyle = static_cast< QgsLayoutItemMapGrid::FrameStyle >( itemElem.attribute( QStringLiteral( "gridFrameStyle" ), QStringLiteral( "0" ) ).toInt() );
343 : 0 : mGridFrameSides = static_cast< QgsLayoutItemMapGrid::FrameSideFlags >( itemElem.attribute( QStringLiteral( "gridFrameSideFlags" ), QStringLiteral( "15" ) ).toInt() );
344 : 0 : mGridFrameWidth = itemElem.attribute( QStringLiteral( "gridFrameWidth" ), QStringLiteral( "2.0" ) ).toDouble();
345 : 0 : mGridFrameMargin = itemElem.attribute( QStringLiteral( "gridFrameMargin" ), QStringLiteral( "0.0" ) ).toDouble();
346 : 0 : mGridFramePenThickness = itemElem.attribute( QStringLiteral( "gridFramePenThickness" ), QStringLiteral( "0.3" ) ).toDouble();
347 : 0 : mGridFramePenColor = QgsSymbolLayerUtils::decodeColor( itemElem.attribute( QStringLiteral( "gridFramePenColor" ), QStringLiteral( "0,0,0" ) ) );
348 : 0 : mGridFrameFillColor1 = QgsSymbolLayerUtils::decodeColor( itemElem.attribute( QStringLiteral( "frameFillColor1" ), QStringLiteral( "255,255,255,255" ) ) );
349 : 0 : mGridFrameFillColor2 = QgsSymbolLayerUtils::decodeColor( itemElem.attribute( QStringLiteral( "frameFillColor2" ), QStringLiteral( "0,0,0,255" ) ) );
350 : 0 : mLeftFrameDivisions = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "leftFrameDivisions" ), QStringLiteral( "0" ) ).toInt() );
351 : 0 : mRightFrameDivisions = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "rightFrameDivisions" ), QStringLiteral( "0" ) ).toInt() );
352 : 0 : mTopFrameDivisions = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "topFrameDivisions" ), QStringLiteral( "0" ) ).toInt() );
353 : 0 : mBottomFrameDivisions = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "bottomFrameDivisions" ), QStringLiteral( "0" ) ).toInt() );
354 : 0 : mRotatedTicksLengthMode = TickLengthMode( itemElem.attribute( QStringLiteral( "rotatedTicksLengthMode" ), QStringLiteral( "0" ) ).toInt() );
355 : 0 : mRotatedTicksEnabled = itemElem.attribute( QStringLiteral( "rotatedTicksEnabled" ), QStringLiteral( "0" ) ) != QLatin1String( "0" );
356 : 0 : mRotatedTicksMinimumAngle = itemElem.attribute( QStringLiteral( "rotatedTicksMinimumAngle" ), QStringLiteral( "0" ) ).toDouble();
357 : 0 : mRotatedTicksMarginToCorner = itemElem.attribute( QStringLiteral( "rotatedTicksMarginToCorner" ), QStringLiteral( "0" ) ).toDouble();
358 : 0 : mRotatedAnnotationsLengthMode = TickLengthMode( itemElem.attribute( QStringLiteral( "rotatedAnnotationsLengthMode" ), QStringLiteral( "0" ) ).toInt() );
359 : 0 : mRotatedAnnotationsEnabled = itemElem.attribute( QStringLiteral( "rotatedAnnotationsEnabled" ), QStringLiteral( "0" ) ) != QLatin1String( "0" );
360 : 0 : mRotatedAnnotationsMinimumAngle = itemElem.attribute( QStringLiteral( "rotatedAnnotationsMinimumAngle" ), QStringLiteral( "0" ) ).toDouble();
361 : 0 : mRotatedAnnotationsMarginToCorner = itemElem.attribute( QStringLiteral( "rotatedAnnotationsMarginToCorner" ), QStringLiteral( "0" ) ).toDouble();
362 : :
363 : 0 : QDomElement lineStyleElem = itemElem.firstChildElement( QStringLiteral( "lineStyle" ) );
364 : 0 : if ( !lineStyleElem.isNull() )
365 : : {
366 : 0 : QDomElement symbolElem = lineStyleElem.firstChildElement( QStringLiteral( "symbol" ) );
367 : 0 : if ( !symbolElem.isNull() )
368 : : {
369 : 0 : mGridLineSymbol.reset( QgsSymbolLayerUtils::loadSymbol<QgsLineSymbol>( symbolElem, context ) );
370 : 0 : }
371 : 0 : }
372 : : else
373 : : {
374 : : //old project file, read penWidth /penColorRed, penColorGreen, penColorBlue
375 : 0 : mGridLineSymbol.reset( QgsLineSymbol::createSimple( QVariantMap() ) );
376 : 0 : mGridLineSymbol->setWidth( itemElem.attribute( QStringLiteral( "penWidth" ), QStringLiteral( "0" ) ).toDouble() );
377 : 0 : mGridLineSymbol->setColor( QColor( itemElem.attribute( QStringLiteral( "penColorRed" ), QStringLiteral( "0" ) ).toInt(),
378 : 0 : itemElem.attribute( QStringLiteral( "penColorGreen" ), QStringLiteral( "0" ) ).toInt(),
379 : 0 : itemElem.attribute( QStringLiteral( "penColorBlue" ), QStringLiteral( "0" ) ).toInt() ) );
380 : : }
381 : :
382 : 0 : QDomElement markerStyleElem = itemElem.firstChildElement( QStringLiteral( "markerStyle" ) );
383 : 0 : if ( !markerStyleElem.isNull() )
384 : : {
385 : 0 : QDomElement symbolElem = markerStyleElem.firstChildElement( QStringLiteral( "symbol" ) );
386 : 0 : if ( !symbolElem.isNull() )
387 : : {
388 : 0 : mGridMarkerSymbol.reset( QgsSymbolLayerUtils::loadSymbol<QgsMarkerSymbol>( symbolElem, context ) );
389 : 0 : }
390 : 0 : }
391 : :
392 : 0 : if ( !mCRS.readXml( itemElem ) )
393 : 0 : mCRS = QgsCoordinateReferenceSystem();
394 : :
395 : 0 : mBlendMode = static_cast< QPainter::CompositionMode >( itemElem.attribute( QStringLiteral( "blendMode" ), QStringLiteral( "0" ) ).toUInt() );
396 : :
397 : : //annotation
398 : 0 : mShowGridAnnotation = ( itemElem.attribute( QStringLiteral( "showAnnotation" ), QStringLiteral( "0" ) ) != QLatin1String( "0" ) );
399 : 0 : mGridAnnotationFormat = QgsLayoutItemMapGrid::AnnotationFormat( itemElem.attribute( QStringLiteral( "annotationFormat" ), QStringLiteral( "0" ) ).toInt() );
400 : 0 : mGridAnnotationExpressionString = itemElem.attribute( QStringLiteral( "annotationExpression" ) );
401 : 0 : mGridAnnotationExpression.reset();
402 : 0 : mLeftGridAnnotationPosition = QgsLayoutItemMapGrid::AnnotationPosition( itemElem.attribute( QStringLiteral( "leftAnnotationPosition" ), QStringLiteral( "0" ) ).toInt() );
403 : 0 : mRightGridAnnotationPosition = QgsLayoutItemMapGrid::AnnotationPosition( itemElem.attribute( QStringLiteral( "rightAnnotationPosition" ), QStringLiteral( "0" ) ).toInt() );
404 : 0 : mTopGridAnnotationPosition = QgsLayoutItemMapGrid::AnnotationPosition( itemElem.attribute( QStringLiteral( "topAnnotationPosition" ), QStringLiteral( "0" ) ).toInt() );
405 : 0 : mBottomGridAnnotationPosition = QgsLayoutItemMapGrid::AnnotationPosition( itemElem.attribute( QStringLiteral( "bottomAnnotationPosition" ), QStringLiteral( "0" ) ).toInt() );
406 : 0 : mLeftGridAnnotationDisplay = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "leftAnnotationDisplay" ), QStringLiteral( "0" ) ).toInt() );
407 : 0 : mRightGridAnnotationDisplay = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "rightAnnotationDisplay" ), QStringLiteral( "0" ) ).toInt() );
408 : 0 : mTopGridAnnotationDisplay = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "topAnnotationDisplay" ), QStringLiteral( "0" ) ).toInt() );
409 : 0 : mBottomGridAnnotationDisplay = QgsLayoutItemMapGrid::DisplayMode( itemElem.attribute( QStringLiteral( "bottomAnnotationDisplay" ), QStringLiteral( "0" ) ).toInt() );
410 : :
411 : 0 : mLeftGridAnnotationDirection = QgsLayoutItemMapGrid::AnnotationDirection( itemElem.attribute( QStringLiteral( "leftAnnotationDirection" ), QStringLiteral( "0" ) ).toInt() );
412 : 0 : mRightGridAnnotationDirection = QgsLayoutItemMapGrid::AnnotationDirection( itemElem.attribute( QStringLiteral( "rightAnnotationDirection" ), QStringLiteral( "0" ) ).toInt() );
413 : 0 : mTopGridAnnotationDirection = QgsLayoutItemMapGrid::AnnotationDirection( itemElem.attribute( QStringLiteral( "topAnnotationDirection" ), QStringLiteral( "0" ) ).toInt() );
414 : 0 : mBottomGridAnnotationDirection = QgsLayoutItemMapGrid::AnnotationDirection( itemElem.attribute( QStringLiteral( "bottomAnnotationDirection" ), QStringLiteral( "0" ) ).toInt() );
415 : 0 : mAnnotationFrameDistance = itemElem.attribute( QStringLiteral( "frameAnnotationDistance" ), QStringLiteral( "0" ) ).toDouble();
416 : :
417 : 0 : if ( !itemElem.firstChildElement( "text-style" ).isNull() )
418 : : {
419 : 0 : mAnnotationFormat.readXml( itemElem, context );
420 : 0 : }
421 : : else
422 : : {
423 : 0 : QFont font;
424 : 0 : if ( !QgsFontUtils::setFromXmlChildNode( font, itemElem, "annotationFontProperties" ) )
425 : : {
426 : 0 : font.fromString( itemElem.attribute( "annotationFont", QString() ) );
427 : 0 : }
428 : 0 : mAnnotationFormat.setFont( font );
429 : 0 : mAnnotationFormat.setSize( font.pointSizeF() );
430 : 0 : mAnnotationFormat.setSizeUnit( QgsUnitTypes::RenderPoints );
431 : 0 : mAnnotationFormat.setColor( QgsSymbolLayerUtils::decodeColor( itemElem.attribute( "annotationFontColor", "0,0,0,255" ) ) );
432 : 0 : }
433 : :
434 : 0 : mGridAnnotationPrecision = itemElem.attribute( QStringLiteral( "annotationPrecision" ), QStringLiteral( "3" ) ).toInt();
435 : 0 : int gridUnitInt = itemElem.attribute( QStringLiteral( "unit" ), QString::number( MapUnit ) ).toInt();
436 : 0 : mGridUnit = ( gridUnitInt <= static_cast< int >( DynamicPageSizeBased ) ) ? static_cast< GridUnit >( gridUnitInt ) : MapUnit;
437 : 0 : mMinimumIntervalWidth = itemElem.attribute( QStringLiteral( "minimumIntervalWidth" ), QStringLiteral( "50" ) ).toDouble();
438 : 0 : mMaximumIntervalWidth = itemElem.attribute( QStringLiteral( "maximumIntervalWidth" ), QStringLiteral( "100" ) ).toDouble();
439 : :
440 : 0 : refreshDataDefinedProperties();
441 : 0 : return ok;
442 : 0 : }
443 : :
444 : 0 : void QgsLayoutItemMapGrid::setCrs( const QgsCoordinateReferenceSystem &crs )
445 : : {
446 : 0 : if ( mCRS == crs )
447 : 0 : return;
448 : :
449 : 0 : mCRS = crs;
450 : 0 : mTransformDirty = true;
451 : 0 : emit crsChanged();
452 : 0 : }
453 : :
454 : 0 : bool QgsLayoutItemMapGrid::usesAdvancedEffects() const
455 : : {
456 : 0 : return mBlendMode != QPainter::CompositionMode_SourceOver;
457 : : }
458 : :
459 : 0 : QPolygonF QgsLayoutItemMapGrid::scalePolygon( const QPolygonF &polygon, const double scale ) const
460 : : {
461 : 0 : QTransform t = QTransform::fromScale( scale, scale );
462 : 0 : return t.map( polygon );
463 : : }
464 : :
465 : 0 : void QgsLayoutItemMapGrid::drawGridCrsTransform( QgsRenderContext &context, double dotsPerMM, bool calculateLinesOnly ) const
466 : : {
467 : 0 : if ( !mMap || !mEvaluatedEnabled )
468 : : {
469 : 0 : return;
470 : : }
471 : :
472 : : //has map extent/scale changed?
473 : 0 : QPolygonF mapPolygon = mMap->transformedMapPolygon();
474 : 0 : if ( mapPolygon != mPrevMapPolygon )
475 : : {
476 : 0 : mTransformDirty = true;
477 : 0 : mPrevMapPolygon = mapPolygon;
478 : 0 : }
479 : :
480 : 0 : if ( mTransformDirty )
481 : : {
482 : 0 : calculateCrsTransformLines();
483 : 0 : }
484 : :
485 : : //draw lines
486 : 0 : if ( !calculateLinesOnly )
487 : : {
488 : 0 : if ( mGridStyle == QgsLayoutItemMapGrid::Solid )
489 : : {
490 : 0 : QList< GridLine >::const_iterator gridIt = mGridLines.constBegin();
491 : 0 : for ( ; gridIt != mGridLines.constEnd(); ++gridIt )
492 : : {
493 : 0 : drawGridLine( scalePolygon( gridIt->line, dotsPerMM ), context );
494 : 0 : }
495 : 0 : }
496 : 0 : else if ( mGridStyle == QgsLayoutItemMapGrid::Cross || mGridStyle == QgsLayoutItemMapGrid::Markers )
497 : : {
498 : 0 : double maxX = mMap->rect().width();
499 : 0 : double maxY = mMap->rect().height();
500 : :
501 : 0 : QList< QgsPointXY >::const_iterator intersectionIt = mTransformedIntersections.constBegin();
502 : 0 : for ( ; intersectionIt != mTransformedIntersections.constEnd(); ++intersectionIt )
503 : : {
504 : 0 : double x = intersectionIt->x();
505 : 0 : double y = intersectionIt->y();
506 : 0 : if ( mGridStyle == QgsLayoutItemMapGrid::Cross )
507 : : {
508 : : //ensure that crosses don't overshoot the map item bounds
509 : 0 : QLineF line1 = QLineF( x - mEvaluatedCrossLength, y, x + mEvaluatedCrossLength, y );
510 : 0 : line1.p1().rx() = line1.p1().x() < 0 ? 0 : line1.p1().x();
511 : 0 : line1.p2().rx() = line1.p2().x() > maxX ? maxX : line1.p2().x();
512 : 0 : QLineF line2 = QLineF( x, y - mEvaluatedCrossLength, x, y + mEvaluatedCrossLength );
513 : 0 : line2.p1().ry() = line2.p1().y() < 0 ? 0 : line2.p1().y();
514 : 0 : line2.p2().ry() = line2.p2().y() > maxY ? maxY : line2.p2().y();
515 : :
516 : : //draw line using coordinates scaled to dots
517 : 0 : drawGridLine( QLineF( line1.p1() * dotsPerMM, line1.p2() * dotsPerMM ), context );
518 : 0 : drawGridLine( QLineF( line2.p1() * dotsPerMM, line2.p2() * dotsPerMM ), context );
519 : 0 : }
520 : 0 : else if ( mGridStyle == QgsLayoutItemMapGrid::Markers )
521 : : {
522 : 0 : drawGridMarker( QPointF( x, y ) * dotsPerMM, context );
523 : 0 : }
524 : 0 : }
525 : 0 : }
526 : 0 : }
527 : 0 : }
528 : :
529 : 0 : void QgsLayoutItemMapGrid::calculateCrsTransformLines() const
530 : : {
531 : 0 : QgsRectangle crsBoundingRect;
532 : 0 : QgsCoordinateTransform inverseTr;
533 : 0 : if ( crsGridParams( crsBoundingRect, inverseTr ) != 0 )
534 : : {
535 : 0 : return;
536 : : }
537 : :
538 : : // calculate grid lines
539 : 0 : mGridLines.clear();
540 : 0 : xGridLinesCrsTransform( crsBoundingRect, inverseTr );
541 : 0 : yGridLinesCrsTransform( crsBoundingRect, inverseTr );
542 : :
543 : 0 : if ( mGridStyle == QgsLayoutItemMapGrid::Cross || mGridStyle == QgsLayoutItemMapGrid::Markers )
544 : : {
545 : : //cross or markers style - we also need to calculate intersections of lines
546 : :
547 : : //first convert lines to QgsGeometry
548 : 0 : QList< QgsGeometry > xLines;
549 : 0 : QList< QgsGeometry > yLines;
550 : 0 : QList< GridLine >::const_iterator gridIt = mGridLines.constBegin();
551 : 0 : for ( ; gridIt != mGridLines.constEnd(); ++gridIt )
552 : : {
553 : :
554 : 0 : QgsPolylineXY line;
555 : 0 : for ( int i = 0; i < gridIt->line.size(); ++i )
556 : : {
557 : 0 : line.append( QgsPointXY( gridIt->line.at( i ).x(), gridIt->line.at( i ).y() ) );
558 : 0 : }
559 : 0 : if ( gridIt->coordinateType == AnnotationCoordinate::Longitude )
560 : 0 : yLines << QgsGeometry::fromPolylineXY( line );
561 : 0 : else if ( gridIt->coordinateType == AnnotationCoordinate::Latitude )
562 : 0 : xLines << QgsGeometry::fromPolylineXY( line );
563 : 0 : }
564 : :
565 : : //now, loop through geometries and calculate intersection points
566 : 0 : mTransformedIntersections.clear();
567 : 0 : QList< QgsGeometry >::const_iterator yLineIt = yLines.constBegin();
568 : 0 : for ( ; yLineIt != yLines.constEnd(); ++yLineIt )
569 : : {
570 : 0 : QList< QgsGeometry >::const_iterator xLineIt = xLines.constBegin();
571 : 0 : for ( ; xLineIt != xLines.constEnd(); ++xLineIt )
572 : : {
573 : : //look for intersections between lines
574 : 0 : QgsGeometry intersects = ( *yLineIt ).intersection( ( *xLineIt ) );
575 : 0 : if ( intersects.isNull() )
576 : 0 : continue;
577 : :
578 : : //go through all intersections and draw grid markers/crosses
579 : 0 : int i = 0;
580 : 0 : QgsPointXY vertex = intersects.vertexAt( i );
581 : 0 : while ( !vertex.isEmpty() )
582 : : {
583 : 0 : mTransformedIntersections << vertex;
584 : 0 : i = i + 1;
585 : 0 : vertex = intersects.vertexAt( i );
586 : : }
587 : 0 : }
588 : 0 : }
589 : 0 : }
590 : :
591 : 0 : mTransformDirty = false;
592 : 0 : }
593 : :
594 : 0 : void QgsLayoutItemMapGrid::draw( QPainter *p )
595 : : {
596 : 0 : if ( !mMap || !mEvaluatedEnabled )
597 : : {
598 : 0 : return;
599 : : }
600 : 0 : QPaintDevice *paintDevice = p->device();
601 : 0 : if ( !paintDevice )
602 : : {
603 : 0 : return;
604 : : }
605 : :
606 : 0 : p->save();
607 : 0 : p->setCompositionMode( mBlendMode );
608 : 0 : p->setRenderHint( QPainter::Antialiasing, mMap->layout()->renderContext().flags() & QgsLayoutRenderContext::FlagAntialiasing );
609 : :
610 : 0 : QRectF thisPaintRect = QRectF( 0, 0, mMap->rect().width(), mMap->rect().height() );
611 : 0 : p->setClipRect( thisPaintRect );
612 : 0 : if ( thisPaintRect != mPrevPaintRect )
613 : : {
614 : : //rect has changed, so need to recalculate transform
615 : 0 : mTransformDirty = true;
616 : 0 : mPrevPaintRect = thisPaintRect;
617 : 0 : }
618 : :
619 : : //setup painter scaling to dots so that raster symbology is drawn to scale
620 : 0 : double dotsPerMM = paintDevice->logicalDpiX() / 25.4;
621 : 0 : p->scale( 1 / dotsPerMM, 1 / dotsPerMM ); //scale painter from mm to dots
622 : :
623 : : //setup render context
624 : 0 : QgsRenderContext context = QgsLayoutUtils::createRenderContextForLayout( mLayout, p );
625 : 0 : context.setForceVectorOutput( true );
626 : 0 : context.setFlag( QgsRenderContext::ApplyScalingWorkaroundForTextRendering, true );
627 : 0 : QgsExpressionContext expressionContext = createExpressionContext();
628 : 0 : context.setExpressionContext( expressionContext );
629 : :
630 : : //is grid in a different crs than map?
631 : 0 : switch ( mGridUnit )
632 : : {
633 : : case MapUnit:
634 : : case DynamicPageSizeBased:
635 : 0 : if ( mCRS.isValid() && mCRS != mMap->crs() )
636 : : {
637 : 0 : drawGridCrsTransform( context, dotsPerMM );
638 : 0 : break;
639 : : }
640 : :
641 : : FALLTHROUGH
642 : : case CM:
643 : : case MM:
644 : 0 : drawGridNoTransform( context, dotsPerMM );
645 : 0 : break;
646 : : }
647 : 0 : p->restore();
648 : :
649 : 0 : p->setClipping( false );
650 : : #ifdef Q_OS_MAC
651 : : //QPainter::setClipping(false) seems to be broken on OSX (#12747). So we hack around it by
652 : : //setting a larger clip rect
653 : : p->setClipRect( mMap->mapRectFromScene( mMap->sceneBoundingRect() ).adjusted( -10, -10, 10, 10 ) );
654 : : #endif
655 : :
656 : :
657 : 0 : if ( mGridFrameStyle != QgsLayoutItemMapGrid::NoFrame || mShowGridAnnotation )
658 : 0 : updateGridLinesAnnotationsPositions();
659 : :
660 : 0 : if ( mGridFrameStyle != QgsLayoutItemMapGrid::NoFrame )
661 : : {
662 : 0 : drawGridFrame( p );
663 : 0 : }
664 : :
665 : 0 : if ( mShowGridAnnotation )
666 : : {
667 : 0 : drawCoordinateAnnotations( context, context.expressionContext() );
668 : 0 : }
669 : 0 : }
670 : :
671 : 0 : void QgsLayoutItemMapGrid::updateGridLinesAnnotationsPositions() const
672 : : {
673 : 0 : QList< GridLine >::iterator it = mGridLines.begin();
674 : 0 : for ( ; it != mGridLines.end(); ++it )
675 : : {
676 : 0 : it->startAnnotation.border = borderForLineCoord( it->line.first(), it->coordinateType );
677 : 0 : it->endAnnotation.border = borderForLineCoord( it->line.last(), it->coordinateType );
678 : 0 : it->startAnnotation.position = QVector2D( it->line.first() );
679 : 0 : it->endAnnotation.position = QVector2D( it->line.last() );
680 : 0 : it->startAnnotation.vector = QVector2D( it->line.at( 1 ) - it->line.first() ).normalized();
681 : 0 : it->endAnnotation.vector = QVector2D( it->line.at( it->line.count() - 2 ) - it->line.last() ).normalized();
682 : 0 : QVector2D normS = borderToNormal2D( it->startAnnotation.border );
683 : 0 : it->startAnnotation.angle = atan2( it->startAnnotation.vector.x() * normS.y() - it->startAnnotation.vector.y() * normS.x(), it->startAnnotation.vector.x() * normS.x() + it->startAnnotation.vector.y() * normS.y() );
684 : 0 : QVector2D normE = borderToNormal2D( it->endAnnotation.border );
685 : 0 : it->endAnnotation.angle = atan2( it->endAnnotation.vector.x() * normE.y() - it->endAnnotation.vector.y() * normE.x(), it->endAnnotation.vector.x() * normE.x() + it->endAnnotation.vector.y() * normE.y() );
686 : 0 : }
687 : 0 : }
688 : :
689 : 0 : void QgsLayoutItemMapGrid::drawGridNoTransform( QgsRenderContext &context, double dotsPerMM, bool calculateLinesOnly ) const
690 : : {
691 : : //get line positions
692 : 0 : mGridLines.clear();
693 : 0 : yGridLines();
694 : 0 : xGridLines();
695 : :
696 : 0 : if ( calculateLinesOnly )
697 : 0 : return;
698 : :
699 : 0 : QList< GridLine >::const_iterator vIt = mGridLines.constBegin();
700 : 0 : QList< GridLine >::const_iterator hIt = mGridLines.constBegin();
701 : :
702 : : //simple approach: draw vertical lines first, then horizontal ones
703 : 0 : if ( mGridStyle == QgsLayoutItemMapGrid::Solid )
704 : : {
705 : : //we need to scale line coordinates to dots, rather than mm, since the painter has already been scaled to dots
706 : : //this is done by multiplying each line coordinate by dotsPerMM
707 : 0 : QLineF line;
708 : 0 : for ( ; vIt != mGridLines.constEnd(); ++vIt )
709 : : {
710 : 0 : if ( vIt->coordinateType != AnnotationCoordinate::Longitude )
711 : 0 : continue;
712 : 0 : line = QLineF( vIt->line.first() * dotsPerMM, vIt->line.last() * dotsPerMM );
713 : 0 : drawGridLine( line, context );
714 : 0 : }
715 : :
716 : 0 : for ( ; hIt != mGridLines.constEnd(); ++hIt )
717 : : {
718 : 0 : if ( hIt->coordinateType != AnnotationCoordinate::Latitude )
719 : 0 : continue;
720 : 0 : line = QLineF( hIt->line.first() * dotsPerMM, hIt->line.last() * dotsPerMM );
721 : 0 : drawGridLine( line, context );
722 : 0 : }
723 : 0 : }
724 : 0 : else if ( mGridStyle != QgsLayoutItemMapGrid::FrameAnnotationsOnly ) //cross or markers
725 : : {
726 : 0 : QLineF l1, l2;
727 : 0 : QPointF intersectionPoint, crossEnd1, crossEnd2;
728 : 0 : for ( ; vIt != mGridLines.constEnd(); ++vIt )
729 : : {
730 : 0 : if ( vIt->coordinateType != AnnotationCoordinate::Longitude )
731 : 0 : continue;
732 : :
733 : 0 : l1 = QLineF( vIt->line.first(), vIt->line.last() );
734 : :
735 : : //test for intersection with every horizontal line
736 : 0 : hIt = mGridLines.constBegin();
737 : 0 : for ( ; hIt != mGridLines.constEnd(); ++hIt )
738 : : {
739 : 0 : if ( hIt->coordinateType != AnnotationCoordinate::Latitude )
740 : 0 : continue;
741 : :
742 : 0 : l2 = QLineF( hIt->line.first(), hIt->line.last() );
743 : :
744 : : #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
745 : : if ( l2.intersect( l1, &intersectionPoint ) == QLineF::BoundedIntersection )
746 : : #else
747 : 0 : if ( l2.intersects( l1, &intersectionPoint ) == QLineF::BoundedIntersection )
748 : : #endif
749 : : {
750 : 0 : if ( mGridStyle == QgsLayoutItemMapGrid::Cross )
751 : : {
752 : : //apply a threshold to avoid calculate point if the two points are very close together (can lead to artifacts)
753 : 0 : crossEnd1 = ( ( intersectionPoint - l1.p1() ).manhattanLength() > 0.01 ) ?
754 : 0 : QgsSymbolLayerUtils::pointOnLineWithDistance( intersectionPoint, l1.p1(), mEvaluatedCrossLength ) : intersectionPoint;
755 : 0 : crossEnd2 = ( ( intersectionPoint - l1.p2() ).manhattanLength() > 0.01 ) ?
756 : 0 : QgsSymbolLayerUtils::pointOnLineWithDistance( intersectionPoint, l1.p2(), mEvaluatedCrossLength ) : intersectionPoint;
757 : : //draw line using coordinates scaled to dots
758 : 0 : drawGridLine( QLineF( crossEnd1 * dotsPerMM, crossEnd2 * dotsPerMM ), context );
759 : 0 : }
760 : 0 : else if ( mGridStyle == QgsLayoutItemMapGrid::Markers )
761 : : {
762 : 0 : drawGridMarker( intersectionPoint * dotsPerMM, context );
763 : 0 : }
764 : 0 : }
765 : 0 : }
766 : 0 : }
767 : 0 : if ( mGridStyle == QgsLayoutItemMapGrid::Markers )
768 : : {
769 : : //markers mode, so we have no need to process horizontal lines (we've already
770 : : //drawn markers on the intersections between horizontal and vertical lines)
771 : 0 : return;
772 : : }
773 : :
774 : 0 : hIt = mGridLines.constBegin();
775 : 0 : for ( ; hIt != mGridLines.constEnd(); ++hIt )
776 : : {
777 : 0 : if ( hIt->coordinateType != AnnotationCoordinate::Latitude )
778 : 0 : continue;
779 : :
780 : 0 : l1 = QLineF( hIt->line.first(), hIt->line.last() );
781 : :
782 : 0 : vIt = mGridLines.constBegin();
783 : 0 : for ( ; vIt != mGridLines.constEnd(); ++vIt )
784 : : {
785 : 0 : if ( vIt->coordinateType != AnnotationCoordinate::Longitude )
786 : 0 : continue;
787 : :
788 : 0 : l2 = QLineF( vIt->line.first(), vIt->line.last() );
789 : :
790 : : #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
791 : : if ( l2.intersect( l1, &intersectionPoint ) == QLineF::BoundedIntersection )
792 : : #else
793 : 0 : if ( l2.intersects( l1, &intersectionPoint ) == QLineF::BoundedIntersection )
794 : : #endif
795 : : {
796 : : //apply a threshold to avoid calculate point if the two points are very close together (can lead to artifacts)
797 : 0 : crossEnd1 = ( ( intersectionPoint - l1.p1() ).manhattanLength() > 0.01 ) ?
798 : 0 : QgsSymbolLayerUtils::pointOnLineWithDistance( intersectionPoint, l1.p1(), mEvaluatedCrossLength ) : intersectionPoint;
799 : 0 : crossEnd2 = ( ( intersectionPoint - l1.p2() ).manhattanLength() > 0.01 ) ?
800 : 0 : QgsSymbolLayerUtils::pointOnLineWithDistance( intersectionPoint, l1.p2(), mEvaluatedCrossLength ) : intersectionPoint;
801 : : //draw line using coordinates scaled to dots
802 : 0 : drawGridLine( QLineF( crossEnd1 * dotsPerMM, crossEnd2 * dotsPerMM ), context );
803 : 0 : }
804 : 0 : }
805 : 0 : }
806 : 0 : }
807 : 0 : }
808 : :
809 : 0 : void QgsLayoutItemMapGrid::drawGridFrame( QPainter *p, GridExtension *extension ) const
810 : : {
811 : 0 : if ( p )
812 : : {
813 : 0 : p->save();
814 : 0 : p->setRenderHint( QPainter::Antialiasing, mMap->layout()->renderContext().flags() & QgsLayoutRenderContext::FlagAntialiasing );
815 : 0 : }
816 : :
817 : :
818 : 0 : switch ( mGridFrameStyle )
819 : : {
820 : : case QgsLayoutItemMapGrid::Zebra:
821 : : case QgsLayoutItemMapGrid::ZebraNautical:
822 : 0 : drawGridFrameZebra( p, extension );
823 : 0 : break;
824 : : case QgsLayoutItemMapGrid::InteriorTicks:
825 : : case QgsLayoutItemMapGrid::ExteriorTicks:
826 : : case QgsLayoutItemMapGrid::InteriorExteriorTicks:
827 : 0 : drawGridFrameTicks( p, extension );
828 : 0 : break;
829 : :
830 : : case QgsLayoutItemMapGrid::LineBorder:
831 : : case QgsLayoutItemMapGrid::LineBorderNautical:
832 : 0 : drawGridFrameLine( p, extension );
833 : 0 : break;
834 : :
835 : : case QgsLayoutItemMapGrid::NoFrame:
836 : 0 : break;
837 : : }
838 : :
839 : 0 : if ( p )
840 : 0 : p->restore();
841 : 0 : }
842 : :
843 : 0 : void QgsLayoutItemMapGrid::drawGridLine( const QLineF &line, QgsRenderContext &context ) const
844 : : {
845 : 0 : QPolygonF poly;
846 : 0 : poly << line.p1() << line.p2();
847 : 0 : drawGridLine( poly, context );
848 : 0 : }
849 : :
850 : 0 : void QgsLayoutItemMapGrid::drawGridLine( const QPolygonF &line, QgsRenderContext &context ) const
851 : : {
852 : 0 : if ( !mMap || !mMap->layout() || !mGridLineSymbol )
853 : : {
854 : 0 : return;
855 : : }
856 : :
857 : 0 : mGridLineSymbol->startRender( context );
858 : 0 : mGridLineSymbol->renderPolyline( line, nullptr, context );
859 : 0 : mGridLineSymbol->stopRender( context );
860 : 0 : }
861 : :
862 : 0 : void QgsLayoutItemMapGrid::drawGridMarker( QPointF point, QgsRenderContext &context ) const
863 : : {
864 : 0 : if ( !mMap || !mMap->layout() || !mGridMarkerSymbol )
865 : : {
866 : 0 : return;
867 : : }
868 : :
869 : 0 : mGridMarkerSymbol->startRender( context );
870 : 0 : mGridMarkerSymbol->renderPoint( point, nullptr, context );
871 : 0 : mGridMarkerSymbol->stopRender( context );
872 : 0 : }
873 : :
874 : 0 : void QgsLayoutItemMapGrid::drawGridFrameZebra( QPainter *p, GridExtension *extension ) const
875 : : {
876 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameLeft ) )
877 : : {
878 : 0 : drawGridFrameZebraBorder( p, QgsLayoutItemMapGrid::Left, extension ? &extension->left : nullptr );
879 : 0 : }
880 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameRight ) )
881 : : {
882 : 0 : drawGridFrameZebraBorder( p, QgsLayoutItemMapGrid::Right, extension ? &extension->right : nullptr );
883 : 0 : }
884 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameTop ) )
885 : : {
886 : 0 : drawGridFrameZebraBorder( p, QgsLayoutItemMapGrid::Top, extension ? &extension->top : nullptr );
887 : 0 : }
888 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameBottom ) )
889 : : {
890 : 0 : drawGridFrameZebraBorder( p, QgsLayoutItemMapGrid::Bottom, extension ? &extension->bottom : nullptr );
891 : 0 : }
892 : 0 : }
893 : :
894 : 0 : void QgsLayoutItemMapGrid::drawGridFrameZebraBorder( QPainter *p, BorderSide border, double *extension ) const
895 : : {
896 : 0 : if ( !mMap )
897 : : {
898 : 0 : return;
899 : : }
900 : :
901 : 0 : if ( extension )
902 : : {
903 : 0 : *extension = mEvaluatedGridFrameMargin + mEvaluatedGridFrameWidth + mEvaluatedGridFrameLineThickness / 2.0;
904 : 0 : return;
905 : : }
906 : :
907 : 0 : double currentCoord = 0.0;
908 : 0 : bool color1 = false;
909 : 0 : double x = 0;
910 : 0 : double y = 0;
911 : 0 : double width = 0;
912 : 0 : double height = 0;
913 : :
914 : 0 : bool drawTLBox = false;
915 : 0 : bool drawTRBox = false;
916 : 0 : bool drawBLBox = false;
917 : 0 : bool drawBRBox = false;
918 : :
919 : 0 : QMap< double, double > pos = QMap< double, double >();
920 : 0 : QList< GridLine >::const_iterator it = mGridLines.constBegin();
921 : 0 : for ( ; it != mGridLines.constEnd(); ++it )
922 : : {
923 : : // for first and last point of the line
924 : 0 : for ( int i = 0 ; i < 2 ; ++i )
925 : : {
926 : 0 : GridLineAnnotation annot = ( i == 0 ) ? it->startAnnotation : it->endAnnotation;
927 : :
928 : : // we skip if the point is on another border
929 : 0 : if ( annot.border != border )
930 : 0 : continue;
931 : :
932 : 0 : if ( ! shouldShowDivisionForSide( it->coordinateType, annot.border ) )
933 : 0 : continue;
934 : :
935 : 0 : if ( border == QgsLayoutItemMapGrid::Left || border == QgsLayoutItemMapGrid::Right )
936 : 0 : pos.insert( annot.position.y(), it->coordinate );
937 : : else
938 : 0 : pos.insert( annot.position.x(), it->coordinate );
939 : 0 : }
940 : 0 : }
941 : :
942 : :
943 : 0 : if ( border == QgsLayoutItemMapGrid::Left || border == QgsLayoutItemMapGrid::Right )
944 : : {
945 : 0 : pos.insert( mMap->rect().height(), mMap->rect().height() );
946 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameBottom ) )
947 : : {
948 : 0 : drawBLBox = border == QgsLayoutItemMapGrid::Left;
949 : 0 : drawBRBox = border == QgsLayoutItemMapGrid::Right;
950 : 0 : }
951 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameTop ) )
952 : : {
953 : 0 : drawTLBox = border == QgsLayoutItemMapGrid::Left;
954 : 0 : drawTRBox = border == QgsLayoutItemMapGrid::Right;
955 : 0 : }
956 : 0 : if ( !drawTLBox && border == QgsLayoutItemMapGrid::Left )
957 : 0 : color1 = true;
958 : 0 : }
959 : 0 : else if ( border == QgsLayoutItemMapGrid::Top || border == QgsLayoutItemMapGrid::Bottom )
960 : : {
961 : 0 : pos.insert( mMap->rect().width(), mMap->rect().width() );
962 : 0 : }
963 : :
964 : : //set pen to current frame pen
965 : 0 : QPen framePen = QPen( mGridFramePenColor );
966 : 0 : framePen.setWidthF( mEvaluatedGridFrameLineThickness );
967 : 0 : framePen.setJoinStyle( Qt::MiterJoin );
968 : 0 : p->setPen( framePen );
969 : :
970 : 0 : QMap< double, double >::const_iterator posIt = pos.constBegin();
971 : 0 : for ( ; posIt != pos.constEnd(); ++posIt )
972 : : {
973 : 0 : p->setBrush( QBrush( color1 ? mGridFrameFillColor1 : mGridFrameFillColor2 ) );
974 : 0 : if ( border == QgsLayoutItemMapGrid::Left || border == QgsLayoutItemMapGrid::Right )
975 : : {
976 : 0 : height = posIt.key() - currentCoord;
977 : 0 : width = mEvaluatedGridFrameWidth;
978 : 0 : x = ( border == QgsLayoutItemMapGrid::Left ) ? -( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ) : mMap->rect().width() + mEvaluatedGridFrameMargin;
979 : 0 : y = currentCoord;
980 : 0 : }
981 : : else //top or bottom
982 : : {
983 : 0 : height = mEvaluatedGridFrameWidth;
984 : 0 : width = posIt.key() - currentCoord;
985 : 0 : x = currentCoord;
986 : 0 : y = ( border == QgsLayoutItemMapGrid::Top ) ? -( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ) : mMap->rect().height() + mEvaluatedGridFrameMargin;
987 : : }
988 : 0 : p->drawRect( QRectF( x, y, width, height ) );
989 : 0 : currentCoord = posIt.key();
990 : 0 : color1 = !color1;
991 : 0 : }
992 : :
993 : 0 : if ( mGridFrameStyle == ZebraNautical || qgsDoubleNear( mEvaluatedGridFrameMargin, 0.0 ) )
994 : : {
995 : : //draw corners
996 : 0 : width = height = ( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ) ;
997 : 0 : p->setBrush( QBrush( mGridFrameFillColor1 ) );
998 : 0 : if ( drawTLBox )
999 : 0 : p->drawRect( QRectF( -( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ), -( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ), width, height ) );
1000 : 0 : if ( drawTRBox )
1001 : 0 : p->drawRect( QRectF( mMap->rect().width(), -( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ), width, height ) );
1002 : 0 : if ( drawBLBox )
1003 : 0 : p->drawRect( QRectF( -( mEvaluatedGridFrameWidth + mEvaluatedGridFrameMargin ), mMap->rect().height(), width, height ) );
1004 : 0 : if ( drawBRBox )
1005 : 0 : p->drawRect( QRectF( mMap->rect().width(), mMap->rect().height(), width, height ) );
1006 : 0 : }
1007 : 0 : }
1008 : :
1009 : 0 : void QgsLayoutItemMapGrid::drawGridFrameTicks( QPainter *p, GridExtension *extension ) const
1010 : : {
1011 : 0 : if ( !mMap )
1012 : : {
1013 : 0 : return;
1014 : : }
1015 : :
1016 : : //set pen to current frame pen
1017 : 0 : if ( p )
1018 : : {
1019 : 0 : QPen framePen = QPen( mGridFramePenColor );
1020 : 0 : framePen.setWidthF( mEvaluatedGridFrameLineThickness );
1021 : 0 : framePen.setCapStyle( Qt::FlatCap );
1022 : 0 : p->setBrush( Qt::NoBrush );
1023 : 0 : p->setPen( framePen );
1024 : 0 : }
1025 : :
1026 : 0 : QList< GridLine >::iterator it = mGridLines.begin();
1027 : 0 : for ( ; it != mGridLines.end(); ++it )
1028 : : {
1029 : : // for first and last point of the line
1030 : 0 : for ( int i = 0 ; i < 2 ; ++i )
1031 : : {
1032 : 0 : GridLineAnnotation annot = ( i == 0 ) ? it->startAnnotation : it->endAnnotation;
1033 : :
1034 : 0 : if ( ! shouldShowDivisionForSide( it->coordinateType, annot.border ) )
1035 : 0 : continue;
1036 : :
1037 : : // If the angle is below the threshold, we don't draw the annotation
1038 : 0 : if ( abs( annot.angle ) / M_PI * 180.0 > 90.0 - mRotatedTicksMinimumAngle + 0.0001 )
1039 : 0 : continue;
1040 : :
1041 : : // Skip outwards facing annotations that are below mRotatedTicksMarginToCorner
1042 : : bool facingLeft;
1043 : : bool facingRight;
1044 : 0 : if ( mGridFrameStyle == QgsLayoutItemMapGrid::InteriorExteriorTicks )
1045 : : {
1046 : 0 : facingLeft = ( annot.angle != 0 );
1047 : 0 : facingRight = ( annot.angle != 0 );
1048 : 0 : }
1049 : 0 : else if ( mGridFrameStyle == QgsLayoutItemMapGrid::ExteriorTicks )
1050 : : {
1051 : 0 : facingLeft = ( annot.angle > 0 );
1052 : 0 : facingRight = ( annot.angle < 0 );
1053 : 0 : }
1054 : : else
1055 : : {
1056 : 0 : facingLeft = ( annot.angle < 0 );
1057 : 0 : facingRight = ( annot.angle > 0 );
1058 : : }
1059 : :
1060 : 0 : if ( annot.border == BorderSide::Top && ( ( facingLeft && annot.position.x() < mRotatedTicksMarginToCorner ) ||
1061 : 0 : ( facingRight && annot.position.x() > mMap->rect().width() - mRotatedTicksMarginToCorner ) ) )
1062 : 0 : continue;
1063 : 0 : if ( annot.border == BorderSide::Bottom && ( ( facingLeft && annot.position.x() > mMap->rect().width() - mRotatedTicksMarginToCorner ) ||
1064 : 0 : ( facingRight && annot.position.x() < mRotatedTicksMarginToCorner ) ) )
1065 : 0 : continue;
1066 : 0 : if ( annot.border == BorderSide::Left && ( ( facingLeft && annot.position.y() > mMap->rect().height() - mRotatedTicksMarginToCorner ) ||
1067 : 0 : ( facingRight && annot.position.y() < mRotatedTicksMarginToCorner ) ) )
1068 : 0 : continue;
1069 : 0 : if ( annot.border == BorderSide::Right && ( ( facingLeft && annot.position.y() < mRotatedTicksMarginToCorner ) ||
1070 : 0 : ( facingRight && annot.position.y() > mMap->rect().height() - mRotatedTicksMarginToCorner ) ) )
1071 : 0 : continue;
1072 : :
1073 : 0 : QVector2D normalVector = borderToNormal2D( annot.border );
1074 : 0 : QVector2D vector = ( mRotatedTicksEnabled ) ? annot.vector : normalVector;
1075 : :
1076 : 0 : double fA = mEvaluatedGridFrameMargin; // point near to frame
1077 : 0 : double fB = mEvaluatedGridFrameMargin + mEvaluatedGridFrameWidth; // point far from frame
1078 : :
1079 : 0 : if ( mRotatedTicksEnabled && mRotatedTicksLengthMode == OrthogonalTicks )
1080 : : {
1081 : 0 : fA /= QVector2D::dotProduct( vector, normalVector );
1082 : 0 : fB /= QVector2D::dotProduct( vector, normalVector );
1083 : 0 : }
1084 : :
1085 : : // extents isn't computed accurately
1086 : 0 : if ( extension )
1087 : 0 : {
1088 : 0 : if ( mGridFrameStyle != QgsLayoutItemMapGrid::InteriorTicks )
1089 : 0 : extension->UpdateBorder( annot.border, fB );
1090 : 0 : continue;
1091 : : }
1092 : 0 :
1093 : 0 : QVector2D pA;
1094 : 0 : QVector2D pB;
1095 : 0 : if ( mGridFrameStyle == QgsLayoutItemMapGrid::InteriorTicks )
1096 : 0 : {
1097 : 0 : pA = annot.position + fA * vector;
1098 : 0 : pB = annot.position + fB * vector;
1099 : 0 : }
1100 : 0 : else if ( mGridFrameStyle == QgsLayoutItemMapGrid::ExteriorTicks )
1101 : : {
1102 : 0 : pA = annot.position - fA * vector;
1103 : 0 : pB = annot.position - fB * vector;
1104 : 0 : }
1105 : : else // InteriorExteriorTicks
1106 : 0 : {
1107 : 0 : pA = annot.position - fB * vector;
1108 : 0 : pB = annot.position + ( fB - 2.0 * mEvaluatedGridFrameMargin ) * vector;
1109 : 0 : }
1110 : 0 : p->drawLine( QLineF( pA.toPointF(), pB.toPointF() ) );
1111 : 0 :
1112 : 0 : }
1113 : 0 : }
1114 : 0 : }
1115 : 0 :
1116 : 0 : void QgsLayoutItemMapGrid::drawGridFrameLine( QPainter *p, GridExtension *extension ) const
1117 : : {
1118 : 0 : if ( !mMap )
1119 : : {
1120 : 0 : return;
1121 : : }
1122 : 0 :
1123 : 0 : if ( p )
1124 : 0 : {
1125 : : //set pen to current frame pen
1126 : 0 : QPen framePen = QPen( mGridFramePenColor );
1127 : 0 : framePen.setWidthF( mEvaluatedGridFrameLineThickness );
1128 : 0 : framePen.setCapStyle( Qt::SquareCap );
1129 : 0 : p->setBrush( Qt::NoBrush );
1130 : 0 : p->setPen( framePen );
1131 : 0 : }
1132 : 0 :
1133 : 0 : const bool drawDiagonals = mGridFrameStyle == LineBorderNautical && !qgsDoubleNear( mEvaluatedGridFrameMargin, 0.0 );
1134 : 0 :
1135 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameLeft ) )
1136 : 0 : {
1137 : 0 : if ( extension )
1138 : 0 : extension->UpdateBorder( QgsLayoutItemMapGrid::Left, mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0 );
1139 : : else
1140 : 0 : p->drawLine( QLineF( 0 - mEvaluatedGridFrameMargin, 0 - mEvaluatedGridFrameMargin, 0 - mEvaluatedGridFrameMargin, mMap->rect().height() + mEvaluatedGridFrameMargin ) );
1141 : 0 : }
1142 : 0 :
1143 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameRight ) )
1144 : : {
1145 : 0 : if ( extension )
1146 : 0 : extension->UpdateBorder( QgsLayoutItemMapGrid::Right, mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0 );
1147 : 0 : else
1148 : 0 : p->drawLine( QLineF( mMap->rect().width() + mEvaluatedGridFrameMargin, 0 - mEvaluatedGridFrameMargin, mMap->rect().width() + mEvaluatedGridFrameMargin, mMap->rect().height() + mEvaluatedGridFrameMargin ) );
1149 : 0 : }
1150 : 0 :
1151 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameTop ) )
1152 : 0 : {
1153 : 0 : if ( extension )
1154 : 0 : extension->UpdateBorder( QgsLayoutItemMapGrid::Top, mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0 );
1155 : 0 : else
1156 : 0 : p->drawLine( QLineF( 0 - mEvaluatedGridFrameMargin, 0 - mEvaluatedGridFrameMargin, mMap->rect().width() + mEvaluatedGridFrameMargin, 0 - mEvaluatedGridFrameMargin ) );
1157 : 0 : }
1158 : 0 :
1159 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameBottom ) )
1160 : : {
1161 : 0 : if ( extension )
1162 : 0 : extension->UpdateBorder( QgsLayoutItemMapGrid::Bottom, mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0 );
1163 : : else
1164 : 0 : p->drawLine( QLineF( 0 - mEvaluatedGridFrameMargin, mMap->rect().height() + mEvaluatedGridFrameMargin, mMap->rect().width() + mEvaluatedGridFrameMargin, mMap->rect().height() + mEvaluatedGridFrameMargin ) );
1165 : 0 : }
1166 : :
1167 : 0 : if ( ! extension && drawDiagonals )
1168 : : {
1169 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameLeft ) || testFrameSideFlag( QgsLayoutItemMapGrid::FrameTop ) )
1170 : : {
1171 : 0 : //corner left-top
1172 : 0 : const double X1 = 0 - mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0;
1173 : 0 : const double Y1 = 0 - mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0;
1174 : 0 : p->drawLine( QLineF( 0, 0, X1, Y1 ) );
1175 : 0 : }
1176 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameRight ) || testFrameSideFlag( QgsLayoutItemMapGrid::FrameBottom ) )
1177 : : {
1178 : 0 : //corner right-bottom
1179 : 0 : const double X1 = mMap->rect().width() + mEvaluatedGridFrameMargin - mEvaluatedGridFrameLineThickness / 2.0 ;
1180 : 0 : const double Y1 = mMap->rect().height() + mEvaluatedGridFrameMargin - mEvaluatedGridFrameLineThickness / 2.0 ;
1181 : 0 : p->drawLine( QLineF( mMap->rect().width(), mMap->rect().height(), X1, Y1 ) );
1182 : 0 : }
1183 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameRight ) || testFrameSideFlag( QgsLayoutItemMapGrid::FrameTop ) )
1184 : : {
1185 : : //corner right-top
1186 : 0 : const double X1 = mMap->rect().width() + mEvaluatedGridFrameMargin - mEvaluatedGridFrameLineThickness / 2.0 ;
1187 : 0 : const double Y1 = 0 - mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0 ;
1188 : 0 : p->drawLine( QLineF( mMap->rect().width(), 0, X1, Y1 ) );
1189 : 0 : }
1190 : 0 : if ( testFrameSideFlag( QgsLayoutItemMapGrid::FrameLeft ) || testFrameSideFlag( QgsLayoutItemMapGrid::FrameBottom ) )
1191 : 0 : {
1192 : 0 : //corner left-bottom
1193 : 0 : const double X1 = 0 - mEvaluatedGridFrameMargin + mEvaluatedGridFrameLineThickness / 2.0 ;
1194 : 0 : const double Y1 = mMap->rect().height() + mEvaluatedGridFrameMargin - mEvaluatedGridFrameLineThickness / 2.0 ;
1195 : 0 : p->drawLine( QLineF( 0, mMap->rect().height(), X1, Y1 ) );
1196 : 0 : }
1197 : 0 : }
1198 : 0 : }
1199 : 0 :
1200 : 0 : void QgsLayoutItemMapGrid::drawCoordinateAnnotations( QgsRenderContext &context, QgsExpressionContext &expressionContext,
1201 : 0 : GridExtension *extension ) const
1202 : 0 : {
1203 : 0 : QString currentAnnotationString;
1204 : 0 : QList< GridLine >::const_iterator it = mGridLines.constBegin();
1205 : 0 : for ( ; it != mGridLines.constEnd(); ++it )
1206 : : {
1207 : 0 : currentAnnotationString = gridAnnotationString( it->coordinate, it->coordinateType, expressionContext );
1208 : 0 : drawCoordinateAnnotation( context, it->startAnnotation, currentAnnotationString, it->coordinateType, extension );
1209 : 0 : drawCoordinateAnnotation( context, it->endAnnotation, currentAnnotationString, it->coordinateType, extension );
1210 : 0 : }
1211 : 0 : }
1212 : :
1213 : 0 : void QgsLayoutItemMapGrid::drawCoordinateAnnotation( QgsRenderContext &context, GridLineAnnotation annot, const QString &annotationString, const AnnotationCoordinate coordinateType, GridExtension *extension ) const
1214 : : {
1215 : 0 : if ( !mMap )
1216 : : {
1217 : 0 : return;
1218 : : }
1219 : :
1220 : 0 : if ( ! shouldShowAnnotationForSide( coordinateType, annot.border ) )
1221 : 0 : return;
1222 : :
1223 : 0 : QgsLayoutItemMapGrid::BorderSide frameBorder = annot.border;
1224 : 0 : double textWidth = QgsTextRenderer::textWidth( context, mAnnotationFormat, QStringList() << annotationString ) / context.convertToPainterUnits( 1, QgsUnitTypes::RenderMillimeters );
1225 : 0 : if ( extension )
1226 : 0 : textWidth *= 1.1; // little bit of extra padding when we are calculating the bounding rect, to account for antialiasing
1227 : :
1228 : : //relevant for annotations is the height of digits
1229 : 0 : double textHeight = ( extension ? ( QgsTextRenderer::textHeight( context, mAnnotationFormat, QChar(), true ) )
1230 : 0 : : ( QgsTextRenderer::textHeight( context, mAnnotationFormat, '0', false ) ) ) / context.convertToPainterUnits( 1, QgsUnitTypes::RenderMillimeters );
1231 : :
1232 : 0 : double xpos = annot.position.x();
1233 : 0 : double ypos = annot.position.y();
1234 : 0 : QPointF anchor = QPointF();
1235 : 0 : int rotation = 0;
1236 : :
1237 : 0 : AnnotationPosition anotPos = annotationPosition( frameBorder );
1238 : 0 : AnnotationDirection anotDir = annotationDirection( frameBorder );
1239 : :
1240 : : // If the angle is below the threshold, we don't draw the annotation
1241 : 0 : if ( abs( annot.angle ) / M_PI * 180.0 > 90.0 - mRotatedAnnotationsMinimumAngle + 0.0001 )
1242 : 0 : return;
1243 : :
1244 : 0 : QVector2D normalVector = borderToNormal2D( annot.border );
1245 : 0 : QVector2D vector = ( mRotatedAnnotationsEnabled ) ? annot.vector : normalVector;
1246 : :
1247 : : // Distance to frame
1248 : 0 : double f = mEvaluatedAnnotationFrameDistance;
1249 : :
1250 : : // Adapt distance to frame using the frame width and line thickness into account
1251 : 0 : bool isOverTick = ( anotDir == QgsLayoutItemMapGrid::AboveTick || anotDir == QgsLayoutItemMapGrid::OnTick || anotDir == QgsLayoutItemMapGrid::UnderTick );
1252 : 0 : bool hasInteriorMargin = ! isOverTick && ( mGridFrameStyle == QgsLayoutItemMapGrid::InteriorTicks || mGridFrameStyle == QgsLayoutItemMapGrid::InteriorExteriorTicks );
1253 : 0 : bool hasExteriorMargin = ! isOverTick && ( mGridFrameStyle == QgsLayoutItemMapGrid::Zebra || mGridFrameStyle == QgsLayoutItemMapGrid::ExteriorTicks || mGridFrameStyle == QgsLayoutItemMapGrid::InteriorExteriorTicks || mGridFrameStyle == QgsLayoutItemMapGrid::ZebraNautical );
1254 : 0 : bool hasBorderWidth = ( mGridFrameStyle == QgsLayoutItemMapGrid::Zebra || mGridFrameStyle == QgsLayoutItemMapGrid::ZebraNautical || mGridFrameStyle == QgsLayoutItemMapGrid::LineBorder || mGridFrameStyle == QgsLayoutItemMapGrid::LineBorderNautical );
1255 : 0 : if ( ( anotPos == QgsLayoutItemMapGrid::InsideMapFrame && hasInteriorMargin ) || ( anotPos == QgsLayoutItemMapGrid::OutsideMapFrame && hasExteriorMargin ) )
1256 : 0 : f += mEvaluatedGridFrameWidth;
1257 : 0 : if ( hasBorderWidth )
1258 : 0 : f += mEvaluatedGridFrameLineThickness / 2.0;
1259 : :
1260 : 0 : if ( anotPos == QgsLayoutItemMapGrid::OutsideMapFrame )
1261 : 0 : f *= -1;
1262 : :
1263 : 0 : if ( mRotatedAnnotationsEnabled && mRotatedAnnotationsLengthMode == OrthogonalTicks )
1264 : : {
1265 : 0 : f /= QVector2D::dotProduct( vector, normalVector );
1266 : 0 : }
1267 : :
1268 : 0 : QVector2D pos = annot.position + f * vector;
1269 : 0 : xpos = pos.x();
1270 : 0 : ypos = pos.y();
1271 : :
1272 : 0 : bool outside = ( anotPos == QgsLayoutItemMapGrid::OutsideMapFrame );
1273 : :
1274 : : if (
1275 : 0 : anotDir == QgsLayoutItemMapGrid::AboveTick ||
1276 : 0 : anotDir == QgsLayoutItemMapGrid::OnTick ||
1277 : 0 : anotDir == QgsLayoutItemMapGrid::UnderTick
1278 : : )
1279 : : {
1280 : :
1281 : 0 : rotation = atan2( vector.y(), vector.x() ) / M_PI * 180;
1282 : :
1283 : 0 : if ( rotation <= -90 || rotation > 90 )
1284 : : {
1285 : 0 : rotation += 180;
1286 : 0 : anchor.setX( outside ? 0 : textWidth ); // left / right
1287 : 0 : }
1288 : : else
1289 : : {
1290 : 0 : anchor.setX( outside ? textWidth : 0 ); // right / left
1291 : : }
1292 : :
1293 : 0 : if ( anotDir == QgsLayoutItemMapGrid::AboveTick )
1294 : 0 : anchor.setY( 0.5 * textHeight ); // bottom
1295 : 0 : else if ( anotDir == QgsLayoutItemMapGrid::UnderTick )
1296 : 0 : anchor.setY( -1.5 * textHeight ); // top
1297 : : else // OnTick
1298 : 0 : anchor.setY( -0.5 * textHeight ); // middle
1299 : :
1300 : 0 : }
1301 : 0 : else if ( anotDir == QgsLayoutItemMapGrid::Horizontal )
1302 : : {
1303 : 0 : rotation = 0;
1304 : 0 : anchor.setX( 0.5 * textWidth ); // center
1305 : 0 : anchor.setY( -0.5 * textHeight ); // middle
1306 : 0 : if ( frameBorder == QgsLayoutItemMapGrid::Top )
1307 : 0 : anchor.setY( outside ? 0 : -textHeight ); // bottom / top
1308 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Right )
1309 : 0 : anchor.setX( outside ? 0 : textWidth ); // left / right
1310 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Bottom )
1311 : 0 : anchor.setY( outside ? -textHeight : 0 ); // top / bottom
1312 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Left )
1313 : 0 : anchor.setX( outside ? textWidth : 0 ); // right / left
1314 : 0 : }
1315 : 0 : else if ( anotDir == QgsLayoutItemMapGrid::Vertical )
1316 : : {
1317 : 0 : rotation = -90;
1318 : 0 : anchor.setX( 0.5 * textWidth ); // center
1319 : 0 : anchor.setY( -0.5 * textHeight ); // middle
1320 : 0 : if ( frameBorder == QgsLayoutItemMapGrid::Top )
1321 : 0 : anchor.setX( outside ? 0 : textWidth ); // left / right
1322 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Right )
1323 : 0 : anchor.setY( outside ? -textHeight : 0 ); // top / bottom
1324 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Bottom )
1325 : 0 : anchor.setX( outside ? textWidth : 0 ); // right / left
1326 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Left )
1327 : 0 : anchor.setY( outside ? 0 : -textHeight ); // bottom / top
1328 : 0 : }
1329 : 0 : else if ( anotDir == QgsLayoutItemMapGrid::VerticalDescending )
1330 : : {
1331 : 0 : rotation = 90;
1332 : 0 : anchor.setX( 0.5 * textWidth ); // center
1333 : 0 : anchor.setY( -0.5 * textHeight ); // middle
1334 : 0 : if ( frameBorder == QgsLayoutItemMapGrid::Top )
1335 : 0 : anchor.setX( outside ? textWidth : 0 ); // right / left
1336 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Right )
1337 : 0 : anchor.setY( outside ? 0 : -textHeight ); // bottom / top
1338 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Bottom )
1339 : 0 : anchor.setX( outside ? 0 : textWidth ); // left / right
1340 : 0 : else if ( frameBorder == QgsLayoutItemMapGrid::Left )
1341 : 0 : anchor.setY( outside ? -textHeight : 0 ); // top / bottom
1342 : 0 : }
1343 : : else // ( anotDir == QgsLayoutItemMapGrid::BoundaryDirection )
1344 : : {
1345 : 0 : QVector2D borderVector = borderToVector2D( annot.border );
1346 : 0 : rotation = atan2( borderVector.y(), borderVector.x() ) / M_PI * 180;
1347 : 0 : anchor.setX( 0.5 * textWidth ); // center
1348 : 0 : if ( anotPos == QgsLayoutItemMapGrid::OutsideMapFrame )
1349 : 0 : anchor.setY( -textHeight ); // top
1350 : : else
1351 : 0 : anchor.setY( 0 ); // bottom
1352 : : }
1353 : :
1354 : : // extents isn't computed accurately
1355 : 0 : if ( extension && anotPos == QgsLayoutItemMapGrid::OutsideMapFrame )
1356 : : {
1357 : 0 : extension->UpdateBorder( frameBorder, -f + textWidth );
1358 : : // We also add a general margin, can be useful for labels near corners
1359 : 0 : extension->UpdateAll( textWidth / 2.0 );
1360 : 0 : }
1361 : :
1362 : 0 : if ( extension || !context.painter() )
1363 : 0 : return;
1364 : :
1365 : : // Skip outwards facing annotations that are below mRotatedAnnotationsMarginToCorner
1366 : 0 : bool facingLeft = ( annot.angle < 0 );
1367 : 0 : bool facingRight = ( annot.angle > 0 );
1368 : 0 : if ( anotPos == QgsLayoutItemMapGrid::OutsideMapFrame )
1369 : : {
1370 : 0 : facingLeft = !facingLeft;
1371 : 0 : facingRight = !facingRight;
1372 : 0 : }
1373 : 0 : if ( annot.border == BorderSide::Top && ( ( facingLeft && annot.position.x() < mRotatedAnnotationsMarginToCorner ) ||
1374 : 0 : ( facingRight && annot.position.x() > mMap->rect().width() - mRotatedAnnotationsMarginToCorner ) ) )
1375 : 0 : return;
1376 : 0 : if ( annot.border == BorderSide::Bottom && ( ( facingLeft && annot.position.x() > mMap->rect().width() - mRotatedAnnotationsMarginToCorner ) ||
1377 : 0 : ( facingRight && annot.position.x() < mRotatedAnnotationsMarginToCorner ) ) )
1378 : 0 : return;
1379 : 0 : if ( annot.border == BorderSide::Left && ( ( facingLeft && annot.position.y() > mMap->rect().height() - mRotatedAnnotationsMarginToCorner ) ||
1380 : 0 : ( facingRight && annot.position.y() < mRotatedAnnotationsMarginToCorner ) ) )
1381 : 0 : return;
1382 : 0 : if ( annot.border == BorderSide::Right && ( ( facingLeft && annot.position.y() < mRotatedAnnotationsMarginToCorner ) ||
1383 : 0 : ( facingRight && annot.position.y() > mMap->rect().height() - mRotatedAnnotationsMarginToCorner ) ) )
1384 : 0 : return;
1385 : :
1386 : 0 : QgsScopedQPainterState painterState( context.painter() );
1387 : 0 : context.painter()->translate( QPointF( xpos, ypos ) );
1388 : 0 : context.painter()->rotate( rotation );
1389 : 0 : context.painter()->translate( -anchor );
1390 : 0 : QgsScopedRenderContextScaleToPixels scale( context );
1391 : 0 : QgsTextRenderer::drawText( QPointF( 0, 0 ), 0, QgsTextRenderer::AlignLeft, QStringList() << annotationString, context, mAnnotationFormat );
1392 : 0 : }
1393 : :
1394 : 0 : QString QgsLayoutItemMapGrid::gridAnnotationString( double value, QgsLayoutItemMapGrid::AnnotationCoordinate coord, QgsExpressionContext &expressionContext ) const
1395 : : {
1396 : : //check if we are using degrees (ie, geographic crs)
1397 : 0 : bool geographic = false;
1398 : 0 : if ( mCRS.isValid() )
1399 : : {
1400 : 0 : geographic = mCRS.isGeographic();
1401 : 0 : }
1402 : 0 : else if ( mMap && mMap->layout() )
1403 : : {
1404 : 0 : geographic = mMap->crs().isGeographic();
1405 : 0 : }
1406 : :
1407 : 0 : if ( geographic && coord == QgsLayoutItemMapGrid::Longitude &&
1408 : 0 : ( mGridAnnotationFormat == QgsLayoutItemMapGrid::Decimal || mGridAnnotationFormat == QgsLayoutItemMapGrid::DecimalWithSuffix ) )
1409 : : {
1410 : : // wrap around longitudes > 180 or < -180 degrees, so that, e.g., "190E" -> "170W"
1411 : 0 : double wrappedX = std::fmod( value, 360.0 );
1412 : 0 : if ( wrappedX > 180.0 )
1413 : : {
1414 : 0 : value = wrappedX - 360.0;
1415 : 0 : }
1416 : 0 : else if ( wrappedX < -180.0 )
1417 : : {
1418 : 0 : value = wrappedX + 360.0;
1419 : 0 : }
1420 : 0 : }
1421 : :
1422 : 0 : if ( mGridAnnotationFormat == QgsLayoutItemMapGrid::Decimal )
1423 : : {
1424 : 0 : return QString::number( value, 'f', mGridAnnotationPrecision );
1425 : : }
1426 : 0 : else if ( mGridAnnotationFormat == QgsLayoutItemMapGrid::DecimalWithSuffix )
1427 : : {
1428 : 0 : QString hemisphere;
1429 : :
1430 : 0 : double coordRounded = qgsRound( value, mGridAnnotationPrecision );
1431 : 0 : if ( coord == QgsLayoutItemMapGrid::Longitude )
1432 : : {
1433 : : //don't use E/W suffixes if ambiguous (e.g., 180 degrees)
1434 : 0 : if ( !geographic || ( coordRounded != 180.0 && coordRounded != 0.0 ) )
1435 : : {
1436 : 0 : hemisphere = value < 0 ? QObject::tr( "W" ) : QObject::tr( "E" );
1437 : 0 : }
1438 : 0 : }
1439 : : else
1440 : : {
1441 : : //don't use N/S suffixes if ambiguous (e.g., 0 degrees)
1442 : 0 : if ( !geographic || coordRounded != 0.0 )
1443 : : {
1444 : 0 : hemisphere = value < 0 ? QObject::tr( "S" ) : QObject::tr( "N" );
1445 : 0 : }
1446 : : }
1447 : 0 : if ( geographic )
1448 : : {
1449 : : //insert degree symbol for geographic coordinates
1450 : 0 : return QString::number( std::fabs( value ), 'f', mGridAnnotationPrecision ) + QChar( 176 ) + hemisphere;
1451 : : }
1452 : : else
1453 : : {
1454 : 0 : return QString::number( std::fabs( value ), 'f', mGridAnnotationPrecision ) + hemisphere;
1455 : : }
1456 : 0 : }
1457 : 0 : else if ( mGridAnnotationFormat == CustomFormat )
1458 : : {
1459 : 0 : expressionContext.lastScope()->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "grid_number" ), value, true ) );
1460 : 0 : expressionContext.lastScope()->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "grid_axis" ), coord == QgsLayoutItemMapGrid::Longitude ? "x" : "y", true ) );
1461 : 0 : if ( !mGridAnnotationExpression )
1462 : : {
1463 : 0 : mGridAnnotationExpression.reset( new QgsExpression( mGridAnnotationExpressionString ) );
1464 : 0 : mGridAnnotationExpression->prepare( &expressionContext );
1465 : 0 : }
1466 : 0 : return mGridAnnotationExpression->evaluate( &expressionContext ).toString();
1467 : : }
1468 : :
1469 : 0 : QgsCoordinateFormatter::Format format = QgsCoordinateFormatter::FormatDecimalDegrees;
1470 : 0 : QgsCoordinateFormatter::FormatFlags flags = QgsCoordinateFormatter::FormatFlags();
1471 : 0 : switch ( mGridAnnotationFormat )
1472 : : {
1473 : : case Decimal:
1474 : : case DecimalWithSuffix:
1475 : : case CustomFormat:
1476 : 0 : break; // already handled above
1477 : :
1478 : : case DegreeMinute:
1479 : 0 : format = QgsCoordinateFormatter::FormatDegreesMinutes;
1480 : 0 : flags = QgsCoordinateFormatter::FlagDegreesUseStringSuffix;
1481 : 0 : break;
1482 : :
1483 : : case DegreeMinuteSecond:
1484 : 0 : format = QgsCoordinateFormatter::FormatDegreesMinutesSeconds;
1485 : 0 : flags = QgsCoordinateFormatter::FlagDegreesUseStringSuffix;
1486 : 0 : break;
1487 : :
1488 : : case DegreeMinuteNoSuffix:
1489 : 0 : format = QgsCoordinateFormatter::FormatDegreesMinutes;
1490 : 0 : flags = QgsCoordinateFormatter::FormatFlags();
1491 : 0 : break;
1492 : :
1493 : : case DegreeMinutePadded:
1494 : 0 : format = QgsCoordinateFormatter::FormatDegreesMinutes;
1495 : 0 : flags = QgsCoordinateFormatter::FlagDegreesUseStringSuffix | QgsCoordinateFormatter::FlagDegreesPadMinutesSeconds;
1496 : 0 : break;
1497 : :
1498 : : case DegreeMinuteSecondNoSuffix:
1499 : 0 : format = QgsCoordinateFormatter::FormatDegreesMinutesSeconds;
1500 : 0 : flags = QgsCoordinateFormatter::FormatFlags();
1501 : 0 : break;
1502 : :
1503 : : case DegreeMinuteSecondPadded:
1504 : 0 : format = QgsCoordinateFormatter::FormatDegreesMinutesSeconds;
1505 : 0 : flags = QgsCoordinateFormatter::FlagDegreesUseStringSuffix | QgsCoordinateFormatter::FlagDegreesPadMinutesSeconds;
1506 : 0 : break;
1507 : : }
1508 : :
1509 : 0 : switch ( coord )
1510 : : {
1511 : : case Longitude:
1512 : 0 : return QgsCoordinateFormatter::formatX( value, format, mGridAnnotationPrecision, flags );
1513 : :
1514 : : case Latitude:
1515 : 0 : return QgsCoordinateFormatter::formatY( value, format, mGridAnnotationPrecision, flags );
1516 : : }
1517 : :
1518 : 0 : return QString(); // no warnings
1519 : 0 : }
1520 : :
1521 : 0 : int QgsLayoutItemMapGrid::xGridLines() const
1522 : : {
1523 : 0 : if ( !mMap || mEvaluatedIntervalY <= 0.0 )
1524 : : {
1525 : 0 : return 1;
1526 : : }
1527 : :
1528 : :
1529 : 0 : QPolygonF mapPolygon = mMap->transformedMapPolygon();
1530 : 0 : QRectF mapBoundingRect = mapPolygon.boundingRect();
1531 : 0 : double gridIntervalY = mEvaluatedIntervalY;
1532 : 0 : double gridOffsetY = mEvaluatedOffsetY;
1533 : 0 : double annotationScale = 1.0;
1534 : 0 : switch ( mGridUnit )
1535 : : {
1536 : : case CM:
1537 : : case MM:
1538 : : {
1539 : 0 : mapBoundingRect = mMap->rect();
1540 : 0 : mapPolygon = QPolygonF( mMap->rect() );
1541 : 0 : if ( mGridUnit == CM )
1542 : : {
1543 : 0 : annotationScale = 0.1;
1544 : 0 : gridIntervalY *= 10;
1545 : 0 : gridOffsetY *= 10;
1546 : 0 : }
1547 : 0 : break;
1548 : : }
1549 : :
1550 : : case MapUnit:
1551 : : case DynamicPageSizeBased:
1552 : 0 : break;
1553 : : }
1554 : :
1555 : : //consider to round up to the next step in case the left boundary is > 0
1556 : 0 : double roundCorrection = mapBoundingRect.top() > 0 ? 1.0 : 0.0;
1557 : 0 : double currentLevel = static_cast< int >( ( mapBoundingRect.top() - gridOffsetY ) / gridIntervalY + roundCorrection ) * gridIntervalY + gridOffsetY;
1558 : :
1559 : 0 : int gridLineCount = 0;
1560 : 0 : if ( qgsDoubleNear( mMap->mapRotation(), 0.0 ) || ( mGridUnit != MapUnit && mGridUnit != DynamicPageSizeBased ) )
1561 : : {
1562 : : //no rotation. Do it 'the easy way'
1563 : :
1564 : : double yCanvasCoord;
1565 : 0 : while ( currentLevel <= mapBoundingRect.bottom() && gridLineCount < MAX_GRID_LINES )
1566 : : {
1567 : 0 : yCanvasCoord = mMap->rect().height() * ( 1 - ( currentLevel - mapBoundingRect.top() ) / mapBoundingRect.height() );
1568 : 0 : GridLine newLine;
1569 : 0 : newLine.coordinate = currentLevel * annotationScale;
1570 : 0 : newLine.coordinateType = AnnotationCoordinate::Latitude;
1571 : 0 : newLine.line = QPolygonF() << QPointF( 0, yCanvasCoord ) << QPointF( mMap->rect().width(), yCanvasCoord );
1572 : 0 : mGridLines.append( newLine );
1573 : 0 : currentLevel += gridIntervalY;
1574 : 0 : gridLineCount++;
1575 : 0 : }
1576 : 0 : return 0;
1577 : : }
1578 : :
1579 : : //the four border lines
1580 : 0 : QVector<QLineF> borderLines;
1581 : 0 : borderLines << QLineF( mapPolygon.at( 0 ), mapPolygon.at( 1 ) );
1582 : 0 : borderLines << QLineF( mapPolygon.at( 1 ), mapPolygon.at( 2 ) );
1583 : 0 : borderLines << QLineF( mapPolygon.at( 2 ), mapPolygon.at( 3 ) );
1584 : 0 : borderLines << QLineF( mapPolygon.at( 3 ), mapPolygon.at( 0 ) );
1585 : :
1586 : 0 : QVector<QPointF> intersectionList; //intersects between border lines and grid lines
1587 : :
1588 : 0 : while ( currentLevel <= mapBoundingRect.bottom() && gridLineCount < MAX_GRID_LINES )
1589 : : {
1590 : 0 : intersectionList.clear();
1591 : 0 : QLineF gridLine( mapBoundingRect.left(), currentLevel, mapBoundingRect.right(), currentLevel );
1592 : :
1593 : 0 : QVector<QLineF>::const_iterator it = borderLines.constBegin();
1594 : 0 : for ( ; it != borderLines.constEnd(); ++it )
1595 : : {
1596 : 0 : QPointF intersectionPoint;
1597 : : #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
1598 : : if ( it->intersect( gridLine, &intersectionPoint ) == QLineF::BoundedIntersection )
1599 : : #else
1600 : 0 : if ( it->intersects( gridLine, &intersectionPoint ) == QLineF::BoundedIntersection )
1601 : : #endif
1602 : : {
1603 : 0 : intersectionList.push_back( intersectionPoint );
1604 : 0 : if ( intersectionList.size() >= 2 )
1605 : : {
1606 : 0 : break; //we already have two intersections, skip further tests
1607 : : }
1608 : 0 : }
1609 : 0 : }
1610 : :
1611 : 0 : if ( intersectionList.size() >= 2 )
1612 : : {
1613 : 0 : GridLine newLine;
1614 : 0 : newLine.coordinate = currentLevel;
1615 : 0 : newLine.coordinateType = AnnotationCoordinate::Latitude;
1616 : 0 : newLine.line = QPolygonF() << mMap->mapToItemCoords( intersectionList.at( 0 ) ) << mMap->mapToItemCoords( intersectionList.at( 1 ) );
1617 : 0 : mGridLines.append( newLine );
1618 : 0 : gridLineCount++;
1619 : 0 : }
1620 : 0 : currentLevel += gridIntervalY;
1621 : : }
1622 : :
1623 : :
1624 : 0 : return 0;
1625 : 0 : }
1626 : :
1627 : 0 : int QgsLayoutItemMapGrid::yGridLines() const
1628 : : {
1629 : 0 : if ( !mMap || mEvaluatedIntervalX <= 0.0 )
1630 : : {
1631 : 0 : return 1;
1632 : : }
1633 : :
1634 : 0 : QPolygonF mapPolygon = mMap->transformedMapPolygon();
1635 : 0 : QRectF mapBoundingRect = mapPolygon.boundingRect();
1636 : 0 : double gridIntervalX = mEvaluatedIntervalX;
1637 : 0 : double gridOffsetX = mEvaluatedOffsetX;
1638 : 0 : double annotationScale = 1.0;
1639 : 0 : switch ( mGridUnit )
1640 : : {
1641 : : case CM:
1642 : : case MM:
1643 : : {
1644 : 0 : mapBoundingRect = mMap->rect();
1645 : 0 : mapPolygon = QPolygonF( mMap->rect() );
1646 : 0 : if ( mGridUnit == CM )
1647 : : {
1648 : 0 : annotationScale = 0.1;
1649 : 0 : gridIntervalX *= 10;
1650 : 0 : gridOffsetX *= 10;
1651 : 0 : }
1652 : 0 : break;
1653 : : }
1654 : :
1655 : : case MapUnit:
1656 : : case DynamicPageSizeBased:
1657 : 0 : break;
1658 : : }
1659 : :
1660 : : //consider to round up to the next step in case the left boundary is > 0
1661 : 0 : double roundCorrection = mapBoundingRect.left() > 0 ? 1.0 : 0.0;
1662 : 0 : double currentLevel = static_cast< int >( ( mapBoundingRect.left() - gridOffsetX ) / gridIntervalX + roundCorrection ) * gridIntervalX + gridOffsetX;
1663 : :
1664 : 0 : int gridLineCount = 0;
1665 : 0 : if ( qgsDoubleNear( mMap->mapRotation(), 0.0 ) || ( mGridUnit != MapUnit && mGridUnit != DynamicPageSizeBased ) )
1666 : : {
1667 : : //no rotation. Do it 'the easy way'
1668 : : double xCanvasCoord;
1669 : 0 : while ( currentLevel <= mapBoundingRect.right() && gridLineCount < MAX_GRID_LINES )
1670 : : {
1671 : 0 : xCanvasCoord = mMap->rect().width() * ( currentLevel - mapBoundingRect.left() ) / mapBoundingRect.width();
1672 : :
1673 : 0 : GridLine newLine;
1674 : 0 : newLine.coordinate = currentLevel * annotationScale;
1675 : 0 : newLine.coordinateType = AnnotationCoordinate::Longitude;
1676 : 0 : newLine.line = QPolygonF() << QPointF( xCanvasCoord, 0 ) << QPointF( xCanvasCoord, mMap->rect().height() );
1677 : 0 : mGridLines.append( newLine );
1678 : 0 : currentLevel += gridIntervalX;
1679 : 0 : gridLineCount++;
1680 : 0 : }
1681 : 0 : return 0;
1682 : : }
1683 : :
1684 : : //the four border lines
1685 : 0 : QVector<QLineF> borderLines;
1686 : 0 : borderLines << QLineF( mapPolygon.at( 0 ), mapPolygon.at( 1 ) );
1687 : 0 : borderLines << QLineF( mapPolygon.at( 1 ), mapPolygon.at( 2 ) );
1688 : 0 : borderLines << QLineF( mapPolygon.at( 2 ), mapPolygon.at( 3 ) );
1689 : 0 : borderLines << QLineF( mapPolygon.at( 3 ), mapPolygon.at( 0 ) );
1690 : :
1691 : 0 : QVector<QPointF> intersectionList; //intersects between border lines and grid lines
1692 : :
1693 : 0 : while ( currentLevel <= mapBoundingRect.right() && gridLineCount < MAX_GRID_LINES )
1694 : : {
1695 : 0 : intersectionList.clear();
1696 : 0 : QLineF gridLine( currentLevel, mapBoundingRect.bottom(), currentLevel, mapBoundingRect.top() );
1697 : :
1698 : 0 : QVector<QLineF>::const_iterator it = borderLines.constBegin();
1699 : 0 : for ( ; it != borderLines.constEnd(); ++it )
1700 : : {
1701 : 0 : QPointF intersectionPoint;
1702 : : #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
1703 : : if ( it->intersect( gridLine, &intersectionPoint ) == QLineF::BoundedIntersection )
1704 : : #else
1705 : 0 : if ( it->intersects( gridLine, &intersectionPoint ) == QLineF::BoundedIntersection )
1706 : : #endif
1707 : : {
1708 : 0 : intersectionList.push_back( intersectionPoint );
1709 : 0 : if ( intersectionList.size() >= 2 )
1710 : : {
1711 : 0 : break; //we already have two intersections, skip further tests
1712 : : }
1713 : 0 : }
1714 : 0 : }
1715 : :
1716 : 0 : if ( intersectionList.size() >= 2 )
1717 : : {
1718 : 0 : GridLine newLine;
1719 : 0 : newLine.coordinate = currentLevel;
1720 : 0 : newLine.coordinateType = AnnotationCoordinate::Longitude;
1721 : 0 : newLine.line = QPolygonF() << mMap->mapToItemCoords( intersectionList.at( 0 ) ) << mMap->mapToItemCoords( intersectionList.at( 1 ) );
1722 : 0 : mGridLines.append( newLine );
1723 : 0 : gridLineCount++;
1724 : 0 : }
1725 : 0 : currentLevel += gridIntervalX;
1726 : : }
1727 : :
1728 : 0 : return 0;
1729 : 0 : }
1730 : :
1731 : 0 : int QgsLayoutItemMapGrid::xGridLinesCrsTransform( const QgsRectangle &bbox, const QgsCoordinateTransform &t ) const
1732 : : {
1733 : 0 : if ( !mMap || mEvaluatedIntervalY <= 0.0 )
1734 : : {
1735 : 0 : return 1;
1736 : : }
1737 : :
1738 : 0 : double roundCorrection = bbox.yMaximum() > 0 ? 1.0 : 0.0;
1739 : 0 : double currentLevel = static_cast< int >( ( bbox.yMaximum() - mEvaluatedOffsetY ) / mEvaluatedIntervalY + roundCorrection ) * mEvaluatedIntervalY + mEvaluatedOffsetY;
1740 : :
1741 : 0 : double minX = bbox.xMinimum();
1742 : 0 : double maxX = bbox.xMaximum();
1743 : 0 : double step = ( maxX - minX ) / 20;
1744 : :
1745 : 0 : bool crosses180 = false;
1746 : 0 : bool crossed180 = false;
1747 : 0 : if ( mCRS.isGeographic() && ( minX > maxX ) )
1748 : : {
1749 : : //handle 180 degree longitude crossover
1750 : 0 : crosses180 = true;
1751 : 0 : step = ( maxX + 360.0 - minX ) / 20;
1752 : 0 : }
1753 : :
1754 : 0 : if ( qgsDoubleNear( step, 0.0 ) )
1755 : 0 : return 1;
1756 : :
1757 : 0 : int gridLineCount = 0;
1758 : 0 : while ( currentLevel >= bbox.yMinimum() && gridLineCount < MAX_GRID_LINES )
1759 : : {
1760 : 0 : QPolygonF gridLine;
1761 : 0 : double currentX = minX;
1762 : 0 : bool cont = true;
1763 : 0 : while ( cont )
1764 : : {
1765 : 0 : if ( ( !crosses180 || crossed180 ) && ( currentX > maxX ) )
1766 : : {
1767 : 0 : cont = false;
1768 : 0 : }
1769 : :
1770 : : try
1771 : : {
1772 : 0 : QgsPointXY mapPoint = t.transform( currentX, currentLevel ); //transform back to map crs
1773 : 0 : gridLine.append( mMap->mapToItemCoords( QPointF( mapPoint.x(), mapPoint.y() ) ) ); //transform back to composer coords
1774 : 0 : }
1775 : : catch ( QgsCsException &cse )
1776 : : {
1777 : 0 : Q_UNUSED( cse )
1778 : 0 : QgsDebugMsg( QStringLiteral( "Caught CRS exception %1" ).arg( cse.what() ) );
1779 : 0 : }
1780 : :
1781 : 0 : currentX += step;
1782 : 0 : if ( crosses180 && currentX > 180.0 )
1783 : : {
1784 : 0 : currentX -= 360.0;
1785 : 0 : crossed180 = true;
1786 : 0 : }
1787 : : }
1788 : 0 : crossed180 = false;
1789 : :
1790 : 0 : QList<QPolygonF> lineSegments = trimLinesToMap( gridLine, QgsRectangle( mMap->rect() ) );
1791 : 0 : QList<QPolygonF>::const_iterator lineIt = lineSegments.constBegin();
1792 : 0 : for ( ; lineIt != lineSegments.constEnd(); ++lineIt )
1793 : : {
1794 : 0 : if ( !( *lineIt ).isEmpty() )
1795 : : {
1796 : 0 : GridLine newLine;
1797 : 0 : newLine.coordinate = currentLevel;
1798 : 0 : newLine.coordinateType = AnnotationCoordinate::Latitude;
1799 : 0 : newLine.line = QPolygonF( *lineIt );
1800 : 0 : mGridLines.append( newLine );
1801 : 0 : gridLineCount++;
1802 : 0 : }
1803 : 0 : }
1804 : 0 : currentLevel -= mEvaluatedIntervalY;
1805 : 0 : }
1806 : :
1807 : 0 : return 0;
1808 : 0 : }
1809 : :
1810 : 0 : int QgsLayoutItemMapGrid::yGridLinesCrsTransform( const QgsRectangle &bbox, const QgsCoordinateTransform &t ) const
1811 : : {
1812 : 0 : if ( !mMap || mEvaluatedIntervalX <= 0.0 )
1813 : : {
1814 : 0 : return 1;
1815 : : }
1816 : :
1817 : 0 : double roundCorrection = bbox.xMinimum() > 0 ? 1.0 : 0.0;
1818 : 0 : double currentLevel = static_cast< int >( ( bbox.xMinimum() - mEvaluatedOffsetX ) / mEvaluatedIntervalX + roundCorrection ) * mEvaluatedIntervalX + mEvaluatedOffsetX;
1819 : :
1820 : 0 : double minY = bbox.yMinimum();
1821 : 0 : double maxY = bbox.yMaximum();
1822 : 0 : double step = ( maxY - minY ) / 20;
1823 : :
1824 : 0 : if ( qgsDoubleNear( step, 0.0 ) )
1825 : 0 : return 1;
1826 : :
1827 : 0 : bool crosses180 = false;
1828 : 0 : bool crossed180 = false;
1829 : 0 : if ( mCRS.isGeographic() && ( bbox.xMinimum() > bbox.xMaximum() ) )
1830 : : {
1831 : : //handle 180 degree longitude crossover
1832 : 0 : crosses180 = true;
1833 : 0 : }
1834 : :
1835 : 0 : int gridLineCount = 0;
1836 : 0 : while ( ( currentLevel <= bbox.xMaximum() || ( crosses180 && !crossed180 ) ) && gridLineCount < MAX_GRID_LINES )
1837 : : {
1838 : 0 : QPolygonF gridLine;
1839 : 0 : double currentY = minY;
1840 : 0 : bool cont = true;
1841 : 0 : while ( cont )
1842 : : {
1843 : 0 : if ( currentY > maxY )
1844 : : {
1845 : 0 : cont = false;
1846 : 0 : }
1847 : : try
1848 : : {
1849 : : //transform back to map crs
1850 : 0 : QgsPointXY mapPoint = t.transform( currentLevel, currentY );
1851 : : //transform back to composer coords
1852 : 0 : gridLine.append( mMap->mapToItemCoords( QPointF( mapPoint.x(), mapPoint.y() ) ) );
1853 : 0 : }
1854 : : catch ( QgsCsException &cse )
1855 : : {
1856 : 0 : Q_UNUSED( cse )
1857 : 0 : QgsDebugMsg( QStringLiteral( "Caught CRS exception %1" ).arg( cse.what() ) );
1858 : 0 : }
1859 : :
1860 : 0 : currentY += step;
1861 : : }
1862 : : //clip grid line to map polygon
1863 : 0 : QList<QPolygonF> lineSegments = trimLinesToMap( gridLine, QgsRectangle( mMap->rect() ) );
1864 : 0 : QList<QPolygonF>::const_iterator lineIt = lineSegments.constBegin();
1865 : 0 : for ( ; lineIt != lineSegments.constEnd(); ++lineIt )
1866 : : {
1867 : 0 : if ( !( *lineIt ).isEmpty() )
1868 : : {
1869 : 0 : GridLine newLine;
1870 : 0 : newLine.coordinate = currentLevel;
1871 : 0 : newLine.coordinateType = AnnotationCoordinate::Longitude;
1872 : 0 : newLine.line = QPolygonF( *lineIt );
1873 : 0 : mGridLines.append( newLine );
1874 : 0 : gridLineCount++;
1875 : 0 : }
1876 : 0 : }
1877 : 0 : currentLevel += mEvaluatedIntervalX;
1878 : 0 : if ( crosses180 && currentLevel > 180.0 )
1879 : : {
1880 : 0 : currentLevel -= 360.0;
1881 : 0 : crossed180 = true;
1882 : 0 : }
1883 : 0 : }
1884 : :
1885 : 0 : return 0;
1886 : 0 : }
1887 : :
1888 : 0 : bool QgsLayoutItemMapGrid::shouldShowDivisionForSide( QgsLayoutItemMapGrid::AnnotationCoordinate coordinate, QgsLayoutItemMapGrid::BorderSide side ) const
1889 : : {
1890 : 0 : switch ( side )
1891 : : {
1892 : : case QgsLayoutItemMapGrid::Left:
1893 : 0 : return testFrameSideFlag( QgsLayoutItemMapGrid::FrameLeft ) && shouldShowForDisplayMode( coordinate, mEvaluatedLeftFrameDivisions );
1894 : : case QgsLayoutItemMapGrid::Right:
1895 : 0 : return testFrameSideFlag( QgsLayoutItemMapGrid::FrameRight ) && shouldShowForDisplayMode( coordinate, mEvaluatedRightFrameDivisions );
1896 : : case QgsLayoutItemMapGrid::Top:
1897 : 0 : return testFrameSideFlag( QgsLayoutItemMapGrid::FrameTop ) && shouldShowForDisplayMode( coordinate, mEvaluatedTopFrameDivisions );
1898 : : case QgsLayoutItemMapGrid::Bottom:
1899 : 0 : return testFrameSideFlag( QgsLayoutItemMapGrid::FrameBottom ) && shouldShowForDisplayMode( coordinate, mEvaluatedBottomFrameDivisions );
1900 : : }
1901 : 0 : return false; // no warnings
1902 : 0 : }
1903 : :
1904 : 0 : bool QgsLayoutItemMapGrid::shouldShowAnnotationForSide( QgsLayoutItemMapGrid::AnnotationCoordinate coordinate, QgsLayoutItemMapGrid::BorderSide side ) const
1905 : : {
1906 : 0 : switch ( side )
1907 : : {
1908 : : case QgsLayoutItemMapGrid::Left:
1909 : 0 : return shouldShowForDisplayMode( coordinate, mEvaluatedLeftGridAnnotationDisplay );
1910 : : case QgsLayoutItemMapGrid::Right:
1911 : 0 : return shouldShowForDisplayMode( coordinate, mEvaluatedRightGridAnnotationDisplay );
1912 : : case QgsLayoutItemMapGrid::Top:
1913 : 0 : return shouldShowForDisplayMode( coordinate, mEvaluatedTopGridAnnotationDisplay );
1914 : : case QgsLayoutItemMapGrid::Bottom:
1915 : 0 : return shouldShowForDisplayMode( coordinate, mEvaluatedBottomGridAnnotationDisplay );
1916 : : }
1917 : 0 : return false; // no warnings
1918 : 0 : }
1919 : :
1920 : 0 : bool QgsLayoutItemMapGrid::shouldShowForDisplayMode( QgsLayoutItemMapGrid::AnnotationCoordinate coordinate, QgsLayoutItemMapGrid::DisplayMode mode ) const
1921 : : {
1922 : 0 : return mode == QgsLayoutItemMapGrid::ShowAll
1923 : 0 : || ( mode == QgsLayoutItemMapGrid::LatitudeOnly && coordinate == QgsLayoutItemMapGrid::Latitude )
1924 : 0 : || ( mode == QgsLayoutItemMapGrid::LongitudeOnly && coordinate == QgsLayoutItemMapGrid::Longitude );
1925 : : }
1926 : :
1927 : :
1928 : 0 : QgsLayoutItemMapGrid::DisplayMode gridAnnotationDisplayModeFromDD( QString ddValue, QgsLayoutItemMapGrid::DisplayMode defValue )
1929 : : {
1930 : 0 : if ( ddValue.compare( QLatin1String( "x_only" ), Qt::CaseInsensitive ) == 0 )
1931 : 0 : return QgsLayoutItemMapGrid::LatitudeOnly;
1932 : 0 : else if ( ddValue.compare( QLatin1String( "y_only" ), Qt::CaseInsensitive ) == 0 )
1933 : 0 : return QgsLayoutItemMapGrid::LongitudeOnly;
1934 : 0 : else if ( ddValue.compare( QLatin1String( "disabled" ), Qt::CaseInsensitive ) == 0 )
1935 : 0 : return QgsLayoutItemMapGrid::HideAll;
1936 : 0 : else if ( ddValue.compare( QLatin1String( "all" ), Qt::CaseInsensitive ) == 0 )
1937 : 0 : return QgsLayoutItemMapGrid::ShowAll;
1938 : : else
1939 : 0 : return defValue;
1940 : 0 : }
1941 : :
1942 : :
1943 : 0 : void QgsLayoutItemMapGrid::refreshDataDefinedProperties()
1944 : : {
1945 : 0 : QgsExpressionContext context = createExpressionContext();
1946 : :
1947 : 0 : mEvaluatedEnabled = mDataDefinedProperties.valueAsBool( QgsLayoutObject::MapGridEnabled, context, enabled() );
1948 : 0 : switch ( mGridUnit )
1949 : : {
1950 : : case MapUnit:
1951 : : case MM:
1952 : : case CM:
1953 : : {
1954 : 0 : mEvaluatedIntervalX = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridIntervalX, context, mGridIntervalX );
1955 : 0 : mEvaluatedIntervalY = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridIntervalY, context, mGridIntervalY );
1956 : 0 : break;
1957 : : }
1958 : :
1959 : : case DynamicPageSizeBased:
1960 : : {
1961 : 0 : if ( mMaximumIntervalWidth < mMinimumIntervalWidth )
1962 : : {
1963 : 0 : mEvaluatedEnabled = false;
1964 : 0 : }
1965 : : else
1966 : : {
1967 : 0 : const double mapWidthMm = mLayout->renderContext().measurementConverter().convert( mMap->sizeWithUnits(), QgsUnitTypes::LayoutMillimeters ).width();
1968 : 0 : const double mapWidthMapUnits = mapWidth();
1969 : 0 : double minUnitsPerSeg = ( mMinimumIntervalWidth * mapWidthMapUnits ) / mapWidthMm;
1970 : 0 : double maxUnitsPerSeg = ( mMaximumIntervalWidth * mapWidthMapUnits ) / mapWidthMm;
1971 : 0 : const double interval = QgsLayoutUtils::calculatePrettySize( minUnitsPerSeg, maxUnitsPerSeg );
1972 : 0 : mEvaluatedIntervalX = interval;
1973 : 0 : mEvaluatedIntervalY = interval;
1974 : : }
1975 : 0 : break;
1976 : : }
1977 : : }
1978 : 0 : mEvaluatedOffsetX = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridOffsetX, context, mGridOffsetX );
1979 : 0 : mEvaluatedOffsetY = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridOffsetY, context, mGridOffsetY );
1980 : 0 : mEvaluatedGridFrameWidth = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridFrameSize, context, mGridFrameWidth );
1981 : 0 : mEvaluatedGridFrameMargin = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridFrameMargin, context, mGridFrameMargin );
1982 : 0 : mEvaluatedAnnotationFrameDistance = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridLabelDistance, context, mAnnotationFrameDistance );
1983 : 0 : mEvaluatedCrossLength = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridCrossSize, context, mCrossLength );
1984 : 0 : mEvaluatedGridFrameLineThickness = mDataDefinedProperties.valueAsDouble( QgsLayoutObject::MapGridFrameLineThickness, context, mGridFramePenThickness );
1985 : 0 : mEvaluatedLeftGridAnnotationDisplay = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridAnnotationDisplayLeft, context ), mLeftGridAnnotationDisplay );
1986 : 0 : mEvaluatedRightGridAnnotationDisplay = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridAnnotationDisplayRight, context ), mRightGridAnnotationDisplay );
1987 : 0 : mEvaluatedTopGridAnnotationDisplay = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridAnnotationDisplayTop, context ), mTopGridAnnotationDisplay );
1988 : 0 : mEvaluatedBottomGridAnnotationDisplay = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridAnnotationDisplayBottom, context ), mBottomGridAnnotationDisplay );
1989 : 0 : mEvaluatedLeftFrameDivisions = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridFrameDivisionsLeft, context ), mLeftFrameDivisions );
1990 : 0 : mEvaluatedRightFrameDivisions = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridFrameDivisionsRight, context ), mRightFrameDivisions );
1991 : 0 : mEvaluatedTopFrameDivisions = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridFrameDivisionsTop, context ), mTopFrameDivisions );
1992 : 0 : mEvaluatedBottomFrameDivisions = gridAnnotationDisplayModeFromDD( mDataDefinedProperties.valueAsString( QgsLayoutObject::MapGridFrameDivisionsBottom, context ), mBottomFrameDivisions );
1993 : :
1994 : 0 : }
1995 : :
1996 : 0 : double QgsLayoutItemMapGrid::mapWidth() const
1997 : : {
1998 : 0 : if ( !mMap )
1999 : : {
2000 : 0 : return 0.0;
2001 : : }
2002 : :
2003 : 0 : QgsRectangle mapExtent = mMap->extent();
2004 : 0 : const QgsUnitTypes::DistanceUnit distanceUnit = mCRS.isValid() ? mCRS.mapUnits() : mMap->crs().mapUnits();
2005 : 0 : if ( distanceUnit == QgsUnitTypes::DistanceUnknownUnit )
2006 : : {
2007 : 0 : return mapExtent.width();
2008 : : }
2009 : : else
2010 : : {
2011 : 0 : QgsDistanceArea da;
2012 : :
2013 : 0 : da.setSourceCrs( mMap->crs(), mLayout->project()->transformContext() );
2014 : 0 : da.setEllipsoid( mLayout->project()->ellipsoid() );
2015 : :
2016 : 0 : QgsUnitTypes::DistanceUnit units = da.lengthUnits();
2017 : 0 : double measure = da.measureLine( QgsPointXY( mapExtent.xMinimum(), mapExtent.yMinimum() ),
2018 : 0 : QgsPointXY( mapExtent.xMaximum(), mapExtent.yMinimum() ) );
2019 : 0 : measure /= QgsUnitTypes::fromUnitToUnitFactor( distanceUnit, units );
2020 : 0 : return measure;
2021 : 0 : }
2022 : 0 : }
2023 : :
2024 : 0 : bool sortByDistance( QPair<qreal, QgsLayoutItemMapGrid::BorderSide> a, QPair<qreal, QgsLayoutItemMapGrid::BorderSide> b )
2025 : : {
2026 : 0 : return a.first < b.first;
2027 : : }
2028 : :
2029 : 0 : QgsLayoutItemMapGrid::BorderSide QgsLayoutItemMapGrid::borderForLineCoord( QPointF p, const AnnotationCoordinate coordinateType ) const
2030 : : {
2031 : 0 : if ( !mMap )
2032 : : {
2033 : 0 : return QgsLayoutItemMapGrid::Left;
2034 : : }
2035 : :
2036 : 0 : double tolerance = std::max( mMap->frameEnabled() ? mMap->pen().widthF() : 0.0, 1.0 );
2037 : :
2038 : : //check for corner coordinates
2039 : 0 : if ( ( p.y() <= tolerance && p.x() <= tolerance ) // top left
2040 : 0 : || ( p.y() <= tolerance && p.x() >= ( mMap->rect().width() - tolerance ) ) //top right
2041 : 0 : || ( p.y() >= ( mMap->rect().height() - tolerance ) && p.x() <= tolerance ) //bottom left
2042 : 0 : || ( p.y() >= ( mMap->rect().height() - tolerance ) && p.x() >= ( mMap->rect().width() - tolerance ) ) //bottom right
2043 : : )
2044 : : {
2045 : : //coordinate is in corner - fall back to preferred side for coordinate type
2046 : 0 : if ( coordinateType == QgsLayoutItemMapGrid::Latitude )
2047 : : {
2048 : 0 : if ( p.x() <= tolerance )
2049 : : {
2050 : 0 : return QgsLayoutItemMapGrid::Left;
2051 : : }
2052 : : else
2053 : : {
2054 : 0 : return QgsLayoutItemMapGrid::Right;
2055 : : }
2056 : : }
2057 : : else
2058 : : {
2059 : 0 : if ( p.y() <= tolerance )
2060 : : {
2061 : 0 : return QgsLayoutItemMapGrid::Top;
2062 : : }
2063 : : else
2064 : : {
2065 : 0 : return QgsLayoutItemMapGrid::Bottom;
2066 : : }
2067 : : }
2068 : : }
2069 : :
2070 : : //otherwise, guess side based on closest map side to point
2071 : 0 : QList< QPair<qreal, QgsLayoutItemMapGrid::BorderSide > > distanceToSide;
2072 : 0 : distanceToSide << qMakePair( p.x(), QgsLayoutItemMapGrid::Left );
2073 : 0 : distanceToSide << qMakePair( mMap->rect().width() - p.x(), QgsLayoutItemMapGrid::Right );
2074 : 0 : distanceToSide << qMakePair( p.y(), QgsLayoutItemMapGrid::Top );
2075 : 0 : distanceToSide << qMakePair( mMap->rect().height() - p.y(), QgsLayoutItemMapGrid::Bottom );
2076 : :
2077 : 0 : std::sort( distanceToSide.begin(), distanceToSide.end(), sortByDistance );
2078 : 0 : return distanceToSide.at( 0 ).second;
2079 : 0 : }
2080 : :
2081 : 0 : void QgsLayoutItemMapGrid::setLineSymbol( QgsLineSymbol *symbol )
2082 : : {
2083 : 0 : mGridLineSymbol.reset( symbol );
2084 : 0 : }
2085 : :
2086 : 0 : const QgsLineSymbol *QgsLayoutItemMapGrid::lineSymbol() const
2087 : : {
2088 : 0 : return mGridLineSymbol.get();
2089 : : }
2090 : :
2091 : 0 : QgsLineSymbol *QgsLayoutItemMapGrid::lineSymbol()
2092 : : {
2093 : 0 : return mGridLineSymbol.get();
2094 : : }
2095 : :
2096 : 0 : void QgsLayoutItemMapGrid::setMarkerSymbol( QgsMarkerSymbol *symbol )
2097 : : {
2098 : 0 : mGridMarkerSymbol.reset( symbol );
2099 : 0 : }
2100 : :
2101 : 0 : const QgsMarkerSymbol *QgsLayoutItemMapGrid::markerSymbol() const
2102 : : {
2103 : 0 : return mGridMarkerSymbol.get();
2104 : : }
2105 : :
2106 : 0 : QgsMarkerSymbol *QgsLayoutItemMapGrid::markerSymbol()
2107 : : {
2108 : 0 : return mGridMarkerSymbol.get();
2109 : : }
2110 : :
2111 : 0 : void QgsLayoutItemMapGrid::setAnnotationFont( const QFont &font )
2112 : : {
2113 : 0 : mAnnotationFormat.setFont( font );
2114 : 0 : if ( font.pointSizeF() > 0 )
2115 : : {
2116 : 0 : mAnnotationFormat.setSize( font.pointSizeF() );
2117 : 0 : mAnnotationFormat.setSizeUnit( QgsUnitTypes::RenderPoints );
2118 : 0 : }
2119 : 0 : else if ( font.pixelSize() > 0 )
2120 : : {
2121 : 0 : mAnnotationFormat.setSize( font.pixelSize() );
2122 : 0 : mAnnotationFormat.setSizeUnit( QgsUnitTypes::RenderPixels );
2123 : 0 : }
2124 : 0 : }
2125 : :
2126 : 0 : QFont QgsLayoutItemMapGrid::annotationFont() const
2127 : : {
2128 : 0 : return mAnnotationFormat.toQFont();
2129 : : }
2130 : :
2131 : 0 : void QgsLayoutItemMapGrid::setAnnotationFontColor( const QColor &color )
2132 : : {
2133 : 0 : mAnnotationFormat.setColor( color );
2134 : 0 : }
2135 : :
2136 : 0 : QColor QgsLayoutItemMapGrid::annotationFontColor() const
2137 : : {
2138 : 0 : return mAnnotationFormat.color();
2139 : : }
2140 : :
2141 : 0 : void QgsLayoutItemMapGrid::setAnnotationDisplay( const QgsLayoutItemMapGrid::DisplayMode display, const QgsLayoutItemMapGrid::BorderSide border )
2142 : : {
2143 : 0 : switch ( border )
2144 : : {
2145 : : case QgsLayoutItemMapGrid::Left:
2146 : 0 : mLeftGridAnnotationDisplay = display;
2147 : 0 : break;
2148 : : case QgsLayoutItemMapGrid::Right:
2149 : 0 : mRightGridAnnotationDisplay = display;
2150 : 0 : break;
2151 : : case QgsLayoutItemMapGrid::Top:
2152 : 0 : mTopGridAnnotationDisplay = display;
2153 : 0 : break;
2154 : : case QgsLayoutItemMapGrid::Bottom:
2155 : 0 : mBottomGridAnnotationDisplay = display;
2156 : 0 : break;
2157 : : }
2158 : :
2159 : 0 : refreshDataDefinedProperties();
2160 : :
2161 : 0 : if ( mMap )
2162 : : {
2163 : 0 : mMap->updateBoundingRect();
2164 : 0 : mMap->update();
2165 : 0 : }
2166 : 0 : }
2167 : :
2168 : 0 : QgsLayoutItemMapGrid::DisplayMode QgsLayoutItemMapGrid::annotationDisplay( const QgsLayoutItemMapGrid::BorderSide border ) const
2169 : : {
2170 : 0 : switch ( border )
2171 : : {
2172 : : case QgsLayoutItemMapGrid::Left:
2173 : 0 : return mLeftGridAnnotationDisplay;
2174 : : case QgsLayoutItemMapGrid::Right:
2175 : 0 : return mRightGridAnnotationDisplay;
2176 : : case QgsLayoutItemMapGrid::Top:
2177 : 0 : return mTopGridAnnotationDisplay;
2178 : : case QgsLayoutItemMapGrid::Bottom:
2179 : 0 : return mBottomGridAnnotationDisplay;
2180 : : }
2181 : 0 : return mBottomGridAnnotationDisplay; // no warnings
2182 : 0 : }
2183 : :
2184 : 0 : double QgsLayoutItemMapGrid::maxExtension() const
2185 : : {
2186 : 0 : double top = 0.0;
2187 : 0 : double right = 0.0;
2188 : 0 : double bottom = 0.0;
2189 : 0 : double left = 0.0;
2190 : 0 : calculateMaxExtension( top, right, bottom, left );
2191 : 0 : return std::max( std::max( std::max( top, right ), bottom ), left );
2192 : : }
2193 : :
2194 : 0 : void QgsLayoutItemMapGrid::calculateMaxExtension( double &top, double &right, double &bottom, double &left ) const
2195 : : {
2196 : 0 : top = 0.0;
2197 : 0 : right = 0.0;
2198 : 0 : bottom = 0.0;
2199 : 0 : left = 0.0;
2200 : :
2201 : 0 : if ( !mMap || !mEvaluatedEnabled )
2202 : : {
2203 : 0 : return;
2204 : : }
2205 : :
2206 : : //setup render context
2207 : 0 : QgsRenderContext context = QgsLayoutUtils::createRenderContextForLayout( mLayout, nullptr );
2208 : 0 : QgsExpressionContext expressionContext = createExpressionContext();
2209 : 0 : context.setExpressionContext( expressionContext );
2210 : :
2211 : 0 : GridExtension extension;
2212 : :
2213 : : //collect grid lines
2214 : 0 : switch ( mGridUnit )
2215 : : {
2216 : : case MapUnit:
2217 : : case DynamicPageSizeBased:
2218 : : {
2219 : 0 : if ( mCRS.isValid() && mCRS != mMap->crs() )
2220 : : {
2221 : 0 : drawGridCrsTransform( context, 0, true );
2222 : 0 : break;
2223 : : }
2224 : 0 : }
2225 : : FALLTHROUGH
2226 : : case CM:
2227 : : case MM:
2228 : 0 : drawGridNoTransform( context, 0, true );
2229 : 0 : break;
2230 : : }
2231 : :
2232 : 0 : if ( mGridFrameStyle != QgsLayoutItemMapGrid::NoFrame || mShowGridAnnotation )
2233 : 0 : updateGridLinesAnnotationsPositions();
2234 : :
2235 : 0 : if ( mGridFrameStyle != QgsLayoutItemMapGrid::NoFrame )
2236 : : {
2237 : 0 : drawGridFrame( nullptr, &extension );
2238 : 0 : }
2239 : :
2240 : 0 : if ( mShowGridAnnotation )
2241 : : {
2242 : 0 : drawCoordinateAnnotations( context, context.expressionContext(), &extension );
2243 : 0 : }
2244 : :
2245 : 0 : top = extension.top;
2246 : 0 : right = extension.right;
2247 : 0 : bottom = extension.bottom;
2248 : 0 : left = extension.left;
2249 : 0 : }
2250 : :
2251 : 0 : void QgsLayoutItemMapGrid::setEnabled( bool enabled )
2252 : : {
2253 : 0 : QgsLayoutItemMapItem::setEnabled( enabled );
2254 : 0 : refreshDataDefinedProperties();
2255 : 0 : }
2256 : :
2257 : 0 : void QgsLayoutItemMapGrid::setUnits( const QgsLayoutItemMapGrid::GridUnit unit )
2258 : : {
2259 : 0 : if ( unit == mGridUnit )
2260 : : {
2261 : 0 : return;
2262 : : }
2263 : 0 : mGridUnit = unit;
2264 : 0 : mTransformDirty = true;
2265 : 0 : }
2266 : :
2267 : 0 : void QgsLayoutItemMapGrid::setIntervalX( const double interval )
2268 : : {
2269 : 0 : if ( qgsDoubleNear( interval, mGridIntervalX ) )
2270 : : {
2271 : 0 : return;
2272 : : }
2273 : 0 : mGridIntervalX = interval;
2274 : 0 : mTransformDirty = true;
2275 : 0 : refreshDataDefinedProperties();
2276 : 0 : }
2277 : :
2278 : 0 : void QgsLayoutItemMapGrid::setIntervalY( const double interval )
2279 : : {
2280 : 0 : if ( qgsDoubleNear( interval, mGridIntervalY ) )
2281 : : {
2282 : 0 : return;
2283 : : }
2284 : 0 : mGridIntervalY = interval;
2285 : 0 : mTransformDirty = true;
2286 : 0 : refreshDataDefinedProperties();
2287 : 0 : }
2288 : :
2289 : 0 : void QgsLayoutItemMapGrid::setOffsetX( const double offset )
2290 : : {
2291 : 0 : if ( qgsDoubleNear( offset, mGridOffsetX ) )
2292 : : {
2293 : 0 : return;
2294 : : }
2295 : 0 : mGridOffsetX = offset;
2296 : 0 : mTransformDirty = true;
2297 : 0 : refreshDataDefinedProperties();
2298 : 0 : }
2299 : :
2300 : 0 : void QgsLayoutItemMapGrid::setOffsetY( const double offset )
2301 : : {
2302 : 0 : if ( qgsDoubleNear( offset, mGridOffsetY ) )
2303 : : {
2304 : 0 : return;
2305 : : }
2306 : 0 : mGridOffsetY = offset;
2307 : 0 : mTransformDirty = true;
2308 : 0 : refreshDataDefinedProperties();
2309 : 0 : }
2310 : :
2311 : 0 : void QgsLayoutItemMapGrid::setMinimumIntervalWidth( double minWidth )
2312 : : {
2313 : 0 : if ( qgsDoubleNear( minWidth, mMinimumIntervalWidth ) )
2314 : : {
2315 : 0 : return;
2316 : : }
2317 : 0 : mMinimumIntervalWidth = minWidth;
2318 : 0 : mTransformDirty = true;
2319 : 0 : refreshDataDefinedProperties();
2320 : 0 : }
2321 : :
2322 : 0 : void QgsLayoutItemMapGrid::setMaximumIntervalWidth( double maxWidth )
2323 : : {
2324 : 0 : if ( qgsDoubleNear( maxWidth, mMaximumIntervalWidth ) )
2325 : : {
2326 : 0 : return;
2327 : : }
2328 : 0 : mMaximumIntervalWidth = maxWidth;
2329 : 0 : mTransformDirty = true;
2330 : 0 : refreshDataDefinedProperties();
2331 : 0 : }
2332 : :
2333 : 0 : void QgsLayoutItemMapGrid::setStyle( const QgsLayoutItemMapGrid::GridStyle style )
2334 : : {
2335 : 0 : if ( style == mGridStyle )
2336 : : {
2337 : 0 : return;
2338 : : }
2339 : 0 : mGridStyle = style;
2340 : 0 : mTransformDirty = true;
2341 : 0 : }
2342 : :
2343 : 0 : void QgsLayoutItemMapGrid::setCrossLength( const double length )
2344 : : {
2345 : 0 : mCrossLength = length;
2346 : 0 : refreshDataDefinedProperties();
2347 : 0 : }
2348 : :
2349 : 0 : void QgsLayoutItemMapGrid::setAnnotationDirection( const QgsLayoutItemMapGrid::AnnotationDirection direction, const QgsLayoutItemMapGrid::BorderSide border )
2350 : : {
2351 : 0 : switch ( border )
2352 : : {
2353 : : case QgsLayoutItemMapGrid::Left:
2354 : 0 : mLeftGridAnnotationDirection = direction;
2355 : 0 : break;
2356 : : case QgsLayoutItemMapGrid::Right:
2357 : 0 : mRightGridAnnotationDirection = direction;
2358 : 0 : break;
2359 : : case QgsLayoutItemMapGrid::Top:
2360 : 0 : mTopGridAnnotationDirection = direction;
2361 : 0 : break;
2362 : : case QgsLayoutItemMapGrid::Bottom:
2363 : 0 : mBottomGridAnnotationDirection = direction;
2364 : 0 : break;
2365 : : }
2366 : :
2367 : 0 : if ( mMap )
2368 : : {
2369 : 0 : mMap->updateBoundingRect();
2370 : 0 : mMap->update();
2371 : 0 : }
2372 : 0 : }
2373 : :
2374 : 0 : void QgsLayoutItemMapGrid::setFrameSideFlags( FrameSideFlags flags )
2375 : : {
2376 : 0 : mGridFrameSides = flags;
2377 : 0 : }
2378 : :
2379 : 0 : void QgsLayoutItemMapGrid::setFrameSideFlag( QgsLayoutItemMapGrid::FrameSideFlag flag, bool on )
2380 : : {
2381 : 0 : if ( on )
2382 : 0 : mGridFrameSides |= flag;
2383 : : else
2384 : 0 : mGridFrameSides &= ~flag;
2385 : 0 : }
2386 : :
2387 : 0 : QgsLayoutItemMapGrid::FrameSideFlags QgsLayoutItemMapGrid::frameSideFlags() const
2388 : : {
2389 : 0 : return mGridFrameSides;
2390 : : }
2391 : :
2392 : 0 : QgsExpressionContext QgsLayoutItemMapGrid::createExpressionContext() const
2393 : : {
2394 : 0 : QgsExpressionContext context = QgsLayoutItemMapItem::createExpressionContext();
2395 : 0 : context.appendScope( new QgsExpressionContextScope( tr( "Grid" ) ) );
2396 : 0 : context.lastScope()->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "grid_number" ), 0, true ) );
2397 : 0 : context.lastScope()->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "grid_axis" ), "x", true ) );
2398 : 0 : context.setHighlightedVariables( QStringList() << QStringLiteral( "grid_number" ) << QStringLiteral( "grid_axis" ) );
2399 : 0 : return context;
2400 : 0 : }
2401 : :
2402 : 0 : bool QgsLayoutItemMapGrid::accept( QgsStyleEntityVisitorInterface *visitor ) const
2403 : : {
2404 : 0 : if ( mGridLineSymbol )
2405 : : {
2406 : 0 : QgsStyleSymbolEntity entity( mGridLineSymbol.get() );
2407 : 0 : if ( !visitor->visit( QgsStyleEntityVisitorInterface::StyleLeaf( &entity, QStringLiteral( "grid" ), QObject::tr( "Grid" ) ) ) )
2408 : 0 : return false;
2409 : 0 : }
2410 : 0 : if ( mGridMarkerSymbol )
2411 : : {
2412 : 0 : QgsStyleSymbolEntity entity( mGridMarkerSymbol.get() );
2413 : 0 : if ( !visitor->visit( QgsStyleEntityVisitorInterface::StyleLeaf( &entity, QStringLiteral( "grid" ), QObject::tr( "Grid" ) ) ) )
2414 : 0 : return false;
2415 : 0 : }
2416 : :
2417 : 0 : return true;
2418 : 0 : }
2419 : :
2420 : 0 : void QgsLayoutItemMapGrid::refresh()
2421 : : {
2422 : 0 : mTransformDirty = true;
2423 : 0 : refreshDataDefinedProperties();
2424 : 0 : mMap->updateBoundingRect();
2425 : 0 : mMap->update();
2426 : 0 : }
2427 : :
2428 : 0 : bool QgsLayoutItemMapGrid::testFrameSideFlag( QgsLayoutItemMapGrid::FrameSideFlag flag ) const
2429 : : {
2430 : 0 : return mGridFrameSides.testFlag( flag );
2431 : : }
2432 : :
2433 : 0 : void QgsLayoutItemMapGrid::setFrameWidth( const double width )
2434 : : {
2435 : 0 : mGridFrameWidth = width;
2436 : 0 : refreshDataDefinedProperties();
2437 : 0 : }
2438 : :
2439 : 0 : void QgsLayoutItemMapGrid::setFrameMargin( const double margin )
2440 : : {
2441 : 0 : mGridFrameMargin = margin;
2442 : 0 : refreshDataDefinedProperties();
2443 : 0 : }
2444 : :
2445 : 0 : void QgsLayoutItemMapGrid::setFramePenSize( const double width )
2446 : : {
2447 : 0 : mGridFramePenThickness = width;
2448 : 0 : refreshDataDefinedProperties();
2449 : 0 : }
2450 : :
2451 : 0 : void QgsLayoutItemMapGrid::setAnnotationDirection( const AnnotationDirection direction )
2452 : : {
2453 : 0 : mLeftGridAnnotationDirection = direction;
2454 : 0 : mRightGridAnnotationDirection = direction;
2455 : 0 : mTopGridAnnotationDirection = direction;
2456 : 0 : mBottomGridAnnotationDirection = direction;
2457 : 0 : }
2458 : :
2459 : 0 : void QgsLayoutItemMapGrid::setAnnotationPosition( const AnnotationPosition position, const BorderSide border )
2460 : : {
2461 : 0 : switch ( border )
2462 : : {
2463 : : case QgsLayoutItemMapGrid::Left:
2464 : 0 : mLeftGridAnnotationPosition = position;
2465 : 0 : break;
2466 : : case QgsLayoutItemMapGrid::Right:
2467 : 0 : mRightGridAnnotationPosition = position;
2468 : 0 : break;
2469 : : case QgsLayoutItemMapGrid::Top:
2470 : 0 : mTopGridAnnotationPosition = position;
2471 : 0 : break;
2472 : : case QgsLayoutItemMapGrid::Bottom:
2473 : 0 : mBottomGridAnnotationPosition = position;
2474 : 0 : break;
2475 : : }
2476 : :
2477 : 0 : if ( mMap )
2478 : : {
2479 : 0 : mMap->updateBoundingRect();
2480 : 0 : mMap->update();
2481 : 0 : }
2482 : 0 : }
2483 : :
2484 : 0 : QgsLayoutItemMapGrid::AnnotationPosition QgsLayoutItemMapGrid::annotationPosition( const QgsLayoutItemMapGrid::BorderSide border ) const
2485 : : {
2486 : 0 : switch ( border )
2487 : : {
2488 : : case QgsLayoutItemMapGrid::Left:
2489 : 0 : return mLeftGridAnnotationPosition;
2490 : : case QgsLayoutItemMapGrid::Right:
2491 : 0 : return mRightGridAnnotationPosition;
2492 : : case QgsLayoutItemMapGrid::Top:
2493 : 0 : return mTopGridAnnotationPosition;
2494 : : case QgsLayoutItemMapGrid::Bottom:
2495 : 0 : return mBottomGridAnnotationPosition;
2496 : : }
2497 : 0 : return mLeftGridAnnotationPosition; // no warnings
2498 : 0 : }
2499 : :
2500 : 0 : void QgsLayoutItemMapGrid::setAnnotationFrameDistance( const double distance )
2501 : : {
2502 : 0 : mAnnotationFrameDistance = distance;
2503 : 0 : refreshDataDefinedProperties();
2504 : 0 : }
2505 : :
2506 : 0 : QgsLayoutItemMapGrid::AnnotationDirection QgsLayoutItemMapGrid::annotationDirection( const BorderSide border ) const
2507 : : {
2508 : 0 : if ( !mMap )
2509 : : {
2510 : 0 : return mLeftGridAnnotationDirection;
2511 : : }
2512 : :
2513 : 0 : switch ( border )
2514 : : {
2515 : : case QgsLayoutItemMapGrid::Left:
2516 : 0 : return mLeftGridAnnotationDirection;
2517 : : case QgsLayoutItemMapGrid::Right:
2518 : 0 : return mRightGridAnnotationDirection;
2519 : : case QgsLayoutItemMapGrid::Top:
2520 : 0 : return mTopGridAnnotationDirection;
2521 : : case QgsLayoutItemMapGrid::Bottom:
2522 : 0 : return mBottomGridAnnotationDirection;
2523 : : }
2524 : 0 : return mLeftGridAnnotationDirection; // no warnings
2525 : 0 : }
2526 : :
2527 : 0 : void QgsLayoutItemMapGrid::setFrameDivisions( const QgsLayoutItemMapGrid::DisplayMode divisions, const QgsLayoutItemMapGrid::BorderSide border )
2528 : : {
2529 : 0 : switch ( border )
2530 : : {
2531 : : case QgsLayoutItemMapGrid::Left:
2532 : 0 : mLeftFrameDivisions = divisions;
2533 : 0 : break;
2534 : : case QgsLayoutItemMapGrid::Right:
2535 : 0 : mRightFrameDivisions = divisions;
2536 : 0 : break;
2537 : : case QgsLayoutItemMapGrid::Top:
2538 : 0 : mTopFrameDivisions = divisions;
2539 : 0 : break;
2540 : : case QgsLayoutItemMapGrid::Bottom:
2541 : 0 : mBottomFrameDivisions = divisions;
2542 : 0 : break;
2543 : : }
2544 : :
2545 : 0 : refreshDataDefinedProperties();
2546 : :
2547 : 0 : if ( mMap )
2548 : : {
2549 : 0 : mMap->update();
2550 : 0 : }
2551 : 0 : }
2552 : :
2553 : 0 : QgsLayoutItemMapGrid::DisplayMode QgsLayoutItemMapGrid::frameDivisions( const QgsLayoutItemMapGrid::BorderSide border ) const
2554 : : {
2555 : 0 : switch ( border )
2556 : : {
2557 : : case QgsLayoutItemMapGrid::Left:
2558 : 0 : return mLeftFrameDivisions;
2559 : : case QgsLayoutItemMapGrid::Right:
2560 : 0 : return mRightFrameDivisions;
2561 : : case QgsLayoutItemMapGrid::Top:
2562 : 0 : return mTopFrameDivisions;
2563 : : case QgsLayoutItemMapGrid::Bottom:
2564 : 0 : return mBottomFrameDivisions;
2565 : : }
2566 : 0 : return mLeftFrameDivisions; // no warnings
2567 : 0 : }
2568 : :
2569 : 0 : int QgsLayoutItemMapGrid::crsGridParams( QgsRectangle &crsRect, QgsCoordinateTransform &inverseTransform ) const
2570 : : {
2571 : 0 : if ( !mMap )
2572 : : {
2573 : 0 : return 1;
2574 : : }
2575 : :
2576 : : try
2577 : : {
2578 : 0 : QgsCoordinateTransform tr( mMap->crs(), mCRS, mLayout->project() );
2579 : 0 : QPolygonF mapPolygon = mMap->transformedMapPolygon();
2580 : 0 : QRectF mbr = mapPolygon.boundingRect();
2581 : 0 : QgsRectangle mapBoundingRect( mbr.left(), mbr.bottom(), mbr.right(), mbr.top() );
2582 : :
2583 : :
2584 : 0 : if ( mCRS.isGeographic() )
2585 : : {
2586 : : //handle crossing the 180 degree longitude line
2587 : 0 : QgsPointXY lowerLeft( mapBoundingRect.xMinimum(), mapBoundingRect.yMinimum() );
2588 : 0 : QgsPointXY upperRight( mapBoundingRect.xMaximum(), mapBoundingRect.yMaximum() );
2589 : :
2590 : 0 : lowerLeft = tr.transform( lowerLeft.x(), lowerLeft.y() );
2591 : 0 : upperRight = tr.transform( upperRight.x(), upperRight.y() );
2592 : :
2593 : 0 : if ( lowerLeft.x() > upperRight.x() )
2594 : : {
2595 : : //we've crossed the line
2596 : 0 : crsRect = tr.transformBoundingBox( mapBoundingRect, QgsCoordinateTransform::ForwardTransform, true );
2597 : 0 : }
2598 : : else
2599 : : {
2600 : : //didn't cross the line
2601 : 0 : crsRect = tr.transformBoundingBox( mapBoundingRect );
2602 : : }
2603 : 0 : }
2604 : : else
2605 : : {
2606 : 0 : crsRect = tr.transformBoundingBox( mapBoundingRect );
2607 : : }
2608 : :
2609 : 0 : inverseTransform = QgsCoordinateTransform( mCRS, mMap->crs(), mLayout->project() );
2610 : 0 : }
2611 : : catch ( QgsCsException &cse )
2612 : : {
2613 : 0 : Q_UNUSED( cse )
2614 : 0 : QgsDebugMsg( QStringLiteral( "Caught CRS exception %1" ).arg( cse.what() ) );
2615 : 0 : return 1;
2616 : 0 : }
2617 : 0 : return 0;
2618 : 0 : }
2619 : :
2620 : 0 : QList<QPolygonF> QgsLayoutItemMapGrid::trimLinesToMap( const QPolygonF &line, const QgsRectangle &rect )
2621 : : {
2622 : 0 : QgsGeometry lineGeom = QgsGeometry::fromQPolygonF( line );
2623 : 0 : QgsGeometry rectGeom = QgsGeometry::fromRect( rect );
2624 : :
2625 : 0 : QgsGeometry intersected = lineGeom.intersection( rectGeom );
2626 : 0 : QVector<QgsGeometry> intersectedParts = intersected.asGeometryCollection();
2627 : :
2628 : 0 : QList<QPolygonF> trimmedLines;
2629 : 0 : QVector<QgsGeometry>::const_iterator geomIt = intersectedParts.constBegin();
2630 : 0 : for ( ; geomIt != intersectedParts.constEnd(); ++geomIt )
2631 : : {
2632 : 0 : trimmedLines << ( *geomIt ).asQPolygonF();
2633 : 0 : }
2634 : 0 : return trimmedLines;
2635 : 0 : }
|