28 : mCurrentSortColumn( 0 )
36 return ( mAscending ?
qgsVariantLessThan( m1[mCurrentSortColumn], m2[mCurrentSortColumn] )
45 , mVectorLayer( nullptr )
46 , mComposerMap( nullptr )
47 , mMaximumNumberOfFeatures( 5 )
48 , mShowOnlyVisibleFeatures( false )
49 , mFilterFeatures( false )
50 , mFeatureFilter(
"" )
55 for ( ; mapIt != layerMap.
constEnd(); ++mapIt )
86 if ( mComposerMap && mComposerMap->
isDrawing() )
99 if ( layer == mVectorLayer )
111 mVectorLayer = layer;
147 if ( map == mComposerMap )
169 if ( features == mMaximumNumberOfFeatures )
174 mMaximumNumberOfFeatures = features;
180 if ( visibleOnly == mShowOnlyVisibleFeatures )
185 mShowOnlyVisibleFeatures = visibleOnly;
191 if ( filter == mFilterFeatures )
196 mFilterFeatures = filter;
202 if ( expression == mFeatureFilter )
207 mFeatureFilter = expression;
213 return fieldsToDisplay().
toSet();
232 for ( ; attIt != attr.
constEnd(); ++attIt )
234 int attrIdx = ( *attIt );
235 if ( !fields.
exists( attrIdx ) )
250 Q_FOREACH (
const QgsField& field, fields )
274 int attrIdx = mVectorLayer->
fieldNameIndex(( *columnIt )->attribute() );
275 fieldAliasMap.
insert( attrIdx, ( *columnIt )->heading() );
290 int attrIdx = mVectorLayer->
fieldNameIndex(( *columnIt )->attribute() );
293 ( *columnIt )->setHeading( map.
value( attrIdx ) );
305 restoreFieldAliasMap( map );
309 QList<int> QgsComposerAttributeTable::fieldsToDisplay()
const 317 int idx = mVectorLayer->
fieldNameIndex(( *columnIt )->attribute() );
331 context->setFields( mVectorLayer->
fields() );
333 attributeMaps.
clear();
337 bool activeFilter =
false;
338 if ( mFilterFeatures && !mFeatureFilter.
isEmpty() )
341 if ( !filterExpression->hasParserError() )
348 if ( mComposerMap && mShowOnlyVisibleFeatures )
368 if ( !selectionRect.
isEmpty() )
377 while ( fit.
nextFeature( f ) && counter < mMaximumNumberOfFeatures )
379 context->setFeature( f );
381 if ( activeFilter && !filterExpression.
isNull() )
383 QVariant result = filterExpression->evaluate( context.
data() );
397 int idx = mVectorLayer->
fieldNameIndex(( *columnIt )->attribute() );
406 context->lastScope()->setVariable(
QString(
"row_number" ), counter + 1 );
420 for (
int i = sortColumns.
size() - 1; i >= 0; --i )
424 qStableSort( attributeMaps.
begin(), attributeMaps.
end(), c );
431 void QgsComposerAttributeTable::removeLayer(
const QString& layerId )
435 if ( layerId == mVectorLayer->
id() )
437 mVectorLayer =
nullptr;
467 for ( ; sortedColumnIt != att.
constEnd(); ++sortedColumnIt )
473 mColumns.
at(( *sortedColumnIt ).first )->setSortByRank( rank );
474 mColumns.
at(( *sortedColumnIt ).first )->setSortOrder(( *sortedColumnIt ).second ? Qt::AscendingOrder : Qt::DescendingOrder );
483 return a.second->sortByRank() < b.second->sortByRank();
494 if (( *columnIt )->sortByRank() > 0 )
496 sortedColumns.
append( qMakePair( idx, *columnIt ) );
507 for ( ; sortedColumnIt != sortedColumns.
constEnd(); ++sortedColumnIt )
510 attributesBySortRank.append( qMakePair(( *sortedColumnIt ).first,
511 ( *sortedColumnIt ).second->sortOrder() == Qt::AscendingOrder ) );
513 return attributesBySortRank;
519 composerTableElem.
setAttribute(
"showOnlyVisibleFeatures", mShowOnlyVisibleFeatures );
520 composerTableElem.
setAttribute(
"maxFeatures", mMaximumNumberOfFeatures );
521 composerTableElem.
setAttribute(
"filterFeatures", mFilterFeatures ?
"true" :
"false" );
522 composerTableElem.
setAttribute(
"featureFilter", mFeatureFilter );
526 composerTableElem.
setAttribute(
"composerMap", mComposerMap->
id() );
534 composerTableElem.
setAttribute(
"vectorLayer", mVectorLayer->
id() );
555 mShowOnlyVisibleFeatures = itemElem.
attribute(
"showOnlyVisibleFeatures",
"1" ).
toInt();
556 mFilterFeatures = itemElem.
attribute(
"filterFeatures",
"false" ) ==
"true" ? true :
false;
557 mFeatureFilter = itemElem.
attribute(
"featureFilter",
"" );
560 int composerMapId = itemElem.
attribute(
"composerMap",
"-1" ).
toInt();
561 if ( composerMapId == -1 )
563 mComposerMap =
nullptr;
572 mComposerMap =
nullptr;
583 if ( layerId ==
"not_existing" )
585 mVectorLayer =
nullptr;
604 if ( !displayAttributeList.
isEmpty() )
608 for (
int i = 0; i < attributeEntryList.
size(); ++i )
614 displayAttributes.
insert( index );
623 if ( !aliasMapNodeList.
isEmpty() )
627 for (
int i = 0; i < aliasMepEntryList.
size(); ++i )
632 fieldAliasMap.
insert( key, value );
634 restoreFieldAliasMap( fieldAliasMap );
639 if ( !sortColumnsElem.
isNull() && mVectorLayer )
644 for (
int i = 0; i < columns.
size(); ++i )
648 Qt::SortOrder order = columnElem.
attribute(
"ascending" ) ==
"true" ? Qt::AscendingOrder : Qt::DescendingOrder;
652 if ( column->
attribute() == fields[attribute].name() )
663 mMaximumNumberOfFeatures = itemElem.
attribute(
"maxFeatures",
"5" ).
toInt();
Class for parsing and evaluation of expressions (formerly called "search strings").
void setSceneRect(const QRectF &rectangle) override
Adapts mMaximumNumberOfFeatures depending on the rectangle height.
Wrapper for iterator of features from vector data provider or vector layer.
QDomNodeList elementsByTagName(const QString &tagname) const
void setAttribute(const QString &attribute)
Sets the attribute name or expression used for the column's values.
A rectangle specified with double values.
Base class for all map layer types.
QgsAttributes attributes() const
Returns the feature's attributes.
void setAscending(bool asc)
Sets sort order for column sorting.
const QgsComposerMap * getComposerMapById(const int id) const
Returns the composer map with specified id.
Q_DECL_DEPRECATED void setSortAttributes(const QList< QPair< int, bool > > &att)
Sets the attributes to use to sort the table's features.
bool contains(const Key &key) const
bool shouldDrawItem() const
Returns whether the item should be drawn in the current context.
Q_DECL_DEPRECATED QVariant evaluate(const QgsFeature *f)
Evaluate the feature and return the result.
QMap< int, QVariant > QgsAttributeMap
QDomNode appendChild(const QDomNode &newChild)
void append(const T &value)
Use exact geometry intersection (slower) instead of bounding boxes.
void push_back(const T &value)
QString attribute(const QString &name, const QString &defValue) const
bool tableWriteXML(QDomElement &itemElem, QDomDocument &doc) const
Writes common table properties to xml for storage.
Q_DECL_DEPRECATED bool prepare(const QgsFields &fields)
Get the expression ready for evaluation - find out column indexes.
bool exists(int i) const
Return if a field index is valid.
void itemChanged()
Emitted when the item changes.
QgsMapLayer * mapLayer(const QString &theLayerId) const
Retrieve a pointer to a registered layer by layer ID.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest())
Query the provider for features specified in request.
void setComposerMap(const QgsComposerMap *map)
Sets the composer map to use to limit the extent of features shown in the attribute table...
const_iterator constEnd() const
const_iterator constBegin() const
const T & at(int i) const
const QgsCoordinateReferenceSystem & crs() const
Returns layer's spatial reference system.
QRectF evalItemRect(const QRectF &newRect, const bool resizeOnly=false, const QgsExpressionContext *context=nullptr)
Evaluates an item's bounding rect to consider data defined position and size of item and reference po...
bool hasCrsTransformEnabled() const
returns true if projections are enabled for this layer set
bool getFeatureAttributes(QList< QgsAttributeMap > &attributeMaps) override
Queries the attribute table's vector layer for attributes to show in the table.
int id() const
Get identification number.
Container of fields for a vector layer.
QMap< QString, QgsMapLayer * > mapLayers() const
Returns a map of all registered layers by layer ID.
QList< QgsComposerTableColumn * > * columns()
Returns a pointer to the list of QgsComposerTableColumns shown in the table.
const_iterator insert(const T &value)
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
bool qgsVariantGreaterThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is greater than the second.
void setDisplayAttributes(const QSet< int > &attr, bool refresh=true)
Sets the attributes to display in the table.
bool disconnect(const QObject *sender, const char *signal, const QObject *receiver, const char *method)
virtual QgsExpressionContext * createExpressionContext() const override
Creates an expression context relating to the item's current state.
bool operator()(const QgsAttributeMap &m1, const QgsAttributeMap &m2)
void setFilterFeatures(bool filter)
Sets whether the feature filter is active for the attribute table.
void setDisplayOnlyVisibleFeatures(bool visibleOnly)
Sets attribute table to only show features which are visible in a composer map item.
bool qgsVariantLessThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is less than the second.
A class to display feature attributes in the print composer.
QgsFields fields() const
Returns the list of fields of this layer.
QDomElement toElement() const
bool readXML(const QDomElement &itemElem, const QDomDocument &doc) override
Reads the properties specific to an attribute table from xml.
QList< QPair< int, bool > > sortAttributes() const
Returns the attributes used to sort the table's features.
const char * name() const
void setVectorLayer(QgsVectorLayer *layer)
Sets the vector layer from which to display feature attributes.
void append(const T &value)
QString id() const
Get this layer's unique ID, this ID is used to access this layer from map layer registry.
void setHeading(const QString &heading)
Sets the heading for a column, which is the value displayed in the columns header cell...
bool isEmpty() const
test if rectangle is empty.
void setAttribute(const QString &name, const QString &value)
int toInt(bool *ok, int base) const
const_iterator constEnd() const
static bool columnsBySortRank(QPair< int, QgsComposerTableColumn * > a, QPair< int, QgsComposerTableColumn * > b)
This class wraps a request for features to a vector layer (or directly its vector data provider)...
void setMaximumNumberOfFeatures(int features)
Sets the maximum number of features shown by the table.
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *itemStyle, QWidget *pWidget) override
Reimplementation of QCanvasItem::paint.
const_iterator constEnd() const
Q_DECL_DEPRECATED void setFieldAliasMap(const QMap< int, QString > &map)
Sets the attribute field aliases, which control how fields are named in the table's header row...
QgsFeatureRequest & setFlags(const QgsFeatureRequest::Flags &flags)
Set flags that affect how features will be fetched.
QgsComposerAttributeTable(QgsComposition *composition)
Encapsulate a field in an attribute table or data source.
Stores properties of a column in a QgsComposerTable.
bool isDrawing() const
True if a draw is already in progress.
Graphics scene for map printing.
const QgsMapSettings & mapSettings() const
Return setting of QGIS map canvas.
void resetColumns()
Resets the attribute table's columns to match the vector layer's fields.
Object representing map window.
QgsComposerAttributeTableCompare()
QList< QgsComposerTableColumn * > mColumns
const_iterator constBegin() const
void setFeatureFilter(const QString &expression)
Sets the expression used for filtering features in the table.
QgsComposition * mComposition
virtual void refreshAttributes()
Refreshes the attributes shown in the table by querying the vector layer for new data.
const T & at(int i) const
const_iterator constBegin() const
static QgsMapLayerRegistry * instance()
Returns the instance pointer, creating the object on the first call.
const QgsComposition * composition() const
Returns the composition the item is attached to.
bool tableReadXML(const QDomElement &itemElem, const QDomDocument &doc)
Reads the table's common properties from xml.
virtual void adjustFrameToSize()
Adapts the size of the frame to match the content.
void setSortOrder(Qt::SortOrder sortOrder)
Sets the sort order for the column.
bool writeXML(QDomElement &elem, QDomDocument &doc) const override
Writes properties specific to attribute tables.
void setSortColumn(int col)
Sets column number to sort by.
QDomElement firstChildElement(const QString &tagName) const
virtual void setSceneRect(const QRectF &rectangle)
Sets this items bound in scene coordinates such that 1 item size units corresponds to 1 scene size un...
QString attribute() const
Returns the attribute name or expression used for the column's values.
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *itemStyle, QWidget *pWidget) override
Reimplementation of QCanvasItem::paint.
~QgsComposerAttributeTable()
QgsAtlasComposition & atlasComposition()
iterator insert(const Key &key, const T &value)
Custom exception class for Coordinate Reference System related exceptions.
Q_DECL_DEPRECATED QSet< int > displayAttributes() const
Returns the attributes fields which are shown by the table.
const_iterator constEnd() const
QDomElement createElement(const QString &tagName)
bool nextFeature(QgsFeature &f)
const_iterator constBegin() const
bool connect(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)
Represents a vector layer which manages a vector based data sets.
QString attributeDisplayName(int attributeIndex) const
Convenience function that returns the attribute alias if defined or the field name else...
Helper class for sorting tables, takes into account sorting column and ascending / descending...
Q_DECL_DEPRECATED QMap< int, QString > fieldAliasMap() const
Returns the attribute field aliases, which control how fields are named in the table's header row...
const QgsRectangle * currentMapExtent() const
Returns a pointer to the current map extent, which is either the original user specified extent or th...
const QgsCoordinateReferenceSystem & destinationCrs() const
returns CRS of destination coordinate reference system
QgsFeatureRequest & setFilterRect(const QgsRectangle &rect)
Set rectangle from which features will be taken.
int fieldNameIndex(const QString &fieldName) const
Returns the index of a field name or -1 if the field does not exist.
void setSortByRank(int sortByRank)
Sets the sort rank for the column.
QDomNode at(int index) const
const T value(const Key &key) const