blob: bce35d99dd5c9b6e7a198a9c36725e93ac25d872 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "q3dlight_p.h"
QT_BEGIN_NAMESPACE_DATAVISUALIZATION
/*!
* \class Q3DLight
* \inmodule QtDataVisualization
* \brief Representation of a light source in 3D space.
* \since QtDataVisualization 1.0
*
* Q3DLight represents a monochrome light source in 3D space.
*
* \note Default light has isAutoPosition() \c true.
*/
/*!
* \qmltype Light3D
* \inqmlmodule QtDataVisualization
* \since QtDataVisualization 1.0
* \ingroup datavisualization_qml
* \instantiates Q3DLight
* \brief Representation of a light source in 3D space.
*
* Light3D represents a monochrome light source in 3D space.
*
* \note Default light has autoPosition \c true.
*/
/*!
* \qmlproperty bool Light3D::autoPosition
* \since QtDataVisualization 1.3
* Defines whether the light position follows the camera automatically.
* \note Has no effect if shadows are enabled. Remember to disable shadows before setting light's
* position, or it will be overwritten by automatic positioning if this
* property is \c false.
*/
/*!
* Constructs a new 3D light located at origin. An optional \a parent parameter can be given
* and is then passed to QObject constructor.
*/
Q3DLight::Q3DLight(QObject *parent) :
Q3DObject(parent),
d_ptr(new Q3DLightPrivate(this))
{
}
/*!
* Destroys the light object.
*/
Q3DLight::~Q3DLight()
{
}
/*!
* \property Q3DLight::autoPosition
* \since QtDataVisualization 5.9
* \brief Whether the light position follows the camera automatically.
* \note Has no effect if shadows are enabled. Remember to disable shadows before setting light's
* position, or it will be overwritten by automatic positioning if
* \c isAutoPosition() is \c false.
*/
void Q3DLight::setAutoPosition(bool enabled)
{
if (enabled != d_ptr->m_automaticLight) {
d_ptr->m_automaticLight = enabled;
setDirty(true);
emit autoPositionChanged(enabled);
}
}
bool Q3DLight::isAutoPosition()
{
return d_ptr->m_automaticLight;
}
Q3DLightPrivate::Q3DLightPrivate(Q3DLight *q) :
q_ptr(q),
m_automaticLight(false)
{
}
Q3DLightPrivate::~Q3DLightPrivate()
{
}
void Q3DLightPrivate::sync(Q3DLight &other)
{
if (q_ptr->isDirty()) {
other.setPosition(q_ptr->position());
other.setAutoPosition(q_ptr->isAutoPosition());
q_ptr->setDirty(false);
}
}
QT_END_NAMESPACE_DATAVISUALIZATION