Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslabelfeature.cpp 3 : : --------------------- 4 : : begin : December 2015 5 : : copyright : (C) 2015 by Martin Dobias 6 : : email : wonder dot sk at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : #include "qgslabelfeature.h" 16 : : #include "feature.h" 17 : : #include "qgsgeometry.h" 18 : : #include "qgsgeos.h" 19 : : 20 : 0 : QgsLabelFeature::QgsLabelFeature( QgsFeatureId id, geos::unique_ptr geometry, QSizeF size ) 21 : 0 : : mId( id ) 22 : 0 : , mGeometry( std::move( geometry ) ) 23 : 0 : , mSize( size ) 24 : 0 : { 25 : 0 : } 26 : : 27 : 0 : QgsLabelFeature::~QgsLabelFeature() 28 : 0 : { 29 : 0 : if ( mPermissibleZoneGeosPrepared ) 30 : : { 31 : 0 : mPermissibleZoneGeosPrepared.reset(); 32 : 0 : mPermissibleZoneGeos.reset(); 33 : 0 : } 34 : 0 : } 35 : : 36 : 0 : void QgsLabelFeature::setPermissibleZone( const QgsGeometry &geometry ) 37 : : { 38 : 0 : mPermissibleZone = geometry; 39 : : 40 : 0 : if ( mPermissibleZoneGeosPrepared ) 41 : : { 42 : 0 : mPermissibleZoneGeosPrepared.reset(); 43 : 0 : mPermissibleZoneGeos.reset(); 44 : 0 : mPermissibleZoneGeosPrepared = nullptr; 45 : 0 : } 46 : : 47 : 0 : if ( mPermissibleZone.isNull() ) 48 : 0 : return; 49 : : 50 : 0 : mPermissibleZoneGeos = QgsGeos::asGeos( mPermissibleZone ); 51 : 0 : if ( !mPermissibleZoneGeos ) 52 : 0 : return; 53 : : 54 : 0 : mPermissibleZoneGeosPrepared.reset( GEOSPrepare_r( QgsGeos::getGEOSHandler(), mPermissibleZoneGeos.get() ) ); 55 : 0 : } 56 : : 57 : 0 : QgsFeature QgsLabelFeature::feature() const 58 : : { 59 : 0 : return mFeature; 60 : : } 61 : : 62 : 0 : QSizeF QgsLabelFeature::size( double angle ) const 63 : : { 64 : 0 : if ( mRotatedSize.isEmpty() ) 65 : 0 : return mSize; 66 : : 67 : : // Between 45 to 135 and 235 to 315 degrees, return the rotated size 68 : 0 : return ( angle >= 0.785398 && angle <= 2.35619 ) || ( angle >= 3.92699 && angle <= 5.49779 ) ? mRotatedSize : mSize; 69 : 0 : } 70 : : 71 : 0 : QgsPointXY QgsLabelFeature::anchorPosition() const 72 : : { 73 : 0 : return mAnchorPosition; 74 : : } 75 : : 76 : 0 : void QgsLabelFeature::setFeature( const QgsFeature &feature ) 77 : : { 78 : 0 : mFeature = feature; 79 : 0 : } 80 : : 81 : 0 : double QgsLabelFeature::overrunDistance() const 82 : : { 83 : 0 : return mOverrunDistance; 84 : : } 85 : : 86 : 0 : void QgsLabelFeature::setOverrunDistance( double overrunDistance ) 87 : : { 88 : 0 : mOverrunDistance = overrunDistance; 89 : 0 : } 90 : : 91 : 0 : double QgsLabelFeature::overrunSmoothDistance() const 92 : : { 93 : 0 : return mOverrunSmoothDistance; 94 : : } 95 : : 96 : 0 : void QgsLabelFeature::setOverrunSmoothDistance( double overrunSmoothDistance ) 97 : : { 98 : 0 : mOverrunSmoothDistance = overrunSmoothDistance; 99 : 0 : } 100 : : 101 : 0 : const QgsLabelObstacleSettings &QgsLabelFeature::obstacleSettings() const 102 : : { 103 : 0 : return mObstacleSettings; 104 : : } 105 : : 106 : 0 : void QgsLabelFeature::setObstacleSettings( const QgsLabelObstacleSettings &settings ) 107 : : { 108 : 0 : mObstacleSettings = settings; 109 : 0 : } 110 : : 111 : 0 : QgsCoordinateReferenceSystem QgsLabelFeature::originalFeatureCrs() const 112 : : { 113 : 0 : return mOriginalFeatureCrs; 114 : : } 115 : : 116 : 0 : void QgsLabelFeature::setOriginalFeatureCrs( const QgsCoordinateReferenceSystem &originalFeatureCrs ) 117 : : { 118 : 0 : mOriginalFeatureCrs = originalFeatureCrs; 119 : 0 : } 120 : : 121 : 0 : void QgsLabelFeature::setAnchorPosition( const QgsPointXY &anchorPosition ) 122 : : { 123 : 0 : mAnchorPosition = anchorPosition; 124 : 0 : }