QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
Loading...
Searching...
No Matches
qgslayoutitemattributetable.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutitemattributetable.cpp
3 -------------------------------
4 begin : November 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19#include "qgslayout.h"
21#include "qgslayoutitemmap.h"
22#include "qgslayoututils.h"
23#include "qgsfeatureiterator.h"
24#include "qgsvectorlayer.h"
25#include "qgslayoutframe.h"
26#include "qgsproject.h"
27#include "qgsrelationmanager.h"
28#include "qgsfieldformatter.h"
30#include "qgsgeometry.h"
31#include "qgsexception.h"
35#include "qgsgeometryengine.h"
36#include "qgsconditionalstyle.h"
37#include "qgsfontutils.h"
38#include "qgsvariantutils.h"
40
41//
42// QgsLayoutItemAttributeTable
43//
44
46 : QgsLayoutTable( layout )
47{
48 if ( mLayout )
49 {
50 connect( mLayout->project(), static_cast < void ( QgsProject::* )( const QString & ) >( &QgsProject::layerWillBeRemoved ), this, &QgsLayoutItemAttributeTable::removeLayer );
51
52 //coverage layer change = regenerate columns
53 connect( &mLayout->reportContext(), &QgsLayoutReportContext::layerChanged, this, &QgsLayoutItemAttributeTable::atlasLayerChanged );
54 }
56}
57
62
64{
65 return QgsApplication::getThemeIcon( QStringLiteral( "/mLayoutItemTable.svg" ) );
66}
67
72
74{
75 return tr( "<Attribute table frame>" );
76}
77
79{
80 if ( layer == mVectorLayer.get() )
81 {
82 //no change
83 return;
84 }
85
86 QgsVectorLayer *prevLayer = sourceLayer();
87 mVectorLayer.setLayer( layer );
88
89 if ( mSource == QgsLayoutItemAttributeTable::LayerAttributes && layer != prevLayer )
90 {
91 if ( prevLayer )
92 {
93 //disconnect from previous layer
95 }
96
97 //rebuild column list to match all columns from layer
99
100 //listen for modifications to layer and refresh table when they occur
101 connect( mVectorLayer.get(), &QgsVectorLayer::layerModified, this, &QgsLayoutTable::refreshAttributes );
102 }
103
105 emit changed();
106}
107
108void QgsLayoutItemAttributeTable::setRelationId( const QString &relationId )
109{
110 if ( relationId == mRelationId )
111 {
112 //no change
113 return;
114 }
115
116 QgsVectorLayer *prevLayer = sourceLayer();
117 mRelationId = relationId;
118 QgsRelation relation = mLayout->project()->relationManager()->relation( mRelationId );
119 QgsVectorLayer *newLayer = relation.referencingLayer();
120
121 if ( mSource == QgsLayoutItemAttributeTable::RelationChildren && newLayer != prevLayer )
122 {
123 if ( prevLayer )
124 {
125 //disconnect from previous layer
127 }
128
129 //rebuild column list to match all columns from layer
130 resetColumns();
131
132 //listen for modifications to layer and refresh table when they occur
134 }
135
137 emit changed();
138}
139
140void QgsLayoutItemAttributeTable::atlasLayerChanged( QgsVectorLayer *layer )
141{
142 if ( mSource != QgsLayoutItemAttributeTable::AtlasFeature || layer == mCurrentAtlasLayer )
143 {
144 //nothing to do
145 return;
146 }
147
148 //atlas feature mode, atlas layer changed, so we need to reset columns
149 if ( mCurrentAtlasLayer )
150 {
151 //disconnect from previous layer
152 disconnect( mCurrentAtlasLayer, &QgsVectorLayer::layerModified, this, &QgsLayoutTable::refreshAttributes );
153 }
154
155 const bool mustRebuildColumns = static_cast< bool >( mCurrentAtlasLayer ) || mColumns.empty();
156 mCurrentAtlasLayer = layer;
157
158 if ( mustRebuildColumns )
159 {
160 //rebuild column list to match all columns from layer
161 resetColumns();
162 }
163
165
166 //listen for modifications to layer and refresh table when they occur
168}
169
171{
173 if ( !source )
174 {
175 return;
176 }
177
178 //remove existing columns
179 mColumns.clear();
180 mSortColumns.clear();
181
182 //rebuild columns list from vector layer fields
183 int idx = 0;
184 const QgsFields sourceFields = source->fields();
185
186 for ( const auto &field : sourceFields )
187 {
188 QString currentAlias = source->attributeDisplayName( idx );
190 col.setAttribute( field.name() );
191 col.setHeading( currentAlias );
192 mColumns.append( col );
193 idx++;
194 }
195}
196
197void QgsLayoutItemAttributeTable::disconnectCurrentMap()
198{
199 if ( !mMap )
200 {
201 return;
202 }
203
206 disconnect( mMap, &QObject::destroyed, this, &QgsLayoutItemAttributeTable::disconnectCurrentMap );
207 mMap = nullptr;
208}
209
211{
212 return mUseConditionalStyling;
213}
214
216{
217 if ( useConditionalStyling == mUseConditionalStyling )
218 {
219 return;
220 }
221
222 mUseConditionalStyling = useConditionalStyling;
224 emit changed();
225}
226
228{
229 if ( map == mMap )
230 {
231 //no change
232 return;
233 }
234 disconnectCurrentMap();
235
236 mMap = map;
237 if ( mMap )
238 {
239 //listen out for extent changes in linked map
242 }
244 emit changed();
245}
246
248{
249 if ( features == mMaximumNumberOfFeatures )
250 {
251 return;
252 }
253
254 mMaximumNumberOfFeatures = features;
256 emit changed();
257}
258
260{
261 if ( uniqueOnly == mShowUniqueRowsOnly )
262 {
263 return;
264 }
265
266 mShowUniqueRowsOnly = uniqueOnly;
268 emit changed();
269}
270
272{
273 if ( visibleOnly == mShowOnlyVisibleFeatures )
274 {
275 return;
276 }
277
278 mShowOnlyVisibleFeatures = visibleOnly;
280 emit changed();
281}
282
284{
285 if ( filterToAtlas == mFilterToAtlasIntersection )
286 {
287 return;
288 }
289
290 mFilterToAtlasIntersection = filterToAtlas;
292 emit changed();
293}
294
296{
297 if ( filter == mFilterFeatures )
298 {
299 return;
300 }
301
302 mFilterFeatures = filter;
304 emit changed();
305}
306
307void QgsLayoutItemAttributeTable::setFeatureFilter( const QString &expression )
308{
309 if ( expression == mFeatureFilter )
310 {
311 return;
312 }
313
314 mFeatureFilter = expression;
316 emit changed();
317}
318
319void QgsLayoutItemAttributeTable::setDisplayedFields( const QStringList &fields, bool refresh )
320{
322 if ( !source )
323 {
324 return;
325 }
326
327 //rebuild columns list, taking only fields contained in supplied list
328 mColumns.clear();
329
330 const QgsFields layerFields = source->fields();
331
332 if ( !fields.isEmpty() )
333 {
334 for ( const QString &field : fields )
335 {
336 int attrIdx = layerFields.lookupField( field );
337 if ( attrIdx < 0 )
338 {
339 continue;
340 }
341 QString currentAlias = source->attributeDisplayName( attrIdx );
343 col.setAttribute( layerFields.at( attrIdx ).name() );
344 col.setHeading( currentAlias );
345 mColumns.append( col );
346 }
347 }
348 else
349 {
350 //resetting, so add all attributes to columns
351 int idx = 0;
352 for ( const QgsField &field : layerFields )
353 {
354 QString currentAlias = source->attributeDisplayName( idx );
356 col.setAttribute( field.name() );
357 col.setHeading( currentAlias );
358 mColumns.append( col );
359 idx++;
360 }
361 }
362
363 if ( refresh )
364 {
366 }
367}
368
369void QgsLayoutItemAttributeTable::restoreFieldAliasMap( const QMap<int, QString> &map )
370{
372 if ( !source )
373 {
374 return;
375 }
376
377 for ( int i = 0; i < mColumns.count(); i++ )
378 {
379 int attrIdx = source->fields().lookupField( mColumns[i].attribute() );
380 if ( map.contains( attrIdx ) )
381 {
382 mColumns[i].setHeading( map.value( attrIdx ) );
383 }
384 else
385 {
386 mColumns[i].setHeading( source->attributeDisplayName( attrIdx ) );
387 }
388 }
389}
390
392{
393 contents.clear();
394 mLayerCache.clear();
395
396 QgsVectorLayer *layer = sourceLayer();
397 if ( !layer )
398 {
399 //no source layer
400 return false;
401 }
402
403 const QgsConditionalLayerStyles *conditionalStyles = layer->conditionalStyles();
404
406 context.setFields( layer->fields() );
407
409 req.setExpressionContext( context );
410
411 //prepare filter expression
412 std::unique_ptr<QgsExpression> filterExpression;
413 bool activeFilter = false;
414 if ( mFilterFeatures && !mFeatureFilter.isEmpty() )
415 {
416 filterExpression = std::make_unique< QgsExpression >( mFeatureFilter );
417 if ( !filterExpression->hasParserError() )
418 {
419 activeFilter = true;
420 req.setFilterExpression( mFeatureFilter );
421 }
422 }
423
424#ifdef HAVE_SERVER_PYTHON_PLUGINS
425 if ( mLayout->renderContext().featureFilterProvider() )
426 {
427 mLayout->renderContext().featureFilterProvider()->filterFeatures( layer, req );
428 }
429#endif
430
431 QgsRectangle selectionRect;
432 QgsGeometry visibleRegion;
433 std::unique_ptr< QgsGeometryEngine > visibleMapEngine;
434 if ( mMap && mShowOnlyVisibleFeatures )
435 {
436 visibleRegion = QgsGeometry::fromQPolygonF( mMap->visibleExtentPolygon() );
437 selectionRect = visibleRegion.boundingBox();
438 //transform back to layer CRS
439 const QgsCoordinateTransform coordTransform( layer->crs(), mMap->crs(), mLayout->project() );
440 QgsCoordinateTransform extentTransform = coordTransform;
441 extentTransform.setBallparkTransformsAreAppropriate( true );
442 try
443 {
444 selectionRect = extentTransform.transformBoundingBox( selectionRect, Qgis::TransformDirection::Reverse );
445 visibleRegion.transform( coordTransform, Qgis::TransformDirection::Reverse );
446 }
447 catch ( QgsCsException &cse )
448 {
449 Q_UNUSED( cse )
450 return false;
451 }
452 visibleMapEngine.reset( QgsGeometry::createGeometryEngine( visibleRegion.constGet() ) );
453 visibleMapEngine->prepareGeometry();
454 }
455
456 QgsGeometry atlasGeometry;
457 std::unique_ptr< QgsGeometryEngine > atlasGeometryEngine;
458 if ( mFilterToAtlasIntersection )
459 {
460 atlasGeometry = mLayout->reportContext().currentGeometry( layer->crs() );
461 if ( !atlasGeometry.isNull() )
462 {
463 if ( selectionRect.isNull() )
464 {
465 selectionRect = atlasGeometry.boundingBox();
466 }
467 else
468 {
469 selectionRect = selectionRect.intersect( atlasGeometry.boundingBox() );
470 }
471
472 atlasGeometryEngine.reset( QgsGeometry::createGeometryEngine( atlasGeometry.constGet() ) );
473 atlasGeometryEngine->prepareGeometry();
474 }
475 else
476 {
477 return false;
478 }
479 }
480
482 {
483 QgsRelation relation = mLayout->project()->relationManager()->relation( mRelationId );
484 QgsFeature atlasFeature = mLayout->reportContext().feature();
485 req = relation.getRelatedFeaturesRequest( atlasFeature );
486 }
487
488 if ( !selectionRect.isNull() )
489 req.setFilterRect( selectionRect );
490
492
494 {
495 //source mode is current atlas feature
496 QgsFeature atlasFeature = mLayout->reportContext().feature();
497 req.setFilterFid( atlasFeature.id() );
498 }
499
500 for ( const QgsLayoutTableColumn &column : std::as_const( mSortColumns ) )
501 {
502 req.addOrderBy( column.attribute(), column.sortOrder() == Qt::AscendingOrder );
503 }
504
505 QgsFeature f;
506 int counter = 0;
507 QgsFeatureIterator fit = layer->getFeatures( req );
508
509 mConditionalStyles.clear();
510 mFeatures.clear();
511
512 QVector< QVector< Cell > > tempContents;
513 QgsLayoutTableContents existingContents;
514
515 while ( fit.nextFeature( f ) && counter < mMaximumNumberOfFeatures )
516 {
517 context.setFeature( f );
518 //check feature against filter
519 if ( activeFilter && filterExpression )
520 {
521 QVariant result = filterExpression->evaluate( &context );
522 // skip this feature if the filter evaluation is false
523 if ( !result.toBool() )
524 {
525 continue;
526 }
527 }
528
529 // check against exact map bounds
530 if ( visibleMapEngine )
531 {
532 if ( !f.hasGeometry() )
533 continue;
534
535 if ( !visibleMapEngine->intersects( f.geometry().constGet() ) )
536 continue;
537 }
538
539 //check against atlas feature intersection
540 if ( atlasGeometryEngine )
541 {
542 if ( !f.hasGeometry() )
543 {
544 continue;
545 }
546
547 if ( !atlasGeometryEngine->intersects( f.geometry().constGet() ) )
548 continue;
549 }
550
551 QgsConditionalStyle rowStyle;
552
553 if ( mUseConditionalStyling )
554 {
555 const QList<QgsConditionalStyle> styles = QgsConditionalStyle::matchingConditionalStyles( conditionalStyles->rowStyles(), QVariant(), context );
556 rowStyle = QgsConditionalStyle::compressStyles( styles );
557 }
558
559 // We need to build up two different lists here -- one is a pair of the cell contents along with the cell style.
560 // We need this one because we do a sorting step later, and we need to ensure that the cell styling is attached to the right row and sorted
561 // correctly when this occurs
562 // We also need a list of just the cell contents, so that we can do a quick check for row uniqueness (when the
563 // corresponding option is enabled)
564 QVector< Cell > currentRow;
565#ifdef HAVE_SERVER_PYTHON_PLUGINS
566 mColumns = filteredColumns();
567#endif
568 currentRow.reserve( mColumns.count() );
569 QgsLayoutTableRow rowContents;
570 rowContents.reserve( mColumns.count() );
571
572 for ( const QgsLayoutTableColumn &column : std::as_const( mColumns ) )
573 {
575 int idx = layer->fields().lookupField( column.attribute() );
576 if ( idx != -1 )
577 {
578 QVariant val = f.attributes().at( idx );
579
580 if ( mUseConditionalStyling )
581 {
582 QList<QgsConditionalStyle> styles = conditionalStyles->fieldStyles( layer->fields().at( idx ).name() );
583 styles = QgsConditionalStyle::matchingConditionalStyles( styles, val, context );
584 styles.insert( 0, rowStyle );
585 style = QgsConditionalStyle::compressStyles( styles );
586 }
587
588 const QgsEditorWidgetSetup setup = layer->fields().at( idx ).editorWidgetSetup();
589
590 if ( ! setup.isNull() )
591 {
593 QVariant cache;
594
595 auto it = mLayerCache.constFind( column.attribute() );
596 if ( it != mLayerCache.constEnd() )
597 {
598 cache = it.value();
599 }
600 else
601 {
602 cache = fieldFormatter->createCache( layer, idx, setup.config() );
603 mLayerCache.insert( column.attribute(), cache );
604 }
605
606 val = fieldFormatter->representValue( layer, idx, setup.config(), cache, val );
607 }
608
609 QVariant v = QgsVariantUtils::isNull( val ) ? QString() : replaceWrapChar( val );
610 currentRow << Cell( v, style, f );
611 rowContents << v;
612 }
613 else
614 {
615 // Lets assume it's an expression
616 std::unique_ptr< QgsExpression > expression = std::make_unique< QgsExpression >( column.attribute() );
617 context.lastScope()->addVariable( QgsExpressionContextScope::StaticVariable( QStringLiteral( "row_number" ), counter + 1, true ) );
618 expression->prepare( &context );
619 QVariant value = expression->evaluate( &context );
620
621 currentRow << Cell( value, rowStyle, f );
622 rowContents << value;
623 }
624 }
625
626 if ( mShowUniqueRowsOnly )
627 {
628 if ( contentsContainsRow( existingContents, rowContents ) )
629 continue;
630 }
631
632 tempContents << currentRow;
633 existingContents << rowContents;
634 ++counter;
635 }
636
637 // build final table contents
638 contents.reserve( tempContents.size() );
639 mConditionalStyles.reserve( tempContents.size() );
640 mFeatures.reserve( tempContents.size() );
641 for ( auto it = tempContents.constBegin(); it != tempContents.constEnd(); ++it )
642 {
644 QList< QgsConditionalStyle > rowStyles;
645 row.reserve( it->size() );
646 rowStyles.reserve( it->size() );
647
648 for ( auto cellIt = it->constBegin(); cellIt != it->constEnd(); ++cellIt )
649 {
650 row << cellIt->content;
651 rowStyles << cellIt->style;
652 if ( cellIt == it->constBegin() )
653 mFeatures << cellIt->feature;
654 }
655 contents << row;
656 mConditionalStyles << rowStyles;
657 }
658
660 return true;
661}
662
664{
665 if ( row >= mConditionalStyles.size() )
666 return QgsConditionalStyle();
667
668 return mConditionalStyles.at( row ).at( column );
669}
670
672{
674
675 const QgsConditionalStyle style = conditionalCellStyle( row, column );
676 if ( style.isValid() )
677 {
678 // apply conditional style formatting to text format
679 const QFont styleFont = style.font();
680 if ( styleFont != QFont() )
681 {
682 QFont newFont = format.font();
683 // we want to keep all the other font settings, like word/letter spacing
684 QgsFontUtils::setFontFamily( newFont, styleFont.family() );
685
686 // warning -- there's a potential trap here! We can't just read QFont::styleName(), as that may be blank even when
687 // the font has the bold or italic attributes set! Reading the style name via QFontInfo avoids this and always returns
688 // a correct style name
689 const QString styleName = QgsFontUtils::resolveFontStyleName( styleFont );
690 if ( !styleName.isEmpty() )
691 newFont.setStyleName( styleName );
692
693 newFont.setStrikeOut( styleFont.strikeOut() );
694 newFont.setUnderline( styleFont.underline() );
695 format.setFont( newFont );
696 if ( styleName.isEmpty() )
697 {
698 // we couldn't find a direct match for the conditional font's bold/italic settings as a font style name.
699 // This means the conditional style is using Qt's "faux bold/italic" mode. Even though it causes reduced quality font
700 // rendering, we'll apply it here anyway just to ensure that the rendered font styling matches the conditional style.
701 if ( styleFont.bold() )
702 format.setForcedBold( true );
703 if ( styleFont.italic() )
704 format.setForcedItalic( true );
705 }
706 }
707 }
708
709 return format;
710}
711
713{
714 std::unique_ptr< QgsExpressionContextScope >scope( QgsLayoutTable::scopeForCell( row, column ) );
715 scope->setFeature( mFeatures.value( row ) );
716 scope->setFields( scope->feature().fields() );
717 return scope.release();
718}
719
721{
723
724 if ( mSource == LayerAttributes )
725 {
726 context.appendScope( QgsExpressionContextUtils::layerScope( mVectorLayer.get() ) );
727 }
728
729 return context;
730}
731
733{
735 if ( !mMap && !mMapUuid.isEmpty() && mLayout )
736 {
737 mMap = qobject_cast< QgsLayoutItemMap *>( mLayout->itemByUuid( mMapUuid, true ) );
738 if ( mMap )
739 {
740 //if we have found a valid map item, listen out to extent changes on it and refresh the table
743 }
744 }
745}
746
748{
750
753 {
754 mDataDefinedVectorLayer = nullptr;
755
756 QString currentLayerIdentifier;
757 if ( QgsVectorLayer *currentLayer = mVectorLayer.get() )
758 currentLayerIdentifier = currentLayer->id();
759
760 const QString layerIdentifier = mDataDefinedProperties.valueAsString( QgsLayoutObject::DataDefinedProperty::AttributeTableSourceLayer, context, currentLayerIdentifier );
761 QgsVectorLayer *ddLayer = qobject_cast< QgsVectorLayer * >( QgsLayoutUtils::mapLayerFromString( layerIdentifier, mLayout->project() ) );
762 if ( ddLayer )
763 mDataDefinedVectorLayer = ddLayer;
764 }
765
767}
768
769QVariant QgsLayoutItemAttributeTable::replaceWrapChar( const QVariant &variant ) const
770{
771 //avoid converting variants to string if not required (try to maintain original type for sorting)
772 if ( mWrapString.isEmpty() || !variant.toString().contains( mWrapString ) )
773 return variant;
774
775 QString replaced = variant.toString();
776 replaced.replace( mWrapString, QLatin1String( "\n" ) );
777 return replaced;
778}
779
780#ifdef HAVE_SERVER_PYTHON_PLUGINS
781QgsLayoutTableColumns QgsLayoutItemAttributeTable::filteredColumns()
782{
783
784 QgsLayoutTableColumns allowedColumns { mColumns };
785
786 // Filter columns
787 if ( mLayout->renderContext().featureFilterProvider() )
788 {
789
791
792 if ( ! source )
793 {
794 return allowedColumns;
795 }
796
797 QHash<const QString, QSet<QString>> columnAttributesMap;
798 QSet<QString> allowedAttributes;
799
800 for ( const auto &c : std::as_const( allowedColumns ) )
801 {
802 if ( ! c.attribute().isEmpty() && ! columnAttributesMap.contains( c.attribute() ) )
803 {
804 columnAttributesMap[ c.attribute() ] = QSet<QString>();
805 const QgsExpression columnExp { c.attribute() };
806 const auto constRefs { columnExp.findNodes<QgsExpressionNodeColumnRef>() };
807 for ( const auto &cref : constRefs )
808 {
809 columnAttributesMap[ c.attribute() ].insert( cref->name() );
810 allowedAttributes.insert( cref->name() );
811 }
812 }
813 }
814
815 const QStringList filteredAttributes { layout()->renderContext().featureFilterProvider()->layerAttributes( source, allowedAttributes.values() ) };
816 const QSet<QString> filteredAttributesSet( filteredAttributes.constBegin(), filteredAttributes.constEnd() );
817 if ( filteredAttributesSet != allowedAttributes )
818 {
819 const auto forbidden { allowedAttributes.subtract( filteredAttributesSet ) };
820 allowedColumns.erase( std::remove_if( allowedColumns.begin(), allowedColumns.end(), [ &columnAttributesMap, &forbidden ]( QgsLayoutTableColumn & c ) -> bool
821 {
822 for ( const auto &f : std::as_const( forbidden ) )
823 {
824 if ( columnAttributesMap[ c.attribute() ].contains( f ) )
825 {
826 return true;
827 }
828 }
829 return false;
830 } ), allowedColumns.end() );
831
832 }
833 }
834
835 return allowedColumns;
836}
837#endif
838
840{
841 switch ( mSource )
842 {
844 return mLayout->reportContext().layer();
846 {
847 if ( mDataDefinedVectorLayer )
848 return mDataDefinedVectorLayer;
849 else
850 return mVectorLayer.get();
851 }
853 {
854 QgsRelation relation = mLayout->project()->relationManager()->relation( mRelationId );
855 return relation.referencingLayer();
856 }
857 }
858 return nullptr;
859}
860
861void QgsLayoutItemAttributeTable::removeLayer( const QString &layerId )
862{
863 if ( mVectorLayer && mSource == QgsLayoutItemAttributeTable::LayerAttributes )
864 {
865 if ( layerId == mVectorLayer->id() )
866 {
867 mVectorLayer.setLayer( nullptr );
868 //remove existing columns
869 mColumns.clear();
870 }
871 }
872}
873
874void QgsLayoutItemAttributeTable::setWrapString( const QString &wrapString )
875{
876 if ( wrapString == mWrapString )
877 {
878 return;
879 }
880
881 mWrapString = wrapString;
883 emit changed();
884}
885
886bool QgsLayoutItemAttributeTable::writePropertiesToElement( QDomElement &tableElem, QDomDocument &doc, const QgsReadWriteContext &context ) const
887{
888 if ( !QgsLayoutTable::writePropertiesToElement( tableElem, doc, context ) )
889 return false;
890
891 tableElem.setAttribute( QStringLiteral( "source" ), QString::number( static_cast< int >( mSource ) ) );
892 tableElem.setAttribute( QStringLiteral( "relationId" ), mRelationId );
893 tableElem.setAttribute( QStringLiteral( "showUniqueRowsOnly" ), mShowUniqueRowsOnly );
894 tableElem.setAttribute( QStringLiteral( "showOnlyVisibleFeatures" ), mShowOnlyVisibleFeatures );
895 tableElem.setAttribute( QStringLiteral( "filterToAtlasIntersection" ), mFilterToAtlasIntersection );
896 tableElem.setAttribute( QStringLiteral( "maxFeatures" ), mMaximumNumberOfFeatures );
897 tableElem.setAttribute( QStringLiteral( "filterFeatures" ), mFilterFeatures ? QStringLiteral( "true" ) : QStringLiteral( "false" ) );
898 tableElem.setAttribute( QStringLiteral( "featureFilter" ), mFeatureFilter );
899 tableElem.setAttribute( QStringLiteral( "wrapString" ), mWrapString );
900 tableElem.setAttribute( QStringLiteral( "useConditionalStyling" ), mUseConditionalStyling );
901
902 if ( mMap )
903 {
904 tableElem.setAttribute( QStringLiteral( "mapUuid" ), mMap->uuid() );
905 }
906
907 if ( mVectorLayer )
908 {
909 tableElem.setAttribute( QStringLiteral( "vectorLayer" ), mVectorLayer.layerId );
910 tableElem.setAttribute( QStringLiteral( "vectorLayerName" ), mVectorLayer.name );
911 tableElem.setAttribute( QStringLiteral( "vectorLayerSource" ), mVectorLayer.source );
912 tableElem.setAttribute( QStringLiteral( "vectorLayerProvider" ), mVectorLayer.provider );
913 }
914 return true;
915}
916
917bool QgsLayoutItemAttributeTable::readPropertiesFromElement( const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context )
918{
919 if ( QgsVectorLayer *prevLayer = sourceLayer() )
920 {
921 //disconnect from previous layer
923 }
924
925 if ( !QgsLayoutTable::readPropertiesFromElement( itemElem, doc, context ) )
926 return false;
927
928 mSource = QgsLayoutItemAttributeTable::ContentSource( itemElem.attribute( QStringLiteral( "source" ), QStringLiteral( "0" ) ).toInt() );
929 mRelationId = itemElem.attribute( QStringLiteral( "relationId" ), QString() );
930
932 {
933 mCurrentAtlasLayer = mLayout->reportContext().layer();
934 }
935
936 mShowUniqueRowsOnly = itemElem.attribute( QStringLiteral( "showUniqueRowsOnly" ), QStringLiteral( "0" ) ).toInt();
937 mShowOnlyVisibleFeatures = itemElem.attribute( QStringLiteral( "showOnlyVisibleFeatures" ), QStringLiteral( "1" ) ).toInt();
938 mFilterToAtlasIntersection = itemElem.attribute( QStringLiteral( "filterToAtlasIntersection" ), QStringLiteral( "0" ) ).toInt();
939 mFilterFeatures = itemElem.attribute( QStringLiteral( "filterFeatures" ), QStringLiteral( "false" ) ) == QLatin1String( "true" );
940 mFeatureFilter = itemElem.attribute( QStringLiteral( "featureFilter" ), QString() );
941 mMaximumNumberOfFeatures = itemElem.attribute( QStringLiteral( "maxFeatures" ), QStringLiteral( "5" ) ).toInt();
942 mWrapString = itemElem.attribute( QStringLiteral( "wrapString" ) );
943 mUseConditionalStyling = itemElem.attribute( QStringLiteral( "useConditionalStyling" ), QStringLiteral( "0" ) ).toInt();
944
945 //map
946 mMapUuid = itemElem.attribute( QStringLiteral( "mapUuid" ) );
947 if ( mMap )
948 {
951 mMap = nullptr;
952 }
953 // setting new mMap occurs in finalizeRestoreFromXml
954
955 //vector layer
956 QString layerId = itemElem.attribute( QStringLiteral( "vectorLayer" ) );
957 QString layerName = itemElem.attribute( QStringLiteral( "vectorLayerName" ) );
958 QString layerSource = itemElem.attribute( QStringLiteral( "vectorLayerSource" ) );
959 QString layerProvider = itemElem.attribute( QStringLiteral( "vectorLayerProvider" ) );
960 mVectorLayer = QgsVectorLayerRef( layerId, layerName, layerSource, layerProvider );
961 mVectorLayer.resolveWeakly( mLayout->project() );
962
963 //connect to new layer
964 if ( QgsVectorLayer *newLayer = sourceLayer() )
966
968
969 emit changed();
970 return true;
971}
972
974{
975 if ( source == mSource )
976 {
977 return;
978 }
979
980 QgsVectorLayer *prevLayer = sourceLayer();
981 mSource = source;
982 QgsVectorLayer *newLayer = sourceLayer();
983
984 if ( newLayer != prevLayer )
985 {
986 //disconnect from previous layer
987 if ( prevLayer )
988 {
990 }
991
992 //connect to new layer
995 {
996 mCurrentAtlasLayer = newLayer;
997 }
998
999 //layer has changed as a result of the source change, so reset column list
1000 resetColumns();
1001 }
1002
1004 emit changed();
1005}
@ ExactIntersect
Use exact geometry intersection (slower) instead of bounding boxes.
@ NoFlags
No flags are set.
@ Reverse
Reverse/inverse transform (from destination to source)
QString valueAsString(int key, const QgsExpressionContext &context, const QString &defaultString=QString(), bool *ok=nullptr) const
Calculates the current value of the property with the specified key and interprets it as a string.
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QgsFieldFormatterRegistry * fieldFormatterRegistry()
Gets the registry of available field formatters.
The QgsConditionalLayerStyles class holds conditional style information for a layer.
QgsConditionalStyles rowStyles() const
Returns a list of row styles associated with the layer.
QList< QgsConditionalStyle > fieldStyles(const QString &fieldName) const
Returns the conditional styles set for the field with matching fieldName.
Conditional styling for a rule.
static QgsConditionalStyle compressStyles(const QList< QgsConditionalStyle > &styles)
Compress a list of styles into a single style.
static QList< QgsConditionalStyle > matchingConditionalStyles(const QList< QgsConditionalStyle > &styles, const QVariant &value, QgsExpressionContext &context)
Find and return the matching styles for the value and feature.
QFont font() const
The font for the style.
bool isValid() const
isValid Check if this rule is valid.
Class for doing transforms between two map coordinate systems.
void setBallparkTransformsAreAppropriate(bool appropriate)
Sets whether approximate "ballpark" results are appropriate for this coordinate transform.
QgsRectangle transformBoundingBox(const QgsRectangle &rectangle, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool handle180Crossover=false) const
Transforms a rectangle from the source CRS to the destination CRS.
Custom exception class for Coordinate Reference System related exceptions.
Holder for the widget type and its configuration for a field.
QVariantMap config() const
virtual QgsExpressionContext createExpressionContext() const =0
This method needs to be reimplemented in all classes which implement this interface and return an exp...
Single scope for storing variables and functions for use within a QgsExpressionContext.
void addVariable(const QgsExpressionContextScope::StaticVariable &variable)
Adds a variable into the context scope.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsExpressionContextScope * lastScope()
Returns the last scope added to the context.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the context.
An expression node which takes it value from a feature's field.
Class for parsing and evaluation of expressions (formerly called "search strings").
QList< const T * > findNodes() const
Returns a list of all nodes of the given class which are used in this expression.
virtual QStringList layerAttributes(const QgsVectorLayer *layer, const QStringList &attributes) const =0
Returns the list of visible attribute names from a list of attributes names for the given layer.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFlags(Qgis::FeatureRequestFlags flags)
Sets flags that affect how features will be fetched.
QgsFeatureRequest & addOrderBy(const QString &expression, bool ascending=true)
Adds a new OrderByClause, appending it as the least important one.
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
QgsFeatureRequest & setExpressionContext(const QgsExpressionContext &context)
Sets the expression context used to evaluate filter expressions.
QgsFeatureRequest & setFilterFid(QgsFeatureId fid)
Sets the feature ID that should be fetched.
QgsFeatureRequest & setFilterRect(const QgsRectangle &rectangle)
Sets the rectangle from which features will be taken.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsAttributes attributes
Definition qgsfeature.h:67
QgsFeatureId id
Definition qgsfeature.h:66
QgsGeometry geometry
Definition qgsfeature.h:69
bool hasGeometry() const
Returns true if the feature has an associated geometry.
QgsFieldFormatter * fieldFormatter(const QString &id) const
Gets a field formatter by its id.
A field formatter helps to handle and display values for a field.
virtual QVariant createCache(QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config) const
Create a cache for a given field.
virtual QString representValue(QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value) const
Create a pretty String representation of the value.
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:53
QString name
Definition qgsfield.h:62
QgsEditorWidgetSetup editorWidgetSetup() const
Gets the editor widget setup for the field.
Definition qgsfield.cpp:739
Container of fields for a vector layer.
Definition qgsfields.h:46
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
static QString resolveFontStyleName(const QFont &font)
Attempts to resolve the style name corresponding to the specified font object.
static void setFontFamily(QFont &font, const QString &family)
Sets the family for a font object.
A geometry is the spatial representation of a feature.
static QgsGeometry fromQPolygonF(const QPolygonF &polygon)
Construct geometry from a QPolygonF.
Qgis::GeometryOperationResult transform(const QgsCoordinateTransform &ct, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool transformZ=false)
Transforms this geometry as described by the coordinate transform ct.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
A layout table subclass that displays attributes from a vector layer.
void resetColumns()
Resets the attribute table's columns to match the vector layer's fields.
QString wrapString() const
Returns the string used to wrap the contents of the table cells by.
bool readPropertiesFromElement(const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context) override
Sets multiframe state from a DOM element.
ContentSource
Specifies the content source for the attribute table.
@ AtlasFeature
Table shows attributes from the current atlas feature.
@ RelationChildren
Table shows attributes from related child features.
@ LayerAttributes
Table shows attributes from features in a vector layer.
QgsVectorLayer * sourceLayer() const
Returns the source layer for the table, considering the table source mode.
void setDisplayedFields(const QStringList &fields, bool refresh=true)
Sets the attributes to display in the table.
void setUseConditionalStyling(bool enabled)
Sets whether the attribute table will be rendered using the conditional styling properties of the lin...
void setRelationId(const QString &id)
Sets the relation id from which to display child features.
void setMaximumNumberOfFeatures(int features)
Sets the maximum number of features shown by the table.
void setDisplayOnlyVisibleFeatures(bool visibleOnly)
Sets the attribute table to only show features which are visible in a map item.
void setFeatureFilter(const QString &expression)
Sets the expression used for filtering features in the table.
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
void finalizeRestoreFromXml() override
Called after all pending items have been restored from XML.
bool useConditionalStyling() const
Returns true if the attribute table will be rendered using the conditional styling properties of the ...
ContentSource source() const
Returns the source for attributes shown in the table body.
int type() const override
Returns unique multiframe type id.
QgsConditionalStyle conditionalCellStyle(int row, int column) const override
Returns the conditional style to use for the cell at row, column.
QgsExpressionContextScope * scopeForCell(int row, int column) const override
Creates a new QgsExpressionContextScope for the cell at row, column.
void refreshDataDefinedProperty(QgsLayoutObject::DataDefinedProperty property=QgsLayoutObject::DataDefinedProperty::AllProperties) override
Refreshes a data defined property for the multi frame by reevaluating the property's value and redraw...
void setFilterFeatures(bool filter)
Sets whether the feature filter is active for the attribute table.
QgsLayoutItemMap * map() const
Returns the layout map whose extents are controlling the features shown in the table.
void setUniqueRowsOnly(bool uniqueOnly)
Sets attribute table to only show unique rows.
QString relationId() const
Returns the relation id which the table displays child features from.
void setWrapString(const QString &wrapString)
Sets a string to wrap the contents of the table cells by.
QIcon icon() const override
Returns the item's icon.
void setMap(QgsLayoutItemMap *map)
Sets a layout map to use to limit the extent of features shown in the attribute table.
void setFilterToAtlasFeature(bool filterToAtlas)
Sets attribute table to only show features which intersect the current atlas feature.
QString displayName() const override
Returns the multiframe display name.
bool writePropertiesToElement(QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context) const override
Stores multiframe state within an XML DOM element.
bool getTableContents(QgsLayoutTableContents &contents) override
Queries the attribute table's vector layer for attributes to show in the table.
QgsLayoutItemAttributeTable(QgsLayout *layout)
Constructor for QgsLayoutItemAttributeTable, attached to the specified layout.
QgsTextFormat textFormatForCell(int row, int column) const override
Returns the text format to use for the cell at the specified row and column.
static QgsLayoutItemAttributeTable * create(QgsLayout *layout)
Returns a new QgsLayoutItemAttributeTable for the specified parent layout.
void setVectorLayer(QgsVectorLayer *layer)
Sets the vector layer from which to display feature attributes.
void setSource(ContentSource source)
Sets the source for attributes to show in table body.
Layout graphical items for displaying a map.
void extentChanged()
Emitted when the map's extent changes.
void mapRotationChanged(double newRotation)
Emitted when the map's rotation changes.
@ LayoutAttributeTable
Attribute table.
virtual void finalizeRestoreFromXml()
Called after all pending items have been restored from XML.
virtual void refreshDataDefinedProperty(QgsLayoutObject::DataDefinedProperty property=QgsLayoutObject::DataDefinedProperty::AllProperties)
Refreshes a data defined property for the multi frame by reevaluating the property's value and redraw...
QgsPropertyCollection mDataDefinedProperties
const QgsLayout * layout() const
Returns the layout the object is attached to.
void changed()
Emitted when the object's properties change.
QPointer< QgsLayout > mLayout
DataDefinedProperty
Data defined properties for different item types.
@ AttributeTableSourceLayer
Attribute table source layer.
@ AllProperties
All properties for item.
QgsFeatureFilterProvider * featureFilterProvider() const
Returns the (possibly nullptr) feature filter provider.
void layerChanged(QgsVectorLayer *layer)
Emitted when the context's layer is changed.
Stores properties of a column for a QgsLayoutTable.
void setAttribute(const QString &attribute)
Sets the attribute name or expression used for the column's values.
void setHeading(const QString &heading)
Sets the heading for a column, which is the value displayed in the column's header cell.
A class to display a table in the print layout, and allow the table to span over multiple frames.
virtual void refreshAttributes()
Refreshes the contents shown in the table by querying for new data.
void recalculateTableSize()
Recalculates and updates the size of the table and all table frames.
virtual QgsExpressionContextScope * scopeForCell(int row, int column) const
Creates a new QgsExpressionContextScope for the cell at row, column.
bool contentsContainsRow(const QgsLayoutTableContents &contents, const QgsLayoutTableRow &row) const
Checks whether a table contents contains a given row.
QgsLayoutTableColumns mColumns
Columns to show in table.
QgsTextFormat mContentTextFormat
bool writePropertiesToElement(QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context) const override
Stores multiframe state within an XML DOM element.
QgsLayoutTableSortColumns mSortColumns
Columns to sort the table.
bool readPropertiesFromElement(const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context) override
Sets multiframe state from a DOM element.
QgsLayoutTableContents & contents()
Returns the current contents of the table.
void refresh() override
static QgsMapLayer * mapLayerFromString(const QString &string, QgsProject *project)
Resolves a string into a map layer from a given project.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition qgslayout.h:49
QgsLayoutRenderContext & renderContext()
Returns a reference to the layout's render context, which stores information relating to the current ...
QgsCoordinateReferenceSystem crs
Definition qgsmaplayer.h:83
QString id
Definition qgsmaplayer.h:79
void layerModified()
Emitted when modifications has been done on layer.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition qgsproject.h:107
void layerWillBeRemoved(const QString &layerId)
Emitted when a layer is about to be removed from the registry.
The class is used as a container of context for various read/write operations on other objects.
A rectangle specified with double values.
bool isNull() const
Test if the rectangle is null (holding no spatial information).
QgsRectangle intersect(const QgsRectangle &rect) const
Returns the intersection with the given rectangle.
Represents a relationship between two vector layers.
Definition qgsrelation.h:44
QgsVectorLayer * referencingLayer
Definition qgsrelation.h:48
QgsFeatureRequest getRelatedFeaturesRequest(const QgsFeature &feature) const
Creates a request to return all the features on the referencing (child) layer which have a foreign ke...
Container for all settings relating to text rendering.
void setFont(const QFont &font)
Sets the font used for rendering text.
void setForcedItalic(bool forced)
Sets whether the format is set to force an italic style.
void setForcedBold(bool forced)
Sets whether the format is set to force a bold style.
QFont font() const
Returns the font used for rendering text.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
Represents a vector layer which manages a vector based data sets.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
QgsConditionalLayerStyles * conditionalStyles() const
Returns the conditional styles that are set for this layer.
QVector< QgsLayoutTableColumn > QgsLayoutTableColumns
List of column definitions for a QgsLayoutTable.
QVector< QgsLayoutTableRow > QgsLayoutTableContents
List of QgsLayoutTableRows, representing rows and column cell contents for a QgsLayoutTable.
QVector< QVariant > QgsLayoutTableRow
List of QVariants, representing a the contents of a single row in a QgsLayoutTable.
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
_LayerRef< QgsVectorLayer > QgsVectorLayerRef
Single variable definition for use within a QgsExpressionContextScope.
TYPE * resolveWeakly(const QgsProject *project, MatchType matchType=MatchType::All)
Resolves the map layer by attempting to find a matching layer in a project using a weak match.
QString source
Weak reference to layer public source.
QString name
Weak reference to layer name.
TYPE * get() const
Returns a pointer to the layer, or nullptr if the reference has not yet been matched to a layer.
QString provider
Weak reference to layer provider.
void setLayer(TYPE *l)
Sets the reference to point to a specified layer.
QString layerId
Original layer ID.