1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgspolymorphicrelation.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsPolymorphicRelation
{
%Docstring(signature="appended")
A polymorphic relation consists of the same properties like a normal
relation except for the referenced layer which is calculated based on
one or several fields of the referencing layer.
In its most simple form, the referencing layer will just insert the
layer name of the referenced layer into this field. To be more precise,
a polymorphic relation is a set of normal relations having the same
referencing layer but having the referenced layer dynamically defined.
The polymorphic setting of the layer is solved by using an expression
which has to match some properties of the the referenced layer like the
table name, schema, uri, layer id, ...
.. versionadded:: 3.18
%End
%TypeHeaderCode
#include "qgspolymorphicrelation.h"
%End
public:
static const QMetaObject staticMetaObject;
public:
QgsPolymorphicRelation();
%Docstring
Default constructor. Creates an invalid relation.
%End
~QgsPolymorphicRelation();
QgsPolymorphicRelation( const QgsRelationContext &context );
%Docstring
Constructor with context. Creates an invalid relation.
%End
QgsPolymorphicRelation( const QgsPolymorphicRelation &other );
%Docstring
Copies a relation. This makes a shallow copy, relations are implicitly
shared and only duplicated when the copy is changed.
%End
static QgsPolymorphicRelation createFromXml( const QDomNode &node, QgsReadWriteContext &context, const QgsRelationContext &relationContext = QgsRelationContext() );
%Docstring
Creates a relation from an XML structure. Used for reading .qgs
projects.
:param node: The dom node containing the relation information
:param context: to pass project translator
:param relationContext: a relation context
:return: A relation
%End
void writeXml( QDomNode &node, QDomDocument &doc ) const;
%Docstring
Writes a relation to an XML structure. Used for saving .qgs projects
:param node: The parent node in which the relation will be created
:param doc: The document in which the relation will be saved
%End
void setId( const QString &id );
%Docstring
Set an id for this relation
%End
void setName( const QString &name );
%Docstring
Set a name for this relation
%End
void setReferencingLayer( const QString &id );
%Docstring
Set the referencing (child) layer id. This layer will be searched in the
registry.
%End
void addFieldPair( const QString &referencingField, const QString &referencedField );
%Docstring
Add a field pair which is part of this relation The first element of
each pair are the field names of the foreign key. The second element of
each pair are the field names of the matching primary key.
:param referencingField: The field name on the referencing (child) layer
(FK)
:param referencedField: The field name on the referenced (parent) layer
(PK)
%End
QString name() const;
%Docstring
Returns a human readable name for this relation. Mostly used as title
for the children.
.. seealso:: :py:func:`id`
:return: A name
%End
QString id() const;
%Docstring
A (project-wide) unique id for this relation
:return: The id
%End
void generateId();
%Docstring
Generate a (project-wide) unique id for this relation
%End
QString referencingLayerId() const;
%Docstring
Access the referencing (child) layer's id This is the layer which has
the field(s) which point to another layer
:return: The id of the referencing layer
%End
QgsVectorLayer *referencingLayer() const;
%Docstring
Access the referencing (child) layer This is the layer which has the
field(s) which point to another layer
:return: The referencing layer
%End
QMap< QString, QString > fieldPairs() const;
%Docstring
Returns the field pairs which form this relation The first element of
each pair are the field names of the foreign key. The second element of
each pair are the field names of the matching primary key.
:return: The fields forming the relation
%End
%MethodCode
const QList< QgsRelation::FieldPair > &pairs = sipCpp->fieldPairs();
sipRes = new QMap< QString, QString >();
for ( const QgsRelation::FieldPair &pair : pairs )
{
sipRes->insert( pair.first, pair.second );
}
%End
QgsAttributeList referencedFields( const QString &layerId ) const;
%Docstring
Returns a list of attributes used to form the referenced fields (most
likely primary key) on the referenced (parent) layer.
:return: A list of attributes
%End
QgsAttributeList referencingFields() const;
%Docstring
Returns a list of attributes used to form the referencing fields
(foreign key) on the referencing (child) layer.
:return: A list of attributes
%End
bool isValid() const;
%Docstring
Returns the validity of this relation. Don't use the information if it's
not valid. A relation is considered valid if both referenced and
referencig layers are valid.
:return: ``True`` if the relation is valid
%End
bool hasEqualDefinition( const QgsPolymorphicRelation &other ) const;
%Docstring
Compares the two :py:class:`QgsRelation`, ignoring the name and the ID.
:param other: The other relation
:return: ``True`` if they are similar
%End
void updateRelationStatus();
%Docstring
Updates the validity status of this relation. Will be called internally
whenever a member is changed.
%End
void setReferencedLayerField( const QString &referencedLayerField );
%Docstring
Sets the field in the referencing layer where the referenced layer
identifier is stored
%End
QString referencedLayerField() const;
%Docstring
Returns the field in the referencing layer where the referenced layer
identifier is stored
%End
void setReferencedLayerExpression( const QString &expression );
%Docstring
Sets the ``expression`` to identify the parent layer
%End
QString referencedLayerExpression() const;
%Docstring
Returns the expression to identify the parent layer
%End
void setReferencedLayerIds( const QStringList &childRelationIds );
%Docstring
Sets a list of layer ids to be used as potential referenced layers
%End
QStringList referencedLayerIds() const;
%Docstring
Returns a list of layer ids to be used as potential referenced layers
%End
QList<QgsRelation> generateRelations() const;
%Docstring
Returns a list of generated relations, based on the currently set
:py:func:`~QgsPolymorphicRelation.referencedLayerIds`
%End
QString layerRepresentation( const QgsVectorLayer *layer ) const;
%Docstring
Returns layer representation as evaluated string
%End
Qgis::RelationshipStrength strength() const;
%Docstring
Returns the relation strength for all the generated normal relations
%End
void setRelationStrength( Qgis::RelationshipStrength relationStrength );
%Docstring
Sets the relation strength for all the generated normal relations
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgspolymorphicrelation.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|