aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lightmapviewer/lightmapmesh.h
blob: 2b06c10b1432a08d185b61a3f6d5335a32f7e60a (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
43
44
45
46
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef LIGHTMAPMESH_H
#define LIGHTMAPMESH_H

#include <QQuick3DGeometry>

#include <private/qquick3dmodel_p.h>

class LightmapMesh : public QQuick3DGeometry
{
    Q_OBJECT
    Q_PROPERTY(QUrl source READ source WRITE setSource NOTIFY sourceChanged FINAL)
    Q_PROPERTY(QString key READ key WRITE setKey NOTIFY keyChanged FINAL)
    Q_PROPERTY(QQuick3DBounds3 bounds READ bounds NOTIFY boundsChanged)
    QML_ELEMENT

public:
    LightmapMesh(QQuick3DObject *parent = nullptr);
    ~LightmapMesh() override;

    QUrl source() const;
    void setSource(const QUrl &newSource);
    QString key() const;
    void setKey(const QString &newKey);
    const QQuick3DBounds3 &bounds() const;

signals:
    void sourceChanged();
    void keyChanged();
    void boundsChanged();

private:
    void updateData();

    QUrl m_source;
    QString m_key;

    QUrl m_currentlyLoadedSource;
    QString m_currentlyLoadedKey;

    QQuick3DBounds3 m_bounds;
};

#endif // LIGHTMAPMESH_H