Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsfeaturepickermodel.cpp - QgsFeaturePickerModel 3 : : --------------------- 4 : : begin : 03.04.2020 5 : : copyright : (C) 2020 by Denis Rouzaud 6 : : email : denis@opengis.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 : : #include "qgsfeaturepickermodel.h" 16 : : #include "qgsfeatureexpressionvaluesgatherer.h" 17 : : 18 : : #include "qgsvectorlayer.h" 19 : : #include "qgsconditionalstyle.h" 20 : : #include "qgsapplication.h" 21 : : #include "qgssettings.h" 22 : : 23 : : 24 : 0 : QgsFeaturePickerModel::QgsFeaturePickerModel( QObject *parent ) 25 : 0 : : QgsFeaturePickerModelBase( parent ) 26 : 0 : { 27 : 0 : setFetchGeometry( true ); 28 : 0 : setExtraIdentifierValueUnguarded( nullIdentifier() ); 29 : : 30 : 0 : connect( this, &QgsFeaturePickerModelBase::extraIdentifierValueIndexChanged, this, [ = ]() {emit featureChanged( feature() );} ); 31 : 0 : } 32 : : 33 : 0 : void QgsFeaturePickerModel::requestToReloadCurrentFeature( QgsFeatureRequest &request ) 34 : : { 35 : 0 : request.setFilterFid( mExtraIdentifierValue.value<QgsFeatureId>() ); 36 : 0 : } 37 : : 38 : 0 : QVariant QgsFeaturePickerModel::entryIdentifier( const QgsFeatureExpressionValuesGatherer::Entry &entry ) const 39 : : { 40 : 0 : return entry.identifierFields; 41 : : } 42 : : 43 : 0 : QgsFeatureExpressionValuesGatherer::Entry QgsFeaturePickerModel::createEntry( const QVariant &identifier ) const 44 : : { 45 : 0 : QgsFeatureId fid = identifier.value<QgsFeatureId>(); 46 : 0 : return QgsFeatureExpressionValuesGatherer::Entry( fid, QStringLiteral( "(%1)" ).arg( fid ), sourceLayer() ); 47 : 0 : } 48 : : 49 : 0 : bool QgsFeaturePickerModel::compareEntries( const QgsFeatureExpressionValuesGatherer::Entry &a, const QgsFeatureExpressionValuesGatherer::Entry &b ) const 50 : : { 51 : 0 : return a.featureId == b.featureId; 52 : : } 53 : : 54 : 0 : bool QgsFeaturePickerModel::identifierIsNull( const QVariant &identifier ) const 55 : : { 56 : 0 : return identifier.value<QgsFeatureId>() == nullIdentifier(); 57 : 0 : } 58 : : 59 : 0 : QVariant QgsFeaturePickerModel::nullIdentifier() const 60 : : { 61 : 0 : return FID_NULL; 62 : : } 63 : : 64 : 0 : void QgsFeaturePickerModel::setExtraIdentifierValueToNull() 65 : : { 66 : 0 : setExtraIdentifierValue( FID_NULL ); 67 : 0 : } 68 : : 69 : 0 : void QgsFeaturePickerModel::setFeature( const QgsFeatureId &fid ) 70 : : { 71 : 0 : setExtraIdentifierValue( fid ); 72 : 0 : } 73 : : 74 : 0 : QgsFeature QgsFeaturePickerModel::feature() const 75 : : { 76 : 0 : return mEntries.value( mExtraValueIndex ).feature; 77 : 0 : } 78 : : 79 : 0 : QgsFeatureExpressionValuesGatherer *QgsFeaturePickerModel::createValuesGatherer( const QgsFeatureRequest &request ) const 80 : : { 81 : 0 : return new QgsFeatureExpressionValuesGatherer( sourceLayer(), displayExpression(), request ); 82 : 0 : } 83 : :