Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsattributeeditorfield.h - QgsAttributeEditorElement 3 : : 4 : : --------------------- 5 : : begin : 12.01.2021 6 : : copyright : (C) 2021 by Denis Rouzaud 7 : : email : denis@opengis.ch 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 : : 23 : : /** 24 : : * \ingroup core 25 : : * \brief This element will load a field's widget onto the form. 26 : : */ 27 : 160 : class CORE_EXPORT QgsAttributeEditorField : public QgsAttributeEditorElement 28 : : { 29 : : public: 30 : : 31 : : /** 32 : : * Creates a new attribute editor element which represents a field 33 : : * 34 : : * \param name The name of the element 35 : : * \param idx The index of the field which should be embedded 36 : : * \param parent The parent of this widget (used as container) 37 : : */ 38 : 84 : QgsAttributeEditorField( const QString &name, int idx, QgsAttributeEditorElement *parent ) 39 : 84 : : QgsAttributeEditorElement( AeTypeField, name, parent ) 40 : 84 : , mIdx( idx ) 41 : 252 : {} 42 : : 43 : : /** 44 : : * Returns the index of the field. 45 : : */ 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