QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsvaluemapwidgetwrapper.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsvaluemapwidgetwrapper.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 #include "qgsvaluemapconfigdlg.h"
19 
20 #include <QSettings>
21 
22 QgsValueMapWidgetWrapper::QgsValueMapWidgetWrapper( QgsVectorLayer *vl, int fieldIdx, QWidget *editor, QWidget *parent )
23  : QgsEditorWidgetWrapper( vl, fieldIdx, editor, parent )
24 
25 {
26 }
27 
28 
30 {
31  QVariant v;
32 
33  if ( mComboBox )
34  v = mComboBox->currentData();
35 
37  v = QVariant( field().type() );
38 
39  return v;
40 }
41 
43 {
44  if ( mComboBox )
45  {
46  whileBlocking( mComboBox )->setCurrentIndex( -1 );
47  }
48 }
49 
50 QWidget *QgsValueMapWidgetWrapper::createWidget( QWidget *parent )
51 {
52  return new QComboBox( parent );
53 }
54 
55 void QgsValueMapWidgetWrapper::initWidget( QWidget *editor )
56 {
57  mComboBox = qobject_cast<QComboBox *>( editor );
58 
59  if ( mComboBox )
60  {
61  QgsValueMapConfigDlg::populateComboBox( mComboBox, config(), false );
62  connect( mComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ),
63  this, static_cast<void ( QgsEditorWidgetWrapper::* )()>( &QgsEditorWidgetWrapper::emitValueChanged ) );
64  }
65 }
66 
68 {
69  return mComboBox;
70 }
71 
73 {
74  QString v;
75  if ( value.isNull() )
77  else
78  v = value.toString();
79 
80  if ( mComboBox )
81  mComboBox->setCurrentIndex( mComboBox->findData( v ) );
82 }
void setValue(const QVariant &value) override
void emitValueChanged()
Will call the value() method to determine the emitted value.
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&#39;s value.
QVariantMap config() const
Returns the whole config.
bool valid() const override
Returns true if the widget has been properly initialized.
Manages an editor widget Widget and wrapper share the same parent.
QgsField field() const
Access the field.
QgsValueMapWidgetWrapper(QgsVectorLayer *vl, int fieldIdx, QWidget *editor=nullptr, QWidget *parent=nullptr)
void showIndeterminateState() override
Sets the widget to display in an indeterminate "mixed value" state.
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition: qgis.h:225
void initWidget(QWidget *editor) override
This method should initialize the editor widget with runtime data.
Represents a vector layer which manages a vector based data sets.
static const QString NULL_VALUE
Will be saved in the configuration when a value is NULL.
static void populateComboBox(QComboBox *comboBox, const QVariantMap &configuration, bool skipNull)
Populates a comboBox with the appropriate entries based on a value map configuration.