QGIS API Documentation  3.24.2-Tisler (13c1a02865)
qgsattributeeditorfield.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsattributeeditorfield.cpp - QgsAttributeEditorField
3 
4  ---------------------
5  begin : 12.01.2021
6  copyright : (C) 2021 by Denis Rouzaud
7  email : [email protected]
8  ***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
17 
19 {
21  return element;
22 }
23 
24 
25 void QgsAttributeEditorField::saveConfiguration( QDomElement &elem, QDomDocument &doc ) const
26 {
27  Q_UNUSED( doc )
28  elem.setAttribute( QStringLiteral( "index" ), mIdx );
29 }
30 
31 void QgsAttributeEditorField::loadConfiguration( const QDomElement &element, const QString &layerId, const QgsReadWriteContext &context, const QgsFields &fields )
32 {
33  Q_UNUSED( element )
34  Q_UNUSED( layerId )
35  Q_UNUSED( context )
36  Q_UNUSED( fields )
37 }
38 
39 QString QgsAttributeEditorField::typeIdentifier() const
40 {
41  return QStringLiteral( "attributeEditorField" );
42 }
This is an abstract base class for any elements of a drag and drop form.
QString name() const
Returns the name of this element.
QgsAttributeEditorElement * parent() const
Gets the parent of this element.
This element will load a field's widget onto the form.
QgsAttributeEditorElement * clone(QgsAttributeEditorElement *parent) const override
Returns a clone of this element.
QgsAttributeEditorField(const QString &name, int idx, QgsAttributeEditorElement *parent)
Creates a new attribute editor element which represents a field.
Container of fields for a vector layer.
Definition: qgsfields.h:45
The class is used as a container of context for various read/write operations on other objects.