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 : : 35 : 0 : delete mInfo; 36 : 0 : } 37 : : 38 : 0 : void QgsLabelFeature::setPermissibleZone( const QgsGeometry &geometry ) 39 : : { 40 : 0 : mPermissibleZone = geometry; 41 : : 42 : 0 : if ( mPermissibleZoneGeosPrepared ) 43 : : { 44 : 0 : mPermissibleZoneGeosPrepared.reset(); 45 : 0 : mPermissibleZoneGeos.reset(); 46 : 0 : mPermissibleZoneGeosPrepared = nullptr; 47 : 0 : } 48 : : 49 : 0 : if ( mPermissibleZone.isNull() ) 50 : 0 : return; 51 : : 52 : 0 : mPermissibleZoneGeos = QgsGeos::asGeos( mPermissibleZone ); 53 : 0 : if ( !mPermissibleZoneGeos ) 54 : 0 : return; 55 : : 56 : 0 : mPermissibleZoneGeosPrepared.reset( GEOSPrepare_r( QgsGeos::getGEOSHandler(), mPermissibleZoneGeos.get() ) ); 57 : 0 : } 58 : : 59 : 0 : QgsFeature QgsLabelFeature::feature() const 60 : : { 61 : 0 : return mFeature; 62 : : } 63 : : 64 : 0 : QSizeF QgsLabelFeature::size( double angle ) const 65 : : { 66 : 0 : if ( mRotatedSize.isEmpty() ) 67 : 0 : return mSize; 68 : : 69 : : // Between 45 to 135 and 235 to 315 degrees, return the rotated size 70 : 0 : return ( angle >= 0.785398 && angle <= 2.35619 ) || ( angle >= 3.92699 && angle <= 5.49779 ) ? mRotatedSize : mSize; 71 : 0 : } 72 : : 73 : 0 : QgsPointXY QgsLabelFeature::anchorPosition() const 74 : : { 75 : 0 : return mAnchorPosition; 76 : : } 77 : : 78 : 0 : void QgsLabelFeature::setFeature( const QgsFeature &feature ) 79 : : { 80 : 0 : mFeature = feature; 81 : 0 : } 82 : : 83 : 0 : double QgsLabelFeature::overrunDistance() const 84 : : { 85 : 0 : return mOverrunDistance; 86 : : } 87 : : 88 : 0 : void QgsLabelFeature::setOverrunDistance( double overrunDistance ) 89 : : { 90 : 0 : mOverrunDistance = overrunDistance; 91 : 0 : } 92 : : 93 : 0 : double QgsLabelFeature::overrunSmoothDistance() const 94 : : { 95 : 0 : return mOverrunSmoothDistance; 96 : : } 97 : : 98 : 0 : void QgsLabelFeature::setOverrunSmoothDistance( double overrunSmoothDistance ) 99 : : { 100 : 0 : mOverrunSmoothDistance = overrunSmoothDistance; 101 : 0 : } 102 : : 103 : 0 : const QgsLabelObstacleSettings &QgsLabelFeature::obstacleSettings() const 104 : : { 105 : 0 : return mObstacleSettings; 106 : : } 107 : : 108 : 0 : void QgsLabelFeature::setObstacleSettings( const QgsLabelObstacleSettings &settings ) 109 : : { 110 : 0 : mObstacleSettings = settings; 111 : 0 : } 112 : : 113 : 0 : QgsCoordinateReferenceSystem QgsLabelFeature::originalFeatureCrs() const 114 : : { 115 : 0 : return mOriginalFeatureCrs; 116 : : } 117 : : 118 : 0 : void QgsLabelFeature::setOriginalFeatureCrs( const QgsCoordinateReferenceSystem &originalFeatureCrs ) 119 : : { 120 : 0 : mOriginalFeatureCrs = originalFeatureCrs; 121 : 0 : } 122 : : 123 : 0 : void QgsLabelFeature::setAnchorPosition( const QgsPointXY &anchorPosition ) 124 : : { 125 : 0 : mAnchorPosition = anchorPosition; 126 : 0 : }