1 /****************************************************************************
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the tools applications of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
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
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
40 ****************************************************************************/
51 #include <QStringList>
60 Config(const QString
& programName
);
63 void load(const QString
& fileName
);
64 void setStringList(const QString
& var
, const QStringList
& values
);
66 const QString
& programName() const { return prog
; }
67 const Location
& location() const { return loc
; }
68 const Location
& lastLocation() const { return lastLoc
; }
69 bool getBool(const QString
& var
) const;
70 int getInt(const QString
& var
) const;
71 QString
getString(const QString
& var
) const;
72 QSet
<QString
> getStringSet(const QString
& var
) const;
73 QStringList
getStringList(const QString
& var
) const;
74 QRegExp
getRegExp(const QString
& var
) const;
75 QList
<QRegExp
> getRegExpList(const QString
& var
) const;
76 QSet
<QString
> subVars(const QString
& var
) const;
77 QStringList
getAllFiles(const QString
& filesVar
,
78 const QString
& dirsVar
,
79 const QString
& defaultNameFilter
,
80 const QSet
<QString
> &excludedDirs
= QSet
<QString
>());
82 static QStringList
getFilesHere(const QString
& dir
,
83 const QString
& nameFilter
,
84 const QSet
<QString
> &excludedDirs
= QSet
<QString
>());
85 static QString
findFile(const Location
& location
,
86 const QStringList
&files
,
87 const QStringList
& dirs
,
88 const QString
& fileName
,
89 QString
& userFriendlyFilePath
);
90 static QString
findFile(const Location
&location
,
91 const QStringList
&files
,
92 const QStringList
&dirs
,
93 const QString
&fileBase
,
94 const QStringList
&fileExtensions
,
95 QString
&userFriendlyFilePath
);
96 static QString
copyFile(const Location
& location
,
97 const QString
& sourceFilePath
,
98 const QString
& userFriendlySourceFilePath
,
99 const QString
& targetDirPath
);
100 static int numParams(const QString
& value
);
101 static bool removeDirContents(const QString
& dir
);
103 QT_STATIC_CONST QString dot
;
106 static bool isMetaKeyChar(QChar ch
);
107 void load(Location location
, const QString
& fileName
);
112 QMap
<QString
, Location
> locMap
;
113 QMap
<QString
, QStringList
> stringListValueMap
;
114 QMap
<QString
, QString
> stringValueMap
;
116 static QMap
<QString
, QString
> uncompressedFiles
;
117 static QMap
<QString
, QString
> extractedDirs
;
118 static int numInstances
;
121 #define CONFIG_ALIAS "alias"
122 #define CONFIG_BASE "base" // ### don't document for now
123 #define CONFIG_CODEINDENT "codeindent"
124 #define CONFIG_DEFINES "defines"
125 #define CONFIG_DESCRIPTION "description"
126 #define CONFIG_EDITION "edition"
127 #define CONFIG_EXAMPLEDIRS "exampledirs"
128 #define CONFIG_EXAMPLES "examples"
129 #define CONFIG_EXCLUDEDIRS "excludedirs"
130 #define CONFIG_EXTRAIMAGES "extraimages"
131 #define CONFIG_FALSEHOODS "falsehoods"
132 #define CONFIG_FORMATTING "formatting"
133 #define CONFIG_GENERATEINDEX "generateindex"
134 #define CONFIG_HEADERDIRS "headerdirs"
135 #define CONFIG_HEADERS "headers"
136 #define CONFIG_IGNOREDIRECTIVES "ignoredirectives"
137 #define CONFIG_IGNORETOKENS "ignoretokens"
138 #define CONFIG_IMAGEDIRS "imagedirs"
139 #define CONFIG_IMAGES "images"
140 #define CONFIG_INDEXES "indexes"
141 #define CONFIG_LANGUAGE "language"
142 #define CONFIG_MACRO "macro"
143 #define CONFIG_OBSOLETELINKS "obsoletelinks"
144 #define CONFIG_OUTPUTDIR "outputdir"
145 #define CONFIG_OUTPUTLANGUAGE "outputlanguage"
146 #define CONFIG_OUTPUTFORMATS "outputformats"
147 #define CONFIG_PROJECT "project"
148 #define CONFIG_QHP "qhp"
149 #define CONFIG_QUOTINGINFORMATION "quotinginformation"
150 #define CONFIG_SLOW "slow"
151 #define CONFIG_SHOWINTERNAL "showinternal"
152 #define CONFIG_SOURCEDIRS "sourcedirs"
153 #define CONFIG_SOURCES "sources"
154 #define CONFIG_SPURIOUS "spurious"
155 #define CONFIG_STYLESHEETS "stylesheets"
156 #define CONFIG_TABSIZE "tabsize"
157 #define CONFIG_TAGFILE "tagfile"
158 #define CONFIG_TRANSLATORS "translators" // ### don't document for now
159 #define CONFIG_URL "url"
160 #define CONFIG_VERSION "version"
161 #define CONFIG_VERSIONSYM "versionsym"
163 #define CONFIG_FILEEXTENSIONS "fileextensions"
164 #define CONFIG_IMAGEEXTENSIONS "imageextensions"
167 #define CONFIG_QMLONLY "qmlonly"