summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/core/instances/dummynodeinstance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qmldesigner/core/instances/dummynodeinstance.cpp')
-rw-r--r--src/plugins/qmldesigner/core/instances/dummynodeinstance.cpp121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/core/instances/dummynodeinstance.cpp b/src/plugins/qmldesigner/core/instances/dummynodeinstance.cpp
new file mode 100644
index 0000000000..5c1ba815f0
--- /dev/null
+++ b/src/plugins/qmldesigner/core/instances/dummynodeinstance.cpp
@@ -0,0 +1,121 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** Commercial Usage
+**
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Nokia.
+**
+** GNU Lesser General Public License Usage
+**
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at http://qt.nokia.com/contact.
+**
+**************************************************************************/
+
+#include "dummynodeinstance.h"
+
+#include <QmlMetaType>
+#include <nodemetainfo.h>
+
+#include <invalidnodeinstanceexception.h>
+#include <propertymetainfo.h>
+
+namespace QmlDesigner {
+namespace Internal {
+
+DummyNodeInstance::DummyNodeInstance()
+ : ObjectNodeInstance(0)
+{
+}
+
+DummyNodeInstance::Pointer DummyNodeInstance::create(const NodeMetaInfo & metaInfo, QmlContext *context)
+{
+ Q_UNUSED(context);
+ qWarning() << "DummyNodeInstance created" << metaInfo.typeName();
+ foreach(const NodeMetaInfo &metaInfo, metaInfo.superClasses())
+ qWarning() << "\t" << metaInfo.typeName();
+ return Pointer(new DummyNodeInstance);
+}
+
+void DummyNodeInstance::paint(QPainter * /*painter*/) const
+{
+}
+
+bool DummyNodeInstance::isTopLevel() const
+{
+ return false;
+}
+
+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 QString &/*name*/, const QVariant &/*value*/)
+{
+}
+
+QVariant DummyNodeInstance::property(const QString &/*name*/) const
+{
+ return QVariant();
+}
+
+QStringList DummyNodeInstance::properties()
+{
+ return QStringList();
+}
+
+QStringList DummyNodeInstance::localProperties()
+{
+ return QStringList();
+}
+
+bool DummyNodeInstance::isVisible() const
+{
+ return false;
+}
+
+void DummyNodeInstance::setVisible(bool /*isVisible*/)
+{
+ Q_ASSERT_X(0, Q_FUNC_INFO, "Cannot set a dummy node instance to visible/non-visible");
+ throw InvalidNodeInstanceException(__LINE__, __FUNCTION__, __FILE__);
+}
+
+
+} // namespace Internal
+} // namespace QmlDesigner