QGIS API Documentation 3.39.0-Master (47f7b3a4989)
Loading...
Searching...
No Matches
qgslistwidgetwrapper.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgslistwidgetwrapper.cpp
3 --------------------------------------
4 Date : 09.2016
5 Copyright : (C) 2016 Patrick Valsecchi
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 "qgslistwidget.h"
18#include "qgsattributeform.h"
19
20QgsListWidgetWrapper::QgsListWidgetWrapper( QgsVectorLayer *layer, int fieldIdx, QWidget *editor, QWidget *parent ):
21 QgsEditorWidgetWrapper( layer, fieldIdx, editor, parent )
22{
23}
24
26{
27 mWidget->setList( QVariantList() );
28}
29
31{
32 if ( mWidget )
33 {
34 mWidget->setReadOnly( !enabled );
35 }
36}
37
38QWidget *QgsListWidgetWrapper::createWidget( QWidget *parent )
39{
40 QFrame *ret = new QFrame( parent );
41 ret->setFrameShape( QFrame::StyledPanel );
42 QHBoxLayout *layout = new QHBoxLayout( ret );
43 layout->setContentsMargins( 0, 0, 0, 0 );
44 QgsListWidget *widget = new QgsListWidget( field().subType(), ret );
45 layout->addWidget( widget );
46
47 if ( isInTable( parent ) )
48 {
49 // if to be put in a table, set a decent size
50 ret->setMinimumSize( QSize( 320, 110 ) );
51 }
52 return ret;
53}
54
55void QgsListWidgetWrapper::initWidget( QWidget *editor )
56{
57 mWidget = qobject_cast<QgsListWidget *>( editor );
58 if ( !mWidget )
59 {
60 mWidget = editor->findChild<QgsListWidget *>();
61 }
62
63 connect( mWidget, &QgsListWidget::valueChanged, this, &QgsListWidgetWrapper::onValueChanged );
64}
65
67{
68 return mWidget ? mWidget->valid() : true;
69}
70
71void QgsListWidgetWrapper::updateValues( const QVariant &value, const QVariantList & )
72{
73 mWidget->setList( value.toList() );
74}
75
77{
78 const QMetaType::Type type = field().type();
79 if ( !mWidget ) return QgsVariantUtils::createNullVariant( type );
80 const QVariantList list = mWidget->list();
81 if ( list.size() == 0 && config( QStringLiteral( "EmptyIsNull" ) ).toBool() )
82 {
83 return QVariant( );
84 }
85 if ( type == QMetaType::Type::QStringList )
86 {
87 QStringList result;
88 for ( QVariantList::const_iterator it = list.constBegin(); it != list.constEnd(); ++it )
89 result.append( it->toString() );
90 return result;
91 }
92 else
93 {
94 return list;
95 }
96}
97
98void QgsListWidgetWrapper::onValueChanged()
99{
101}
102
103void QgsListWidgetWrapper::updateConstraintWidgetStatus()
104{
105 // Nothing
106}
Manages an editor widget Widget and wrapper share the same parent.
static bool isInTable(const QWidget *parent)
Check if the given widget or one of its parent is a QTableView.
void emitValueChanged()
Will call the value() method to determine the emitted value.
QgsField field() const
Access the field.
QMetaType::Type type
Definition qgsfield.h:60
QgsListWidgetWrapper(QgsVectorLayer *layer, int fieldIdx, QWidget *editor=nullptr, QWidget *parent=nullptr)
Constructor for QgsListWidgetWrapper.
QVariant value() const override
Will be used to access the widget's value.
QWidget * createWidget(QWidget *parent) override
This method should create a new widget with the provided parent.
void showIndeterminateState() override
Sets the widget to display in an indeterminate "mixed value" state.
bool valid() const override
Returns true if the widget has been properly initialized.
void setEnabled(bool enabled) override
void initWidget(QWidget *editor) override
This method should initialize the editor widget with runtime data.
Widget allowing to edit a QVariantList, using a table.
bool valid() const
Check the content is valid.
QVariantList list
void setReadOnly(bool readOnly) override
void setList(const QVariantList &list)
Set the initial value of the widget.
void valueChanged()
Emitted each time a key or a value is changed.
static QVariant createNullVariant(QMetaType::Type metaType)
Helper method to properly create a null QVariant from a metaType Returns the created QVariant.
Represents a vector layer which manages a vector based data sets.
QWidget * widget()
Access the widget managed by this wrapper.
QVariantMap config() const
Returns the whole config.