1 /****************************************************************************
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
6 ** This file is part of the QtQml module of the Qt Toolkit.
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
40 ****************************************************************************/
42 #ifndef QQMLCOMPONENT_H
43 #define QQMLCOMPONENT_H
45 #include <QtQml/qqml.h>
46 #include <QtQml/qqmlerror.h>
48 #include <QtCore/qobject.h>
49 #include <QtCore/qstring.h>
50 #include <QtQml/qjsvalue.h>
62 class QQmlCompiledData;
63 class QQmlComponentPrivate;
64 class QQmlComponentAttached;
66 class Q_QML_EXPORT QQmlComponent : public QObject
69 Q_DECLARE_PRIVATE(QQmlComponent)
71 Q_PROPERTY(qreal progress READ progress NOTIFY progressChanged)
72 Q_PROPERTY(Status status READ status NOTIFY statusChanged)
73 Q_PROPERTY(QUrl url READ url CONSTANT)
76 QQmlComponent(QObject *parent = 0);
77 QQmlComponent(QQmlEngine *, QObject *parent=0);
78 QQmlComponent(QQmlEngine *, const QString &fileName, QObject *parent = 0);
79 QQmlComponent(QQmlEngine *, const QUrl &url, QObject *parent = 0);
80 virtual ~QQmlComponent();
83 enum Status { Null, Ready, Loading, Error };
84 Status status() const;
89 bool isLoading() const;
91 QList<QQmlError> errors() const;
92 Q_INVOKABLE QString errorString() const;
94 qreal progress() const;
98 virtual QObject *create(QQmlContext *context = 0);
99 virtual QObject *beginCreate(QQmlContext *);
100 virtual void completeCreate();
102 void create(QQmlIncubator &, QQmlContext *context = 0,
103 QQmlContext *forContext = 0);
105 QQmlContext *creationContext() const;
107 static QQmlComponentAttached *qmlAttachedProperties(QObject *);
110 void loadUrl(const QUrl &url);
111 void setData(const QByteArray &, const QUrl &baseUrl);
114 void statusChanged(QQmlComponent::Status);
115 void progressChanged(qreal);
118 QQmlComponent(QQmlComponentPrivate &dd, QObject* parent);
119 Q_INVOKABLE void createObject(QQmlV8Function *);
120 Q_INVOKABLE void incubateObject(QQmlV8Function *);
123 QQmlComponent(QQmlEngine *, QQmlCompiledData *, int, QObject *parent);
125 Q_DISABLE_COPY(QQmlComponent)
126 friend class QQmlVME;
127 friend class QQmlTypeData;
132 Q_DECLARE_METATYPE(QQmlComponent::Status)
133 QML_DECLARE_TYPE(QQmlComponent)
134 QML_DECLARE_TYPEINFO(QQmlComponent, QML_HAS_ATTACHED_PROPERTIES)
138 #endif // QQMLCOMPONENT_H