QGIS API Documentation 3.28.0-Firenze (ed3ad0430f)
qgsnewgeopackagelayerdialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsnewgeopackagelayerdialog.h
3 -------------------
4 begin : April 2016
5 copyright : (C) 2016 by Even Rouault
6 email : even.rouault at spatialys.com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17#ifndef QGSNEWGEOPACKAGELAYERDIALOG_H
18#define QGSNEWGEOPACKAGELAYERDIALOG_H
19
20#include "ui_qgsnewgeopackagelayerdialogbase.h"
21#include "qgsguiutils.h"
22
23#include "qgis_sip.h"
24#include "qgis_gui.h"
25
30class GUI_EXPORT QgsNewGeoPackageLayerDialog: public QDialog, private Ui::QgsNewGeoPackageLayerDialogBase
31{
32 Q_OBJECT
33
34 public:
35
38 {
42 };
43
45 QgsNewGeoPackageLayerDialog( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
46
51 void setCrs( const QgsCoordinateReferenceSystem &crs );
52
57 QString databasePath() const { return mDatabase->filePath(); }
58
63 void setDatabasePath( const QString &path ) { mDatabase->setFilePath( path ); }
64
69 void lockDatabasePath();
70
78 void setOverwriteBehavior( OverwriteBehavior behavior );
79
86 void setAddToProject( bool addToProject );
87
88 private slots:
89 void mAddAttributeButton_clicked();
90 void mRemoveAttributeButton_clicked();
91 void mFieldTypeBox_currentIndexChanged( int index );
92 void mGeometryTypeBox_currentIndexChanged( int index );
93 void mTableNameEdit_textChanged( const QString &text );
94 void mTableNameEdit_textEdited( const QString &text );
95 void mLayerIdentifierEdit_textEdited( const QString &text );
96 void fieldNameChanged( const QString & );
97 void selectionChanged();
98 void checkOk();
99
100 void showHelp();
101 void buttonBox_accepted();
102 void buttonBox_rejected();
103
104 private:
105 bool apply();
106
107 QPushButton *mOkButton = nullptr;
108 QString mCrsId;
109 bool mTableNameEdited = false;
110 bool mLayerIdentifierEdited = false;
111 OverwriteBehavior mBehavior = Prompt;
112 bool mAddToProject = true;
113};
114
115#endif // QGSNEWVECTORLAYERDIALOG_H
This class represents a coordinate reference system (CRS).
Dialog to set up parameters to create a new GeoPackage layer, and on accept() to create it and add it...
OverwriteBehavior
Behavior to use when an existing geopackage already exists.
@ AddNewLayer
Keep existing contents and add new layer.
@ Overwrite
Overwrite whole geopackage.
void setDatabasePath(const QString &path)
Sets the initial database path.
QString databasePath() const
Returns the database path.
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
const QgsCoordinateReferenceSystem & crs