Class: QgsLayoutItemHtml¶
A layout multiframe subclass for HTML content.
Class Hierarchy¶
Base classes¶
Abstract base class for layout items with the ability to distribute the content to several frames ( |
|
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. |
Methods
Returns the source mode for item's HTML content. |
|
Returns whether html item will evaluate QGIS expressions prior to rendering the HTML content. |
|
Returns the HTML source displayed in the item if the item is using the QgsLayoutItemHtml.ManualHtml mode. |
|
Reloads the html source from the url and redraws the item. |
|
Returns the maximum distance allowed when calculating where to place page breaks in the html. |
|
Sets the source mode for item's HTML content. |
|
Sets whether the html item will evaluate QGIS expressions prior to rendering the HTML content. |
|
Sets the html to display in the item when the item is using the QgsLayoutItemHtml.ManualHtml mode. |
|
Sets the maximum distance allowed when calculating where to place page breaks in the html. |
|
Sets the url for content to display in the item when the item is using the QgsLayoutItemHtml.Url mode. |
|
Sets whether the html item should use smart breaks. |
|
Sets the user stylesheet CSS rules to use while rendering the HTML content. |
|
Sets whether user stylesheets are enabled for the HTML content. |
|
Returns the URL of the content displayed in the item if the item is using the QgsLayoutItemHtml.Url mode. |
|
Returns whether html item is using smart breaks. |
|
Returns the user stylesheet CSS rules used while rendering the HTML content. |
|
Returns whether user stylesheets are enabled for the HTML content. |
Virtual Methods
In PyQGIS, only methods marked as virtual
can be safely overridden in a Python subclass of QgsLayoutItemHtml. See the FAQ for more details.
Recalculates the frame sizes for the current viewport dimensions |
Static Methods
Returns a new |
|
Returns a new |
Attributes
- class qgis.core.QgsLayoutItemHtml[source]¶
Bases:
QgsLayoutMultiFrame
- __init__(layout: QgsLayout | None)
Constructor for QgsLayoutItemHtml, with the specified parent
layout
.Ownership is transferred to the layout.
- Parameters:
layout (Optional[QgsLayout])
- class ContentMode¶
Bases:
int
- ManualHtml = 1¶
- Url = 0¶
- contentMode(self) QgsLayoutItemHtml.ContentMode [source]¶
Returns the source mode for item’s HTML content.
See also
See also
See also
- Return type:
- static create(layout: QgsLayout | None) QgsLayoutItemHtml | None [source]¶
Returns a new
QgsLayoutItemHtml
for the specified parentlayout
.- Parameters:
layout (Optional[QgsLayout])
- Return type:
Optional[QgsLayoutItemHtml]
- static createFromLabel(label: QgsLayoutItemLabel | None) QgsLayoutItemHtml | None [source]¶
Returns a new
QgsLayoutItemHtml
matching the content and rendering of a givenlabel
.Added in version 3.32.
- Parameters:
label (Optional[QgsLayoutItemLabel])
- Return type:
Optional[QgsLayoutItemHtml]
- evaluateExpressions(self) bool [source]¶
Returns whether html item will evaluate QGIS expressions prior to rendering the HTML content. If set, any content inside [% %] tags will be treated as a QGIS expression and evaluated against the current atlas feature.
See also
- Return type:
bool
- html(self) str [source]¶
Returns the HTML source displayed in the item if the item is using the QgsLayoutItemHtml.ManualHtml mode.
See also
See also
- Return type:
str
- loadHtml(self, useCache: bool = False, context: QgsExpressionContext | None = None)[source]¶
Reloads the html source from the url and redraws the item.
- Parameters:
useCache (bool = False) – set to
True
to use a cached copy of remote html contentcontext (Optional[QgsExpressionContext] = None) – expression context for evaluating data defined urls and expressions in html
See also
See also
- maxBreakDistance(self) float [source]¶
Returns the maximum distance allowed when calculating where to place page breaks in the html. This distance is the maximum amount of empty space allowed at the bottom of a frame after calculating the optimum break location. This setting is only effective if useSmartBreaks is
True
.See also
See also
- Return type:
float
- virtual recalculateFrameSizes(self)[source]¶
Recalculates the frame sizes for the current viewport dimensions
- setContentMode(self, mode: QgsLayoutItemHtml.ContentMode)[source]¶
Sets the source
mode
for item’s HTML content.See also
See also
See also
- Parameters:
- setEvaluateExpressions(self, evaluateExpressions: bool)[source]¶
Sets whether the html item will evaluate QGIS expressions prior to rendering the HTML content. If set, any content inside [% %] tags will be treated as a QGIS expression and evaluated against the current atlas feature.
See also
- Parameters:
evaluateExpressions (bool)
- setHtml(self, html: str | None)[source]¶
Sets the
html
to display in the item when the item is using the QgsLayoutItemHtml.ManualHtml mode. Setting the HTML using this function does not automatically refresh the item’s contents. Call loadHtml to trigger a refresh of the item after setting the HTML content.See also
See also
See also
- Parameters:
html (Optional[str])
- setMaxBreakDistance(self, distance: float)[source]¶
Sets the maximum
distance
allowed when calculating where to place page breaks in the html. This distance is the maximum amount of empty space allowed at the bottom of a frame after calculating the optimum break location. Setting a larger value will result in better choice of page break location, but more wasted space at the bottom of frames. This setting is only effective if useSmartBreaks isTrue
.See also
See also
- Parameters:
distance (float)
- setUrl(self, url: QUrl)[source]¶
Sets the
url
for content to display in the item when the item is using the QgsLayoutItemHtml.Url mode. Content is automatically fetched and the HTML item refreshed after calling this function.See also
See also
- Parameters:
url (QUrl)
- setUseSmartBreaks(self, useSmartBreaks: bool)[source]¶
Sets whether the html item should use smart breaks. Smart breaks prevent the html frame contents from breaking mid-way though a line of text.
See also
- Parameters:
useSmartBreaks (bool)
- setUserStylesheet(self, stylesheet: str | None)[source]¶
Sets the user
stylesheet
CSS rules to use while rendering the HTML content. These allow for overriding the styles specified within the HTML source. Setting the stylesheet using this function does not automatically refresh the item’s contents. Call loadHtml to trigger a refresh of the item after setting the stylesheet rules.See also
See also
See also
- Parameters:
stylesheet (Optional[str])
- setUserStylesheetEnabled(self, enabled: bool)[source]¶
Sets whether user stylesheets are
enabled
for the HTML content.See also
See also
- Parameters:
enabled (bool)
- url(self) QUrl [source]¶
Returns the URL of the content displayed in the item if the item is using the QgsLayoutItemHtml.Url mode.
See also
See also
- Return type:
QUrl
- useSmartBreaks(self) bool [source]¶
Returns whether html item is using smart breaks. Smart breaks prevent the html frame contents from breaking mid-way though a line of text.
See also
- Return type:
bool
- userStylesheet(self) str [source]¶
Returns the user stylesheet CSS rules used while rendering the HTML content. These overriding the styles specified within the HTML source.
See also
See also
- Return type:
str