QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsquantizedmeshterrainsettings.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsquantizedmeshterrainsettings.h
3 --------------------------------------
4 Date : August 2024
5 Copyright : (C) 2024 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#ifndef QGSQUANTIZEDMESHTERRAINSETTINGS_H
17#define QGSQUANTIZEDMESHTERRAINSETTINGS_H
18
19#include "qgis_3d.h"
20#include "qgis_sip.h"
22#include "qgsmaplayerref.h"
23
24class QDomElement;
26class QgsProject;
28
39{
40 public:
45
47 QString type() const final;
48 void readXml( const QDomElement &element, const QgsReadWriteContext &context ) final;
49 void writeXml( QDomElement &element, const QgsReadWriteContext &context ) const final;
50 void resolveReferences( const QgsProject *project ) final;
51 bool equals( const QgsAbstractTerrainSettings *other ) const final;
52 std::unique_ptr<QgsTerrainGenerator> createTerrainGenerator( const Qgs3DRenderContext &context ) const override SIP_SKIP;
53
58 void setLayer( QgsTiledSceneLayer *layer );
59
65 QgsTiledSceneLayer *layer() const;
66
67 private:
68 QgsMapLayerRef mLayer;
69};
70
71
72#endif // QGSQUANTIZEDMESHTERRAINSETTINGS_H
virtual void readXml(const QDomElement &element, const QgsReadWriteContext &context)=0
Reads settings from a DOM element.
virtual void resolveReferences(const QgsProject *project)
After reading settings from XML, resolves references to any layers in a project that have been read a...
virtual std::unique_ptr< QgsTerrainGenerator > createTerrainGenerator(const Qgs3DRenderContext &context) const =0
Creates a new instance of a terrain generator which matches the terrain settings.
virtual QgsAbstractTerrainSettings * clone() const =0
Returns a copy of the terrain settings.
virtual bool equals(const QgsAbstractTerrainSettings *other) const =0
Returns true if this settings is exactly equal to another other settings.
virtual QString type() const =0
Returns the unique type name for the terrain generator.
virtual void writeXml(QDomElement &element, const QgsReadWriteContext &context) const =0
Writes settings to a DOM element.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition qgsproject.h:107
The class is used as a container of context for various read/write operations on other objects.
Represents a map layer supporting display of tiled scene objects.
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_FACTORY
Definition qgis_sip.h:76