Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutnortharrowhandler.cpp 3 : : ------------------- 4 : : begin : April 2020 5 : : copyright : (C) 2020 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 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 "qgslayoutnortharrowhandler.h" 19 : : #include "qgslayoutitemmap.h" 20 : : #include "qgslayout.h" 21 : : #include "qgsbearingutils.h" 22 : : #include "qgslogger.h" 23 : : 24 : 0 : QgsLayoutNorthArrowHandler::QgsLayoutNorthArrowHandler( QObject *parent ) 25 : 0 : : QObject( parent ) 26 : 0 : { 27 : : 28 : 0 : } 29 : : 30 : 0 : void QgsLayoutNorthArrowHandler::disconnectMap( QgsLayoutItemMap *map ) 31 : : { 32 : 0 : if ( map ) 33 : : { 34 : 0 : disconnect( map, &QgsLayoutItemMap::mapRotationChanged, this, &QgsLayoutNorthArrowHandler::updateMapRotation ); 35 : 0 : disconnect( map, &QgsLayoutItemMap::rotationChanged, this, &QgsLayoutNorthArrowHandler::updateMapRotation ); 36 : 0 : disconnect( map, &QgsLayoutItemMap::extentChanged, this, &QgsLayoutNorthArrowHandler::updateMapRotation ); 37 : 0 : } 38 : 0 : } 39 : : 40 : 0 : void QgsLayoutNorthArrowHandler::updateMapRotation() 41 : : { 42 : 0 : if ( !mRotationMap ) 43 : 0 : return; 44 : : 45 : : // take map rotation 46 : 0 : double rotation = mRotationMap->mapRotation() + mRotationMap->rotation(); 47 : : 48 : : // handle true north 49 : 0 : switch ( mNorthMode ) 50 : : { 51 : : case GridNorth: 52 : 0 : break; // nothing to do 53 : : 54 : : case TrueNorth: 55 : : { 56 : 0 : QgsPointXY center = mRotationMap->extent().center(); 57 : 0 : QgsCoordinateReferenceSystem crs = mRotationMap->crs(); 58 : 0 : QgsCoordinateTransformContext transformContext = mRotationMap->layout()->project()->transformContext(); 59 : : 60 : : try 61 : : { 62 : 0 : double bearing = QgsBearingUtils::bearingTrueNorth( crs, transformContext, center ); 63 : 0 : rotation += bearing; 64 : 0 : } 65 : : catch ( QgsException &e ) 66 : : { 67 : 0 : Q_UNUSED( e ) 68 : 0 : QgsDebugMsg( QStringLiteral( "Caught exception %1" ).arg( e.what() ) ); 69 : 0 : } 70 : : break; 71 : 0 : } 72 : : } 73 : : 74 : 0 : rotation += mNorthOffset; 75 : 0 : const double oldRotation = mArrowRotation; 76 : 0 : mArrowRotation = ( rotation > 360.0 ) ? rotation - 360.0 : rotation ; 77 : 0 : if ( mArrowRotation != oldRotation ) 78 : 0 : emit arrowRotationChanged( mArrowRotation ); 79 : 0 : } 80 : : 81 : 0 : void QgsLayoutNorthArrowHandler::setLinkedMap( QgsLayoutItemMap *map ) 82 : : { 83 : 0 : if ( mRotationMap ) 84 : : { 85 : 0 : disconnectMap( mRotationMap ); 86 : 0 : } 87 : : 88 : 0 : if ( !map ) //disable rotation from map 89 : : { 90 : 0 : mRotationMap = nullptr; 91 : 0 : if ( mArrowRotation != 0 ) 92 : : { 93 : 0 : mArrowRotation = 0; 94 : 0 : emit arrowRotationChanged( mArrowRotation ); 95 : 0 : } 96 : 0 : } 97 : : else 98 : : { 99 : 0 : connect( map, &QgsLayoutItemMap::mapRotationChanged, this, &QgsLayoutNorthArrowHandler::updateMapRotation ); 100 : 0 : connect( map, &QgsLayoutItemMap::rotationChanged, this, &QgsLayoutNorthArrowHandler::updateMapRotation ); 101 : 0 : connect( map, &QgsLayoutItemMap::extentChanged, this, &QgsLayoutNorthArrowHandler::updateMapRotation ); 102 : 0 : mRotationMap = map; 103 : 0 : updateMapRotation(); 104 : 0 : } 105 : 0 : } 106 : : 107 : 0 : QgsLayoutItemMap *QgsLayoutNorthArrowHandler::linkedMap() const 108 : : { 109 : 0 : return mRotationMap; 110 : : } 111 : 0 : 112 : 0 : void QgsLayoutNorthArrowHandler::setNorthMode( QgsLayoutNorthArrowHandler::NorthMode mode ) 113 : 0 : { 114 : 0 : mNorthMode = mode; 115 : 0 : updateMapRotation(); 116 : 0 : } 117 : : 118 : 0 : void QgsLayoutNorthArrowHandler::setNorthOffset( double offset ) 119 : : { 120 : 0 : mNorthOffset = offset; 121 : 0 : updateMapRotation(); 122 : 0 : }