QGIS API Documentation 4.1.0-Master (60fea48833c)
Loading...
Searching...
No Matches
qgs3dsymbolregistry.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgs3dsymbolregistry.cpp
3 --------------------------------------
4 Date : July 2020
5 Copyright : (C) 2020 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#include "qgs3dsymbolregistry.h"
17
18#include "qgsabstract3dsymbol.h"
19
20#include <QString>
21
22using namespace Qt::StringLiterals;
23
26
28{
29 qDeleteAll( mMetadata );
30}
31
33{
34 if ( !metadata || mMetadata.contains( metadata->type() ) )
35 return false;
36
37 mMetadata[metadata->type()] = metadata;
38 return true;
39}
40
42{
43 if ( !mMetadata.contains( type ) )
44 return nullptr;
45
46 return mMetadata[type]->create();
47}
48
50{
51 switch ( type )
52 {
54 return createSymbol( u"point"_s );
56 return createSymbol( u"line"_s );
58 return createSymbol( u"polygon"_s );
59 default:
60 return nullptr;
61 }
62}
63
65{
66 if ( !symbol )
67 return nullptr;
68
69 auto it = mMetadata.constFind( symbol->type() );
70 if ( it == mMetadata.constEnd() )
71 return nullptr;
72
73 return it.value()->createFeatureHandler( layer, symbol );
74}
75
77{
78 return mMetadata.value( type );
79}
80
82{
83 return mMetadata.keys();
84}
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:379
@ Point
Points.
Definition qgis.h:380
@ Line
Lines.
Definition qgis.h:381
@ Polygon
Polygons.
Definition qgis.h:382
Stores metadata about one 3D symbol class.
QString type() const
Returns the unique symbol type string.
QStringList symbolTypes() const
Returns a list of all available symbol types.
QgsAbstract3DSymbol * defaultSymbolForGeometryType(Qgis::GeometryType type)
Creates a new instance of the default 3D symbol for the specified geometry type.
QgsAbstract3DSymbol * createSymbol(const QString &type) const
Creates a new instance of a symbol of the specified type.
Qgs3DSymbolAbstractMetadata * symbolMetadata(const QString &type) const
Returns metadata for specified symbol type. Returns nullptr if not found.
QgsFeature3DHandler * createHandlerForSymbol(QgsVectorLayer *layer, const QgsAbstract3DSymbol *symbol)
Creates a feature handler for a symbol, for the specified vector layer.
bool addSymbolType(Qgs3DSymbolAbstractMetadata *metadata)
Registers a new symbol type. Takes ownership of the metadata instance.
Abstract base class for 3D symbols that are used by VectorLayer3DRenderer objects.
virtual QString type() const =0
Returns identifier of symbol type. Each 3D symbol implementation should return a different type.
Represents a vector layer which manages a vector based dataset.