19 #include "qgis_core.h"
22 #include <QExplicitlySharedDataPointer>
35 class QgsFeaturePrivate;
58 #if (SIP_VERSION >= 0x040900 && SIP_VERSION < 0x040c01)
59 #define sipType_QVariant ((sipWrapperType *) sipTypeAsPyTypeObject (sipType_QVariant))
65 Q_PROPERTY(
QgsAttributes attributes READ attributes WRITE setAttributes )
66 Q_PROPERTY(
QgsFields fields READ fields WRITE setFields )
67 Q_PROPERTY(
QgsGeometry geometry READ geometry WRITE setGeometry )
72 SIP_PYOBJECT __iter__();
75 PyObject *attrs = sipConvertFromType( &attributes, sipType_QgsAttributes, Py_None );
76 sipRes = PyObject_GetIter( attrs );
79 SIP_PYOBJECT __getitem__(
int key );
82 if ( a0 < 0 || a0 >= attrs.count() )
84 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
89 QVariant *v =
new QVariant( attrs.at( a0 ) );
90 sipRes = sipConvertFromNewType( v, sipType_QVariant, Py_None );
94 SIP_PYOBJECT __getitem__(
const QString &name );
96 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
99 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
104 QVariant *v =
new QVariant( sipCpp->attribute( fieldIdx ) );
105 sipRes = sipConvertFromNewType( v, sipType_QVariant, Py_None );
109 void __setitem__(
int key, QVariant value / GetWrapper / );
113 if ( a1Wrapper == Py_None )
115 rv = sipCpp->setAttribute( a0, QVariant( QVariant::Int ) );
119 rv = sipCpp->setAttribute( a0, *a1 );
124 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
129 void __setitem__(
const QString &key, QVariant value / GetWrapper / );
131 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
132 if ( fieldIdx == -1 )
134 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
139 if ( a1Wrapper == Py_None )
141 sipCpp->setAttribute( *a0, QVariant( QVariant::Int ) );
145 sipCpp->setAttribute( fieldIdx, *a1 );
150 void __delitem__(
int key );
152 if ( a0 >= 0 && a0 < sipCpp->attributes().count() )
153 sipCpp->deleteAttribute( a0 );
156 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
161 void __delitem__(
const QString &name );
163 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
164 if ( fieldIdx == -1 )
166 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
170 sipCpp->deleteAttribute( fieldIdx );
242 int attributeCount()
const;
274 bool setAttribute(
int field,
const QVariant &attr );
288 bool setAttribute(
int field,
const QVariant &attr / GetWrapper / );
292 if ( a1Wrapper == Py_None )
294 rv = sipCpp->setAttribute( a0, QVariant( QVariant::Int ) );
298 rv = sipCpp->setAttribute( a0, *a1 );
303 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
320 void initAttributes(
int fieldCount );
335 void resizeAttributes(
int fieldCount );
343 void padAttributes(
int count );
354 void deleteAttribute(
int field );
366 void deleteAttribute(
int field );
368 if ( a0 >= 0 && a0 < sipCpp->attributes().count() )
369 sipCpp->deleteAttribute( a0 );
372 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
386 bool isValid()
const;
395 void setValid(
bool validity );
402 bool hasGeometry()
const;
454 void setGeometry( std::unique_ptr< QgsAbstractGeometry > geometry );
458 sipCpp->setGeometry( std::unique_ptr< QgsAbstractGeometry>( a0 ) );
468 void clearGeometry();
501 bool setAttribute(
const QString &name,
const QVariant &value );
519 void setAttribute(
const QString &name,
const QVariant &value / GetWrapper / );
521 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
522 if ( fieldIdx == -1 )
524 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
529 if ( a1Wrapper == Py_None )
531 sipCpp->setAttribute( *a0, QVariant( QVariant::Int ) );
535 sipCpp->setAttribute( fieldIdx, *a1 );
552 bool deleteAttribute(
const QString &name );
565 bool deleteAttribute(
const QString &name );
567 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
568 if ( fieldIdx == -1 )
570 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
576 sipCpp->deleteAttribute( fieldIdx );
593 QVariant attribute(
const QString &name )
const;
607 SIP_PYOBJECT attribute(
const QString &name )
const;
609 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
610 if ( fieldIdx == -1 )
612 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
617 QVariant *v =
new QVariant( sipCpp->attribute( fieldIdx ) );
618 sipRes = sipConvertFromNewType( v, sipType_QVariant, Py_None );
634 QVariant attribute(
int fieldIdx )
const;
648 SIP_PYOBJECT attribute(
int fieldIdx )
const;
651 if ( a0 < 0 || a0 >= sipCpp->attributes().count() )
653 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
658 QVariant *v =
new QVariant( sipCpp->attribute( a0 ) );
659 sipRes = sipConvertFromNewType( v, sipType_QVariant, Py_None );
690 int fieldNameIndex(
const QString &fieldName )
const;
701 int approximateMemoryUsage()
const;
704 operator QVariant()
const
706 return QVariant::fromValue( *
this );
711 QExplicitlySharedDataPointer<QgsFeaturePrivate> d;
Abstract base class for all geometries.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
A geometry is the spatial representation of a feature.
A rectangle specified with double values.
Abstract base class for all rendered symbols.
#define SIP_PYARGDEFAULT(value)
QMap< QgsFeatureId, QgsGeometry > QgsGeometryMap
CORE_EXPORT QDataStream & operator>>(QDataStream &in, QgsFeature &feature)
Reads a feature from stream in into feature. QGIS version compatibility is not guaranteed.
QMap< QgsFeatureId, QgsAttributeMap > QgsChangedAttributesMap
CORE_EXPORT QDataStream & operator<<(QDataStream &out, const QgsFeature &feature)
Writes the feature to stream out. QGIS version compatibility is not guaranteed.
uint qHash(const QgsFeature &key, uint seed=0)
QList< QgsFeature > QgsFeatureList
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
Q_DECLARE_METATYPE(QgsMeshTimeSettings)