// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DEXTRAS_QPHONGMATERIAL_H #define QT3DEXTRAS_QPHONGMATERIAL_H #include #include #include QT_BEGIN_NAMESPACE namespace Qt3DExtras { class QPhongMaterialPrivate; class Q_3DEXTRASSHARED_EXPORT QPhongMaterial : public Qt3DRender::QMaterial { Q_OBJECT Q_PROPERTY(QColor ambient READ ambient WRITE setAmbient NOTIFY ambientChanged) Q_PROPERTY(QColor diffuse READ diffuse WRITE setDiffuse NOTIFY diffuseChanged) Q_PROPERTY(QColor specular READ specular WRITE setSpecular NOTIFY specularChanged) Q_PROPERTY(float shininess READ shininess WRITE setShininess NOTIFY shininessChanged) public: explicit QPhongMaterial(Qt3DCore::QNode *parent = nullptr); ~QPhongMaterial(); QColor ambient() const; QColor diffuse() const; QColor specular() const; float shininess() const; public Q_SLOTS: void setAmbient(const QColor &ambient); void setDiffuse(const QColor &diffuse); void setSpecular(const QColor &specular); void setShininess(float shininess); Q_SIGNALS: void ambientChanged(const QColor &ambient); void diffuseChanged(const QColor &diffuse); void specularChanged(const QColor &specular); void shininessChanged(float shininess); private: Q_DECLARE_PRIVATE(QPhongMaterial) }; } // namespace Qt3DExtras QT_END_NAMESPACE #endif // QT3DEXTRAS_QPHONGMATERIAL_H