QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
The QgsLegendRendererItem class is abstract interface for legend items returned from QgsMapLayerLegend implementation. More...
#include <qgslayertreemodellegendnode.h>
Classes | |
struct | ItemContext |
struct | ItemMetrics |
Public Types | |
enum | LegendNodeRoles { RuleKeyRole = Qt::UserRole , ParentRuleKeyRole , NodeTypeRole } |
Legend node data roles. More... | |
enum | NodeTypes { SimpleLegend , SymbolLegend , RasterSymbolLegend , ImageLegend , WmsLegend , DataDefinedSizeLegend , EmbeddedWidget , ColorRampLegend } |
Types of legend nodes. More... | |
Public Slots | |
void | checkAllItems () |
Checks all checkable items belonging to the same layer as this node. More... | |
void | toggleAllItems () |
Toggle all checkable items belonging to the same layer as this node. More... | |
void | uncheckAllItems () |
Unchecks all checkable items belonging to the same layer as this node. More... | |
Signals | |
void | dataChanged () |
Emitted on internal data change so the layer tree model can forward the signal to views. More... | |
void | sizeChanged () |
Emitted when the size of this node changes. More... | |
Public Member Functions | |
virtual bool | columnBreak () const |
Returns whether a forced column break should occur before the node. More... | |
virtual QVariant | data (int role) const =0 |
Returns data associated with the item. Must be implemented in derived class. More... | |
virtual ItemMetrics | draw (const QgsLegendSettings &settings, ItemContext *ctx) |
Entry point called from QgsLegendRenderer to do the rendering. More... | |
virtual QSizeF | drawSymbol (const QgsLegendSettings &settings, ItemContext *ctx, double itemHeight) const |
Draws symbol on the left side of the item. More... | |
virtual QSizeF | drawSymbolText (const QgsLegendSettings &settings, ItemContext *ctx, QSizeF symbolSize) const |
Draws label on the right side of the item. More... | |
virtual QJsonObject | exportSymbolToJson (const QgsLegendSettings &settings, const QgsRenderContext &context) const |
Adds a symbol in base64 string within a JSON object with the key "icon". More... | |
QJsonObject | exportToJson (const QgsLegendSettings &settings, const QgsRenderContext &context) |
Entry point called from QgsLegendRenderer to do the rendering in a JSON object. More... | |
virtual Qt::ItemFlags | flags () const |
Returns item flags associated with the item. Default implementation returns Qt::ItemIsEnabled. More... | |
virtual void | invalidateMapBasedData () |
Notification from model that information from associated map view has changed. More... | |
virtual bool | isEmbeddedInParent () const |
virtual bool | isScaleOK (double scale) const |
QgsLayerTreeLayer * | layerNode () const |
Returns pointer to the parent layer node. More... | |
QgsLayerTreeModel * | model () const |
Returns pointer to model owning this legend node. More... | |
virtual void | setColumnBreak (bool breakBeforeNode) |
Sets whether a forced column break should occur before the node. More... | |
virtual bool | setData (const QVariant &value, int role) |
Sets some data associated with the item. Default implementation does nothing and returns false . More... | |
virtual void | setEmbeddedInParent (bool embedded) |
virtual void | setUserLabel (const QString &userLabel) |
virtual void | setUserPatchSize (QSizeF size) |
Sets the user (overridden) size for the legend node. More... | |
virtual QString | userLabel () const |
virtual QSizeF | userPatchSize () const |
Returns the user (overridden) size for the legend node. More... | |
Protected Member Functions | |
QgsLayerTreeModelLegendNode (QgsLayerTreeLayer *nodeL, QObject *parent=nullptr) | |
Construct the node with pointer to its parent layer node. More... | |
QgsRenderContext * | createTemporaryRenderContext () const |
Returns a temporary context or nullptr if legendMapViewData are not valid. More... | |
Protected Attributes | |
bool | mColumnBreakBeforeNode = false |
bool | mEmbeddedInParent |
QgsLayerTreeLayer * | mLayerNode = nullptr |
QgsLegendPatchShape | mPatchShape |
QString | mUserLabel |
QSizeF | mUserSize |
The QgsLegendRendererItem class is abstract interface for legend items returned from QgsMapLayerLegend implementation.
The objects are used in QgsLayerTreeModel. Custom implementations may offer additional interactivity and customized look.
Definition at line 49 of file qgslayertreemodellegendnode.h.
Legend node data roles.
Definition at line 81 of file qgslayertreemodellegendnode.h.
Types of legend nodes.
Definition at line 89 of file qgslayertreemodellegendnode.h.
|
explicitprotected |
Construct the node with pointer to its parent layer node.
Definition at line 45 of file qgslayertreemodellegendnode.cpp.
|
slot |
Checks all checkable items belonging to the same layer as this node.
Definition at line 248 of file qgslayertreemodellegendnode.cpp.
|
inlinevirtual |
Returns whether a forced column break should occur before the node.
Definition at line 158 of file qgslayertreemodellegendnode.h.
|
protected |
Returns a temporary context or nullptr
if legendMapViewData are not valid.
Definition at line 447 of file qgslayertreemodellegendnode.cpp.
|
pure virtual |
Returns data associated with the item. Must be implemented in derived class.
Implemented in QgsVectorLabelLegendNode, QgsDataDefinedSizeLegendNode, QgsWmsLegendNode, QgsRasterSymbolLegendNode, QgsImageLegendNode, QgsSimpleLegendNode, QgsSymbolLegendNode, and QgsColorRampLegendNode.
|
signal |
Emitted on internal data change so the layer tree model can forward the signal to views.
|
virtual |
Entry point called from QgsLegendRenderer to do the rendering.
Default implementation calls drawSymbol() and drawSymbolText() methods.
If ctx is nullptr
, this is just first stage when preparing layout - without actual rendering.
Reimplemented in QgsDataDefinedSizeLegendNode.
Definition at line 86 of file qgslayertreemodellegendnode.cpp.
|
virtual |
Draws symbol on the left side of the item.
settings | Legend layout configuration |
ctx | Context for rendering - may be nullptr if only doing layout without actual rendering |
itemHeight | Minimal height of the legend item - used for correct positioning when rendering |
Reimplemented in QgsVectorLabelLegendNode, QgsWmsLegendNode, QgsRasterSymbolLegendNode, QgsImageLegendNode, QgsSymbolLegendNode, and QgsColorRampLegendNode.
Definition at line 110 of file qgslayertreemodellegendnode.cpp.
|
virtual |
Draws label on the right side of the item.
settings | Legend layout configuration |
ctx | Context for rendering - may be nullptr if only doing layout without actual rendering |
symbolSize | Real size of the associated symbol - used for correct positioning when rendering |
Reimplemented in QgsColorRampLegendNode.
Definition at line 167 of file qgslayertreemodellegendnode.cpp.
|
virtual |
Adds a symbol in base64 string within a JSON object with the key "icon".
settings | Legend layout configuration |
context | Rendering context |
Reimplemented in QgsVectorLabelLegendNode, QgsWmsLegendNode, QgsRasterSymbolLegendNode, QgsImageLegendNode, and QgsSymbolLegendNode.
Definition at line 150 of file qgslayertreemodellegendnode.cpp.
QJsonObject QgsLayerTreeModelLegendNode::exportToJson | ( | const QgsLegendSettings & | settings, |
const QgsRenderContext & | context | ||
) |
Entry point called from QgsLegendRenderer to do the rendering in a JSON object.
settings | Legend layout configuration |
context | Rendering context |
Definition at line 102 of file qgslayertreemodellegendnode.cpp.
|
virtual |
Returns item flags associated with the item. Default implementation returns Qt::ItemIsEnabled.
Reimplemented in QgsRasterSymbolLegendNode, and QgsSymbolLegendNode.
Definition at line 57 of file qgslayertreemodellegendnode.cpp.
|
inlinevirtual |
Notification from model that information from associated map view has changed.
Default implementation does nothing.
Reimplemented in QgsWmsLegendNode, and QgsSymbolLegendNode.
Definition at line 166 of file qgslayertreemodellegendnode.h.
|
inlinevirtual |
Definition at line 116 of file qgslayertreemodellegendnode.h.
|
inlinevirtual |
Reimplemented in QgsSymbolLegendNode.
Definition at line 160 of file qgslayertreemodellegendnode.h.
|
inline |
Returns pointer to the parent layer node.
Definition at line 102 of file qgslayertreemodellegendnode.h.
QgsLayerTreeModel * QgsLayerTreeModelLegendNode::model | ( | ) | const |
Returns pointer to model owning this legend node.
Definition at line 52 of file qgslayertreemodellegendnode.cpp.
|
inlinevirtual |
Sets whether a forced column break should occur before the node.
Definition at line 150 of file qgslayertreemodellegendnode.h.
|
virtual |
Sets some data associated with the item. Default implementation does nothing and returns false
.
Reimplemented in QgsRasterSymbolLegendNode, and QgsSymbolLegendNode.
Definition at line 62 of file qgslayertreemodellegendnode.cpp.
|
inlinevirtual |
Reimplemented in QgsSymbolLegendNode.
Definition at line 117 of file qgslayertreemodellegendnode.h.
|
inlinevirtual |
Reimplemented in QgsSymbolLegendNode.
Definition at line 120 of file qgslayertreemodellegendnode.h.
|
virtual |
Sets the user (overridden) size for the legend node.
If either the width or height are non-zero, they will be used when rendering the legend node instead of the default symbol width or height from QgsLegendSettings.
Definition at line 77 of file qgslayertreemodellegendnode.cpp.
|
signal |
Emitted when the size of this node changes.
|
slot |
Toggle all checkable items belonging to the same layer as this node.
Definition at line 258 of file qgslayertreemodellegendnode.cpp.
|
slot |
Unchecks all checkable items belonging to the same layer as this node.
Definition at line 253 of file qgslayertreemodellegendnode.cpp.
|
inlinevirtual |
Definition at line 119 of file qgslayertreemodellegendnode.h.
|
virtual |
Returns the user (overridden) size for the legend node.
If either the width or height are non-zero, they will be used when rendering the legend node instead of the default symbol width or height from QgsLegendSettings.
Definition at line 69 of file qgslayertreemodellegendnode.cpp.
|
protected |
Definition at line 336 of file qgslayertreemodellegendnode.h.
|
protected |
Definition at line 332 of file qgslayertreemodellegendnode.h.
|
protected |
Definition at line 331 of file qgslayertreemodellegendnode.h.
|
protected |
Definition at line 334 of file qgslayertreemodellegendnode.h.
|
protected |
Definition at line 333 of file qgslayertreemodellegendnode.h.
|
protected |
Definition at line 335 of file qgslayertreemodellegendnode.h.