mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
21 lines
653 B
Plaintext
21 lines
653 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 ) /Deprecated/;
|
|
QgsAttributeDialog( QgsVectorLayer *vl, QgsFeature *thepFeature, bool featureOwner, QWidget* parent = 0, bool showDialogButtons = true );
|
|
void saveGeometry();
|
|
void restoreGeometry();
|
|
QDialog *dialog();
|
|
const QgsFeature* feature();
|
|
|
|
public slots:
|
|
void accept();
|
|
int exec();
|
|
void show();
|
|
void dialogDestroyed();
|
|
};
|