QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsnewvectorlayerdialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsnewvectorlayerdialog.h - description
3  -------------------
4  begin : October 2004
5  copyright : (C) 2004 by Marco Hugentobler
6  email : [email protected]
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 qgsnewvectorlayerdialog_H
18 #define qgsnewvectorlayerdialog_H
19 
20 #include "ui_qgsnewvectorlayerdialogbase.h"
21 #include "qgisgui.h"
22 #include "qgscontexthelp.h"
23 
24 #include "qgis.h"
25 
26 class GUI_EXPORT QgsNewVectorLayerDialog: public QDialog, private Ui::QgsNewVectorLayerDialogBase
27 {
28  Q_OBJECT
29 
30  public:
31 
32  // run the dialog, create the layer.
33  // @return fileName on success, empty string use aborted, QString::null if creation failed
34  static QString runAndCreateLayer( QWidget* parent = 0, QString* enc = 0 );
35 
36  QgsNewVectorLayerDialog( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
39  QGis::WkbType selectedType() const;
41  void attributes( QList< QPair<QString, QString> >& at ) const;
43  QString selectedFileFormat() const;
45  QString selectedFileEncoding() const;
47  int selectedCrsId() const;
48 
49  protected slots:
50  void on_mAddAttributeButton_clicked();
51  void on_mRemoveAttributeButton_clicked();
52  void on_mFileFormatComboBox_currentIndexChanged( int index );
53  void on_mTypeBox_currentIndexChanged( int index );
54  void on_buttonBox_helpRequested() { QgsContextHelp::run( metaObject()->className() ); }
55  void nameChanged( QString );
56  void selectionChanged();
57 
58  private:
59  QPushButton *mOkButton;
60 };
61 
62 #endif //qgsnewvectorlayerdialog_H