2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2018-07-04 18:53:11 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "objectnodeinstance.h"
|
|
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class Qt3DPresentationNodeInstance : public ObjectNodeInstance
|
|
|
|
|
{
|
|
|
|
|
public:
|
2018-07-31 17:11:50 +02:00
|
|
|
using Pointer = QSharedPointer<Qt3DPresentationNodeInstance>;
|
|
|
|
|
using WeakPointer = QWeakPointer<Qt3DPresentationNodeInstance>;
|
2018-07-04 18:53:11 +02:00
|
|
|
|
|
|
|
|
static Pointer create(QObject *objectToBeWrapped);
|
|
|
|
|
|
|
|
|
|
PropertyNameList ignoredProperties() const override;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Qt3DPresentationNodeInstance(QObject *item);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlDesigner
|