mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
28 lines
760 B
Plaintext
28 lines
760 B
Plaintext
|
|
class QgsPluginLayer : QgsMapLayer
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgspluginlayer.h"
|
|
%End
|
|
|
|
public:
|
|
QgsPluginLayer( const QString& layerType, const QString& layerName = QString() );
|
|
|
|
/** Return plugin layer type (the same as used in QgsPluginLayerRegistry) */
|
|
QString pluginLayerType();
|
|
|
|
/** Set extent of the layer */
|
|
void setExtent( const QgsRectangle &extent );
|
|
|
|
/** Set source string. This is used for example in layer tree to show tooltip.
|
|
* @note added in 2.16
|
|
*/
|
|
void setSource( const QString& source );
|
|
|
|
//! return a list of symbology items for the legend
|
|
//! (default implementation returns nothing)
|
|
//! @note Added in v2.1
|
|
virtual QgsLegendSymbologyList legendSymbologyItems( QSize iconSize );
|
|
|
|
};
|