e5fcad3 by Lars Knoll at 2009-03-23 1
/****************************************************************************
2
**
89c08c0 by Jason McDonald at 2012-01-11 3
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
04e3b30 by Jason McDonald at 2009-09-09 4
** All rights reserved.
858c70f by Jason McDonald at 2009-06-16 5
** Contact: Nokia Corporation (qt-info@nokia.com)
e5fcad3 by Lars Knoll at 2009-03-23 6
**
7
** This file is part of the QtCore module of the Qt Toolkit.
8
**
9
** $QT_BEGIN_LICENSE:LGPL$
10
** GNU Lesser General Public License Usage
1eea52e by Jyri Tahtela at 2011-05-13 11
** This file may be used under the terms of the GNU Lesser General Public
12
** License version 2.1 as published by the Free Software Foundation and
13
** appearing in the file LICENSE.LGPL included in the packaging of this
14
** file. Please review the following information to ensure the GNU Lesser
15
** General Public License version 2.1 requirements will be met:
16
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
e5fcad3 by Lars Knoll at 2009-03-23 17
**
04e3b30 by Jason McDonald at 2009-09-09 18
** In addition, as a special exception, Nokia gives you certain additional
1eea52e by Jyri Tahtela at 2011-05-13 19
** rights. These rights are described in the Nokia Qt LGPL Exception
04e3b30 by Jason McDonald at 2009-09-09 20
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
e5fcad3 by Lars Knoll at 2009-03-23 21
**
1eea52e by Jyri Tahtela at 2011-05-13 22
** GNU General Public License Usage
23
** Alternatively, this file may be used under the terms of the GNU General
24
** Public License version 3.0 as published by the Free Software Foundation
25
** and appearing in the file LICENSE.GPL included in the packaging of this
26
** file. Please review the following information to ensure the GNU General
27
** Public License version 3.0 requirements will be met:
28
** http://www.gnu.org/copyleft/gpl.html.
309db73 by Jason McDonald at 2009-08-31 29
**
1eea52e by Jyri Tahtela at 2011-05-13 30
** Other Usage
31
** Alternatively, this file may be used in accordance with the terms and
32
** conditions contained in a signed written agreement between you and Nokia.
309db73 by Jason McDonald at 2009-08-31 33
**
34
**
35
**
36
**
e5fcad3 by Lars Knoll at 2009-03-23 37
**
38
** $QT_END_LICENSE$
39
**
40
****************************************************************************/
41
42
/* Dialogs */
43
#ifndef QT_NO_COLORDIALOG
44
#  define QT_NO_COLORDIALOG
45
#endif
46
#ifndef QT_NO_FILEDIALOG
47
#  define QT_NO_FILEDIALOG
48
#endif
49
#ifndef QT_NO_FONTDIALOG
50
#  define QT_NO_FONTDIALOG
51
#endif
52
#ifndef QT_NO_INPUTDIALOG
53
#  define QT_NO_INPUTDIALOG
54
#endif
55
#ifndef QT_NO_PRINTDIALOG
56
#  define QT_NO_PRINTDIALOG
57
#endif
58
#ifndef QT_NO_PROGRESSDIALOG
59
#  define QT_NO_PROGRESSDIALOG
60
#endif
61
#ifndef QT_NO_TABDIALOG
62
#  define QT_NO_TABDIALOG
63
#endif
64
65
/* Fonts */
66
#ifndef QT_NO_QWS_QPF
67
#  define QT_NO_QWS_QPF
68
#endif
69
70
/* Images */
71
#ifndef QT_NO_IMAGEFORMAT_BMP
72
#  define QT_NO_IMAGEFORMAT_BMP
73
#endif
74
#ifndef QT_NO_IMAGEFORMAT_PPM
75
#  define QT_NO_IMAGEFORMAT_PPM
76
#endif
77
#ifndef QT_NO_IMAGE_TEXT
78
#  define QT_NO_IMAGE_TEXT
79
#endif
80
#ifndef QT_NO_MOVIE
81
#  define QT_NO_MOVIE
82
#endif
83
84
/* Internationalization */
85
#ifndef QT_NO_BIG_CODECS
86
#  define QT_NO_BIG_CODECS
87
#endif
88
#ifndef QT_NO_TEXTCODEC
89
#  define QT_NO_TEXTCODEC
90
#endif
91
#ifndef QT_NO_CODECS
92
#  define QT_NO_CODECS
93
#endif
94
#ifndef QT_NO_TEXTCODECPLUGIN
95
#  define QT_NO_TEXTCODECPLUGIN
96
#endif
97
#ifndef QT_NO_TRANSLATION
98
#  define QT_NO_TRANSLATION
99
#endif
100
#ifndef QT_NO_TRANSLATION_UTF8
101
#  define QT_NO_TRANSLATION_UTF8
102
#endif
103
104
/* ItemViews */
105
#ifndef QT_NO_TABLEVIEW
106
#  define QT_NO_TABLEVIEW
107
#endif
108
#ifndef QT_NO_TREEVIEW
109
#  define QT_NO_TREEVIEW
110
#endif
111
112
/* Kernel */
113
#ifndef QT_NO_ACTION
114
#  define QT_NO_ACTION
115
#endif
116
#ifndef QT_NO_CLIPBOARD
117
#  define QT_NO_CLIPBOARD
118
#endif
119
#ifndef QT_NO_DRAGANDDROP
120
#  define QT_NO_DRAGANDDROP
121
#endif
122
#ifndef QT_NO_EFFECTS
123
#  define QT_NO_EFFECTS
124
#endif
125
#ifndef QT_NO_PROPERTIES
126
#  define QT_NO_PROPERTIES
127
#endif
128
#ifndef QT_NO_SESSIONMANAGER
129
#  define QT_NO_SESSIONMANAGER
130
#endif
131
#ifndef QT_NO_SHORTCUT
132
#  define QT_NO_SHORTCUT
133
#endif
134
#ifndef QT_NO_SOUND
135
#  define QT_NO_SOUND
136
#endif
137
#ifndef QT_NO_WHEELEVENT
138
#  define QT_NO_WHEELEVENT
139
#endif
140
141
/* Networking */
142
#ifndef QT_NO_COP
143
#  define QT_NO_COP
144
#endif
145
#ifndef QT_NO_HOSTINFO
146
#  define QT_NO_HOSTINFO
147
#endif
148
#ifndef QT_NO_HTTP
149
#  define QT_NO_HTTP
150
#endif
151
#ifndef QT_NO_NETWORKPROXY
152
#  define QT_NO_NETWORKPROXY
153
#endif
154
#ifndef QT_NO_SOCKS5
155
#  define QT_NO_SOCKS5
156
#endif
157
#ifndef QT_NO_UDPSOCKET
158
#  define QT_NO_UDPSOCKET
159
#endif
160
#ifndef QT_NO_URLINFO
161
#  define QT_NO_URLINFO
162
#endif
163
#ifndef QT_NO_FTP
164
#  define QT_NO_FTP
165
#endif
166
167
/* Painting */
168
#ifndef QT_NO_COLORNAMES
169
#  define QT_NO_COLORNAMES
170
#endif
171
#ifndef QT_NO_PICTURE
172
#  define QT_NO_PICTURE
173
#endif
174
#ifndef QT_NO_PRINTER
175
#  define QT_NO_PRINTER
176
#endif
177
#ifndef QT_NO_CUPS
178
#  define QT_NO_CUPS
179
#endif
180
181
/* Qt for Embedded Linux */
182
#ifndef QT_NO_QWSEMBEDWIDGET
183
#  define QT_NO_QWSEMBEDWIDGET
184
#endif
185
#ifndef QT_NO_QWS_SOUNDSERVER
186
#  define QT_NO_QWS_SOUNDSERVER
187
#endif
188
#ifndef QT_NO_QWS_PROPERTIES
189
#  define QT_NO_QWS_PROPERTIES
190
#endif
191
192
/* Styles */
193
#ifndef QT_NO_STYLE_MOTIF
194
#  define QT_NO_STYLE_MOTIF
195
#endif
196
#ifndef QT_NO_STYLE_CDE
197
#  define QT_NO_STYLE_CDE
198
#endif
199
#ifndef QT_NO_STYLE_STYLESHEET
200
#  define QT_NO_STYLE_STYLESHEET
201
#endif
202
203
/* Utilities */
204
#ifndef QT_NO_UNDOCOMMAND
205
#  define QT_NO_UNDOCOMMAND
206
#endif
207
#ifndef QT_NO_UNDOGROUP
208
#  define QT_NO_UNDOGROUP
209
#endif
210
#ifndef QT_NO_UNDOSTACK
211
#  define QT_NO_UNDOSTACK
212
#endif
213
#ifndef QT_NO_UNDOVIEW
214
#  define QT_NO_UNDOVIEW
215
#endif
f629269 by Tasuku Suzuki at 2010-06-02 216
#ifndef QT_NO_GESTURES
217
#  define QT_NO_GESTURES
218
#endif
e5fcad3 by Lars Knoll at 2009-03-23 219
220
/* Widgets */
221
#ifndef QT_NO_LCDNUMBER
222
#  define QT_NO_LCDNUMBER
223
#endif
224
#ifndef QT_NO_CALENDARWIDGET
225
#  define QT_NO_CALENDARWIDGET
226
#endif
227
#ifndef QT_NO_DATETIMEEDIT
228
#  define QT_NO_DATETIMEEDIT
229
#endif
230
#ifndef QT_NO_MENU
231
#  define QT_NO_MENU
232
#endif
233
#ifndef QT_NO_CONTEXTMENU
234
#  define QT_NO_CONTEXTMENU
235
#endif
236
#ifndef QT_NO_MAINWINDOW
237
#  define QT_NO_MAINWINDOW
238
#endif
239
#ifndef QT_NO_DOCKWIDGET
240
#  define QT_NO_DOCKWIDGET
241
#endif
242
#ifndef QT_NO_TOOLBAR
243
#  define QT_NO_TOOLBAR
244
#endif
245
#ifndef QT_NO_MENUBAR
246
#  define QT_NO_MENUBAR
247
#endif
248
#ifndef QT_NO_WORKSPACE
249
#  define QT_NO_WORKSPACE
250
#endif
251
#ifndef QT_NO_PROGRESSBAR
252
#  define QT_NO_PROGRESSBAR
253
#endif
254
#ifndef QT_NO_SIZEGRIP
255
#  define QT_NO_SIZEGRIP
256
#endif
257
#ifndef QT_NO_DIAL
258
#  define QT_NO_DIAL
259
#endif
260
#ifndef QT_NO_STACKEDWIDGET
261
#  define QT_NO_STACKEDWIDGET
262
#endif
263
#ifndef QT_NO_TABWIDGET
264
#  define QT_NO_TABWIDGET
265
#endif
266
#ifndef QT_NO_STATUSBAR
267
#  define QT_NO_STATUSBAR
268
#endif
269
#ifndef QT_NO_STATUSTIP
270
#  define QT_NO_STATUSTIP
271
#endif
272
#ifndef QT_NO_TABLEWIDGET
273
#  define QT_NO_TABLEWIDGET
274
#endif
275
#ifndef QT_NO_TOOLBUTTON
276
#  define QT_NO_TOOLBUTTON
277
#endif
278
#ifndef QT_NO_TABBAR
279
#  define QT_NO_TABBAR
280
#endif
281
#ifndef QT_NO_TOOLBOX
282
#  define QT_NO_TOOLBOX
283
#endif
284
#ifndef QT_NO_WHATSTHIS
285
#  define QT_NO_WHATSTHIS
286
#endif
287
#ifndef QT_NO_TOOLTIP
288
#  define QT_NO_TOOLTIP
289
#endif
290
#ifndef QT_NO_TREEWIDGET
291
#  define QT_NO_TREEWIDGET
292
#endif
293
294
/* Windows */
295
#ifndef QT_NO_WIN_ACTIVEQT
296
#  define QT_NO_WIN_ACTIVEQT
297
#endif