31 createDefaultPageStyleSymbol();
38 mLayout->removeItem( page );
48 mPageStyleSymbol.reset( static_cast<QgsFillSymbol *>( symbol->
clone() ) );
59 mPreviousItemPositions.clear();
60 QList< QgsLayoutItem * > items;
68 mPreviousItemPositions.insert( item->uuid(), qMakePair( item->page(), item->pagePositionWithUnits() ) );
74 for (
auto it = mPreviousItemPositions.constBegin(); it != mPreviousItemPositions.constEnd(); ++it )
78 if ( !mBlockUndoCommands )
79 item->beginCommand( QString() );
80 item->attemptMove( it.value().second,
true,
false, it.value().first );
81 if ( !mBlockUndoCommands )
85 mPreviousItemPositions.clear();
120 double area = pageSize.width() * pageSize.height();
121 if ( area > maxArea )
136 if ( !size.isValid() )
141 || !
qgsDoubleNear( pageSize.height(), size.height(), 0.01 ) )
151 double startNextPageY = 0;
155 if ( startNextPageY > point.y() )
160 if ( pageNumber > mPages.count() - 1 )
161 pageNumber = mPages.count() - 1;
167 if ( mPages.empty() )
171 double startNextPageY = 0;
175 if ( startNextPageY >= point.y() )
180 if ( startNextPageY >= point.y() )
186 double lastPageHeight = mPages.last()->rect().height();
187 while ( startNextPageY < point.y() )
190 if ( startNextPageY >= point.y() )
200 const QList< QGraphicsItem * > items = mLayout->items( point );
201 for ( QGraphicsItem *item : items )
206 if ( page->mapToScene( page->rect() ).boundingRect().contains( point ) )
216 if ( page > 0 && page < mPages.count() )
218 layoutUnitsPos.ry() += mPages.at( page )->pos().y();
220 return layoutUnitsPos;
226 if ( page > 0 && page < mPages.count() )
236 double startCurrentPageY = 0;
237 double startNextPageY = 0;
241 startCurrentPageY = startNextPageY;
243 if ( startNextPageY > position.y() )
249 if ( pageNumber == mPages.size() )
258 y = position.y() - startCurrentPageY;
260 return QPointF( position.x(), y );
275 if ( !mBlockUndoCommands )
286 if ( mPages.empty() )
288 std::unique_ptr< QgsLayoutItemPage >
page = qgis::make_unique< QgsLayoutItemPage >( mLayout );
299 bounds.setWidth( bounds.width() + marginLeft + marginRight );
300 bounds.setHeight( bounds.height() + marginTop + marginBottom );
303 page->setPageSize( newPageSize );
308 double diffX = marginLeft - bounds.left();
309 double diffY = marginTop - bounds.top();
311 const QList<QGraphicsItem *> itemList = mLayout->items();
312 for ( QGraphicsItem *item : itemList )
314 if (
QgsLayoutItem *layoutItem = dynamic_cast<QgsLayoutItem *>( item ) )
320 layoutItem->attemptMoveBy( diffX, diffY );
321 layoutItem->endCommand();
328 const QList< QgsLayoutGuide * > verticalGuides = mLayout->
guides().
guides( Qt::Vertical );
331 guide->setLayoutPosition( guide->layoutPosition() + diffX );
333 const QList< QgsLayoutGuide * > horizontalGuides = mLayout->
guides().
guides( Qt::Horizontal );
336 guide->setLayoutPosition( guide->layoutPosition() + diffY );
340 if ( !mBlockUndoCommands )
346 QDomElement element = document.createElement( QStringLiteral(
"PageCollection" ) );
349 element.appendChild( pageStyleElem );
356 mGuideCollection->writeXml( element, document, context );
358 parentElement.appendChild( element );
364 QDomElement element = e;
365 if ( element.nodeName() != QStringLiteral(
"PageCollection" ) )
367 element = element.firstChildElement( QStringLiteral(
"PageCollection" ) );
370 if ( element.nodeName() != QStringLiteral(
"PageCollection" ) )
375 mBlockUndoCommands =
true;
381 mLayout->removeItem(
page );
387 QDomElement pageStyleSymbolElem = element.firstChildElement( QStringLiteral(
"symbol" ) );
388 if ( !pageStyleSymbolElem.isNull() )
390 mPageStyleSymbol.reset( QgsSymbolLayerUtils::loadSymbol<QgsFillSymbol>( pageStyleSymbolElem, context ) );
393 QDomNodeList pageList = element.elementsByTagName( QStringLiteral(
"LayoutItem" ) );
394 for (
int i = 0; i < pageList.size(); ++i )
396 QDomElement pageElement = pageList.at( i ).toElement();
398 page->readXml( pageElement, document, context );
399 page->finalizeRestoreFromXml();
400 mPages.append( page.get() );
401 mLayout->addItem( page.release() );
406 mGuideCollection->readXml( element, document, context );
408 mBlockUndoCommands =
false;
414 return *mGuideCollection;
419 return *mGuideCollection;
442 return mPages.count();
447 return mPages.value( pageNumber );
452 return mPages.value( pageNumber );
457 return mPages.indexOf( page );
462 QList<QgsLayoutItemPage *>
pages;
465 if ( page->mapToScene( page->rect() ).boundingRect().intersects( region ) )
477 if ( page->mapToScene( page->rect() ).boundingRect().intersects( region ) )
505 QList<QgsLayoutItem *> itemList;
506 const QList<QGraphicsItem *> graphicsItemList = mLayout->items();
507 itemList.reserve( graphicsItemList.size() );
508 for ( QGraphicsItem *graphicsItem : graphicsItemList )
513 itemList.push_back( item );
521 if ( page >= mPages.count() || page < 0 )
532 QList<QgsLayoutFrame *> frames;
536 if ( frame->hidePageIfEmpty() && frame->isEmpty() )
547 if ( !mBlockUndoCommands )
549 mPages.append( page );
550 mLayout->addItem( page );
552 if ( !mBlockUndoCommands )
558 if ( mPages.empty() )
562 std::unique_ptr< QgsLayoutItemPage > newPage = qgis::make_unique< QgsLayoutItemPage >( mLayout );
565 return mPages.at( mPages.count() - 1 );
570 if ( !mBlockUndoCommands )
576 if ( beforePage < 0 )
580 if ( beforePage >= mPages.count() )
582 mPages.append( page );
586 mPages.insert( beforePage, page );
588 mLayout->addItem( page );
592 for (
auto it = mPreviousItemPositions.begin(); it != mPreviousItemPositions.end(); ++it )
594 if ( it.value().first < beforePage )
597 it.value().first = it.value().first + 1;
601 if ( ! mBlockUndoCommands )
610 if ( pageNumber < 0 || pageNumber >= mPages.count() )
613 if ( !mBlockUndoCommands )
621 mLayout->removeItem( page );
626 for (
auto it = mPreviousItemPositions.begin(); it != mPreviousItemPositions.end(); ++it )
631 it.value().first = it.value().first - 1;
635 if ( ! mBlockUndoCommands )
644 if ( !mPages.contains( page ) )
647 if ( !mBlockUndoCommands )
652 int pageIndex = mPages.indexOf( page );
655 mPages.removeAll( page );
660 for (
auto it = mPreviousItemPositions.begin(); it != mPreviousItemPositions.end(); ++it )
662 if ( it.value().first <= pageIndex )
665 it.value().first = it.value().first - 1;
669 if ( !mBlockUndoCommands )
678 if ( !mBlockUndoCommands )
683 for (
int i = mPages.count() - 1; i >= 0; --i )
686 mPages.takeAt( i )->deleteLater();
689 if ( !mBlockUndoCommands )
698 mPages.removeAll( page );
702 void QgsLayoutPageCollection::createDefaultPageStyleSymbol()
705 properties.insert( QStringLiteral(
"color" ), QStringLiteral(
"white" ) );
706 properties.insert( QStringLiteral(
"style" ), QStringLiteral(
"solid" ) );
707 properties.insert( QStringLiteral(
"style_border" ), QStringLiteral(
"no" ) );
708 properties.insert( QStringLiteral(
"joinstyle" ), QStringLiteral(
"miter" ) );
int pageCount() const
Returns the number of pages in the collection.
The class is used as a container of context for various read/write operations on other objects...
~QgsLayoutPageCollection() override
bool writeXml(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context) const override
Stores the collection's state in a DOM element.
void pageAboutToBeRemoved(int pageNumber)
Emitted just before a page is removed from the collection.
void beginCommand(const QString &commandText, UndoCommand command=UndoNone)
Starts new undo command for this item.
QgsLayoutGuideCollection & guides()
Returns a reference to the layout's guide collection, which manages page snap guides.
Base class for graphical items within a QgsLayout.
bool pageIsEmpty(int page) const
Returns whether a given page index is empty, ie, it contains no items except for the background paper...
QgsLayoutItemPage * extendByNewPage()
Adds a new page to the end of the collection.
QgsLayoutUndoStack * undoStack()
Returns a pointer to the layout's undo stack, which manages undo/redo states for the layout and it's ...
Contains the configuration for a single snap guide used by a layout.
QgsLayoutSize pageSize() const
Returns the size of the page.
QList< int > visiblePageNumbers(const QRectF ®ion) const
Returns a list of the page numbers which are visible within the specified region (in layout coordinat...
QgsLayoutItemPage * takePage(QgsLayoutItemPage *page)
Takes a page from the collection, returning ownership of the page to the caller.
void resizeToContents(const QgsMargins &margins, QgsUnitTypes::LayoutUnit marginUnits)
Resizes the layout to a single page which fits the current contents of the layout.
QRectF layoutBounds(bool ignorePages=false, double margin=0.0) const
Calculates the bounds of all non-gui items in the layout.
static QgsFillSymbol * createSimple(const QgsStringMap &properties)
Create a fill symbol with one symbol layer: SimpleFill with specified properties. ...
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
double pageShadowWidth() const
Returns the size of the page shadow, in layout units.
void clear()
Removes all pages from the collection.
QgsLayoutMeasurement convertFromLayoutUnits(double length, QgsUnitTypes::LayoutUnit unit) const
Converts a length measurement from the layout's native units to a specified target unit...
void setPageStyleSymbol(QgsFillSymbol *symbol)
Sets the symbol to use for drawing pages in the collection.
QgsLayoutGuideCollection & guides()
Returns a reference to the collection's guide collection, which manages page snap guides...
double x() const
Returns x coordinate of point.
QList< QgsLayoutItemPage * > pages()
Returns a list of pages in the collection.
void changed()
Emitted when pages are added or removed from the collection.
bool writeXml(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores the item state in a DOM element.
double left() const
Returns the left margin.
void updateBounds()
Updates the scene bounds of the layout.
QMap< QString, QString > QgsStringMap
QgsLayoutSize sizeWithUnits() const
Returns the item's current size, including units.
QPointF pagePositionToLayoutPosition(int page, const QgsLayoutPoint &position) const
Converts a position on a page to an absolute position in layout coordinates.
void layoutItems(QList< T * > &itemList) const
Returns a list of layout items of a specific type.
QgsLayoutItem * itemByUuid(const QString &uuid, bool includeTemplateUuids=false) const
Returns the layout item with matching uuid unique identifier, or a nullptr if a matching item could n...
void beginPageSizeChange()
Should be called before changing any page item sizes, and followed by a call to endPageSizeChange().
This class provides a method of storing points, consisting of an x and y coordinate, for use in QGIS layouts.
void endCommand()
Saves final state of an object and pushes the active command to the undo history. ...
QgsLayoutItemPage * page(int pageNumber)
Returns a specific page (by pageNumber) from the collection.
This class provides a method of storing measurements for use in QGIS layouts using a variety of diffe...
QgsFillSymbol * clone() const override
Returns a deep copy of this symbol.
QgsLayoutPageCollection * pageCollection()
Returns a pointer to the layout's page collection, which stores and manages page items in the layout...
double maximumPageWidth() const
Returns the maximum width of pages in the collection.
QgsLayoutItemPage * pageAtPoint(QPointF point) const
Returns the page at a specified point (in layout coordinates).
Stores and manages the snap guides used by a layout.
bool readXml(const QDomElement &collectionElement, const QDomDocument &document, const QgsReadWriteContext &context) override
Sets the collection's state from a DOM element.
void redraw()
Triggers a redraw for all pages.
QSizeF maximumPageSize() const
Returns the maximum size of any page in the collection, by area.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
QPointF positionOnPage(QPointF point) const
Returns the position within a page of a point in the layout (in layout units).
void beginMacro(const QString &commandText)
Starts a macro command, with the given descriptive commandText.
int pageNumberForPoint(QPointF point) const
Returns the page number corresponding to a point in the layout (in layout units). ...
void beginCommand(QgsLayoutUndoObjectInterface *object, const QString &commandText, int id=0)
Begins a new undo command for the specified object.
QList< QgsLayoutItem * > itemsOnPage(int page) const
Returns a list of layout items on the specified page index.
QList< QgsLayoutGuide * > guides()
Returns a list of all guides contained in the collection.
bool shouldExportPage(int page) const
Returns whether the specified page number should be included in exports of the layouts.
int page() const
Returns the page the item is currently on, with the first page returning 0.
QgsLayoutPoint pagePositionToAbsolute(int page, const QgsLayoutPoint &position) const
Converts a position on a page to an absolute position in (maintaining the units from the input positi...
double right() const
Returns the right margin.
bool shouldDrawItem() const
Returns whether the item should be drawn in the current context.
double bottom() const
Returns the bottom margin.
double top() const
Returns the top margin.
void insertPage(QgsLayoutItemPage *page, int beforePage)
Inserts a page into a specific position in the collection.
virtual void attemptMove(const QgsLayoutPoint &point, bool useReferencePoint=true, bool includesFrame=false, int page=-1)
Attempts to move the item to a specified point.
int pageNumber(QgsLayoutItemPage *page) const
Returns the page number for the specified page, or -1 if the page is not contained in the collection...
void update()
Updates the position (and visibility) of all guide line items.
QList< QgsLayoutItemPage * > visiblePages(const QRectF ®ion) const
Returns a list of the pages which are visible within the specified region (in layout coordinates)...
static QDomElement saveSymbol(const QString &symbolName, QgsSymbol *symbol, QDomDocument &doc, const QgsReadWriteContext &context)
Writes a symbol definition to XML.
LayoutUnit
Layout measurement units.
QgsUnitTypes::LayoutUnit units() const
Returns the native units for the layout.
void addPage(QgsLayoutItemPage *page)
Adds a page to the collection.
A fill symbol type, for rendering Polygon and MultiPolygon geometries.
int predictPageNumberForPoint(QPointF point) const
Returns the theoretical page number corresponding to a point in the layout (in layout units)...
void deletePage(int pageNumber)
Deletes a page from the collection.
void endPageSizeChange()
Should be called after changing any page item sizes, and preceded by a call to beginPageSizeChange()...
double spaceBetweenPages() const
Returns the space between pages, in layout units.
void endMacro()
Ends a macro command.
QgsLayoutPageCollection(QgsLayout *layout)
Constructor for QgsLayoutItemPage, with the specified parent layout.
void reflow()
Forces the page collection to reflow the arrangement of pages, e.g.
This class provides a method of storing sizes, consisting of a width and height, for use in QGIS layo...
Base class for frame items, which form a layout multiframe item.
bool hasUniformPageSizes() const
Returns true if the layout has uniform page sizes, e.g.
QgsLayout * layout() override
Returns the layout the object belongs to.
QgsUnitTypes::LayoutUnit units() const
Returns the units for the point.
double y() const
Returns y coordinate of point.
The QgsMargins class defines the four margins of a rectangle.
double convertToLayoutUnits(QgsLayoutMeasurement measurement) const
Converts a measurement into the layout's native units.
Item representing the paper in a layout.