OSDN Git Service

f1995b745d57eb9a0e0d6a9483fc275601389a8c
[qt-creator-jp/qt-creator-jp.git] / src / libs / qmljs / qmljsicons.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 "qmljsicons.h"
35 #include <QtCore/QDebug>
36 #include <QtCore/QDir>
37 #include <QtCore/QHash>
38 #include <QtCore/QPair>
39
40 using namespace QmlJS;
41 using namespace QmlJS::AST;
42
43 enum {
44     debug = false
45 };
46
47 namespace QmlJS {
48
49 Icons *Icons::m_instance = 0;
50
51 class IconsPrivate
52 {
53 public:
54     QIcon elementIcon;
55     QIcon propertyIcon;
56     QIcon publicMemberIcon;
57     QIcon functionDeclarationIcon;
58     QHash<QPair<QString,QString>,QIcon> iconHash;
59     QString resourcePath;
60 };
61
62 } // namespace QmlJS
63
64 Icons::Icons()
65     : m_d(new IconsPrivate)
66 {
67     m_d->elementIcon = QIcon(QLatin1String(":/qmljs/images/element.png"));
68     m_d->propertyIcon = QIcon(QLatin1String(":/qmljs/images/property.png"));
69     m_d->publicMemberIcon = QIcon(QLatin1String(":/qmljs/images/publicmember.png"));
70     m_d->functionDeclarationIcon = QIcon(QLatin1String(":/qmljs/images/func.png"));
71 }
72
73 Icons::~Icons()
74 {
75     m_instance = 0;
76     delete m_d;
77 }
78
79 Icons *Icons::instance()
80 {
81     if (!m_instance)
82         m_instance = new Icons();
83     return m_instance;
84 }
85
86 void Icons::setIconFilesPath(const QString &iconPath)
87 {
88     if (iconPath == m_d->resourcePath)
89         return;
90
91     m_d->resourcePath = iconPath;
92
93     if (debug)
94         qDebug() << "QmlJSIcons -" << "parsing" << iconPath;
95     QDir topDir(iconPath);
96     foreach (const QFileInfo &subDirInfo, topDir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot)) {
97         if (debug)
98             qDebug() << "QmlJSIcons - parsing" << subDirInfo.absoluteFilePath();
99         const QString packageName = subDirInfo.fileName();
100         QDir subDir(subDirInfo.absoluteFilePath() + QLatin1String("/16x16"));
101         foreach (const QFileInfo &iconFile, subDir.entryInfoList(QDir::Files)) {
102             QIcon icon(iconFile.absoluteFilePath());
103             if (icon.isNull()) {
104                 if (debug)
105                     qDebug() << "QmlJSIcons - skipping" << iconFile.absoluteFilePath();
106                 continue;
107             }
108             if (debug)
109                 qDebug() << "QmlJSIcons - adding" << packageName << iconFile.baseName() << "icon to database";
110             QPair<QString,QString> element(packageName, iconFile.baseName());
111             m_d->iconHash.insert(element, icon);
112         }
113     }
114 }
115
116 QIcon Icons::icon(const QString &packageName, const QString typeName) const
117 {
118     QPair<QString,QString> element(packageName, typeName);
119     if (debug)
120         qDebug() << "QmlJSIcons - icon for" << packageName << typeName << "requested" << m_d->iconHash.contains(element);
121     return m_d->iconHash.value(element);
122 }
123
124 QIcon Icons::icon(Node *node) const
125 {
126     if (dynamic_cast<AST::UiObjectDefinition*>(node)) {
127         return objectDefinitionIcon();
128     }
129     if (dynamic_cast<AST::UiScriptBinding*>(node)) {
130         return scriptBindingIcon();
131     }
132
133     return QIcon();
134 }
135
136 QIcon Icons::objectDefinitionIcon() const
137 {
138     return m_d->elementIcon;
139 }
140
141 QIcon Icons::scriptBindingIcon() const
142 {
143     return m_d->propertyIcon;
144 }
145
146 QIcon Icons::publicMemberIcon() const
147 {
148     return m_d->publicMemberIcon;
149 }
150
151 QIcon Icons::functionDeclarationIcon() const
152 {
153     return m_d->functionDeclarationIcon;
154 }