mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Rationale: - there was a lot of large objects passed by value, so potentially there's a speed bump from this - even for implicitly shared classes like QString/QList there's still a (small) cost for copying the objects when there's no reason to - it's the right thing to do!
78 lines
2.8 KiB
Plaintext
78 lines
2.8 KiB
Plaintext
/** \ingroup MapComposer
|
|
* A model that provides group, layer and classification items.
|
|
*/
|
|
class QgsLegendModel : QStandardItemModel
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgslegendmodel.h>
|
|
%End
|
|
|
|
public:
|
|
|
|
enum ItemType
|
|
{
|
|
GroupItem,
|
|
LayerItem,
|
|
ClassificationItem
|
|
};
|
|
|
|
QgsLegendModel();
|
|
~QgsLegendModel();
|
|
|
|
/** Set layers and groups from a layer tree
|
|
* @note added in 2.6
|
|
*/
|
|
void setLayerSetAndGroups( QgsLayerTreeGroup* rootGroup );
|
|
/** Sets layer set and groups
|
|
* @deprecated in 2.6
|
|
*/
|
|
void setLayerSetAndGroups( const QStringList& layerIds, const QList< QPair< QString, QList<QString> > >& groupInfo ) /Deprecated/;
|
|
void setLayerSet( const QStringList& layerIds, double scaleDenominator = -1, const QString& rule = "" );
|
|
/** Adds a group
|
|
@param text name of group (defaults to translation of "Group")
|
|
@param position insertion position (toplevel position (or -1 if it should be placed at the end of the legend).
|
|
@param parentItem parent item
|
|
@returns a pointer to the added group
|
|
*/
|
|
QStandardItem *addGroup( QString text = QString::null, int position = -1, QStandardItem* parentItem = 0 );
|
|
|
|
/** Tries to automatically update a model entry (e.g. a whole layer or only a single item)*/
|
|
void updateItem( QStandardItem* item );
|
|
/** Updates the whole symbology of a layer*/
|
|
void updateLayer( QStandardItem* layerItem );
|
|
/** Tries to update a single classification item*/
|
|
void updateVectorV2ClassificationItem( QStandardItem* classificationItem, QgsSymbolV2* symbol, const QString& itemText );
|
|
|
|
void updateRasterClassificationItem( QStandardItem* classificationItem );
|
|
|
|
/** Update single item text using item userText and other properties like showFeatureCount */
|
|
void updateItemText( QStandardItem* item );
|
|
|
|
|
|
bool writeXML( QDomElement& composerLegendElem, QDomDocument& doc ) const;
|
|
bool readXML( const QDomElement& legendModelElem, const QDomDocument& doc );
|
|
|
|
Qt::DropActions supportedDropActions() const;
|
|
Qt::ItemFlags flags( const QModelIndex &index ) const;
|
|
|
|
/** Implemented to support drag operations*/
|
|
virtual bool removeRows( int row, int count, const QModelIndex & parent = QModelIndex() );
|
|
|
|
/** For the drag operation*/
|
|
QMimeData* mimeData( const QModelIndexList &indexes ) const;
|
|
QStringList mimeTypes() const;
|
|
|
|
/** Implements the drop operation*/
|
|
bool dropMimeData( const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent );
|
|
|
|
void setAutoUpdate( bool autoUpdate );
|
|
bool autoUpdate();
|
|
|
|
public slots:
|
|
void removeLayer( const QString& layerId );
|
|
void addLayer( QgsMapLayer* theMapLayer, double scaleDenominator = -1, const QString& rule = "", QStandardItem* parentItem = 0 );
|
|
|
|
signals:
|
|
void layersChanged();
|
|
};
|