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
|
2012-09-19 15:57:22 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2012-09-19 15:57:22 +02:00
|
|
|
|
|
|
|
|
#include "objectnodeinstance.h"
|
|
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class QmlTransitionNodeInstance : public ObjectNodeInstance
|
|
|
|
|
{
|
|
|
|
|
public:
|
2018-07-31 17:11:50 +02:00
|
|
|
using Pointer = QSharedPointer<QmlTransitionNodeInstance>;
|
|
|
|
|
using WeakPointer = QWeakPointer<QmlTransitionNodeInstance>;
|
2012-09-19 15:57:22 +02:00
|
|
|
|
|
|
|
|
static Pointer create(QObject *objectToBeWrapped);
|
|
|
|
|
|
2015-06-03 15:34:34 +02:00
|
|
|
bool isTransition() const override;
|
2012-09-19 15:57:22 +02:00
|
|
|
|
2015-06-03 15:34:34 +02:00
|
|
|
PropertyNameList ignoredProperties() const override;
|
2014-04-17 17:41:18 +02:00
|
|
|
|
2012-09-19 15:57:22 +02:00
|
|
|
private:
|
2015-05-19 17:06:48 +02:00
|
|
|
QmlTransitionNodeInstance(QObject *transition);
|
2012-09-19 15:57:22 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|