OSDN Git Service

7fe8c651a1e097e576e89f1c372dda7f47e62d78
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / designercore / model / import.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include <QtCore/QHash>
35
36 #include "import.h"
37
38 namespace QmlDesigner {
39
40 Import Import::createLibraryImport(const QString &url, const QString &version, const QString &alias, const QStringList &importPaths)
41 {
42     return Import(url, QString(), version, alias, importPaths);
43 }
44
45 Import Import::createFileImport(const QString &file, const QString &version, const QString &alias, const QStringList &importPaths)
46 {
47     return Import(QString(), file, version, alias, importPaths);
48 }
49
50 Import Import::empty()
51 {
52     return Import(QString(), QString(), QString(), QString(), QStringList());
53 }
54
55 Import::Import(const QString &url, const QString &file, const QString &version, const QString &alias, const QStringList &importPaths):
56         m_url(url),
57         m_file(file),
58         m_version(version),
59         m_alias(alias),
60         m_importPathList(importPaths)
61 {
62 }
63
64 QString Import::toString(bool addSemicolon) const
65 {
66     QString result = QLatin1String("import ");
67
68     if (isFileImport())
69         result += '"' + file() + '"';
70     else if (isLibraryImport())
71         result += url();
72     else
73         return QString();
74
75     if (hasVersion())
76         result += ' ' + version();
77
78     if (hasAlias())
79         result += " as " + alias();
80
81     if (addSemicolon)
82         result += ';';
83
84     return result;
85 }
86
87 bool Import::operator==(const Import &other) const
88 {
89     return url() == other.url() && file() == other.file() && version() == other.version() && alias() == other.alias();
90 }
91
92 uint qHash(const Import &import)
93 {
94     return ::qHash(import.url()) ^ ::qHash(import.file()) ^ ::qHash(import.version()) ^ ::qHash(import.alias());
95 }
96
97 } // namespace QmlDesigner