QGIS API Documentation 3.28.0-Firenze (ed3ad0430f)
qgsuniquevaluewidgetwrapper.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsuniquevaluewidgetwrapper.cpp
3 --------------------------------------
4 Date : 5.1.2014
5 Copyright : (C) 2014 Matthias Kuhn
6 Email : matthias at opengis dot ch
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
17
18#include "qgsvectorlayer.h"
19#include "qgsfilterlineedit.h"
20#include "qgsapplication.h"
21
22#include <QCompleter>
23#include <QSettings>
24
25QgsUniqueValuesWidgetWrapper::QgsUniqueValuesWidgetWrapper( QgsVectorLayer *layer, int fieldIdx, QWidget *editor, QWidget *parent )
26 : QgsEditorWidgetWrapper( layer, fieldIdx, editor, parent )
27
28{
29}
30
32{
33 QVariant value;
34
35 if ( mComboBox )
36 value = mComboBox->currentData();
37
38 if ( mLineEdit )
39 {
40 if ( mLineEdit->text() == QgsApplication::nullRepresentation() )
41 value = QVariant( field().type() );
42 else
43 value = mLineEdit->text();
44 }
45
46 return value;
47}
48
50{
51 if ( config( QStringLiteral( "Editable" ) ).toBool() )
52 return new QgsFilterLineEdit( parent );
53 else
54 return new QComboBox( parent );
55}
56
58{
59 mComboBox = qobject_cast<QComboBox *>( editor );
60 mLineEdit = qobject_cast<QLineEdit *>( editor );
61
62 QStringList sValues;
63
64 const QSet< QVariant> values = layer()->uniqueValues( fieldIdx() );
65
66 const auto constValues = values;
67 for ( const QVariant &v : constValues )
68 {
69 if ( mComboBox )
70 {
71 mComboBox->addItem( v.toString(), v );
72 }
73
74 if ( mLineEdit )
75 {
76 sValues << v.toString();
77 }
78 }
79
80 if ( mLineEdit )
81 {
82 QgsFilterLineEdit *fle = qobject_cast<QgsFilterLineEdit *>( editor );
83 if ( fle && !( field().type() == QVariant::Int || field().type() == QVariant::Double || field().type() == QVariant::LongLong || field().type() == QVariant::Date ) )
84 {
86 }
87
88 QCompleter *c = new QCompleter( sValues );
89 c->setCaseSensitivity( Qt::CaseInsensitive );
90 c->setCompletionMode( QCompleter::PopupCompletion );
91 mLineEdit->setCompleter( c );
92
93 connect( mLineEdit, &QLineEdit::textChanged, this, [ = ]( const QString & value )
94 {
96 emit valueChanged( value );
98 emit valuesChanged( value );
99 } );
100 }
101
102 if ( mComboBox )
103 {
104 connect( mComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ),
105 this, static_cast<void ( QgsEditorWidgetWrapper::* )()>( &QgsEditorWidgetWrapper::emitValueChanged ) );
106 }
107}
108
110{
111 return mComboBox || mLineEdit;
112}
113
115{
116 if ( mComboBox )
117 {
118 whileBlocking( mComboBox )->setCurrentIndex( -1 );
119 }
120 if ( mLineEdit )
121 {
122 whileBlocking( mLineEdit )->setText( QString() );
123 }
124}
125
126void QgsUniqueValuesWidgetWrapper::updateValues( const QVariant &value, const QVariantList & )
127{
128 if ( mComboBox )
129 {
130 mComboBox->setCurrentIndex( mComboBox->findData( value ) );
131 }
132
133 if ( mLineEdit )
134 {
136 mLineEdit->setText( QgsApplication::nullRepresentation() );
137 else
138 mLineEdit->setText( value.toString() );
139 }
140}
static QString nullRepresentation()
This string is used to represent the value NULL throughout QGIS.
Manages an editor widget Widget and wrapper share the same parent.
Q_DECL_DEPRECATED void valueChanged(const QVariant &value)
Emit this signal, whenever the value changed.
int fieldIdx() const
Access the field index.
void valuesChanged(const QVariant &value, const QVariantList &additionalFieldValues=QVariantList())
Emit this signal, whenever the value changed.
void emitValueChanged()
Will call the value() method to determine the emitted value.
QgsField field() const
Access the field.
QLineEdit subclass with built in support for clearing the widget's value and handling custom null val...
void setNullValue(const QString &nullValue)
Sets the string representation for null values in the widget.
void initWidget(QWidget *editor) override
This method should initialize the editor widget with runtime data.
QWidget * createWidget(QWidget *parent) override
This method should create a new widget with the provided parent.
QVariant value() const override
Will be used to access the widget's value.
QgsUniqueValuesWidgetWrapper(QgsVectorLayer *layer, int fieldIdx, QWidget *editor=nullptr, QWidget *parent=nullptr)
Constructor for QgsUniqueValuesWidgetWrapper.
bool valid() const override
Returns true if the widget has been properly initialized.
void showIndeterminateState() override
Sets the widget to display in an indeterminate "mixed value" state.
static bool isNull(const QVariant &variant)
Returns true if the specified variant should be considered a NULL value.
Represents a vector layer which manages a vector based data sets.
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const FINAL
Calculates a list of unique values contained within an attribute in the layer.
QgsVectorLayer * layer() const
Returns the vector layer associated with the widget.
QVariantMap config() const
Returns the whole config.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define Q_NOWARN_DEPRECATED_POP
Definition: qgis.h:3061
#define Q_NOWARN_DEPRECATED_PUSH
Definition: qgis.h:3060
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition: qgis.h:2453