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 QQMLIMPORT_P_H
43 #define QQMLIMPORT_P_H
45 #include <QtCore/qurl.h>
46 #include <QtCore/qcoreapplication.h>
47 #include <QtCore/qset.h>
48 #include <QtCore/qstringlist.h>
49 #include <private/qqmldirparser_p.h>
50 #include <private/qqmlscript_p.h>
51 #include <private/qqmlmetatype_p.h>
57 // This file is not part of the Qt API. It exists purely as an
58 // implementation detail. This header file may change from version to
59 // version without notice, or even be removed.
66 class QQmlTypeNameCache;
69 class QQmlImportedNamespace;
70 class QQmlImportsPrivate;
71 class QQmlImportDatabase;
74 // Exported for QtQuick1
75 class Q_QML_EXPORT QQmlImports
78 QQmlImports(QQmlTypeLoader *);
79 QQmlImports(const QQmlImports &);
81 QQmlImports &operator=(const QQmlImports &);
83 void setBaseUrl(const QUrl &url, const QString &urlString = QString());
86 bool resolveType(const QString& type,
87 QQmlType** type_return, QString* url_return,
88 int *version_major, int *version_minor,
89 QQmlImportedNamespace** ns_return,
90 QList<QQmlError> *errors = 0) const;
91 bool resolveType(QQmlImportedNamespace*,
93 QQmlType** type_return, QString* url_return,
94 int *version_major, int *version_minor) const;
96 bool addImport(QQmlImportDatabase *,
97 const QString& uri, const QString& prefix, int vmaj, int vmin,
98 QQmlScript::Import::Type importType,
99 const QQmlDirComponents &qmldircomponentsnetwork,
100 QList<QQmlError> *errors);
102 void populateCache(QQmlTypeNameCache *cache, QQmlEngine *) const;
104 struct ScriptReference
111 QList<ScriptReference> resolvedScripts() const;
114 friend class QQmlImportDatabase;
115 QQmlImportsPrivate *d;
118 class QQmlImportDatabase
120 Q_DECLARE_TR_FUNCTIONS(QQmlImportDatabase)
122 QQmlImportDatabase(QQmlEngine *);
123 ~QQmlImportDatabase();
125 bool importPlugin(const QString &filePath, const QString &uri, QList<QQmlError> *errors);
127 QStringList importPathList() const;
128 void setImportPathList(const QStringList &paths);
129 void addImportPath(const QString& dir);
131 QStringList pluginPathList() const;
132 void setPluginPathList(const QStringList &paths);
133 void addPluginPath(const QString& path);
136 friend class QQmlImportsPrivate;
137 QString resolvePlugin(QQmlTypeLoader *typeLoader,
138 const QString &qmldirPath, const QString &qmldirPluginPath,
139 const QString &baseName, const QStringList &suffixes,
140 const QString &prefix = QString());
141 QString resolvePlugin(QQmlTypeLoader *typeLoader,
142 const QString &qmldirPath, const QString &qmldirPluginPath,
143 const QString &baseName);
147 QStringList filePluginPath;
148 QStringList fileImportPath;
150 QSet<QString> initializedPlugins;
156 #endif // QQMLIMPORT_P_H