QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
qgsnewauxiliaryfielddialog.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsnewauxiliaryfielddialog.cpp - description
3 -------------------
4 begin : Sept 05, 2017
5 copyright : (C) 2017 by Paul Blottiere
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
19
20#include "qgsapplication.h"
21#include "qgsauxiliarystorage.h"
22#include "qgsgui.h"
23#include "qgsvariantutils.h"
24
25#include <QMessageBox>
26
27#include "moc_qgsnewauxiliaryfielddialog.cpp"
28
30 : QDialog( parent )
31 , mLayer( layer )
32 , mNameOnly( nameOnly )
33 , mPropertyDefinition( def )
34{
35 setupUi( this );
37
38 mType->addItem( QgsFields::iconForFieldType( QMetaType::Type::QString ), QgsVariantUtils::typeToDisplayString( QMetaType::Type::QString ), QgsPropertyDefinition::DataTypeString );
39 mType->addItem( QgsFields::iconForFieldType( QMetaType::Type::Double ), QgsVariantUtils::typeToDisplayString( QMetaType::Type::Double ), QgsPropertyDefinition::DataTypeNumeric );
40 mType->addItem( QgsFields::iconForFieldType( QMetaType::Type::Int ), tr( "Integer" ), QgsPropertyDefinition::DataTypeBoolean );
41
42 mType->setCurrentIndex( mType->findData( def.dataType() ) );
43
44 if ( mNameOnly )
45 mType->setEnabled( false );
46 else
47 mType->setEnabled( true );
48}
49
51{
53 def.setComment( mName->text() );
54
55 if ( !mNameOnly )
56 {
57 def.setDataType( static_cast<QgsPropertyDefinition::DataType>( mType->currentData().toInt() ) );
58
59 def.setOrigin( "user" );
60 def.setName( "custom" );
61 }
62
63 const QString fieldName = QgsAuxiliaryLayer::nameFromProperty( def, true );
64 const int idx = mLayer->fields().lookupField( fieldName );
65 if ( idx >= 0 )
66 {
67 const QString title = tr( "New Auxiliary Field" );
68 const QString msg = tr( "Invalid name. Auxiliary field '%1' already exists." ).arg( fieldName );
69 QMessageBox::critical( this, title, msg, QMessageBox::Ok );
70 }
71 else if ( def.comment().isEmpty() )
72 {
73 const QString title = tr( "New Auxiliary Field" );
74 const QString msg = tr( "Name is a mandatory parameter." );
75 QMessageBox::critical( this, title, msg, QMessageBox::Ok );
76 }
77 else
78 {
79 if ( mLayer->auxiliaryLayer()->addAuxiliaryField( def ) )
81 QDialog::accept();
82 }
83}
84
static QString nameFromProperty(const QgsPropertyDefinition &def, bool joined=false)
Returns the name of the auxiliary field for a property definition.
static QIcon iconForFieldType(QMetaType::Type type, QMetaType::Type subType=QMetaType::Type::UnknownType, const QString &typeString=QString())
Returns an icon corresponding to a field type.
static void enableAutoGeometryRestore(QWidget *widget, const QString &key=QString())
Register the widget to allow its position to be automatically saved and restored when open and closed...
Definition qgsgui.cpp:221
QgsPropertyDefinition mPropertyDefinition
QgsPropertyDefinition propertyDefinition() const
Returns the underlying property definition.
QgsNewAuxiliaryFieldDialog(const QgsPropertyDefinition &definition, QgsVectorLayer *layer, bool nameOnly=true, QWidget *parent=nullptr)
Constructor.
Definition for a property.
Definition qgsproperty.h:45
QString comment() const
Returns the comment of the property.
DataType dataType() const
Returns the allowable field/value data type for the property.
void setOrigin(const QString &origin)
Sets the origin of the property.
void setDataType(DataType type)
Sets the data type.
void setName(const QString &name)
Sets the name of the property.
void setComment(const QString &comment)
Sets comment of the property.
DataType
Valid data types required by property.
Definition qgsproperty.h:83
@ DataTypeString
Property requires a string value.
Definition qgsproperty.h:90
@ DataTypeBoolean
Property requires a boolean value.
@ DataTypeNumeric
Property requires a numeric value.
Definition qgsproperty.h:97
static QString typeToDisplayString(QMetaType::Type type, QMetaType::Type subType=QMetaType::Type::UnknownType)
Returns a user-friendly translated string representing a QVariant type.
Represents a vector layer which manages a vector based dataset.