38   return QStringLiteral( 
"polygon" );
 
   44   auto transformRing = [&context]( QPolygonF & pts )
 
   60     pts.erase( std::remove_if( pts.begin(), pts.end(),
 
   61                                []( 
const QPointF point )
 
   63       return !std::isfinite( point.x() ) || !std::isfinite( point.y() );
 
   66     QPointF *ptr = pts.data();
 
   67     for ( 
int i = 0; i < pts.size(); ++i, ++ptr )
 
   73   QPolygonF exterior = mPolygon->exteriorRing()->asQPolygonF();
 
   74   transformRing( exterior );
 
   75   QVector<QPolygonF> rings;
 
   76   rings.reserve( mPolygon->numInteriorRings() );
 
   77   for ( 
int i = 0; i < mPolygon->numInteriorRings(); ++i )
 
   79     QPolygonF ring = mPolygon->interiorRing( i )->asQPolygonF();
 
   80     transformRing( ring );
 
   84   mSymbol->startRender( context );
 
   85   mSymbol->renderPolygon( exterior, rings.empty() ? 
nullptr : &rings, 
nullptr, context );
 
   86   mSymbol->stopRender( context );
 
   91   element.setAttribute( QStringLiteral( 
"wkt" ), mPolygon->asWkt() );
 
  100   QList< QgsAnnotationItemNode > res;
 
  102   auto processRing  = [&res]( 
const QgsCurve * ring, 
int ringId )
 
  106     res.reserve( res.size() + count );
 
  107     for ( 
int i = 0; i < count; ++i )
 
  113   if ( 
const QgsCurve *ring = mPolygon->exteriorRing() )
 
  115     processRing( ring, 0 );
 
  117   for ( 
int i = 0; i < mPolygon->numInteriorRings(); ++i )
 
  119     processRing( mPolygon->interiorRing( i ), i + 1 );
 
  127   switch ( operation->
type() )
 
  140       if ( mPolygon->deleteVertex( deleteOperation->
nodeId() ) )
 
  151       mPolygon->closestSegment( addOperation->
point(), segmentPoint, endOfSegmentVertex );
 
  152       if ( mPolygon->insertVertex( endOfSegmentVertex, segmentPoint ) )
 
  160       const QTransform transform = QTransform::fromTranslate( moveOperation->
translationX(), moveOperation->
translationY() );
 
  161       mPolygon->transform( transform );
 
  171   switch ( operation->
type() )
 
  176       std::unique_ptr< QgsCurvePolygon > modifiedPolygon( mPolygon->clone() );
 
  177       if ( modifiedPolygon->moveVertex( moveOperation->
nodeId(), 
QgsPoint( moveOperation->
after() ) ) )
 
  187       const QTransform transform = QTransform::fromTranslate( moveOperation->
translationX(), moveOperation->
translationY() );
 
  188       std::unique_ptr< QgsCurvePolygon > modifiedPolygon( mPolygon->clone() );
 
  189       modifiedPolygon->transform( transform );
 
  207   const QString wkt = element.attribute( QStringLiteral( 
"wkt" ) );
 
  210     mPolygon.reset( polygon->clone() );
 
  212   const QDomElement symbolElem = element.firstChildElement( QStringLiteral( 
"symbol" ) );
 
  213   if ( !symbolElem.isNull() )
 
  214     setSymbol( QgsSymbolLayerUtils::loadSymbol< QgsFillSymbol >( symbolElem, context ) );
 
  222   std::unique_ptr< QgsAnnotationPolygonItem > item = std::make_unique< QgsAnnotationPolygonItem >( mPolygon->clone() );
 
  223   item->setSymbol( mSymbol->clone() );
 
  224   item->copyCommonProperties( 
this );;
 
  225   return item.release();
 
  230   return mPolygon->boundingBox();
 
  235   return mSymbol.get();
 
@ VertexHandle
Node is a handle for manipulating vertices.
AnnotationItemEditOperationResult
Results from an edit operation on an annotation item.
@ Invalid
Operation has invalid parameters for the item, no change occurred.
@ Success
Item was modified successfully.
@ ItemCleared
The operation results in the item being cleared, and the item should be removed from the layer as a r...
Abstract base class for annotation item edit operations.
@ DeleteNode
Delete a node.
@ TranslateItem
Translate (move) an item.
virtual Type type() const =0
Returns the operation type.
Annotation item edit operation consisting of adding a node.
QgsPoint point() const
Returns the node position (in layer coordinates).
Annotation item edit operation consisting of deleting a node.
QgsVertexId nodeId() const
Returns the deleted node ID.
Annotation item edit operation consisting of moving a node.
QgsPoint after() const
Returns the node position after the move occurred (in layer coordinates).
QgsVertexId nodeId() const
Returns the associated node ID.
Encapsulates the transient results of an in-progress annotation edit operation.
Annotation item edit operation consisting of translating (moving) an item.
double translationY() const
Returns the y-axis translation, in layer units.
double translationX() const
Returns the x-axis translation, in layer units.
Contains information about a node used for editing an annotation item.
Abstract base class for annotation items which are drawn with QgsAnnotationLayers.
bool writeCommonProperties(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const
Writes common properties from the base class into an XML element.
bool readCommonProperties(const QDomElement &element, const QgsReadWriteContext &context)
Reads common properties from the base class from the given DOM element.
An annotation item which renders a fill symbol for a polygon geometry.
bool readXml(const QDomElement &element, const QgsReadWriteContext &context) override
Reads the item's state from the given DOM element.
void render(QgsRenderContext &context, QgsFeedback *feedback) override
Renders the item to the specified render context.
QgsAnnotationItemEditOperationTransientResults * transientEditResults(QgsAbstractAnnotationItemEditOperation *operation) override
Retrieves the results of a transient (in progress) edit operation on the item.
void setSymbol(QgsFillSymbol *symbol)
Sets the symbol used to render the polygon item.
const QgsFillSymbol * symbol() const
Returns the symbol used to render the item.
QgsRectangle boundingBox() const override
Returns the bounding box of the item's geographic location, in the parent layer's coordinate referenc...
const QgsCurvePolygon * geometry() const
Returns the geometry of the item.
QString type() const override
Returns a unique (untranslated) string identifying the type of item.
bool writeXml(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const override
Writes the item's state into an XML element.
Qgis::AnnotationItemEditOperationResult applyEdit(QgsAbstractAnnotationItemEditOperation *operation) override
Applies an edit operation to the item.
QgsAnnotationPolygonItem * clone() override
Returns a clone of the item.
QList< QgsAnnotationItemNode > nodes() const override
Returns the nodes for the item, used for editing the item.
~QgsAnnotationPolygonItem() override
static QgsAnnotationPolygonItem * create()
Creates a new polygon annotation item.
QgsAnnotationPolygonItem(QgsCurvePolygon *polygon)
Constructor for QgsAnnotationPolygonItem, with the specified polygon geometry.
Custom exception class for Coordinate Reference System related exceptions.
Curve polygon geometry type.
Abstract base class for curved geometry type.
virtual int numPoints() const =0
Returns the number of points in the curve.
virtual bool isClosed() const SIP_HOLDGIL
Returns true if the curve is closed.
virtual double xAt(int index) const =0
Returns the x-coordinate of the specified node in the line string.
virtual double yAt(int index) const =0
Returns the y-coordinate of the specified node in the line string.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
A fill symbol type, for rendering Polygon and MultiPolygon geometries.
A geometry is the spatial representation of a feature.
static QgsGeometry fromWkt(const QString &wkt)
Creates a new geometry from a WKT string.
void transformInPlace(double &x, double &y) const
Transforms device coordinates to map coordinates.
A class to represent a 2D point.
Point geometry type, with support for z-dimension and m-values.
The class is used as a container of context for various read/write operations on other objects.
A rectangle specified with double values.
Contains information about the context of a rendering operation.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
static QDomElement saveSymbol(const QString &symbolName, const QgsSymbol *symbol, QDomDocument &doc, const QgsReadWriteContext &context)
Writes a symbol definition to XML.
Utility class for identifying a unique vertex within a geometry.