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 );
260 bool setAttribute(
int field,
const QVariant &attr );
262 bool setAttribute(
int field,
const QVariant &attr / GetWrapper / );
266 if ( a1Wrapper == Py_None )
268 rv = sipCpp->setAttribute( a0, QVariant( QVariant::Int ) );
272 rv = sipCpp->setAttribute( a0, *a1 );
277 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
289 void initAttributes(
int fieldCount );
298 void deleteAttribute(
int field );
301 if ( a0 >= 0 && a0 < sipCpp->attributes().count() )
302 sipCpp->deleteAttribute( a0 );
305 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
317 bool isValid()
const;
324 void setValid(
bool validity );
331 bool hasGeometry()
const;
377 void setGeometry( std::unique_ptr< QgsAbstractGeometry > geometry );
381 sipCpp->setGeometry( std::unique_ptr< QgsAbstractGeometry>( a0 ) );
391 void clearGeometry();
422 bool setAttribute(
const QString &name,
const QVariant &value );
424 void setAttribute(
const QString &name,
const QVariant &value / GetWrapper / );
426 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
427 if ( fieldIdx == -1 )
429 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
434 if ( a1Wrapper == Py_None )
436 sipCpp->setAttribute( *a0, QVariant( QVariant::Int ) );
440 sipCpp->setAttribute( fieldIdx, *a1 );
455 bool deleteAttribute(
const QString &name );
458 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
459 if ( fieldIdx == -1 )
461 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
467 sipCpp->deleteAttribute( fieldIdx );
483 QVariant attribute(
const QString &name )
const;
485 SIP_PYOBJECT attribute(
const QString &name )
const;
487 int fieldIdx = sipCpp->fieldNameIndex( *a0 );
488 if ( fieldIdx == -1 )
490 PyErr_SetString( PyExc_KeyError, a0->toLatin1() );
495 QVariant *v =
new QVariant( sipCpp->attribute( fieldIdx ) );
496 sipRes = sipConvertFromNewType( v, sipType_QVariant, Py_None );
511 QVariant attribute(
int fieldIdx )
const;
513 SIP_PYOBJECT attribute(
int fieldIdx )
const;
516 if ( a0 < 0 || a0 >= sipCpp->attributes().count() )
518 PyErr_SetString( PyExc_KeyError, QByteArray::number( a0 ) );
523 QVariant *v =
new QVariant( sipCpp->attribute( a0 ) );
524 sipRes = sipConvertFromNewType( v, sipType_QVariant, Py_None );
537 int fieldNameIndex(
const QString &fieldName )
const;
540 operator QVariant()
const
542 return QVariant::fromValue( *
this );
547 QExplicitlySharedDataPointer<QgsFeaturePrivate> d;