QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsaddattrdialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsaddattrdialog.h - description
3 -------------------
4 begin : January 2005
5 copyright : (C) 2005 by Marco Hugentobler
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
18#ifndef QGSADDATTRDIALOG_H
19#define QGSADDATTRDIALOG_H
20
21// We don't want to expose this in the public API
22#define SIP_NO_FILE
23
24#include "ui_qgsaddattrdialogbase.h"
25#include "qgsguiutils.h"
26#include "qgis_gui.h"
27#include <QSet>
28
29class QgsVectorLayer;
30class QgsField;
31
39class GUI_EXPORT QgsAddAttrDialog: public QDialog, private Ui::QgsAddAttrDialogBase
40{
41 Q_OBJECT
42 public:
45 QWidget *parent = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
47 QgsAddAttrDialog( const std::list<QString> &typelist,
48 QWidget *parent = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
49
56 void setIllegalFieldNames( const QSet< QString> &names );
57
59 QgsField field() const;
60
61 private slots:
62 void mTypeBox_currentIndexChanged( int idx );
63 void mLength_editingFinished();
64 void accept() override;
65
66 private:
67 bool mIsShapeFile = false;
68 QSet< QString > mIllegalFieldNames;
69
70 void setPrecisionMinMax();
71};
72
73#endif
Dialog to add a source field attribute.
QgsAddAttrDialog(const std::list< QString > &typelist, QWidget *parent=nullptr, Qt::WindowFlags fl=QgsGuiUtils::ModalDialogFlags)
constructor
Encapsulate a field in an attribute table or data source.
Definition: qgsfield.h:53
Represents a vector layer which manages a vector based data sets.