QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
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:
44 QgsAddAttrDialog( QgsVectorLayer *vlayer, QWidget *parent = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
46 QgsAddAttrDialog( const std::list<QString> &typelist, QWidget *parent = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags );
47
54 void setIllegalFieldNames( const QSet<QString> &names );
55
57 QgsField field() const;
58
59 private slots:
60 void mTypeBox_currentIndexChanged( int idx );
61 void mLength_editingFinished();
62 void accept() override;
63
64 private:
65 bool mIsShapeFile = false;
66 QSet<QString> mIllegalFieldNames;
67
68 void setPrecisionMinMax();
69};
70
71#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.