QGIS API Documentation  3.4.15-Madeira (e83d02e274)
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.h"
24 #include "qgis_gui.h"
25 
29 class GUI_EXPORT QgsNewGeoPackageLayerDialog: public QDialog, private Ui::QgsNewGeoPackageLayerDialogBase
30 {
31  Q_OBJECT
32 
33  public:
34 
37  {
41  };
42 
44  QgsNewGeoPackageLayerDialog( QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
45 
50  void setCrs( const QgsCoordinateReferenceSystem &crs );
51 
56  QString databasePath() const { return mDatabase->filePath(); }
57 
62  void setDatabasePath( const QString &path ) { mDatabase->setFilePath( path ); }
63 
68  void lockDatabasePath();
69 
77  void setOverwriteBehavior( OverwriteBehavior behavior );
78 
79  private slots:
80  void mAddAttributeButton_clicked();
81  void mRemoveAttributeButton_clicked();
82  void mFieldTypeBox_currentIndexChanged( int index );
83  void mGeometryTypeBox_currentIndexChanged( int index );
84  void mTableNameEdit_textChanged( const QString &text );
85  void mTableNameEdit_textEdited( const QString &text );
86  void mLayerIdentifierEdit_textEdited( const QString &text );
87  void fieldNameChanged( const QString & );
88  void selectionChanged();
89  void checkOk();
90 
91  void showHelp();
92  void buttonBox_accepted();
93  void buttonBox_rejected();
94 
95  private:
96  bool apply();
97 
98  QPushButton *mOkButton = nullptr;
99  QString mCrsId;
100  bool mTableNameEdited = false;
101  bool mLayerIdentifierEdited = false;
102  OverwriteBehavior mBehavior = Prompt;
103 };
104 
105 #endif // QGSNEWVECTORLAYERDIALOG_H
Dialog to set up parameters to create a new GeoPackage layer, and on accept() to create it and add it...
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:46
Keep existing contents and add new layer.
const QgsCoordinateReferenceSystem & crs
OverwriteBehavior
Behavior to use when an existing geopackage already exists.
void setDatabasePath(const QString &path)
Sets the initial database path.
This class represents a coordinate reference system (CRS).
QString databasePath() const
Returns the database path.