2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2022-05-16 16:01:16 +03:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
|
|
#include "objectnodeinstance.h"
|
|
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class Quick3DRenderableNodeInstance : public ObjectNodeInstance
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
~Quick3DRenderableNodeInstance() override;
|
|
|
|
|
void initialize(const ObjectNodeInstance::Pointer &objectNodeInstance,
|
|
|
|
|
InstanceContainer::NodeFlags flags) override;
|
|
|
|
|
|
|
|
|
|
QImage renderImage() const override;
|
|
|
|
|
QImage renderPreviewImage(const QSize &previewImageSize) const override;
|
|
|
|
|
|
|
|
|
|
bool isRenderable() const override;
|
|
|
|
|
bool hasContent() const override;
|
|
|
|
|
QRectF boundingRect() const override;
|
|
|
|
|
QRectF contentItemBoundingBox() const override;
|
|
|
|
|
QPointF position() const override;
|
|
|
|
|
QSizeF size() const override;
|
|
|
|
|
|
|
|
|
|
QList<ServerNodeInstance> stateInstances() const override;
|
|
|
|
|
|
|
|
|
|
QQuickItem *contentItem() const override;
|
2022-05-27 14:14:22 +03:00
|
|
|
void setPropertyVariant(const PropertyName &name, const QVariant &value) override;
|
2022-05-16 16:01:16 +03:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
explicit Quick3DRenderableNodeInstance(QObject *node);
|
|
|
|
|
Qt5NodeInstanceServer *qt5NodeInstanceServer() const;
|
|
|
|
|
|
|
|
|
|
QByteArray m_dummyRootViewCreateFunction;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QQuickItem *m_dummyRootView = nullptr;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlDesigner
|