QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgslayoutmultiframe.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgslayoutmultiframe.cpp
3  -----------------------
4  begin : October 2017
5  copyright : (C) 2017 by Nyall Dawson
6  email : nyall dot dawson at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #include "qgslayoutmultiframe.h"
18 #include "qgslayoutframe.h"
19 #include "qgslayout.h"
21 #include "qgslayoutundostack.h"
23 #include <QtCore>
24 
26  : QgsLayoutObject( layout )
27  , mUuid( QUuid::createUuid().toString() )
28 {
29  mLayout->addMultiFrame( this );
30 
31  connect( mLayout->pageCollection(), &QgsLayoutPageCollection::changed, this, &QgsLayoutMultiFrame::handlePageChange );
32 }
33 
35 {
36  deleteFrames();
37 }
38 
39 QSizeF QgsLayoutMultiFrame::fixedFrameSize( const int frameIndex ) const
40 {
41  Q_UNUSED( frameIndex )
42  return QSizeF( 0, 0 );
43 }
44 
45 QSizeF QgsLayoutMultiFrame::minFrameSize( const int frameIndex ) const
46 {
47  Q_UNUSED( frameIndex )
48  return QSizeF( 0, 0 );
49 }
50 
52 {
53  return yPos;
54 }
55 
56 void QgsLayoutMultiFrame::addFrame( QgsLayoutFrame *frame, bool recalcFrameSizes )
57 {
58  if ( !frame || mFrameItems.contains( frame ) )
59  return;
60 
61  mFrameItems.push_back( frame );
62  frame->mMultiFrame = this;
64  connect( frame, &QgsLayoutFrame::destroyed, this, [this, frame ]
65  {
66  handleFrameRemoval( frame );
67  } );
68  if ( mLayout && !frame->scene() )
69  {
70  mLayout->addLayoutItem( frame );
71  }
72 
73  if ( recalcFrameSizes )
74  {
76  }
77 }
78 
80 {
81  if ( mode != mResizeMode )
82  {
83  mLayout->undoStack()->beginMacro( tr( "Change Resize Mode" ) );
84  mResizeMode = mode;
86  mLayout->undoStack()->endMacro();
87  emit changed();
88  }
89 }
90 
91 QList<QgsLayoutFrame *> QgsLayoutMultiFrame::frames() const
92 {
93  return mFrameItems;
94 }
95 
97 {
98  if ( mFrameItems.empty() )
99  {
100  return;
101  }
102 
103  QSizeF size = totalSize();
104  double totalHeight = size.height();
105 
106  if ( totalHeight < 1 )
107  {
108  return;
109  }
110 
111  if ( mBlockUndoCommands )
112  mLayout->undoStack()->blockCommands( true );
113 
114  double currentY = 0;
115  double currentHeight = 0;
116  QgsLayoutFrame *currentItem = nullptr;
117 
118  for ( int i = 0; i < mFrameItems.size(); ++i )
119  {
120  if ( mResizeMode != RepeatOnEveryPage && currentY >= totalHeight )
121  {
122  if ( mResizeMode == RepeatUntilFinished || mResizeMode == ExtendToNextPage ) //remove unneeded frames in extent mode
123  {
124  bool removingPages = true;
125  for ( int j = mFrameItems.size(); j > i; --j )
126  {
127  int numPagesBefore = mLayout->pageCollection()->pageCount();
128  removeFrame( j - 1, removingPages );
129  //if removing the frame didn't also remove the page, then stop removing pages
130  removingPages = removingPages && ( mLayout->pageCollection()->pageCount() < numPagesBefore );
131  }
132  return;
133  }
134  }
135 
136  currentItem = mFrameItems.value( i );
137  currentHeight = currentItem->rect().height();
139  {
140  currentItem->setContentSection( QRectF( 0, 0, currentItem->rect().width(), currentHeight ) );
141  }
142  else
143  {
144  currentHeight = findNearbyPageBreak( currentY + currentHeight ) - currentY;
145  currentItem->setContentSection( QRectF( 0, currentY, currentItem->rect().width(), currentHeight ) );
146  }
147  currentItem->update();
148  currentY += currentHeight;
149  }
150 
151  //at end of frames but there is still content left. Add other pages if ResizeMode ==
152  if ( mLayout->pageCollection()->pageCount() > 0 && currentItem && mResizeMode != UseExistingFrames )
153  {
154  while ( ( mResizeMode == RepeatOnEveryPage ) || currentY < totalHeight )
155  {
156  //find out on which page the lower left point of the last frame is
157  int page = mLayout->pageCollection()->predictPageNumberForPoint( QPointF( 0, currentItem->pos().y() + currentItem->rect().height() ) ) + 1;
158 
160  {
161  if ( page >= mLayout->pageCollection()->pageCount() )
162  {
163  break;
164  }
165  }
166  else
167  {
168  //add new pages if required
169  for ( int p = mLayout->pageCollection()->pageCount() - 1 ; p < page; ++p )
170  {
171  mLayout->pageCollection()->extendByNewPage();
172  }
173  }
174 
175  double currentPageHeight = mLayout->pageCollection()->page( page )->rect().height();
176 
177  double frameHeight = 0;
178  switch ( mResizeMode )
179  {
180  case RepeatUntilFinished:
181  case RepeatOnEveryPage:
182  {
183  frameHeight = currentItem->rect().height();
184  break;
185  }
186  case ExtendToNextPage:
187  {
188  frameHeight = ( currentY + currentPageHeight ) > totalHeight ? totalHeight - currentY : currentPageHeight;
189  break;
190  }
191 
192  case UseExistingFrames:
193  break;
194  }
195 
196  double newFrameY = mLayout->pageCollection()->page( page )->pos().y();
198  {
199  newFrameY += currentItem->pagePos().y();
200  }
201 
202  //create new frame
203  QgsLayoutFrame *newFrame = createNewFrame( currentItem,
204  QPointF( currentItem->pos().x(), newFrameY ),
205  QSizeF( currentItem->rect().width(), frameHeight ) );
206 
208  {
209  newFrame->setContentSection( QRectF( 0, 0, newFrame->rect().width(), newFrame->rect().height() ) );
210  currentY += frameHeight;
211  }
212  else
213  {
214  double contentHeight = findNearbyPageBreak( currentY + newFrame->rect().height() ) - currentY;
215  newFrame->setContentSection( QRectF( 0, currentY, newFrame->rect().width(), contentHeight ) );
216  currentY += contentHeight;
217  }
218 
219  currentItem = newFrame;
220  }
221  }
222 
223  if ( mBlockUndoCommands )
224  mLayout->undoStack()->blockCommands( false );
225 }
226 
228 {
229  if ( mFrameItems.empty() )
230  {
231  //no frames, nothing to do
232  return;
233  }
234 
235  const QList< QgsLayoutFrame * > frames = mFrameItems;
236  for ( QgsLayoutFrame *frame : frames )
237  {
239  }
240 }
241 
243 {
244 
245 }
246 
247 QgsLayoutFrame *QgsLayoutMultiFrame::createNewFrame( QgsLayoutFrame *currentFrame, QPointF pos, QSizeF size )
248 {
249  if ( !currentFrame )
250  {
251  return nullptr;
252  }
253 
254  QgsLayoutFrame *newFrame = new QgsLayoutFrame( mLayout, this );
255  newFrame->attemptSetSceneRect( QRectF( pos.x(), pos.y(), size.width(), size.height() ) );
256 
257  //copy some settings from the parent frame
258  newFrame->setBackgroundColor( currentFrame->backgroundColor() );
259  newFrame->setBackgroundEnabled( currentFrame->hasBackground() );
260  newFrame->setBlendMode( currentFrame->blendMode() );
261  newFrame->setFrameEnabled( currentFrame->frameEnabled() );
262  newFrame->setFrameStrokeColor( currentFrame->frameStrokeColor() );
263  newFrame->setFrameJoinStyle( currentFrame->frameJoinStyle() );
264  newFrame->setFrameStrokeWidth( currentFrame->frameStrokeWidth() );
265  newFrame->setItemOpacity( currentFrame->itemOpacity() );
266  newFrame->setHideBackgroundIfEmpty( currentFrame->hideBackgroundIfEmpty() );
267 
268  addFrame( newFrame, false );
269 
270  return newFrame;
271 }
272 
274 {
275  return tr( "<Multiframe>" );
276 }
277 
278 QgsAbstractLayoutUndoCommand *QgsLayoutMultiFrame::createCommand( const QString &text, int id, QUndoCommand *parent )
279 {
280  return new QgsLayoutMultiFrameUndoCommand( this, text, id, parent );
281 }
282 
284 {
287  return context;
288 }
289 
290 void QgsLayoutMultiFrame::beginCommand( const QString &commandText, QgsLayoutMultiFrame::UndoCommand command )
291 {
292  if ( !mLayout )
293  return;
294 
295  mLayout->undoStack()->beginCommand( this, commandText, command );
296 }
297 
299 {
300  if ( mLayout )
301  mLayout->undoStack()->endCommand();
302 }
303 
305 {
306  if ( mLayout )
307  mLayout->undoStack()->cancelCommand();
308 }
309 
311 {
312  for ( int i = 0; i < mFrameUuids.count(); ++i )
313  {
314  QgsLayoutFrame *frame = nullptr;
315  const QString uuid = mFrameUuids.at( i );
316  if ( !uuid.isEmpty() )
317  {
318  QgsLayoutItem *item = mLayout->itemByUuid( uuid, true );
319  frame = qobject_cast< QgsLayoutFrame * >( item );
320  }
321  if ( !frame )
322  {
323  const QString templateUuid = mFrameTemplateUuids.at( i );
324  if ( !templateUuid.isEmpty() )
325  {
326  QgsLayoutItem *item = mLayout->itemByTemplateUuid( templateUuid );
327  frame = qobject_cast< QgsLayoutFrame * >( item );
328  }
329  }
330 
331  if ( frame )
332  {
333  addFrame( frame );
334  }
335  }
336 }
337 
339 {
342 }
343 
344 void QgsLayoutMultiFrame::handleFrameRemoval( QgsLayoutFrame *frame )
345 {
346  if ( mBlockUpdates )
347  return;
348 
349  if ( !frame )
350  {
351  return;
352  }
353  int index = mFrameItems.indexOf( frame );
354  if ( index == -1 )
355  {
356  return;
357  }
358 
359  mFrameItems.removeAt( index );
360  if ( !mFrameItems.isEmpty() )
361  {
362  if ( resizeMode() != QgsLayoutMultiFrame::RepeatOnEveryPage && !mIsRecalculatingSize )
363  {
364  //removing a frame forces the multi frame to UseExistingFrames resize mode
365  //otherwise the frame may not actually be removed, leading to confusing ui behavior
367  emit changed();
369  }
370  }
371 }
372 
373 void QgsLayoutMultiFrame::handlePageChange()
374 {
375  if ( mLayout->pageCollection()->pageCount() < 1 )
376  {
377  return;
378  }
379 
381  {
382  return;
383  }
384 
385  //remove items beginning on non-existing pages
386  for ( int i = mFrameItems.size() - 1; i >= 0; --i )
387  {
388  QgsLayoutFrame *frame = mFrameItems.at( i );
389  int page = mLayout->pageCollection()->predictPageNumberForPoint( frame->pos() );
390  if ( page >= mLayout->pageCollection()->pageCount() )
391  {
392  removeFrame( i );
393  }
394  }
395 
396  if ( !mFrameItems.empty() )
397  {
398  //page number of the last item
399  QgsLayoutFrame *lastFrame = mFrameItems.last();
400  int lastItemPage = mLayout->pageCollection()->predictPageNumberForPoint( lastFrame->pos() );
401 
402  for ( int i = lastItemPage + 1; i < mLayout->pageCollection()->pageCount(); ++i )
403  {
404  //copy last frame to current page
405  std::unique_ptr< QgsLayoutFrame > newFrame = qgis::make_unique< QgsLayoutFrame >( mLayout, this );
406 
407  newFrame->attemptSetSceneRect( QRectF( lastFrame->pos().x(),
408  mLayout->pageCollection()->page( i )->pos().y() + lastFrame->pagePos().y(),
409  lastFrame->rect().width(), lastFrame->rect().height() ) );
410  lastFrame = newFrame.get();
411  addFrame( newFrame.release(), false );
412  }
413  }
414 
416  update();
417 }
418 
419 void QgsLayoutMultiFrame::removeFrame( int i, const bool removeEmptyPages )
420 {
421  if ( i >= mFrameItems.count() )
422  {
423  return;
424  }
425 
426  QgsLayoutFrame *frameItem = mFrameItems.at( i );
427  if ( mLayout )
428  {
429  mIsRecalculatingSize = true;
430  int pageNumber = frameItem->page();
431  //remove item, but don't create undo command
432  mLayout->undoStack()->blockCommands( true );
433  mLayout->removeLayoutItem( frameItem );
434  //if frame was the only item on the page, remove the page
435  if ( removeEmptyPages && mLayout->pageCollection()->pageIsEmpty( pageNumber ) )
436  {
437  mLayout->pageCollection()->deletePage( pageNumber );
438  }
439  mLayout->undoStack()->blockCommands( false );
440  mIsRecalculatingSize = false;
441  }
442  mFrameItems.removeAt( i );
443 }
444 
446 {
447  for ( QgsLayoutFrame *frame : qgis::as_const( mFrameItems ) )
448  {
449  frame->update();
450  }
451 }
452 
454 {
455  mBlockUpdates = true;
456  ResizeMode bkResizeMode = mResizeMode;
458  mLayout->undoStack()->blockCommands( true );
459  for ( QgsLayoutFrame *frame : qgis::as_const( mFrameItems ) )
460  {
461  mLayout->removeLayoutItem( frame );
462  }
463  mLayout->undoStack()->blockCommands( false );
464  mFrameItems.clear();
465  mResizeMode = bkResizeMode;
466  mBlockUpdates = false;
467 }
468 
470 {
471  if ( i < 0 || i >= mFrameItems.size() )
472  {
473  return nullptr;
474  }
475  return mFrameItems.at( i );
476 }
477 
479 {
480  return mFrameItems.indexOf( frame );
481 }
482 
483 bool QgsLayoutMultiFrame::writeXml( QDomElement &parentElement, QDomDocument &doc, const QgsReadWriteContext &context, bool includeFrames ) const
484 {
485  QDomElement element = doc.createElement( QStringLiteral( "LayoutMultiFrame" ) );
486  element.setAttribute( QStringLiteral( "resizeMode" ), mResizeMode );
487  element.setAttribute( QStringLiteral( "uuid" ), mUuid );
488  element.setAttribute( QStringLiteral( "templateUuid" ), mUuid );
489  element.setAttribute( QStringLiteral( "type" ), type() );
490 
491  for ( QgsLayoutFrame *frame : mFrameItems )
492  {
493  if ( !frame )
494  continue;
495 
496  QDomElement childItem = doc.createElement( QStringLiteral( "childFrame" ) );
497  childItem.setAttribute( QStringLiteral( "uuid" ), frame->uuid() );
498  childItem.setAttribute( QStringLiteral( "templateUuid" ), frame->uuid() );
499 
500  if ( includeFrames )
501  {
502  frame->writeXml( childItem, doc, context );
503  }
504 
505  element.appendChild( childItem );
506  }
507 
508  writeObjectPropertiesToElement( element, doc, context );
509  writePropertiesToElement( element, doc, context );
510  parentElement.appendChild( element );
511  return true;
512 }
513 
514 bool QgsLayoutMultiFrame::readXml( const QDomElement &element, const QDomDocument &doc, const QgsReadWriteContext &context, bool includeFrames )
515 {
516  if ( element.nodeName() != QLatin1String( "LayoutMultiFrame" ) )
517  {
518  return false;
519  }
520 
521  mBlockUndoCommands = true;
522  mLayout->undoStack()->blockCommands( true );
523 
524  readObjectPropertiesFromElement( element, doc, context );
525 
526  mUuid = element.attribute( QStringLiteral( "uuid" ), QUuid::createUuid().toString() );
527  mTemplateUuid = element.attribute( QStringLiteral( "templateUuid" ), QUuid::createUuid().toString() );
528  mResizeMode = static_cast< ResizeMode >( element.attribute( QStringLiteral( "resizeMode" ), QStringLiteral( "0" ) ).toInt() );
529 
530  deleteFrames();
531  mFrameUuids.clear();
532  mFrameTemplateUuids.clear();
533  QDomNodeList elementNodes = element.elementsByTagName( QStringLiteral( "childFrame" ) );
534  for ( int i = 0; i < elementNodes.count(); ++i )
535  {
536  QDomNode elementNode = elementNodes.at( i );
537  if ( !elementNode.isElement() )
538  continue;
539 
540  QDomElement frameElement = elementNode.toElement();
541 
542  QString uuid = frameElement.attribute( QStringLiteral( "uuid" ) );
543  mFrameUuids << uuid;
544  QString templateUuid = frameElement.attribute( QStringLiteral( "templateUuid" ) );
545  mFrameTemplateUuids << templateUuid;
546 
547  if ( includeFrames )
548  {
549  QDomNodeList frameNodes = frameElement.elementsByTagName( QStringLiteral( "LayoutItem" ) );
550  if ( !frameNodes.isEmpty() )
551  {
552  QDomElement frameItemElement = frameNodes.at( 0 ).toElement();
553  std::unique_ptr< QgsLayoutFrame > newFrame = qgis::make_unique< QgsLayoutFrame >( mLayout, this );
554  newFrame->readXml( frameItemElement, doc, context );
555  addFrame( newFrame.release(), false );
556  }
557  }
558  }
559 
560  bool result = readPropertiesFromElement( element, doc, context );
561 
562  mBlockUndoCommands = false;
563  mLayout->undoStack()->blockCommands( false );
564  return result;
565 }
566 
567 bool QgsLayoutMultiFrame::writePropertiesToElement( QDomElement &, QDomDocument &, const QgsReadWriteContext & ) const
568 {
569  return true;
570 }
571 
572 bool QgsLayoutMultiFrame::readPropertiesFromElement( const QDomElement &, const QDomDocument &, const QgsReadWriteContext & )
573 {
574 
575  return true;
576 }
577 
QgsLayoutMultiFrame::frame
QgsLayoutFrame * frame(int index) const
Returns the child frame at a specified index from the multiframe.
Definition: qgslayoutmultiframe.cpp:469
QgsExpressionContext
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Definition: qgsexpressioncontext.h:370
QgsLayoutItem::itemOpacity
double itemOpacity() const
Returns the item's opacity.
Definition: qgslayoutitem.h:843
qgsexpressioncontextutils.h
QgsLayoutMultiFrame::totalSize
virtual QSizeF totalSize() const =0
Returns the total size of the multiframe's content, in layout units.
QgsLayoutMultiFrame::createExpressionContext
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
Definition: qgslayoutmultiframe.cpp:283
QgsLayoutMultiFrame::findNearbyPageBreak
virtual double findNearbyPageBreak(double yPos)
Finds the optimal position to break a frame at.
Definition: qgslayoutmultiframe.cpp:51
QgsLayoutMultiFrame::endCommand
void endCommand()
Completes the current item command and push it onto the layout's undo stack.
Definition: qgslayoutmultiframe.cpp:298
QgsLayoutMultiFrame::writeXml
bool writeXml(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context, bool includeFrames=false) const
Stores the multiframe state in a DOM element.
Definition: qgslayoutmultiframe.cpp:483
qgslayoutundostack.h
QgsLayoutItem::refreshItemSize
void refreshItemSize()
Refreshes an item's size by rechecking it against any possible item fixed or minimum sizes.
Definition: qgslayoutitem.cpp:1268
QgsLayoutMultiFrame::~QgsLayoutMultiFrame
~QgsLayoutMultiFrame() override
Definition: qgslayoutmultiframe.cpp:34
QgsLayoutItem::sizePositionChanged
void sizePositionChanged()
Emitted when the item's size or position changes.
QgsLayoutObject::refresh
virtual void refresh()
Refreshes the object, causing a recalculation of any property overrides.
Definition: qgslayoutobject.h:312
QgsLayoutItem::setFrameEnabled
virtual void setFrameEnabled(bool drawFrame)
Sets whether this item has a frame drawn around it or not.
Definition: qgslayoutitem.cpp:833
QgsLayoutItem::frameEnabled
bool frameEnabled() const
Returns true if the item includes a frame.
Definition: qgslayoutitem.h:730
QgsReadWriteContext
The class is used as a container of context for various read/write operations on other objects.
Definition: qgsreadwritecontext.h:35
QgsLayoutFrame::setHideBackgroundIfEmpty
void setHideBackgroundIfEmpty(bool hideBackgroundIfEmpty)
Sets whether the background and frame stroke should be hidden if this frame is empty.
Definition: qgslayoutframe.cpp:94
QgsLayoutItem::setFrameStrokeWidth
virtual void setFrameStrokeWidth(QgsLayoutMeasurement width)
Sets the frame stroke width.
Definition: qgslayoutitem.cpp:859
QgsLayoutMultiFrame::refreshDataDefinedProperty
virtual void refreshDataDefinedProperty(QgsLayoutObject::DataDefinedProperty property=QgsLayoutObject::AllProperties)
Refreshes a data defined property for the multi frame by reevaluating the property's value and redraw...
Definition: qgslayoutmultiframe.cpp:242
QgsLayoutItem::attemptSetSceneRect
void attemptSetSceneRect(const QRectF &rect, bool includesFrame=false)
Attempts to update the item's position and size to match the passed rect in layout coordinates.
Definition: qgslayoutitem.cpp:510
QgsLayoutMultiFrame::RepeatUntilFinished
@ RepeatUntilFinished
Definition: qgslayoutmultiframe.h:106
qgslayoutmultiframe.h
QgsLayoutMultiFrame::finalizeRestoreFromXml
virtual void finalizeRestoreFromXml()
Called after all pending items have been restored from XML.
Definition: qgslayoutmultiframe.cpp:310
QgsLayoutMultiFrame::removeFrame
void removeFrame(int index, bool removeEmptyPages=false)
Removes a frame by index from the multiframe.
Definition: qgslayoutmultiframe.cpp:419
QgsLayoutItem::page
int page() const
Returns the page the item is currently on, with the first page returning 0.
Definition: qgslayoutitem.cpp:541
QgsExpressionContextUtils::multiFrameScope
static QgsExpressionContextScope * multiFrameScope(const QgsLayoutMultiFrame *frame)
Creates a new scope which contains variables and functions relating to a QgsLayoutMultiFrame.
Definition: qgsexpressioncontextutils.cpp:701
QgsLayoutFrame::hideBackgroundIfEmpty
bool hideBackgroundIfEmpty() const
Returns whether the background and frame stroke should be hidden if this frame is empty.
Definition: qgslayoutframe.h:97
QgsLayoutObject::changed
void changed()
Emitted when the object's properties change.
QgsLayoutItem::writeXml
bool writeXml(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores the item state in a DOM element.
Definition: qgslayoutitem.cpp:610
QgsLayoutMultiFrame::readXml
bool readXml(const QDomElement &itemElement, const QDomDocument &document, const QgsReadWriteContext &context, bool includeFrames=false)
Sets the item state from a DOM element.
Definition: qgslayoutmultiframe.cpp:514
QgsLayoutMultiFrame::ExtendToNextPage
@ ExtendToNextPage
Creates new full page frames on the following page(s) until the entire multiframe content is visible.
Definition: qgslayoutmultiframe.h:104
QgsLayoutMultiFrame::mFrameItems
QList< QgsLayoutFrame * > mFrameItems
Definition: qgslayoutmultiframe.h:408
qgslayoutframe.h
QgsLayoutItem::hasBackground
bool hasBackground() const
Returns true if the item has a background.
Definition: qgslayoutitem.h:800
QgsLayoutMultiFrame::QgsLayoutMultiFrame
QgsLayoutMultiFrame(QgsLayout *layout)
Construct a new multiframe item, attached to the specified layout.
Definition: qgslayoutmultiframe.cpp:25
QgsLayoutMultiFrame::type
virtual int type() const =0
Returns unique multiframe type id.
QgsLayoutItem::setBlendMode
void setBlendMode(QPainter::CompositionMode mode)
Sets the item's composition blending mode.
Definition: qgslayoutitem.cpp:899
QgsLayoutMultiFrame::update
void update()
Forces a redraw of all child frames.
Definition: qgslayoutmultiframe.cpp:445
QgsLayoutItem::backgroundColor
QColor backgroundColor() const
Returns the background color for this item.
Definition: qgslayoutitem.h:815
QgsLayoutItem::frameStrokeWidth
QgsLayoutMeasurement frameStrokeWidth() const
Returns the frame's stroke width.
Definition: qgslayoutitem.h:775
QgsLayoutMultiFrame::cancelCommand
void cancelCommand()
Cancels the current item command and discards it.
Definition: qgslayoutmultiframe.cpp:304
QgsLayoutFrame
Base class for frame items, which form a layout multiframe item.
Definition: qgslayoutframe.h:32
QgsLayoutItem::frameJoinStyle
Qt::PenJoinStyle frameJoinStyle() const
Returns the join style used for drawing the item's frame.
Definition: qgslayoutitem.h:784
QgsLayoutFrame::setContentSection
void setContentSection(const QRectF &section)
Sets the visible part of the multiframe's content which is visible within this frame (relative to the...
Definition: qgslayoutframe.h:61
QgsLayoutItem::setBackgroundColor
void setBackgroundColor(const QColor &color)
Sets the background color for this item.
Definition: qgslayoutitem.cpp:892
QgsLayoutItem::setBackgroundEnabled
void setBackgroundEnabled(bool drawBackground)
Sets whether this item has a background drawn under it or not.
Definition: qgslayoutitem.cpp:886
QgsLayoutPageCollection::changed
void changed()
Emitted when pages are added or removed from the collection.
QgsLayoutMultiFrame::ResizeMode
ResizeMode
Specifies the behavior for creating new frames to fit the multiframe's content.
Definition: qgslayoutmultiframe.h:102
QgsLayoutMultiFrame::createCommand
QgsAbstractLayoutUndoCommand * createCommand(const QString &text, int id, QUndoCommand *parent=nullptr) override
Creates a new layout undo command with the specified text and parent.
Definition: qgslayoutmultiframe.cpp:278
QgsLayoutItem::setFrameStrokeColor
void setFrameStrokeColor(const QColor &color)
Sets the frame stroke color.
Definition: qgslayoutitem.cpp:846
QgsLayoutMultiFrame::writePropertiesToElement
virtual bool writePropertiesToElement(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const
Stores multiframe state within an XML DOM element.
Definition: qgslayoutmultiframe.cpp:567
QgsLayoutItem::setFrameJoinStyle
void setFrameJoinStyle(Qt::PenJoinStyle style)
Sets the join style used when drawing the item's frame.
Definition: qgslayoutitem.cpp:871
QgsLayoutMultiFrame::mResizeMode
ResizeMode mResizeMode
Definition: qgslayoutmultiframe.h:410
QgsLayoutMultiFrame::minFrameSize
virtual QSizeF minFrameSize(int frameIndex=-1) const
Returns the minimum size for a frames, if desired.
Definition: qgslayoutmultiframe.cpp:45
QgsLayoutMultiFrame::resizeMode
ResizeMode resizeMode() const
Returns the resize mode for the multiframe.
Definition: qgslayoutmultiframe.h:233
QgsLayoutItem
Base class for graphical items within a QgsLayout.
Definition: qgslayoutitem.h:113
qgslayout.h
QgsLayoutMultiFrame::recalculateFrameRects
void recalculateFrameRects()
Forces a recalculation of all the associated frame's scene rectangles.
Definition: qgslayoutmultiframe.cpp:227
QgsLayoutMultiFrame::frames
QList< QgsLayoutFrame * > frames() const
Returns a list of all child frames for this multiframe.
Definition: qgslayoutmultiframe.cpp:91
QgsLayoutMultiFrame::refresh
void refresh() override
Refreshes the multiframe, causing a recalculation of any property overrides.
Definition: qgslayoutmultiframe.cpp:338
QgsExpressionContext::appendScope
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
Definition: qgsexpressioncontext.cpp:490
QgsLayoutObject::createExpressionContext
QgsExpressionContext createExpressionContext() const override
Creates an expression context relating to the objects' current state.
Definition: qgslayoutobject.cpp:156
QgsLayoutMultiFrame::beginCommand
void beginCommand(const QString &commandText, UndoCommand command=UndoNone)
Starts new undo command for this item.
Definition: qgslayoutmultiframe.cpp:290
QgsLayoutMultiFrame::uuid
QString uuid() const
Returns the multiframe identification string.
Definition: qgslayoutmultiframe.h:139
QgsLayoutItem::blendMode
QPainter::CompositionMode blendMode() const
Returns the item's composition blending mode.
Definition: qgslayoutitem.h:828
QgsLayoutItem::uuid
virtual QString uuid() const
Returns the item identification string.
Definition: qgslayoutitem.h:343
QgsLayoutObject::readObjectPropertiesFromElement
bool readObjectPropertiesFromElement(const QDomElement &parentElement, const QDomDocument &document, const QgsReadWriteContext &context)
Sets object properties from a DOM element.
Definition: qgslayoutobject.cpp:189
QgsAbstractLayoutUndoCommand
Base class for commands to undo/redo layout and layout object changes.
Definition: qgslayoutundocommand.h:35
QgsLayoutObject::mLayout
QPointer< QgsLayout > mLayout
Definition: qgslayoutobject.h:343
QgsLayout
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition: qgslayout.h:50
QgsLayoutMultiFrame::RepeatOnEveryPage
@ RepeatOnEveryPage
Repeats the same frame on every page.
Definition: qgslayoutmultiframe.h:105
QgsLayoutMultiFrame::fixedFrameSize
virtual QSizeF fixedFrameSize(int frameIndex=-1) const
Returns the fixed size for a frame, if desired.
Definition: qgslayoutmultiframe.cpp:39
qgslayoutpagecollection.h
QgsLayoutMultiFrame::UndoCommand
UndoCommand
Multiframe item undo commands, used for collapsing undo commands.
Definition: qgslayoutmultiframe.h:112
QgsLayoutMultiFrame::recalculateFrameSizes
virtual void recalculateFrameSizes()
Recalculates the portion of the multiframe item which is shown in each of its component frames.
Definition: qgslayoutmultiframe.cpp:96
QgsLayoutItem::frameStrokeColor
QColor frameStrokeColor() const
Returns the frame's stroke color.
Definition: qgslayoutitem.h:757
QgsLayoutMultiFrame::readPropertiesFromElement
virtual bool readPropertiesFromElement(const QDomElement &element, const QDomDocument &document, const QgsReadWriteContext &context)
Sets multiframe state from a DOM element.
Definition: qgslayoutmultiframe.cpp:572
QgsLayoutMultiFrame::deleteFrames
void deleteFrames()
Removes and deletes all child frames.
Definition: qgslayoutmultiframe.cpp:453
QgsLayoutMultiFrame::setResizeMode
void setResizeMode(ResizeMode mode)
Sets the resize mode for the multiframe, and recalculates frame sizes to match.
Definition: qgslayoutmultiframe.cpp:79
QgsLayoutItem::setItemOpacity
void setItemOpacity(double opacity)
Sets the item's opacity.
Definition: qgslayoutitem.cpp:906
QgsLayoutMultiFrame::addFrame
virtual void addFrame(QgsLayoutFrame *frame, bool recalcFrameSizes=true)
Adds a frame to the multiframe.
Definition: qgslayoutmultiframe.cpp:56
QgsLayoutMultiFrame::frameIndex
int frameIndex(QgsLayoutFrame *frame) const
Returns the index of a frame within the multiframe.
Definition: qgslayoutmultiframe.cpp:478
QgsLayoutMultiFrame::QgsLayoutFrame
friend class QgsLayoutFrame
Definition: qgslayoutmultiframe.h:440
qgslayoutmultiframeundocommand.h
QgsLayoutMultiFrame::createNewFrame
QgsLayoutFrame * createNewFrame(QgsLayoutFrame *currentFrame, QPointF pos, QSizeF size)
Creates a new frame and adds it to the multi frame and layout.
Definition: qgslayoutmultiframe.cpp:247
QgsLayoutItem::pagePos
QPointF pagePos() const
Returns the item's position (in layout units) relative to the top left corner of its current page.
Definition: qgslayoutitem.cpp:549
QgsLayoutMultiFrame::displayName
virtual QString displayName() const
Returns the multiframe display name.
Definition: qgslayoutmultiframe.cpp:273
QgsLayoutObject::writeObjectPropertiesToElement
bool writeObjectPropertiesToElement(QDomElement &parentElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores object properties within an XML DOM element.
Definition: qgslayoutobject.cpp:168
QgsLayoutMultiFrame::UseExistingFrames
@ UseExistingFrames
Don't automatically create new frames, just use existing frames.
Definition: qgslayoutmultiframe.h:103
QgsLayoutObject::DataDefinedProperty
DataDefinedProperty
Data defined properties for different item types.
Definition: qgslayoutobject.h:133
QgsLayoutObject
A base class for objects which belong to a layout.
Definition: qgslayoutobject.h:40