27 #include <QStringListModel> 53 if ( fkeys.isEmpty() )
60 Q_ASSERT( fieldPairs.count() == fkeys.count() );
61 for (
int i = 0; i < fieldPairs.count(); i++ )
82 return fieldName +
" IS NULL";
84 return fieldName +
" IS NOT NULL";
94 case QVariant::Double:
95 case QVariant::LongLong:
96 case QVariant::ULongLong:
99 return fieldName +
'=' + v.toString();
101 return fieldName +
"<>" + v.toString();
108 return fieldName +
"='" + v.toString() +
'\'';
110 return fieldName +
"<>'" + v.toString() +
'\'';
130 mWidget->setEnabled( enabled );
141 onValuesChanged( QVariantList() << value );
144 void QgsRelationReferenceSearchWidgetWrapper::onValuesChanged(
const QVariantList &values )
146 if ( !values.isEmpty() )
155 QVariant
value = values.at( 0 );
169 if ( exp == nullValue )
175 str = QStringLiteral(
"%1 = '%3'" )
177 exp.replace(
'\'', QLatin1String(
"''" ) )
203 if (
config( QStringLiteral(
"FilterFields" ), QVariant() ).isValid() )
static QString quotedColumnRef(QString name)
Returns a quoted column reference (in double quotes)
This class is a composition of two QSettings instances:
Map canvas is a class for displaying all GIS data types on a canvas.
QgsField at(int i) const
Gets field at particular index (must be in range 0..N-1)
QgsFields fields() const FINAL
Returns the list of fields of this layer.
static QString nullRepresentation()
This string is used to represent the value NULL throughout QGIS.
QgsRelationManager relationManager
QList< QgsRelation::FieldPair > fieldPairs() const
Returns the field pairs which form this relation The first element of each pair are the field names o...
static QgsProject * instance()
Returns the QgsProject singleton instance.
Q_INVOKABLE QgsRelation relation(const QString &id) const
Gets access to a relation by its id.
Represents a vector layer which manages a vector based data sets.