QGIS/python/gui/qgslegendinterface.sip

47 lines
1.0 KiB
Plaintext
Raw Normal View History

/**
* \class QgsLegendInterface
* \brief Abstract base class to make QgsLegend available to plugins.
*/
class QgsLegendInterface : QObject
{
%TypeHeaderCode
#include <qgslegendinterface.h>
%End
public:
/** Constructor */
QgsLegendInterface();
/** Virtual destructor */
~QgsLegendInterface();
//! Return a string list of groups
virtual QStringList groups() =0;
//! Return all layers in the project in legend order
//! @note added in 1.5
virtual QList< QgsMapLayer * > layers() const = 0;
signals:
//! emitted when a group index has changed
void groupIndexChanged( int oldIndex, int newIndex );
public slots:
//! Add a new group
virtual int addGroup( QString name, bool expand = true ) =0;
//! Remove group on index
virtual void removeGroup( int groupIndex ) =0;
//! Move a layer to a group
virtual void moveLayer( QgsMapLayer * layer, int groupIndex ) =0;
//! refresh layer symbology
//! \note added in 1.5
virtual void refreshLayerSymbology( QgsMapLayer *layer ) =0;
};