QGIS API Documentation  3.8.0-Zanzibar (11aff65)
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 
25 QgsUniqueValuesWidgetWrapper::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 
49 QWidget *QgsUniqueValuesWidgetWrapper::createWidget( QWidget *parent )
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  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 ) { emit valueChanged( value ); } );
94  }
95 
96  if ( mComboBox )
97  {
98  connect( mComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ),
99  this, static_cast<void ( QgsEditorWidgetWrapper::* )()>( &QgsEditorWidgetWrapper::emitValueChanged ) );
100  }
101 }
102 
104 {
105  return mComboBox || mLineEdit;
106 }
107 
109 {
110  if ( mComboBox )
111  {
112  whileBlocking( mComboBox )->setCurrentIndex( -1 );
113  }
114  if ( mLineEdit )
115  {
116  whileBlocking( mLineEdit )->setText( QString() );
117  }
118 }
119 
121 {
122  if ( mComboBox )
123  {
124  mComboBox->setCurrentIndex( mComboBox->findData( value ) );
125  }
126 
127  if ( mLineEdit )
128  {
129  if ( value.isNull() )
130  mLineEdit->setText( QgsApplication::nullRepresentation() );
131  else
132  mLineEdit->setText( value.toString() );
133  }
134 }
void showIndeterminateState() override
Sets the widget to display in an indeterminate "mixed value" state.
void emitValueChanged()
Will call the value() method to determine the emitted value.
QgsField field() const
Access the field.
Manages an editor widget Widget and wrapper share the same parent.
QWidget * createWidget(QWidget *parent) override
This method should create a new widget with the provided parent.
QVariantMap config() const
Returns the whole config.
void initWidget(QWidget *editor) override
This method should initialize the editor widget with runtime data.
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
QLineEdit subclass with built in support for clearing the widget&#39;s value and handling custom null val...
static QString nullRepresentation()
This string is used to represent the value NULL throughout QGIS.
void setValue(const QVariant &value) override
QVariant value() const override
Will be used to access the widget&#39;s value.
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition: qgis.h:212
bool valid() const override
Returns true if the widget has been properly initialized.
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const FINAL
Calculates a list of unique values contained within an attribute in the layer.
void valueChanged(const QVariant &value)
Emit this signal, whenever the value changed.
int fieldIdx() const
Access the field index.
void setNullValue(const QString &nullValue)
Sets the string representation for null values in the widget.
QgsVectorLayer * layer() const
Returns the vector layer associated with the widget.
Represents a vector layer which manages a vector based data sets.
QgsUniqueValuesWidgetWrapper(QgsVectorLayer *layer, int fieldIdx, QWidget *editor=nullptr, QWidget *parent=nullptr)
Constructor for QgsUniqueValuesWidgetWrapper.
QVariant::Type type
Definition: qgsfield.h:56