File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -277,4 +277,21 @@ class QgsEditFormConfig : QObject
277
277
FeatureFormSuppress suppress() const;
278
278
/** Set type of feature form pop-up suppression after feature creation (overrides app setting) */
279
279
void setSuppress( FeatureFormSuppress s );
280
+
281
+ /**
282
+ * Read XML information
283
+ * Deserialize on project load
284
+ */
285
+ void readXml( const QDomNode& node );
286
+
287
+ /**
288
+ * Write XML information
289
+ * Serialize on project save
290
+ */
291
+ void writeXml( QDomNode& node ) const;
292
+
293
+ /**
294
+ * Deserialize drag and drop designer elements.
295
+ */
296
+ QgsAttributeEditorElement* attributeEditorElementFromDomElement( QDomElement &elem, QObject* parent );
280
297
};
Original file line number Diff line number Diff line change @@ -552,10 +552,21 @@ class CORE_EXPORT QgsEditFormConfig : public QObject
552
552
553
553
// Serialization
554
554
555
+ /* *
556
+ * Read XML information
557
+ * Deserialize on project load
558
+ */
555
559
void readXml ( const QDomNode& node );
556
560
561
+ /* *
562
+ * Write XML information
563
+ * Serialize on project save
564
+ */
557
565
void writeXml ( QDomNode& node ) const ;
558
566
567
+ /* *
568
+ * Deserialize drag and drop designer elements.
569
+ */
559
570
QgsAttributeEditorElement* attributeEditorElementFromDomElement ( QDomElement &elem, QObject* parent );
560
571
561
572
private slots:
You can’t perform that action at this time.
0 commit comments