16#ifndef QGSSYMBOLLAYERREFERENCE_H
17#define QGSSYMBOLLAYERREFERENCE_H
66 : mSymbolKey( key ), mIndexPath( { index } )
73 : mSymbolKey( key ), mIndexPath( { indexPath } )
93 return ( mSymbolKey == other.mSymbolKey && mIndexPath == other.mIndexPath );
99 return ( mSymbolKey == other.mSymbolKey ) ?
100 mIndexPath < other.mIndexPath
101 : mSymbolKey < other.mSymbolKey;
105 SIP_PYOBJECT __repr__();
108 QStringList pathString;
109 for (
int path : sipCpp->symbolLayerIndexPath() )
111 pathString.append( QString::number( path ) );
113 QString
str = QStringLiteral(
"<QgsSymbolLayerId: %1 (%2)>" ).arg( sipCpp->symbolKey(), pathString.join(
',' ) );
114 sipRes = PyUnicode_FromString(
str.toUtf8().constData() );
123 QVector<int> mIndexPath;
146 : mLayerId( layerId ), mDeprecatedSymbolLayerId( symbolLayer )
156 : mLayerId( layerId ), mSymbolLayerId( symbolLayerId )
178 return mLayerId == other.mLayerId
179 && mSymbolLayerId == other.mSymbolLayerId
180 && mDeprecatedSymbolLayerId == other.mDeprecatedSymbolLayerId;
184 SIP_PYOBJECT __repr__();
187 QStringList pathString;
188 for (
int path : sipCpp->symbolLayerId().symbolLayerIndexPath() )
190 pathString.append( QString::number( path ) );
192 QString
str = QStringLiteral(
"<QgsSymbolLayerReference: %1 - %2>" ).arg( sipCpp->layerId(), sipCpp->symbolLayerIdV2() );
193 sipRes = PyUnicode_FromString(
str.toUtf8().constData() );
203 QString mSymbolLayerId;
208 return qHash(
id.symbolKey() ) ^
qHash(
id.symbolLayerIndexPath() );
We may need stable references to symbol layers, when pointers to symbol layers is not usable (when a ...
bool operator<(const QgsSymbolLayerId &other) const
Comparison operator, for storage in a QSet or QMap.
QgsSymbolLayerId & operator=(const QgsSymbolLayerId &other)=default
bool operator==(const QgsSymbolLayerId &other) const
QVector< int > symbolLayerIndexPath() const
Returns the symbol layer index path inside the symbol.
QgsSymbolLayerId(const QgsSymbolLayerId &other)=default
QgsSymbolLayerId(const QString &key, int index)
QgsSymbolLayerId constructor with a symbol key and a unique symbol layer index.
QString symbolKey() const
Returns the key associated to the symbol.
QgsSymbolLayerId(const QString &key, const QVector< int > &indexPath)
QgsSymbolLayerId constructor with a symbol key and an index path.
Type used to refer to a specific symbol layer in a symbol of a layer.
bool operator==(const QgsSymbolLayerReference &other) const
QString symbolLayerIdV2() const
The symbol layer's id.
Q_DECL_DEPRECATED QgsSymbolLayerId symbolLayerId() const
The symbol layer's id.
QString layerId() const
The referenced vector layer / feature renderer.
QgsSymbolLayerReference(const QString &layerId, const QString &symbolLayerId)
Constructor.
QgsSymbolLayerReference()=default
Q_DECL_DEPRECATED QgsSymbolLayerReference(const QString &layerId, const QgsSymbolLayerId &symbolLayer)
Constructor.
Represents a vector layer which manages a vector based data sets.
QList< QgsSymbolLayerReference > QgsSymbolLayerReferenceList
CORE_EXPORT QString symbolLayerReferenceListToString(const QgsSymbolLayerReferenceList &)
Utilitary function to turn a QgsSymbolLayerReferenceList into a string.
CORE_EXPORT QgsSymbolLayerReferenceList stringToSymbolLayerReferenceList(const QString &)
Utilitary function to parse a string originated from symbolLayerReferenceListToString into a QgsSymbo...
uint qHash(const QgsSymbolLayerId &id)