QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgstextannotation.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgstextannotation.cpp
3 ------------------------
4begin : February 9, 2010
5copyright : (C) 2010 by Marco Hugentobler
6email : marco dot hugentobler at hugis dot net
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 "qgstextannotation.h"
19
20#include <memory>
21
22#include "qgsrendercontext.h"
23
24#include <QDomDocument>
25#include <QPainter>
26
27#include "moc_qgstextannotation.cpp"
28
30 : QgsAnnotation( parent )
31 , mDocument( new QTextDocument( QString() ) )
32{
33 mDocument->setUseDesignMetrics( true );
34}
35
37{
38 auto c = std::make_unique<QgsTextAnnotation>();
39 copyCommonProperties( c.get() );
40 c->setDocument( mDocument.get() );
41 return c.release();
42}
43
44const QTextDocument *QgsTextAnnotation::document() const
45{
46 return mDocument.get();
47}
48
49void QgsTextAnnotation::setDocument( const QTextDocument *doc )
50{
51 if ( doc )
52 mDocument.reset( doc->clone() );
53 else
54 mDocument.reset();
55 emit appearanceChanged();
56}
57
58void QgsTextAnnotation::renderAnnotation( QgsRenderContext &context, QSizeF size ) const
59{
60 QPainter *painter = context.painter();
61 if ( !mDocument || ! painter || ( context.feedback() && context.feedback()->isCanceled() ) )
62 {
63 return;
64 }
65
66 // scale painter back to 96 dpi, so layout prints match screen rendering
67 const QgsScopedQPainterState painterState( context.painter() );
68 const double scaleFactor = context.painter()->device()->logicalDpiX() / 96.0;
69 context.painter()->scale( scaleFactor, scaleFactor );
70 size /= scaleFactor;
71
72 mDocument->setTextWidth( size.width() );
73
74 QRectF clipRect = QRectF( 0, 0, size.width(), size.height() );
75 if ( painter->hasClipping() )
76 {
77 //QTextDocument::drawContents will draw text outside of the painter's clip region
78 //when it is passed a clip rectangle. So, we need to intersect it with the
79 //painter's clip region to prevent text drawn outside clipped region (e.g., outside layout maps, see #10400)
80 clipRect = clipRect.intersected( painter->clipRegion().boundingRect() );
81 }
82 //draw text document
83 mDocument->drawContents( painter, clipRect );
84}
85
86void QgsTextAnnotation::writeXml( QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context ) const
87{
88 QDomElement annotationElem = doc.createElement( QStringLiteral( "TextAnnotationItem" ) );
89 if ( mDocument )
90 {
91 annotationElem.setAttribute( QStringLiteral( "document" ), mDocument->toHtml() );
92 }
93 _writeXml( annotationElem, doc, context );
94 elem.appendChild( annotationElem );
95}
96
97void QgsTextAnnotation::readXml( const QDomElement &itemElem, const QgsReadWriteContext &context )
98{
99 mDocument = std::make_unique<QTextDocument>( );
100 mDocument->setHtml( itemElem.attribute( QStringLiteral( "document" ), QString() ) );
101 const QDomElement annotationElem = itemElem.firstChildElement( QStringLiteral( "AnnotationItem" ) );
102 if ( !annotationElem.isNull() )
103 {
104 _readXml( annotationElem, context );
105 }
106}
void appearanceChanged()
Emitted whenever the annotation's appearance changes.
void _writeXml(QDomElement &itemElem, QDomDocument &doc, const QgsReadWriteContext &context) const
Writes common annotation properties to a DOM element.
void _readXml(const QDomElement &annotationElem, const QgsReadWriteContext &context)
Reads common annotation properties from a DOM element.
void copyCommonProperties(QgsAnnotation *target) const
Copies common annotation properties to the targe annotation.
QgsAnnotation(QObject *parent=nullptr)
Constructor for QgsAnnotation.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
A container for the context for various read/write operations on objects.
Contains information about the context of a rendering operation.
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsFeedback * feedback() const
Returns the feedback object that can be queried regularly during rendering to check if rendering shou...
Scoped object for saving and restoring a QPainter object's state.
QgsTextAnnotation * clone() const override
Clones the annotation, returning a new copy of the annotation reflecting the annotation's current sta...
void writeXml(QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context) const override
Writes the annotation state to a DOM element.
void readXml(const QDomElement &itemElem, const QgsReadWriteContext &context) override
Restores the annotation's state from a DOM element.
const QTextDocument * document() const
Returns the text document which will be rendered within the annotation.
void renderAnnotation(QgsRenderContext &context, QSizeF size) const override
Renders the annotation's contents to a target /a context at the specified /a size.
void setDocument(const QTextDocument *doc)
Sets the text document which will be rendered within the annotation.
QgsTextAnnotation(QObject *parent=nullptr)
Constructor for QgsTextAnnotation.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c