/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (info@qt.nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** 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. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at info@qt.nokia.com. ** **************************************************************************/ #include "declarativewidgetview.h" #include #include #include #include #include namespace QmlDesigner { class DeclarativeWidgetViewPrivate { public: DeclarativeWidgetViewPrivate(DeclarativeWidgetView *view) : q(view), root(0), component(0) {} ~DeclarativeWidgetViewPrivate() { delete root; } void execute(); DeclarativeWidgetView *q; QPointer root; QUrl source; QDeclarativeEngine engine; QDeclarativeComponent *component; }; void DeclarativeWidgetViewPrivate::execute() { if (root) { delete root; root = 0; } if (component) { delete component; component = 0; } if (!source.isEmpty()) { component = new QDeclarativeComponent(&engine, source, q); if (!component->isLoading()) { q->continueExecute(); } else { QObject::connect(component, SIGNAL(statusChanged(QDeclarativeComponent::Status)), q, SLOT(continueExecute())); } } } DeclarativeWidgetView::DeclarativeWidgetView(QWidget *parent) : QWidget(parent), d(new DeclarativeWidgetViewPrivate(this)) { } DeclarativeWidgetView::~DeclarativeWidgetView() { delete d; } QUrl DeclarativeWidgetView::source() const { return d->source; } void DeclarativeWidgetView::setSource(const QUrl& url) { d->source = url; d->execute(); } QDeclarativeEngine* DeclarativeWidgetView::engine() { return &d->engine; } QWidget *DeclarativeWidgetView::rootWidget() const { return d->root; } QDeclarativeContext* DeclarativeWidgetView::rootContext() { return d->engine.rootContext(); } DeclarativeWidgetView::Status DeclarativeWidgetView::status() const { if (!d->component) return DeclarativeWidgetView::Null; return DeclarativeWidgetView::Status(d->component->status()); } void DeclarativeWidgetView::continueExecute() { disconnect(d->component, SIGNAL(statusChanged(QDeclarativeComponent::Status)), this, SLOT(continueExecute())); if (d->component->isError()) { QList errorList = d->component->errors(); foreach (const QDeclarativeError &error, errorList) { qWarning() << error; } emit statusChanged(status()); return; } QObject *obj = d->component->create(); if(d->component->isError()) { QList errorList = d->component->errors(); foreach (const QDeclarativeError &error, errorList) { qWarning() << error; } emit statusChanged(status()); return; } setRootWidget(qobject_cast(obj)); emit statusChanged(status()); } void DeclarativeWidgetView::setRootWidget(QWidget *widget) { if (d->root == widget) return; window()->setAttribute(Qt::WA_OpaquePaintEvent, false); window()->setAttribute(Qt::WA_NoSystemBackground, false); widget->setParent(this); if (isVisible()) { widget->setVisible(true); } resize(widget->size()); d->root = widget; if (d->root) { QSize initialSize = d->root->size(); if (initialSize != size()) { resize(initialSize); } } } } //QmlDesigner