mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
28 lines
694 B
Plaintext
28 lines
694 B
Plaintext
class QgsNewMemoryLayerDialog : QDialog
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsnewmemorylayerdialog.h>
|
|
%End
|
|
|
|
public:
|
|
|
|
/**Runs the dialoag and creates a new memory layer
|
|
* @param parent parent widget
|
|
* @returns new memory layer
|
|
*/
|
|
static QgsVectorLayer* runAndCreateLayer( QWidget* parent = 0 );
|
|
|
|
QgsNewMemoryLayerDialog( QWidget *parent /TransferThis/ = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
|
|
~QgsNewMemoryLayerDialog();
|
|
|
|
/**Returns the selected geometry type*/
|
|
QGis::WkbType selectedType() const;
|
|
|
|
/**Returns the selected crs*/
|
|
QgsCoordinateReferenceSystem crs() const;
|
|
|
|
/**Returns the layer name*/
|
|
QString layerName() const;
|
|
|
|
};
|