mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
20 lines
490 B
Plaintext
20 lines
490 B
Plaintext
|
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();
|
||
|
};
|