QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgslayoutitempage.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutitempage.cpp
3 ---------------------
4 begin : July 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17#include "qgslayoutitempage.h"
18
19#include <memory>
20
21#include "qgsfillsymbol.h"
22#include "qgslayout.h"
26#include "qgslayoututils.h"
27#include "qgspagesizeregistry.h"
28#include "qgsstyle.h"
30#include "qgssymbollayerutils.h"
31
32#include <QPainter>
33#include <QStyleOptionGraphicsItem>
34
35#include "moc_qgslayoutitempage.cpp"
36
38 : QgsLayoutItem( layout, false )
39{
40 setFlag( QGraphicsItem::ItemIsSelectable, false );
41 setFlag( QGraphicsItem::ItemIsMovable, false );
42 setZValue( QgsLayout::ZPage );
43
44 connect( this, &QgsLayoutItem::sizePositionChanged, this, [this]
45 {
46 prepareGeometryChange();
47 mBoundingRect = QRectF();
48 } );
49
50 const QFont font;
51 const QFontMetrics fm( font );
52 mMaximumShadowWidth = fm.boundingRect( QStringLiteral( "X" ) ).width();
53
54 mGrid = std::make_unique<QgsLayoutItemPageGrid>( pos().x(), pos().y(), rect().width(), rect().height(), mLayout );
55 mGrid->setParentItem( this );
56
57 createDefaultPageStyleSymbol();
58}
59
61
66
71
73{
74 return QObject::tr( "Page" );
75}
76
78{
79 attemptResize( size );
80}
81
83{
84 QgsPageSize newSize;
85 if ( QgsApplication::pageSizeRegistry()->decodePageSize( size, newSize ) )
86 {
87 switch ( orientation )
88 {
89 case Portrait:
90 break; // nothing to do
91
92 case Landscape:
93 {
94 // flip height and width
95 const double x = newSize.size.width();
96 newSize.size.setWidth( newSize.size.height() );
97 newSize.size.setHeight( x );
98 break;
99 }
100 }
101
102 setPageSize( newSize.size );
103 return true;
104 }
105 else
106 {
107 return false;
108 }
109}
110
112{
113 QPageLayout pageLayout;
114 pageLayout.setMargins( {0, 0, 0, 0} );
115 pageLayout.setMode( QPageLayout::FullPageMode );
117
118 if ( pageSize().width() > pageSize().height() )
119 {
120 pageLayout.setOrientation( QPageLayout::Landscape );
121 pageLayout.setPageSize( QPageSize( QSizeF( size.height(), size.width() ), QPageSize::Millimeter ) );
122 }
123 else
124 {
125 pageLayout.setOrientation( QPageLayout::Portrait );
126 pageLayout.setPageSize( QPageSize( size, QPageSize::Millimeter ) );
127 }
128 pageLayout.setUnits( QPageLayout::Millimeter );
129 return pageLayout;
130}
131
136
138{
139 if ( sizeWithUnits().width() >= sizeWithUnits().height() )
140 return Landscape;
141 else
142 return Portrait;
143}
144
146{
147 mPageStyleSymbol.reset( symbol );
148 update();
149}
150
152{
153 if ( ok )
154 *ok = false;
155
156 const QString trimmedString = string.trimmed();
157 if ( trimmedString.compare( QLatin1String( "portrait" ), Qt::CaseInsensitive ) == 0 )
158 {
159 if ( ok )
160 *ok = true;
161 return Portrait;
162 }
163 else if ( trimmedString.compare( QLatin1String( "landscape" ), Qt::CaseInsensitive ) == 0 )
164 {
165 if ( ok )
166 *ok = true;
167 return Landscape;
168 }
169 return Landscape;
170}
171
173{
174 if ( mBoundingRect.isNull() )
175 {
176 const double shadowWidth = mLayout->pageCollection()->pageShadowWidth();
177 mBoundingRect = rect();
178 mBoundingRect.adjust( 0, 0, shadowWidth, shadowWidth );
179 }
180 return mBoundingRect;
181}
182
183void QgsLayoutItemPage::attemptResize( const QgsLayoutSize &size, bool includesFrame )
184{
185 QgsLayoutItem::attemptResize( size, includesFrame );
186 //update size of attached grid to reflect new page size and position
187 mGrid->setRect( 0, 0, rect().width(), rect().height() );
188
189 mLayout->guides().update();
190}
191
192void QgsLayoutItemPage::createDefaultPageStyleSymbol()
193{
194 QVariantMap properties;
195 properties.insert( QStringLiteral( "color" ), QStringLiteral( "white" ) );
196 properties.insert( QStringLiteral( "style" ), QStringLiteral( "solid" ) );
197 properties.insert( QStringLiteral( "style_border" ), QStringLiteral( "no" ) );
198 properties.insert( QStringLiteral( "joinstyle" ), QStringLiteral( "miter" ) );
199 mPageStyleSymbol = QgsFillSymbol::createSimple( properties );
200}
201
202
203
205class QgsLayoutItemPageUndoCommand: public QgsLayoutItemUndoCommand
206{
207 public:
208
209 QgsLayoutItemPageUndoCommand( QgsLayoutItemPage *page, const QString &text, int id = 0, QUndoCommand *parent SIP_TRANSFERTHIS = nullptr )
210 : QgsLayoutItemUndoCommand( page, text, id, parent )
211 {}
212
213 void restoreState( QDomDocument &stateDoc ) override
214 {
215 QgsLayoutItemUndoCommand::restoreState( stateDoc );
216 layout()->pageCollection()->reflow();
217 }
218
219 protected:
220
221 QgsLayoutItem *recreateItem( int, QgsLayout *layout ) override
222 {
223 QgsLayoutItemPage *page = new QgsLayoutItemPage( layout );
224 layout->pageCollection()->addPage( page );
225 return page;
226 }
227};
229
230QgsAbstractLayoutUndoCommand *QgsLayoutItemPage::createCommand( const QString &text, int id, QUndoCommand *parent )
231{
232 return new QgsLayoutItemPageUndoCommand( this, text, id, parent );
233}
234
239
241{
242 QgsStyleSymbolEntity entity( mPageStyleSymbol.get() );
243 if ( !visitor->visit( QgsStyleEntityVisitorInterface::StyleLeaf( &entity, QStringLiteral( "page" ), QObject::tr( "Page" ) ) ) )
244 return false;
245 return true;
246}
247
249{
251 mGrid->update();
252}
253
255{
256 if ( !context.renderContext().painter() || !mLayout || !mLayout->renderContext().pagesVisible() )
257 {
258 return;
259 }
260
261 const double scale = context.renderContext().convertToPainterUnits( 1, Qgis::RenderUnit::Millimeters );
262
263 const QgsExpressionContext expressionContext = createExpressionContext();
264 context.renderContext().setExpressionContext( expressionContext );
265
266 QPainter *painter = context.renderContext().painter();
267 const QgsScopedQPainterState painterState( painter );
268
269 if ( mLayout->renderContext().isPreviewRender() )
270 {
271 //if in preview mode, draw page border and shadow so that it's
272 //still possible to tell where pages with a transparent style begin and end
273 painter->setRenderHint( QPainter::Antialiasing, false );
274
275 const QRectF pageRect = QRectF( 0, 0, scale * rect().width(), scale * rect().height() );
276
277 //shadow
278 painter->setBrush( QBrush( QColor( 150, 150, 150 ) ) );
279 painter->setPen( Qt::NoPen );
280 painter->drawRect( pageRect.translated( std::min( scale * mLayout->pageCollection()->pageShadowWidth(), mMaximumShadowWidth ),
281 std::min( scale * mLayout->pageCollection()->pageShadowWidth(), mMaximumShadowWidth ) ) );
282
283 //page area
284 painter->setBrush( QColor( 215, 215, 215 ) );
285 QPen pagePen = QPen( QColor( 100, 100, 100 ), 0 );
286 pagePen.setJoinStyle( Qt::MiterJoin );
287 pagePen.setCosmetic( true );
288 painter->setPen( pagePen );
289 painter->drawRect( pageRect );
290 }
291
292 if ( mPageStyleSymbol )
293 {
294 std::unique_ptr< QgsFillSymbol > symbol( mPageStyleSymbol->clone() );
295 symbol->startRender( context.renderContext() );
296
297 //get max bleed from symbol
298 double maxBleedPixels = QgsSymbolLayerUtils::estimateMaxSymbolBleed( symbol.get(), context.renderContext() );
299
300 //Now subtract 1 pixel to prevent semi-transparent borders at edge of solid page caused by
301 //anti-aliased painting. This may cause a pixel to be cropped from certain edge lines/symbols,
302 //but that can be counteracted by adding a dummy transparent line symbol layer with a wider line width
303 if ( !mLayout->renderContext().isPreviewRender() || !qgsDoubleNear( maxBleedPixels, 0.0 ) )
304 {
305 maxBleedPixels = std::floor( maxBleedPixels - 2 );
306 }
307
308 // round up
309 const QPolygonF pagePolygon = QPolygonF( QRectF( maxBleedPixels, maxBleedPixels,
310 std::ceil( rect().width() * scale ) - 2 * maxBleedPixels, std::ceil( rect().height() * scale ) - 2 * maxBleedPixels ) );
311 const QVector<QPolygonF> rings; //empty list
312
313 symbol->renderPolygon( pagePolygon, &rings, nullptr, context.renderContext() );
314 symbol->stopRender( context.renderContext() );
315 }
316}
317
320
323
324bool QgsLayoutItemPage::writePropertiesToElement( QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context ) const
325{
326 const QDomElement styleElem = QgsSymbolLayerUtils::saveSymbol( QString(), mPageStyleSymbol.get(), document, context );
327 element.appendChild( styleElem );
328 return true;
329}
330
331bool QgsLayoutItemPage::readPropertiesFromElement( const QDomElement &element, const QDomDocument &, const QgsReadWriteContext &context )
332{
333 const QDomElement symbolElem = element.firstChildElement( QStringLiteral( "symbol" ) );
334 if ( !symbolElem.isNull() )
335 {
336 mPageStyleSymbol = QgsSymbolLayerUtils::loadSymbol<QgsFillSymbol>( symbolElem, context );
337 }
338 else
339 {
340 createDefaultPageStyleSymbol();
341 }
342
343 return true;
344}
345
346//
347// QgsLayoutItemPageGrid
348//
350
351QgsLayoutItemPageGrid::QgsLayoutItemPageGrid( double x, double y, double width, double height, QgsLayout *layout )
352 : QGraphicsRectItem( 0, 0, width, height )
353 , mLayout( layout )
354{
355 // needed to access current view transform during paint operations
356 setFlags( flags() | QGraphicsItem::ItemUsesExtendedStyleOption );
357 setCacheMode( QGraphicsItem::DeviceCoordinateCache );
358 setFlag( QGraphicsItem::ItemIsSelectable, false );
359 setFlag( QGraphicsItem::ItemIsMovable, false );
360 setZValue( QgsLayout::ZGrid );
361 setPos( x, y );
362}
363
364void QgsLayoutItemPageGrid::paint( QPainter *painter, const QStyleOptionGraphicsItem *itemStyle, QWidget *pWidget )
365{
366 Q_UNUSED( pWidget )
367
368 //draw grid
369 if ( !mLayout )
370 return;
371
372 if ( !mLayout->renderContext().isPreviewRender() )
373 return;
374
375 const QgsLayoutRenderContext &context = mLayout->renderContext();
376 const QgsLayoutGridSettings &grid = mLayout->gridSettings();
377
378 if ( !context.gridVisible() || grid.resolution().length() <= 0 )
379 return;
380
381 const QPointF gridOffset = mLayout->convertToLayoutUnits( grid.offset() );
382 const double gridResolution = mLayout->convertToLayoutUnits( grid.resolution() );
383 const int gridMultiplyX = static_cast< int >( gridOffset.x() / gridResolution );
384 const int gridMultiplyY = static_cast< int >( gridOffset.y() / gridResolution );
385 double currentXCoord = gridOffset.x() - gridMultiplyX * gridResolution;
386 double currentYCoord;
387 const double minYCoord = gridOffset.y() - gridMultiplyY * gridResolution;
388
389 const QgsScopedQPainterState painterState( painter );
390 //turn of antialiasing so grid is nice and sharp
391 painter->setRenderHint( QPainter::Antialiasing, false );
392
393 switch ( grid.style() )
394 {
396 {
397 painter->setPen( grid.pen() );
398
399 //draw vertical lines
400 for ( ; currentXCoord <= rect().width(); currentXCoord += gridResolution )
401 {
402 painter->drawLine( QPointF( currentXCoord, 0 ), QPointF( currentXCoord, rect().height() ) );
403 }
404
405 //draw horizontal lines
406 currentYCoord = minYCoord;
407 for ( ; currentYCoord <= rect().height(); currentYCoord += gridResolution )
408 {
409 painter->drawLine( QPointF( 0, currentYCoord ), QPointF( rect().width(), currentYCoord ) );
410 }
411 break;
412 }
413
416 {
417 const QPen gridPen = grid.pen();
418 painter->setPen( gridPen );
419 painter->setBrush( QBrush( gridPen.color() ) );
420 double halfCrossLength = 1;
422 {
423 //dots are actually drawn as tiny crosses a few pixels across
424 //set halfCrossLength to equivalent of 1 pixel
425 halfCrossLength = 1 / QgsLayoutUtils::scaleFactorFromItemStyle( itemStyle, painter );
426 }
427 else
428 {
429 halfCrossLength = gridResolution / 6;
430 }
431
432 for ( ; currentXCoord <= rect().width(); currentXCoord += gridResolution )
433 {
434 currentYCoord = minYCoord;
435 for ( ; currentYCoord <= rect().height(); currentYCoord += gridResolution )
436 {
437 painter->drawLine( QPointF( currentXCoord - halfCrossLength, currentYCoord ), QPointF( currentXCoord + halfCrossLength, currentYCoord ) );
438 painter->drawLine( QPointF( currentXCoord, currentYCoord - halfCrossLength ), QPointF( currentXCoord, currentYCoord + halfCrossLength ) );
439 }
440 }
441 break;
442 }
443 }
444}
445
@ Millimeters
Millimeters.
Definition qgis.h:5204
@ Millimeters
Millimeters.
Definition qgis.h:5184
Base class for commands to undo/redo layout and layout object changes.
static QgsPageSizeRegistry * pageSizeRegistry()
Returns the application's page size registry, used for managing layout page sizes.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
A fill symbol type, for rendering Polygon and MultiPolygon geometries.
static std::unique_ptr< QgsFillSymbol > createSimple(const QVariantMap &properties)
Create a fill symbol with one symbol layer: SimpleFill with specified properties.
Contains settings relating to the appearance, spacing and offset for layout grids.
QgsLayoutMeasurement resolution() const
Returns the page/snap grid resolution.
QgsLayoutPoint offset() const
Returns the offset of the page/snap grid.
Style style() const
Returns the style used for drawing the page/snap grids.
QPen pen() const
Returns the pen used for drawing page/snap grids.
~QgsLayoutItemPage() override
bool readPropertiesFromElement(const QDomElement &itemElement, const QDomDocument &document, const QgsReadWriteContext &context) override
Sets item state from a DOM element.
QRectF boundingRect() const override
void setPageSize(const QgsLayoutSize &size)
Sets the size of the page.
int type() const override
QgsLayoutSize pageSize() const
Returns the size of the page.
void draw(QgsLayoutItemRenderContext &context) override
Draws the item's contents using the specified item render context.
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
Accepts the specified style entity visitor, causing it to visit all style entities associated with th...
void attemptResize(const QgsLayoutSize &size, bool includesFrame=false) override
Attempts to resize the item to a specified target size.
Orientation orientation() const
Returns the page orientation.
QString displayName() const override
Gets item display name.
void drawBackground(QgsRenderContext &context) override
Draws the background for the item.
QgsAbstractLayoutUndoCommand * createCommand(const QString &text, int id, QUndoCommand *parent=nullptr) override
Creates a new layout undo command with the specified text and parent.
static QgsLayoutItemPage * create(QgsLayout *layout)
Returns a new page item for the specified layout.
QgsLayoutItemPage(QgsLayout *layout)
Constructor for QgsLayoutItemPage, with the specified parent layout.
void setPageStyleSymbol(QgsFillSymbol *symbol)
Sets the symbol to use for drawing the page background.
Orientation
Page orientation.
@ Landscape
Landscape orientation.
@ Portrait
Portrait orientation.
void drawFrame(QgsRenderContext &context) override
Draws the frame around the item.
ExportLayerBehavior exportLayerBehavior() const override
Returns the behavior of this item during exporting to layered exports (e.g.
static QgsLayoutItemPage::Orientation decodePageOrientation(const QString &string, bool *ok=nullptr)
Decodes a string representing a page orientation.
bool writePropertiesToElement(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context) const override
Stores item state within an XML DOM element.
QPageLayout pageLayout() const
Returns the page layout for the page, suitable to pass to QPrinter::setPageLayout.
Contains settings and helpers relating to a render of a QgsLayoutItem.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
friend class QgsLayout
QgsLayoutSize sizeWithUnits() const
Returns the item's current size, including units.
QgsLayoutItem(QgsLayout *layout, bool manageZValue=true)
Constructor for QgsLayoutItem, with the specified parent layout.
virtual void redraw()
Triggers a redraw (update) of the item.
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
virtual void attemptResize(const QgsLayoutSize &size, bool includesFrame=false)
Attempts to resize the item to a specified target size.
void sizePositionChanged()
Emitted when the item's size or position changes.
ExportLayerBehavior
Behavior of item when exporting to layered outputs.
@ CanGroupWithItemsOfSameType
Item can only be placed on layers with other items of the same type, but multiple items of this type ...
QgsLayoutMeasurement convert(QgsLayoutMeasurement measurement, Qgis::LayoutUnit targetUnits) const
Converts a measurement from one unit to another.
double length() const
Returns the length of the measurement.
const QgsLayout * layout() const
Returns the layout the object is attached to.
QPointer< QgsLayout > mLayout
void addPage(QgsLayoutItemPage *page)
Adds a page to the collection.
Stores information relating to the current rendering settings for a layout.
bool gridVisible() const
Returns true if the page grid should be drawn.
const QgsLayoutMeasurementConverter & measurementConverter() const
Returns the layout measurement converter to be used in the layout.
Provides a method of storing sizes, consisting of a width and height, for use in QGIS layouts.
double height() const
Returns the height of the size.
void setWidth(const double width)
Sets the width for the size.
double width() const
Returns the width of the size.
void setHeight(const double height)
Sets the height for the size.
static Q_DECL_DEPRECATED double scaleFactorFromItemStyle(const QStyleOptionGraphicsItem *style)
Extracts the scale factor from an item style.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition qgslayout.h:50
QgsLayoutRenderContext & renderContext()
Returns a reference to the layout's render context, which stores information relating to the current ...
QgsLayoutPageCollection * pageCollection()
Returns a pointer to the layout's page collection, which stores and manages page items in the layout.
@ ZPage
Z-value for page (paper) items.
Definition qgslayout.h:58
@ ZGrid
Z-value for page grids.
Definition qgslayout.h:60
A named page size for layouts.
QgsLayoutSize size
Page size.
A container for the context for various read/write operations on objects.
Contains information about the context of a rendering operation.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
Scoped object for saving and restoring a QPainter object's state.
An interface for classes which can visit style entity (e.g.
virtual bool visit(const QgsStyleEntityVisitorInterface::StyleLeaf &entity)
Called when the visitor will visit a style entity.
A symbol entity for QgsStyle databases.
Definition qgsstyle.h:1397
static std::unique_ptr< QgsSymbol > loadSymbol(const QDomElement &element, const QgsReadWriteContext &context)
Attempts to load a symbol from a DOM element.
static QDomElement saveSymbol(const QString &symbolName, const QgsSymbol *symbol, QDomDocument &doc, const QgsReadWriteContext &context)
Writes a symbol definition to XML.
static double estimateMaxSymbolBleed(QgsSymbol *symbol, const QgsRenderContext &context)
Returns the maximum estimated bleed for the symbol.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
Definition qgis.h:6607
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
Contains information relating to the style entity currently being visited.