forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
70 lines
1.3 KiB
C++
70 lines
1.3 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "dummynodeinstance.h"
|
|
|
|
namespace QmlDesigner {
|
|
namespace Internal {
|
|
|
|
DummyNodeInstance::DummyNodeInstance()
|
|
: ObjectNodeInstance(new QObject)
|
|
{
|
|
}
|
|
|
|
DummyNodeInstance::Pointer DummyNodeInstance::create()
|
|
{
|
|
return Pointer(new DummyNodeInstance);
|
|
}
|
|
|
|
QRectF DummyNodeInstance::boundingRect() const
|
|
{
|
|
return QRectF();
|
|
}
|
|
|
|
QPointF DummyNodeInstance::position() const
|
|
{
|
|
return QPointF();
|
|
}
|
|
|
|
QSizeF DummyNodeInstance::size() const
|
|
{
|
|
return QSizeF();
|
|
}
|
|
|
|
QTransform DummyNodeInstance::transform() const
|
|
{
|
|
return QTransform();
|
|
}
|
|
|
|
double DummyNodeInstance::opacity() const
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
void DummyNodeInstance::setPropertyVariant(const PropertyName &/*name*/, const QVariant &/*value*/)
|
|
{
|
|
}
|
|
|
|
void DummyNodeInstance::setPropertyBinding(const PropertyName &/*name*/, const QString &/*expression*/)
|
|
{
|
|
|
|
}
|
|
|
|
void DummyNodeInstance::setId(const QString &/*id*/)
|
|
{
|
|
|
|
}
|
|
|
|
QVariant DummyNodeInstance::property(const PropertyName &/*name*/) const
|
|
{
|
|
return QVariant();
|
|
}
|
|
|
|
void DummyNodeInstance::initializePropertyWatcher(const ObjectNodeInstance::Pointer &/*objectNodeInstance*/)
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace QmlDesigner
|