Class: QgsLayoutMultiFrame¶
Abstract base class for layout items with the ability to distribute the
content to several frames (QgsLayoutFrame
items).
Note
This is an abstract class, with methods which must be implemented by a subclass.
The following methods must be implemented: render()
, totalSize()
, type()
Class Hierarchy¶
Base classes¶
A base class for objects which belong to a layout. |
|
Abstract interface for generating an expression context. |
|
Interface for layout objects which support undo/redo commands. |
Subclasses¶
Displays a table in the print layout, and allows the table to span over multiple frames. |
|
A layout multiframe subclass for HTML content. |
Abstract Methods
Renders a portion of the multiframe's content into a render context. |
|
Returns the total size of the multiframe's content, in layout units. |
|
Returns unique multiframe type id. |
Methods
Starts new undo command for this item. |
|
Cancels the current item command and discards it. |
|
Creates a new frame and adds it to the multi frame and layout. |
|
Removes and deletes all child frames. |
|
Completes the current item command and push it onto the layout's undo stack. |
|
Returns the child frame at a specified index from the multiframe. |
|
Returns the number of frames associated with this multiframe. |
|
Returns the index of a frame within the multiframe. |
|
Returns a list of all child frames for this multiframe. |
|
Sets the item state from a DOM element. |
|
Forces a recalculation of all the associated frame's scene rectangles. |
|
Removes a frame by index from the multiframe. |
|
Returns the resize mode for the multiframe. |
|
Sets the resize mode for the multiframe, and recalculates frame sizes to match. |
|
Forces a redraw of all child frames. |
|
Returns the multiframe identification string. |
|
Stores the multiframe state in a DOM element. |
Virtual Methods
In PyQGIS, only methods marked as virtual
can be safely overridden in a Python subclass of QgsLayoutMultiFrame. See the FAQ for more details.
Adds a frame to the multiframe. |
|
Returns the multiframe display name. |
|
Called after all pending items have been restored from XML. |
|
Finds the optimal position to break a frame at. |
|
Returns the fixed size for a frame, if desired. |
|
Returns the item's icon. |
|
Returns the minimum size for a frames, if desired. |
|
Sets multiframe state from a DOM element. |
|
Recalculates the portion of the multiframe item which is shown in each of its component frames. |
|
Refreshes the multiframe, causing a recalculation of any property overrides. |
|
Refreshes a data defined property for the multi frame by reevaluating the property's value and redrawing the item with this new value. |
|
Stores multiframe state within an XML DOM element. |
Signals
Emitted when the contents of the multi frame have changed and the frames must be redrawn. |
Attributes
- class qgis.core.QgsLayoutMultiFrame[source]¶
Bases:
QgsLayoutObject
,QgsLayoutUndoObjectInterface
- __init__(layout: QgsLayout | None)
Construct a new multiframe item, attached to the specified
layout
.- Parameters:
layout (Optional[QgsLayout])
- ExtendToNextPage = 1¶
- RepeatOnEveryPage = 2¶
- RepeatUntilFinished = 3¶
- class ResizeMode¶
Bases:
int
- class UndoCommand¶
Bases:
int
- UndoHtmlBreakDistance = 0¶
- UndoHtmlSource = 1¶
- UndoHtmlStylesheet = 2¶
- UndoNone = -1¶
- UndoTableBackgroundColor = 10¶
- UndoTableCellStyle = 3¶
- UndoTableContentFontColor = 7¶
- UndoTableGridColor = 9¶
- UndoTableGridStrokeWidth = 8¶
- UndoTableHeaderFontColor = 6¶
- UndoTableMargin = 5¶
- UndoTableMaximumFeatures = 4¶
- UseExistingFrames = 0¶
- virtual addFrame(self, frame: QgsLayoutFrame | None, recalcFrameSizes: bool = True)[source]¶
Adds a
frame
to the multiframe.If
recalcFrameSizes
is set toTrue
, then a recalculation of all existing frame sizes will be forced.See also
- Parameters:
frame (Optional[QgsLayoutFrame])
recalcFrameSizes (bool = True)
- beginCommand(self, commandText: str | None, command: QgsLayoutMultiFrame.UndoCommand = QgsLayoutMultiFrame.UndoNone)[source]¶
Starts new undo command for this item. The
commandText
should be a capitalized, imperative tense description (e.g. “Add Map Item”). If specified, multiple consecutive commands for this item with the samecommand
will be collapsed into a single undo command in the layout history.See also
See also
- Parameters:
commandText (Optional[str])
command (QgsLayoutMultiFrame.UndoCommand = QgsLayoutMultiFrame.UndoNone)
- signal contentsChanged[source]¶
Emitted when the contents of the multi frame have changed and the frames must be redrawn.
- createNewFrame(self, currentFrame: QgsLayoutFrame | None, pos: QPointF | QPoint, size: QSizeF) QgsLayoutFrame | None [source]¶
Creates a new frame and adds it to the multi frame and layout.
- Parameters:
currentFrame (Optional[QgsLayoutFrame]) – an existing
QgsLayoutFrame
from which to copy the size and general frame properties (e.g., frame style, background, rendering settings).pos (Union[QPointF, QPoint]) – position of top-left corner of the new frame, in layout units
size (QSizeF) – size of the new frame, in layout units
- Return type:
Optional[QgsLayoutFrame]
- endCommand(self)[source]¶
Completes the current item command and push it onto the layout’s undo stack.
See also
See also
- virtual finalizeRestoreFromXml(self)[source]¶
Called after all pending items have been restored from XML. Multiframes can use this method to run steps which must take place after all items have been restored to the layout, such as connecting to signals emitted by other items, which may not have existed in the layout at the time
readXml()
was called. E.g. a scalebar can use this to connect to its linked map item after restoration from XML.See also
- virtual findNearbyPageBreak(self, yPos: float) float [source]¶
Finds the optimal position to break a frame at.
- Parameters:
yPos (float) – maximum vertical position for break, in layout units.
- Return type:
float
- Returns:
the optimal breakable position which occurs in the multi frame close to and before the specified yPos
- virtual fixedFrameSize(self, frameIndex: int = -1) QSizeF [source]¶
Returns the fixed size for a frame, if desired. If the fixed frame size changes, the sizes of all frames can be recalculated by calling
recalculateFrameRects()
.- Parameters:
frameIndex (int = -1) – frame number
- Return type:
QSizeF
- Returns:
fixed size for frame. If the size has a width or height of 0, then the frame size is not fixed in that direction and frames can have variable width or height accordingly.
See also
See also
- frame(self, index: int) QgsLayoutFrame | None [source]¶
Returns the child frame at a specified
index
from the multiframe.See also
- Parameters:
index (int)
- Return type:
Optional[QgsLayoutFrame]
- frameCount(self) int [source]¶
Returns the number of frames associated with this multiframe.
See also
- Return type:
int
- frameIndex(self, frame: QgsLayoutFrame | None) int [source]¶
Returns the index of a
frame
within the multiframe.- Return type:
int
- Returns:
index for frame if found, -1 if frame not found in multiframe
See also
- Parameters:
frame (Optional[QgsLayoutFrame])
- frames(self) List[QgsLayoutFrame] ¶
Returns a list of all child frames for this multiframe.
See also
- Return type:
List[QgsLayoutFrame]
- virtual minFrameSize(self, frameIndex: int = -1) QSizeF [source]¶
Returns the minimum size for a frames, if desired. If the minimum size changes, the sizes of all frames can be recalculated by calling
recalculateFrameRects()
.- Parameters:
frameIndex (int = -1) – frame number
- Return type:
QSizeF
- Returns:
minimum size for frame. If the size has a width or height of 0, then the frame size has no minimum in that direction.
See also
See also
- virtual readPropertiesFromElement(self, element: QDomElement, document: QDomDocument, context: QgsReadWriteContext) bool [source]¶
Sets multiframe state from a DOM element.
- Parameters:
element (QDomElement) – is the DOM element for the multiframe
document (QDomDocument) – DOM document
context (QgsReadWriteContext) – read write context
See also
Note that item subclasses should not rely on all other items being present in the layout at the time this method is called. Instead, any connections and links to other items must be made in the
finalizeRestoreFromXml()
method. E.g. when restoring a scalebar, the connection to the linked map’s signals should be implemented infinalizeRestoreFromXml()
, notreadPropertiesFromElement()
.See also
- Return type:
bool
- readXml(self, itemElement: QDomElement, document: QDomDocument, context: QgsReadWriteContext, includeFrames: bool = False) bool [source]¶
Sets the item state from a DOM element.
- Parameters:
itemElement (QDomElement) – is the DOM node corresponding to item (e.g. ‘LayoutItem’ element)
document (QDomDocument) – DOM document
context (QgsReadWriteContext) – read write context
includeFrames (bool = False) – set to
True
to read state information about child frames from DOM
See also
- Return type:
bool
- recalculateFrameRects(self)[source]¶
Forces a recalculation of all the associated frame’s scene rectangles. This method is useful for multiframes which implement a
minFrameSize()
orfixedFrameSize()
method.See also
See also
See also
- virtual recalculateFrameSizes(self)[source]¶
Recalculates the portion of the multiframe item which is shown in each of its component frames. If the resize mode is set to anything but UseExistingFrames then this may cause new frames to be added or frames to be removed, in order to fit the current size of the multiframe’s content.
See also
- virtual refresh(self)[source]¶
Refreshes the multiframe, causing a recalculation of any property overrides.
- virtual refreshDataDefinedProperty(self, property: QgsLayoutObject.DataDefinedProperty = QgsLayoutObject.DataDefinedProperty.AllProperties)[source]¶
Refreshes a data defined
property
for the multi frame by reevaluating the property’s value and redrawing the item with this new value. Ifproperty
is set toQgsLayoutObject
.AllProperties then all data defined properties for the item will be refreshed.- Parameters:
property (QgsLayoutObject.DataDefinedProperty = QgsLayoutObject.DataDefinedProperty.AllProperties)
- removeFrame(self, index: int, removeEmptyPages: bool = False)[source]¶
Removes a frame by
index
from the multiframe. This method automatically removes the frame from the layout too.If
removeEmptyPages
is set toTrue
, then pages which are empty after the frame is removed will also be removed from the layout.See also
See also
- Parameters:
index (int)
removeEmptyPages (bool = False)
- abstract render(self, context: QgsLayoutItemRenderContext, renderExtent: QRectF, frameIndex: int)[source]¶
Renders a portion of the multiframe’s content into a render
context
.- Parameters:
context (QgsLayoutItemRenderContext) – destination render painter
renderExtent (QRectF) – visible extent of content to render into the painter.
frameIndex (int) – frame number for content
- resizeMode(self) QgsLayoutMultiFrame.ResizeMode [source]¶
Returns the resize mode for the multiframe.
See also
- Return type:
- setResizeMode(self, mode: QgsLayoutMultiFrame.ResizeMode)[source]¶
Sets the resize
mode
for the multiframe, and recalculates frame sizes to match.See also
- Parameters:
- abstract totalSize(self) QSizeF [source]¶
Returns the total size of the multiframe’s content, in layout units.
- Return type:
QSizeF
- uuid(self) str [source]¶
Returns the multiframe identification string. This is a unique random string set for the multiframe upon creation.
Note
There is no corresponding setter for the uuid - it’s created automatically.
- Return type:
str
- virtual writePropertiesToElement(self, element: QDomElement, document: QDomDocument, context: QgsReadWriteContext) bool [source]¶
Stores multiframe state within an XML DOM element.
- Parameters:
element (QDomElement) – is the DOM element to store the multiframe’s properties in
document (QDomDocument) – DOM document
context (QgsReadWriteContext) – read write context
See also
See also
- Return type:
bool
- writeXml(self, parentElement: QDomElement, document: QDomDocument, context: QgsReadWriteContext, includeFrames: bool = False) bool [source]¶
Stores the multiframe state in a DOM element.
- Parameters:
parentElement (QDomElement) – parent DOM element (e.g. ‘Layout’ element)
document (QDomDocument) – DOM document
context (QgsReadWriteContext) – read write context
includeFrames (bool = False) – set to
True
to write state information about child frames into DOM
See also
- Return type:
bool