summaryrefslogtreecommitdiffstats
path: root/src/core/transforms/qskeleton.h
blob: 528534558e4cdbe764d16ab7aff6de5b6f8ab20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (C) 2017 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 QT3DCORE_QSKELETON_H
#define QT3DCORE_QSKELETON_H

#include <Qt3DCore/qabstractskeleton.h>
#include <Qt3DCore/qjoint.h>
#include <Qt3DCore/qt3dcore_global.h>

QT_BEGIN_NAMESPACE

namespace Qt3DCore {

class QSkeletonPrivate;

class Q_3DCORESHARED_EXPORT QSkeleton : public QAbstractSkeleton
{
    Q_OBJECT
    Q_PROPERTY(Qt3DCore::QJoint* rootJoint READ rootJoint WRITE setRootJoint NOTIFY rootJointChanged)

public:
    QSkeleton(Qt3DCore::QNode *parent = nullptr);
    ~QSkeleton();

    Qt3DCore::QJoint *rootJoint() const;

public Q_SLOTS:
    void setRootJoint(Qt3DCore::QJoint *rootJoint);

Q_SIGNALS:
    void rootJointChanged(Qt3DCore::QJoint *rootJoint);

private:
    Q_DECLARE_PRIVATE(QSkeleton)
};

} // namespace Qt3DCore

QT_END_NAMESPACE

#endif // QT3DCORE_QSKELETON_H