QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
src
core
editform
qgsattributeeditorfield.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsattributeeditorfield.h - QgsAttributeEditorElement
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
***************************************************************************/
16
#ifndef QGSATTRIBUTEEDITORFIELD_H
17
#define QGSATTRIBUTEEDITORFIELD_H
18
19
#include "qgis_core.h"
20
#include "
qgsattributeeditorelement.h
"
21
22
27
class
CORE_EXPORT
QgsAttributeEditorField
:
public
QgsAttributeEditorElement
28
{
29
public
:
30
38
QgsAttributeEditorField
(
const
QString &name,
int
idx,
QgsAttributeEditorElement
*parent )
39
:
QgsAttributeEditorElement
( AeTypeField, name, parent )
40
, mIdx( idx )
41
{}
42
46
int
idx()
const
{
return
mIdx; }
47
48
QgsAttributeEditorElement
*
clone
(
QgsAttributeEditorElement
*parent )
const
override
SIP_FACTORY
;
49
50
private
:
51
void
saveConfiguration( QDomElement &elem, QDomDocument &doc )
const override
;
52
void
loadConfiguration(
const
QDomElement &element,
const
QString &layerId,
const
QgsReadWriteContext
&context,
const
QgsFields
&fields )
override
;
53
QString typeIdentifier()
const override
;
54
int
mIdx;
55
};
56
57
58
59
#endif // QGSATTRIBUTEEDITORFIELD_H
QgsAttributeEditorElement
This is an abstract base class for any elements of a drag and drop form.
Definition:
qgsattributeeditorelement.h:37
QgsReadWriteContext
The class is used as a container of context for various read/write operations on other objects.
Definition:
qgsreadwritecontext.h:34
QgsAttributeEditorElement::QgsAttributeEditorElement
QgsAttributeEditorElement(AttributeEditorType type, const QString &name, QgsAttributeEditorElement *parent=nullptr)
Constructor.
Definition:
qgsattributeeditorelement.h:135
QgsAttributeEditorField
This element will load a field's widget onto the form.
Definition:
qgsattributeeditorfield.h:27
QgsFields
Container of fields for a vector layer.
Definition:
qgsfields.h:44
SIP_FACTORY
#define SIP_FACTORY
Definition:
qgis_sip.h:76
QgsAttributeEditorElement::clone
virtual QgsAttributeEditorElement * clone(QgsAttributeEditorElement *parent) const =0
Returns a clone of this element.
qgsattributeeditorelement.h
Generated on Sun Sep 11 2022 00:03:17 for QGIS API Documentation by
1.8.17