QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsattributeeditorrelation.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsattributeeditorrelation.cpp - QgsAttributeEditorRelation
3
4 ---------------------
5 begin : 12.01.2021
6 copyright : (C) 2021 by Denis Rouzaud
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#include "qgsrelationmanager.h"
18#include "qgsxmlutils.h"
19
21{
22 mRelation = relationManager->relation( mRelationId );
23 return mRelation.isValid();
24}
25
27{
29 element->mRelation = mRelation;
30 element->mButtons = mButtons;
31 element->mForceSuppressFormPopup = mForceSuppressFormPopup;
32 element->mNmRelationId = mNmRelationId;
33 element->mLabel = mLabel;
34 element->mRelationEditorConfig = mRelationEditorConfig;
35 element->mRelationWidgetTypeId = mRelationWidgetTypeId;
36 element->mLabelStyle = mLabelStyle;
37
38 return element;
39}
40
41void QgsAttributeEditorRelation::saveConfiguration( QDomElement &elem, QDomDocument &doc ) const
42{
43 elem.setAttribute( QStringLiteral( "relation" ), mRelation.id() );
44 elem.setAttribute( QStringLiteral( "forceSuppressFormPopup" ), mForceSuppressFormPopup );
45 elem.setAttribute( QStringLiteral( "nmRelationId" ), mNmRelationId.toString() );
46 elem.setAttribute( QStringLiteral( "label" ), mLabel );
47 elem.setAttribute( QStringLiteral( "relationWidgetTypeId" ), mRelationWidgetTypeId );
48
49 QDomElement elemConfig = QgsXmlUtils::writeVariant( mRelationEditorConfig, doc );
50 elemConfig.setTagName( QStringLiteral( "editor_configuration" ) );
51 elem.appendChild( elemConfig );
52}
53
54void QgsAttributeEditorRelation::loadConfiguration( const QDomElement &element, const QString &layerId, const QgsReadWriteContext &context, const QgsFields &fields )
55{
56 Q_UNUSED( layerId )
57 Q_UNUSED( context )
58 Q_UNUSED( fields )
59
60 QVariantMap config = QgsXmlUtils::readVariant( element.firstChildElement( "editor_configuration" ) ).toMap();
61
62 // load defaults
63 if ( config.isEmpty() )
65
66 // pre QGIS 3.18 compatibility
67 if ( ! config.contains( QStringLiteral( "buttons" ) ) )
68 {
69 if ( element.hasAttribute( "buttons" ) )
70 {
72 // QgsAttributeEditorRelation::Button has been deprecated in favor of QgsRelationEditorWidget::Button
73 // we cannot use it here since the new flags are in gui, while the current code is in core
74 // TODO: remove this compatibility code in QGIS 4
75 // or make the enum private if we really want to keep the backward compatibility (but not worth it!)
76 const QString buttonString = element.attribute( QStringLiteral( "buttons" ), qgsFlagValueToKeys( QgsAttributeEditorRelation::Button::AllButtons ) );
77 config.insert( "buttons", qgsFlagValueToKeys( qgsFlagKeysToValue( buttonString, QgsAttributeEditorRelation::Button::AllButtons ) ) );
79 }
80 else
81 {
82 // pre QGIS 3.16 compatibility
84 QgsAttributeEditorRelation::Buttons buttons = QgsAttributeEditorRelation::Button::AllButtons;
85 buttons.setFlag( QgsAttributeEditorRelation::Button::Link, element.attribute( QStringLiteral( "showLinkButton" ), QStringLiteral( "1" ) ).toInt() );
86 buttons.setFlag( QgsAttributeEditorRelation::Button::Unlink, element.attribute( QStringLiteral( "showUnlinkButton" ), QStringLiteral( "1" ) ).toInt() );
87 buttons.setFlag( QgsAttributeEditorRelation::Button::SaveChildEdits, element.attribute( QStringLiteral( "showSaveChildEditsButton" ), QStringLiteral( "1" ) ).toInt() );
89 config.insert( "buttons", qgsFlagValueToKeys( buttons ) );
90 }
91 }
92
94
95 setForceSuppressFormPopup( element.attribute( QStringLiteral( "forceSuppressFormPopup" ), 0 ).toInt() );
96
97 if ( element.hasAttribute( QStringLiteral( "nmRelationId" ) ) )
98 {
99 setNmRelationId( element.attribute( QStringLiteral( "nmRelationId" ) ) );
100 }
101
102 if ( element.hasAttribute( "label" ) )
103 {
104 const QString label = element.attribute( QStringLiteral( "label" ) );
105 setLabel( label );
106 }
107 if ( element.hasAttribute( "relationWidgetTypeId" ) )
108 {
109 const QString relationWidgetTypeId = element.attribute( QStringLiteral( "relationWidgetTypeId" ) );
111 }
112}
113
114QString QgsAttributeEditorRelation::typeIdentifier() const
115{
116 return QStringLiteral( "attributeEditorRelation" );
117}
118
120{
121 mForceSuppressFormPopup = forceSuppressFormPopup;
122}
123
125{
126 return mForceSuppressFormPopup;
127}
128
129void QgsAttributeEditorRelation::setNmRelationId( const QVariant &nmRelationId )
130{
131 mNmRelationId = nmRelationId;
132}
133
135{
136 return mNmRelationId;
137}
138
139void QgsAttributeEditorRelation::setLabel( const QString &label )
140{
141 mLabel = label;
142}
143
145{
146 return mLabel;
147}
148
150{
151 return mRelationWidgetTypeId;
152}
153
154void QgsAttributeEditorRelation::setRelationWidgetTypeId( const QString &relationWidgetTypeId )
155{
156 mRelationWidgetTypeId = relationWidgetTypeId;
157}
158
160{
161 return mRelationEditorConfig;
162}
163
165{
166 mRelationEditorConfig = config;
167}
This is an abstract base class for any elements of a drag and drop form.
QgsAttributeEditorElement * parent() const
Gets the parent of this element.
This element will load a relation editor onto the form.
void setNmRelationId(const QVariant &nmRelationId=QVariant())
Sets nmRelationId for the relation id of the second relation involved in an N:M relation.
bool init(QgsRelationManager *relManager)
Initializes the relation from the id.
void setRelationWidgetTypeId(const QString &relationWidgetTypeId)
Sets the relation widget type.
QgsAttributeEditorElement * clone(QgsAttributeEditorElement *parent) const override
Returns a clone of this element.
QVariantMap relationEditorConfiguration() const
Returns the relation editor widget configuration.
void setForceSuppressFormPopup(bool forceSuppressFormPopup)
Sets force suppress form popup status to forceSuppressFormPopup.
QVariant nmRelationId() const
Determines the relation id of the second relation involved in an N:M relation.
bool forceSuppressFormPopup() const
Determines the force suppress form popup status.
Q_DECL_DEPRECATED QgsAttributeEditorRelation(const QString &name, const QString &relationId, QgsAttributeEditorElement *parent)
QString relationWidgetTypeId() const
Returns the current relation widget type id.
void setRelationEditorConfiguration(const QVariantMap &config)
Sets the relation editor configuration.
void setLabel(const QString &label=QString())
Sets label for this element If it's empty it takes the relation id as label.
QString label() const
Determines the label of this element.
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.
This class manages a set of relations between layers.
Q_INVOKABLE QgsRelation relation(const QString &id) const
Gets access to a relation by its id.
Q_GADGET QString id
Definition: qgsrelation.h:45
bool isValid
Definition: qgsrelation.h:49
static QDomElement writeVariant(const QVariant &value, QDomDocument &doc)
Write a QVariant to a QDomElement.
static QVariant readVariant(const QDomElement &element)
Read a QVariant from a QDomElement.
#define Q_NOWARN_DEPRECATED_POP
Definition: qgis.h:5776
QString qgsFlagValueToKeys(const T &value, bool *returnOk=nullptr)
Returns the value for the given keys of a flag.
Definition: qgis.h:5456
T qgsFlagKeysToValue(const QString &keys, const T &defaultValue, bool tryValueAsKey=true, bool *returnOk=nullptr)
Returns the value corresponding to the given keys of a flag.
Definition: qgis.h:5478
#define Q_NOWARN_DEPRECATED_PUSH
Definition: qgis.h:5775