QGIS API Documentation 3.43.0-Master (58029bba303)
qgsglobematerial.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsglobematerial.h
3 --------------------------------------
4 Date : April 2025
5 Copyright : (C) 2025 by Martin Dobias
6 Email : wonder dot sk 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 QGSGLOBEMATERIAL_H
17#define QGSGLOBEMATERIAL_H
18
19#include "qgis_3d.h"
20#include "qgsmaterial.h"
21
22#include <QObject>
23
24#define SIP_NO_FILE
25
26// adapted from Qt's qtexturematerial.h
27namespace Qt3DRender
28{
29
30 class QFilterKey;
31 class QAbstractTexture;
32 class QTechnique;
33 class QParameter;
34 class QShaderProgram;
35 class QRenderPass;
36
37} // namespace Qt3DRender
38
40
46class _3D_EXPORT QgsGlobeMaterial : public QgsMaterial
47{
48 Q_OBJECT
49 Q_PROPERTY( Qt3DRender::QAbstractTexture *texture READ texture WRITE setTexture NOTIFY textureChanged )
50
51 public:
55 explicit QgsGlobeMaterial( Qt3DCore::QNode *parent = nullptr );
56 ~QgsGlobeMaterial() override;
57
58 Qt3DRender::QAbstractTexture *texture() const;
59
60 public Q_SLOTS:
61
66 void setTexture( Qt3DRender::QAbstractTexture *texture );
67
68 Q_SIGNALS:
69 void textureChanged( Qt3DRender::QAbstractTexture *texture );
70
71 private:
72 void init();
73
74 void handleTextureChanged( const QVariant &var );
75
76 Qt3DRender::QParameter *mTextureParameter = nullptr;
77 Qt3DRender::QParameter *mDiffuseTextureScaleParameter = nullptr;
78 Qt3DRender::QTechnique *mGL3Technique = nullptr;
79 Qt3DRender::QRenderPass *mGL3RenderPass = nullptr;
80 Qt3DRender::QShaderProgram *mGL3Shader = nullptr;
81 Qt3DRender::QFilterKey *mFilterKey = nullptr;
82};
83
85
86#endif // QGSGLOBEMATERIAL_H
Base class for all materials used within QGIS 3D views.
Definition qgsmaterial.h:39