Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsannotationmarkeritem.cpp 3 : : ---------------- 4 : : begin : July 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 "qgsannotationmarkeritem.h" 19 : : #include "qgssymbol.h" 20 : : #include "qgssymbollayerutils.h" 21 : : 22 : 0 : QgsAnnotationMarkerItem::QgsAnnotationMarkerItem( const QgsPoint &point ) 23 : 0 : : QgsAnnotationItem() 24 : 0 : , mPoint( point ) 25 : 0 : , mSymbol( std::make_unique< QgsMarkerSymbol >() ) 26 : 0 : { 27 : : 28 : 0 : } 29 : : 30 : 0 : QgsAnnotationMarkerItem::~QgsAnnotationMarkerItem() = default; 31 : : 32 : 0 : QString QgsAnnotationMarkerItem::type() const 33 : : { 34 : 0 : return QStringLiteral( "marker" ); 35 : : } 36 : : 37 : 0 : void QgsAnnotationMarkerItem::render( QgsRenderContext &context, QgsFeedback * ) 38 : : { 39 : 0 : QPointF pt; 40 : 0 : if ( context.coordinateTransform().isValid() ) 41 : : { 42 : 0 : double x = mPoint.x(); 43 : 0 : double y = mPoint.y(); 44 : 0 : double z = 0.0; 45 : 0 : context.coordinateTransform().transformInPlace( x, y, z ); 46 : 0 : pt = QPointF( x, y ); 47 : 0 : } 48 : : else 49 : 0 : pt = mPoint.toQPointF(); 50 : : 51 : 0 : context.mapToPixel().transformInPlace( pt.rx(), pt.ry() ); 52 : : 53 : 0 : mSymbol->startRender( context ); 54 : 0 : mSymbol->renderPoint( pt, nullptr, context ); 55 : 0 : mSymbol->stopRender( context ); 56 : 0 : } 57 : : 58 : 0 : bool QgsAnnotationMarkerItem::writeXml( QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context ) const 59 : : { 60 : 0 : element.setAttribute( QStringLiteral( "x" ), qgsDoubleToString( mPoint.x() ) ); 61 : 0 : element.setAttribute( QStringLiteral( "y" ), qgsDoubleToString( mPoint.y() ) ); 62 : 0 : element.setAttribute( QStringLiteral( "zIndex" ), zIndex() ); 63 : : 64 : 0 : element.appendChild( QgsSymbolLayerUtils::saveSymbol( QStringLiteral( "markerSymbol" ), mSymbol.get(), document, context ) ); 65 : : 66 : 0 : return true; 67 : 0 : } 68 : : 69 : 0 : QgsAnnotationMarkerItem *QgsAnnotationMarkerItem::create() 70 : : { 71 : 0 : return new QgsAnnotationMarkerItem( QgsPoint() ); 72 : 0 : } 73 : : 74 : 0 : bool QgsAnnotationMarkerItem::readXml( const QDomElement &element, const QgsReadWriteContext &context ) 75 : : { 76 : 0 : const double x = element.attribute( QStringLiteral( "x" ) ).toDouble(); 77 : 0 : const double y = element.attribute( QStringLiteral( "y" ) ).toDouble(); 78 : 0 : mPoint = QgsPoint( x, y ); 79 : : 80 : 0 : setZIndex( element.attribute( QStringLiteral( "zIndex" ) ).toInt() ); 81 : : 82 : 0 : const QDomElement symbolElem = element.firstChildElement( QStringLiteral( "symbol" ) ); 83 : 0 : if ( !symbolElem.isNull() ) 84 : 0 : setSymbol( QgsSymbolLayerUtils::loadSymbol< QgsMarkerSymbol >( symbolElem, context ) ); 85 : : 86 : : return true; 87 : 0 : } 88 : : 89 : 0 : QgsAnnotationMarkerItem *QgsAnnotationMarkerItem::clone() 90 : : { 91 : 0 : std::unique_ptr< QgsAnnotationMarkerItem > item = std::make_unique< QgsAnnotationMarkerItem >( mPoint ); 92 : 0 : item->setSymbol( mSymbol->clone() ); 93 : 0 : item->setZIndex( zIndex() ); 94 : 0 : return item.release(); 95 : 0 : } 96 : : 97 : 0 : QgsRectangle QgsAnnotationMarkerItem::boundingBox() const 98 : : { 99 : 0 : return QgsRectangle( mPoint.x(), mPoint.y(), mPoint.x(), mPoint.y() ); 100 : : } 101 : : 102 : 0 : const QgsMarkerSymbol *QgsAnnotationMarkerItem::symbol() const 103 : : { 104 : 0 : return mSymbol.get(); 105 : : } 106 : : 107 : 0 : void QgsAnnotationMarkerItem::setSymbol( QgsMarkerSymbol *symbol ) 108 : : { 109 : 0 : mSymbol.reset( symbol ); 110 : 0 : }