QGIS API Documentation 3.99.0-Master (2fe06baccd8)
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
23
25{
26 qDeleteAll( mMetadata );
27}
28
30{
31 if ( !metadata || mMetadata.contains( metadata->type() ) )
32 return false;
33
34 mMetadata[metadata->type()] = metadata;
35 return true;
36}
37
39{
40 if ( !mMetadata.contains( type ) )
41 return nullptr;
42
43 return mMetadata[type]->create();
44}
45
47{
48 switch ( type )
49 {
51 return createSymbol( QStringLiteral( "point" ) );
53 return createSymbol( QStringLiteral( "line" ) );
55 return createSymbol( QStringLiteral( "polygon" ) );
56 default:
57 return nullptr;
58 }
59}
60
62{
63 if ( !symbol )
64 return nullptr;
65
66 auto it = mMetadata.constFind( symbol->type() );
67 if ( it == mMetadata.constEnd() )
68 return nullptr;
69
70 return it.value()->createFeatureHandler( layer, symbol );
71}
72
74{
75 return mMetadata.value( type );
76}
77
79{
80 return mMetadata.keys();
81}
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:358
@ Point
Points.
Definition qgis.h:359
@ Line
Lines.
Definition qgis.h:360
@ Polygon
Polygons.
Definition qgis.h:361
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.