QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
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 {
55 QComboBox *combo = new QComboBox( parent );
56 combo->setMinimumContentsLength( 1 );
57 combo->setSizeAdjustPolicy( QComboBox::SizeAdjustPolicy::AdjustToMinimumContentsLengthWithIcon );
58 return combo;
59 }
60}
61
63{
64 mComboBox = qobject_cast<QComboBox *>( editor );
65 mLineEdit = qobject_cast<QLineEdit *>( editor );
66
67 QStringList sValues;
68
69 const QSet< QVariant> values = layer()->uniqueValues( fieldIdx() );
70
71 const auto constValues = values;
72 for ( const QVariant &v : constValues )
73 {
74 if ( mComboBox )
75 {
76 mComboBox->addItem( v.toString(), v );
77 }
78
79 if ( mLineEdit )
80 {
81 sValues << v.toString();
82 }
83 }
84
85 if ( mLineEdit )
86 {
87 QgsFilterLineEdit *fle = qobject_cast<QgsFilterLineEdit *>( editor );
88 if ( fle && !( field().type() == QVariant::Int || field().type() == QVariant::Double || field().type() == QVariant::LongLong || field().type() == QVariant::Date ) )
89 {
91 }
92
93 QCompleter *c = new QCompleter( sValues );
94 c->setCaseSensitivity( Qt::CaseInsensitive );
95 c->setCompletionMode( QCompleter::PopupCompletion );
96 mLineEdit->setCompleter( c );
97
98 connect( mLineEdit, &QLineEdit::textChanged, this, [ = ]( const QString & value )
99 {
101 emit valueChanged( value );
103 emit valuesChanged( value );
104 } );
105 }
106
107 if ( mComboBox )
108 {
109 connect( mComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ),
110 this, static_cast<void ( QgsEditorWidgetWrapper::* )()>( &QgsEditorWidgetWrapper::emitValueChanged ) );
111 }
112}
113
115{
116 return mComboBox || mLineEdit;
117}
118
120{
121 if ( mComboBox )
122 {
123 whileBlocking( mComboBox )->setCurrentIndex( -1 );
124 }
125 if ( mLineEdit )
126 {
127 whileBlocking( mLineEdit )->setText( QString() );
128 }
129}
130
131void QgsUniqueValuesWidgetWrapper::updateValues( const QVariant &value, const QVariantList & )
132{
133 if ( mComboBox )
134 {
135 mComboBox->setCurrentIndex( mComboBox->findData( value ) );
136 }
137
138 if ( mLineEdit )
139 {
141 mLineEdit->setText( QgsApplication::nullRepresentation() );
142 else
143 mLineEdit->setText( value.toString() );
144 }
145}
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, bool silenceNullWarnings=false)
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:5776
#define Q_NOWARN_DEPRECATED_PUSH
Definition: qgis.h:5775
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition: qgis.h:5111