QGIS API Documentation  2.0.1-Dufour
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 <QMap>
23 #include <QDomNode>
24 
25 class QgsPluginLayer;
26 
32 class CORE_EXPORT QgsPluginLayerType
33 {
34  public:
35 
36  QgsPluginLayerType( QString name );
37  virtual ~QgsPluginLayerType();
38 
39  QString name();
40 
42  virtual QgsPluginLayer* createLayer();
43 
45  virtual bool showLayerProperties( QgsPluginLayer* layer );
46 
47  protected:
48  QString mName;
49 };
50 
51 //=============================================================================
52 
58 class CORE_EXPORT QgsPluginLayerRegistry
59 {
60  public:
61 
63  static QgsPluginLayerRegistry* instance();
64 
66 
68  bool addPluginLayerType( QgsPluginLayerType* pluginLayerType );
69 
71  bool removePluginLayerType( QString typeName );
72 
74  QgsPluginLayerType* pluginLayerType( QString typeName );
75 
77  QgsPluginLayer* createLayer( QString typeName );
78 
79  private:
80 
81  typedef QMap<QString, QgsPluginLayerType*> PluginLayerTypes;
82 
85 
88 
90 };
91 
92 #endif // QGSPLUGINLAYERREGSITRY_H