QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgspluginlayerregistry.h
Go to the documentation of this file.
1/***************************************************************************
2 qgspluginlayerregistry.cpp - class for
3 registering plugin layer creators
4 -------------------
5 begin : Mon Nov 30 2009
6 copyright : (C) 2009 by Mathias Walker, Sourcepole
7 email : mwa at sourcepole.ch
8 ***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef QGSPLUGINLAYERREGSITRY_H
20#define QGSPLUGINLAYERREGSITRY_H
21
22#include "qgis_core.h"
23#include "qgis_sip.h"
24
25#include <QDomNode>
26#include <QMap>
27
28class QgsPluginLayer;
29
34class CORE_EXPORT QgsPluginLayerType
35{
36 public:
37
38 QgsPluginLayerType( const QString &name );
39 virtual ~QgsPluginLayerType() = default;
40
41 QString name() const;
42
45
49 virtual QgsPluginLayer *createLayer( const QString &uri ) SIP_FACTORY;
50
52 virtual bool showLayerProperties( QgsPluginLayer *layer );
53
54 protected:
55 QString mName;
56};
57
58//=============================================================================
59
67class CORE_EXPORT QgsPluginLayerRegistry
68{
69 public:
70
73
76
80 QStringList pluginLayerTypes();
81
84
86 bool removePluginLayerType( const QString &typeName );
87
89 QgsPluginLayerType *pluginLayerType( const QString &typeName );
90
95 QgsPluginLayer *createLayer( const QString &typeName, const QString &uri = QString() ) SIP_FACTORY;
96
97 private:
98#ifdef SIP_RUN
100#endif
101
102 typedef QMap<QString, QgsPluginLayerType *> PluginLayerTypes;
103
104 PluginLayerTypes mPluginLayerTypes;
105};
106
107#endif // QGSPLUGINLAYERREGSITRY_H
bool addPluginLayerType(QgsPluginLayerType *pluginLayerType)
Add plugin layer type (take ownership) and return true on success.
QgsPluginLayerRegistry()=default
QgsPluginLayerRegistry & operator=(const QgsPluginLayerRegistry &rh)=delete
bool removePluginLayerType(const QString &typeName)
Remove plugin layer type and return true on success.
QStringList pluginLayerTypes()
List all known layer types.
QgsPluginLayerType * pluginLayerType(const QString &typeName)
Returns plugin layer type metadata or nullptr if doesn't exist.
QgsPluginLayerRegistry(const QgsPluginLayerRegistry &rh)=delete
QgsPluginLayer * createLayer(const QString &typeName, const QString &uri=QString())
Returns new layer if corresponding plugin has been found else returns nullptr.
Responsible for creating plugin specific map layers.
virtual bool showLayerProperties(QgsPluginLayer *layer)
Show plugin layer properties dialog. Return false if the dialog cannot be shown.
QgsPluginLayerType(const QString &name)
virtual QgsPluginLayer * createLayer()
Returns new layer of this type. Return nullptr on error.
virtual ~QgsPluginLayerType()=default
Base class for plugin layers.
#define SIP_TRANSFER
Definition qgis_sip.h:36
#define SIP_FACTORY
Definition qgis_sip.h:84