QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgscheckboxsearchwidgetwrapper.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgscheckboxsearchwidgetwrapper.cpp
3 ---------------------------------
4 Date : 2016-05-23
5 Copyright : (C) 2016 Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
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 "qgsfields.h"
20#include "qgsvectorlayer.h"
21
22#include <QSettings>
23#include <QCheckBox>
24
26 : QgsSearchWidgetWrapper( vl, fieldIdx, parent )
27
28{
29}
30
32{
33 return true;
34}
35
37{
38 return mExpression;
39}
40
42{
43 QVariant v;
44
45 if ( mCheckBox )
46 v = mCheckBox->isChecked() ? config( QStringLiteral( "CheckedState" ), true ) : config( QStringLiteral( "UncheckedState" ), false );
47
48 return v;
49}
50
52{
53 return EqualTo | IsNull | IsNotNull;
54}
55
57{
58 return EqualTo;
59}
60
62{
63 const QVariant::Type fldType = layer()->fields().at( mFieldIdx ).type();
64 const QString fieldName = createFieldIdentifier();
65
66 //clear any unsupported flags
67 flags &= supportedFlags();
68 if ( flags & IsNull )
69 return fieldName + " IS NULL";
70
71 if ( flags & IsNotNull )
72 return fieldName + " IS NOT NULL";
73
74 const QVariant v = value();
75 if ( !v.isValid() )
76 return QString();
77
78 switch ( fldType )
79 {
80 case QVariant::Int:
81 case QVariant::UInt:
82 case QVariant::Double:
83 case QVariant::LongLong:
84 case QVariant::ULongLong:
85 case QVariant::Bool:
86 {
87 if ( flags & EqualTo )
88 return fieldName + '=' + v.toString();
89 else if ( flags & NotEqualTo )
90 return fieldName + "<>" + v.toString();
91 break;
92 }
93
94 default:
95 {
96 if ( flags & EqualTo )
97 return fieldName + "='" + v.toString() + '\'';
98 else if ( flags & NotEqualTo )
99 return fieldName + "<>'" + v.toString() + '\'';
100 break;
101 }
102 }
103
104 return QString();
105}
106
108{
109 if ( mCheckBox )
110 {
111 whileBlocking( mCheckBox )->setCheckState( Qt::PartiallyChecked );
112 }
113}
114
116{
117 if ( mCheckBox )
118 {
119 mCheckBox->setEnabled( enabled );
120 }
121}
122
124{
125 return true;
126}
127
128void QgsCheckboxSearchWidgetWrapper::setExpression( const QString &expression )
129{
130 QString exp = expression;
131 const QString fieldName = layer()->fields().at( mFieldIdx ).name();
132
133 const QString str = QStringLiteral( "%1 = '%3'" )
134 .arg( QgsExpression::quotedColumnRef( fieldName ),
135 exp.replace( '\'', QLatin1String( "''" ) )
136 );
138}
139
140void QgsCheckboxSearchWidgetWrapper::stateChanged( int )
141{
142 if ( mCheckBox )
143 {
144 mCheckBox->setTristate( false );
145 const QString exp = value().toString();
146 setExpression( exp );
147 emit valueChanged();
149 }
150}
151
153{
154 QCheckBox *c = new QCheckBox( parent );
155 c->setChecked( Qt::PartiallyChecked );
156 return c;
157}
158
160{
161 mCheckBox = qobject_cast<QCheckBox *>( editor );
162
163 if ( mCheckBox )
164 {
165 mCheckBox->setChecked( Qt::PartiallyChecked );
166 connect( mCheckBox, &QCheckBox::stateChanged, this, &QgsCheckboxSearchWidgetWrapper::stateChanged );
167 }
168}
169
170
void initWidget(QWidget *editor) override
This method should initialize the editor widget with runtime data.
QgsSearchWidgetWrapper::FilterFlags defaultFlags() const override
Returns the filter flags which should be set by default for the search widget.
bool applyDirectly() override
If this is true, then this search widget should take effect directly when its expression changes.
void setExpression(const QString &expression) override
QString expression() const override
Will be used to access the widget's value.
QgsSearchWidgetWrapper::FilterFlags supportedFlags() const override
Returns filter flags supported by the search widget.
QString createExpression(QgsSearchWidgetWrapper::FilterFlags flags) const override
Creates a filter expression based on the current state of the search widget and the specified filter ...
QWidget * createWidget(QWidget *parent) override
This method should create a new widget with the provided parent.
bool valid() const override
Returns true if the widget has been properly initialized.
QgsCheckboxSearchWidgetWrapper(QgsVectorLayer *vl, int fieldIdx, QWidget *parent=nullptr)
Constructor for QgsCheckboxSearchWidgetWrapper.
QVariant value() const
Returns a variant representing the current state of the widget.
static QString quotedColumnRef(QString name)
Returns a quoted column reference (in double quotes)
QString name
Definition: qgsfield.h:62
QVariant::Type type
Definition: qgsfield.h:60
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Definition: qgsfields.cpp:163
Shows a search widget on a filter form.
@ IsNull
Supports searching for null values.
@ IsNotNull
Supports searching for non-null values.
@ EqualTo
Supports equal to.
@ NotEqualTo
Supports not equal to.
void valueChanged()
Emitted when a user changes the value of the search widget.
void expressionChanged(const QString &exp)
Emitted whenever the expression changes.
QString createFieldIdentifier() const
Gets a field name or expression to use as field comparison.
QFlags< FilterFlag > FilterFlags
Represents a vector layer which manages a vector based data sets.
QgsFields fields() const FINAL
Returns the list of fields of this 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 str(x)
Definition: qgis.cpp:38
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition: qgis.h:5111