aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quick3dtexturenodeinstance.h
blob: 77a3e32a2a39491eee9153e93c24d5fc8eda4e99 (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
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "objectnodeinstance.h"

namespace QmlDesigner {
namespace Internal {

class Quick3DTextureNodeInstance : public ObjectNodeInstance
{
public:
    using Pointer = QSharedPointer<Quick3DTextureNodeInstance>;
    using WeakPointer = QWeakPointer<Quick3DTextureNodeInstance>;

    static Pointer create(QObject *objectToBeWrapped);

    void setPropertyBinding(const PropertyName &name, const QString &expression) override;
    void resetProperty(const PropertyName &name) override;

protected:
    Quick3DTextureNodeInstance(QObject *item);

private:
    void handleRedrawTimeout();

    bool m_multiPassNeeded = false;
};

} // namespace Internal
} // namespace QmlDesigner