Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include "profilekeywords.h"
using namespace Qt4ProjectManager::Internal;
static const char *const variableKeywords[] = {
"CCFLAG",
"CONFIG",
"DEFINES",
"DEF_FILE",
"DEPENDPATH",
"DEPLOYMENT",
"DESTDIR",
"DESTDIR_TARGET",
"DISTFILES",
"DLLDESTDIR",
"FORMS",
"HEADERS",
"ICON",
"INCLUDEPATH",
"INSTALLS",
"LEXSOURCES",
"LIBS",
"MAKEFILE",
"MOBILITY",
"MOC_DIR",
"OBJECTIVE_HEADERS",
"OBJECTIVE_SOURCES",
"OBJECTS",
"OBJECTS_DIR",
"OBJMOC",
"OTHER_FILES",
"PKGCONFIG",
"POST_TARGETDEPS",
"PRECOMPILED_HEADER",
"PRE_TARGETDEPS",
"QMAKE",
"QMAKESPEC",
"QT",
"RCC_DIR",
"RC_FILE",
"REQUIRES",
"RESOURCES",
"RES_FILE",
"SOURCES",
"SRCMOC",
"STATECHARTS",
"SUBDIRS",
"TARGET",
"TARGET.CAPABILITY",
"TARGET.EPOCHEAPSIZE",
"TARGET.UID3",
"TARGET_EXT",
"TARGET_x",
"TARGET_x.y.z",
"TEMPLATE",
"TRANSLATIONS",
"UI_DIR",
"UI_HEADERS_DIR",
"UI_SOURCES_DIR",
"VER_MAJ",
"VER_MIN",
"VER_PAT",
"VERSION",
"VPATH",
"YACCSOURCES",
0
};
static const char *const functionKeywords[] = {
"basename",
"contains",
"count",
"dirname",
"error",
"exists",
"find",
"for",
"include",
"infile",
"isEmpty",
"join",
"member",
"message",
"prompt",
"quote",
"sprintf",
"system",
"unique",
"warning",
0
};
class ProFileKeywordsImplementation
{
public:
static ProFileKeywordsImplementation *instance();
QStringList variables();
QStringList functions();
bool isVariable(const QString &word);
bool isFunction(const QString &word);
private:
ProFileKeywordsImplementation();
static ProFileKeywordsImplementation *m_instance;
QStringList m_variables;
QStringList m_functions;
};
ProFileKeywordsImplementation *ProFileKeywordsImplementation::m_instance = 0;
ProFileKeywordsImplementation *ProFileKeywordsImplementation::instance()
{
if (!m_instance)
m_instance = new ProFileKeywordsImplementation();
return m_instance;
}
QStringList ProFileKeywordsImplementation::variables()
{
return m_variables;
}
QStringList ProFileKeywordsImplementation::functions()
{
return m_functions;
}
bool ProFileKeywordsImplementation::isVariable(const QString &word)
{
return m_variables.contains(word);
}
bool ProFileKeywordsImplementation::isFunction(const QString &word)
{
return m_functions.contains(word);
}
ProFileKeywordsImplementation::ProFileKeywordsImplementation()
{
for (uint i = 0; i < sizeof variableKeywords / sizeof variableKeywords[0] - 1; i++)
m_variables.append(QLatin1String(variableKeywords[i]));
for (uint i = 0; i < sizeof functionKeywords / sizeof functionKeywords[0] - 1; i++)
m_functions.append(QLatin1String(functionKeywords[i]));
}
ProFileKeywords::ProFileKeywords()
{
}
QStringList ProFileKeywords::variables()
{
return ProFileKeywordsImplementation::instance()->variables();
}
QStringList ProFileKeywords::functions()
{
return ProFileKeywordsImplementation::instance()->functions();
}
bool ProFileKeywords::isVariable(const QString &word)
{
return ProFileKeywordsImplementation::instance()->isVariable(word);
}
bool ProFileKeywords::isFunction(const QString &word)
{
return ProFileKeywordsImplementation::instance()->isFunction(word);
}