QGIS API Documentation  2.10.1-Pisa
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsattributeform.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsattributeform.h
3  --------------------------------------
4  Date : 3.5.2014
5  Copyright : (C) 2014 Matthias Kuhn
6  Email : matthias dot kuhn at gmx dot ch
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSATTRIBUTEFORM_H
17 #define QGSATTRIBUTEFORM_H
18 
19 #include "qgsfeature.h"
20 #include "qgsvectorlayer.h"
21 #include "qgseditorwidgetwrapper.h"
23 
24 #include <QWidget>
25 #include <QDialogButtonBox>
26 
28 
29 class GUI_EXPORT QgsAttributeForm : public QWidget
30 {
31  Q_OBJECT
32 
33  public:
34  explicit QgsAttributeForm( QgsVectorLayer* vl, const QgsFeature &feature = QgsFeature(), const QgsAttributeEditorContext& context = QgsAttributeEditorContext(), QWidget *parent = 0 );
36 
37  const QgsFeature& feature() { return mFeature; }
38 
42  void hideButtonBox();
43 
47  void showButtonBox();
48 
53  void disconnectButtonBox();
54 
59  void addInterface( QgsAttributeFormInterface* iface );
60 
66  QgsVectorLayer* layer() { return mLayer; }
67 
73  bool editable();
74 
82  void setIsAddDialog( bool isAddDialog );
83 
89  void setEditCommandMessage( const QString& message ) { mEditCommandMessage = message; }
90 
99  bool eventFilter( QObject* object, QEvent* event ) override;
100 
101  signals:
108  void attributeChanged( QString attribute, const QVariant& value );
109 
118  void beforeSave( bool& ok );
119 
123  void featureSaved( const QgsFeature& feature );
124 
125  public slots:
132  void changeAttribute( const QString& field, const QVariant& value );
133 
139  void setFeature( const QgsFeature& feature );
140 
146  bool save();
147 
153  Q_DECL_DEPRECATED void accept() { save(); }
154 
160  Q_DECL_DEPRECATED void reject() { resetValues(); }
161 
165  void resetValues();
166 
170  void refreshFeature();
171 
172  private slots:
173  void onAttributeChanged( const QVariant& value );
174  void onAttributeAdded( int idx );
175  void onAttributeDeleted( int idx );
176 
177  void synchronizeEnabledState();
178 
179  private:
180  void init();
181 
182  void cleanPython();
183 
184  void initPython();
185 
186  QWidget* createWidgetFromDef( const QgsAttributeEditorElement* widgetDef, QWidget* parent, QgsVectorLayer* vl, QgsAttributeEditorContext& context, QString& labelText, bool& labelOnTop );
187 
188  void addWidgetWrapper( QgsEditorWidgetWrapper* eww );
189 
194  void createWrappers();
195  void connectWrappers();
196 
197  QgsVectorLayer* mLayer;
198  QgsFeature mFeature;
199  QList<QgsWidgetWrapper*> mWidgets;
200  QgsAttributeEditorContext mContext;
201  QDialogButtonBox* mButtonBox;
203 
204  // Variables below are used for python
205  static int sFormCounter;
206  int mFormNr;
207  QString mPyFormVarName;
208 
210  bool mIsSaving;
211  bool mIsAddDialog;
212 
213  QString mEditCommandMessage;
214 };
215 
216 #endif // QGSATTRIBUTEFORM_H
This is an abstract base class for any elements of a drag and drop form.
Q_DECL_DEPRECATED void accept()
Alias for save()
This class contains context information for attribute editor widgets.
Manages an editor widget Widget and wrapper share the same parent.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Definition: qgsfeature.h:162
QgsVectorLayer * layer()
Returns the layer for which this form is shown.
virtual bool eventFilter(QObject *watched, QEvent *event)
Q_DECL_DEPRECATED void reject()
Alias for resetValues()
void setEditCommandMessage(const QString &message)
Sets the edit command message (Undo) that will be used when the dialog is accepted.
const QgsFeature & feature()
Represents a vector layer which manages a vector based data sets.