mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Add binding for QgsAttributeDialog
This commit is contained in:
parent
3bd21bc27c
commit
7f903ee63a
@ -10,6 +10,7 @@
|
||||
%Include qgisinterface.sip
|
||||
%Include qgsannotationitem.sip
|
||||
%Include qgsattributeeditor.sip
|
||||
%Include qgsattributedialog.sip
|
||||
%Include qgsbusyindicatordialog.sip
|
||||
%Include qgscollapsiblegroupbox.sip
|
||||
%Include qgscolorbutton.sip
|
||||
|
19
python/gui/qgsattributedialog.sip
Normal file
19
python/gui/qgsattributedialog.sip
Normal file
@ -0,0 +1,19 @@
|
||||
class QgsAttributeDialog : QObject
|
||||
{
|
||||
%TypeHeaderCode
|
||||
#include <qgsattributedialog.h>
|
||||
%End
|
||||
|
||||
public:
|
||||
QgsAttributeDialog( QgsVectorLayer *vl, QgsFeature *thepFeature, bool featureOwner, QgsDistanceArea myDa, QWidget* parent = 0, bool showDialogButtons = true );
|
||||
void saveGeometry();
|
||||
void restoreGeometry();
|
||||
QDialog *dialog();
|
||||
QgsFeature* feature();
|
||||
|
||||
public slots:
|
||||
void accept();
|
||||
int exec();
|
||||
void show();
|
||||
void dialogDestroyed();
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user