author | Eckhart Koeppen <eckhart.koppen@nokia.com> |
Mon, 19 Apr 2010 10:15:19 +0300 | |
branch | RCL_3 |
changeset 10 | b5b118452c7d |
parent 4 | 3b1da2848fc7 |
child 33 | 3e2da88830cd |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the QtCore module of the Qt Toolkit. |
|
8 |
** |
|
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 |
|
14 |
** this package. |
|
15 |
** |
|
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. |
|
23 |
** |
|
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. |
|
27 |
** |
|
28 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
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 |
|
216 |
||
217 |
/* Widgets */ |
|
218 |
#ifndef QT_NO_LCDNUMBER |
|
219 |
# define QT_NO_LCDNUMBER |
|
220 |
#endif |
|
221 |
#ifndef QT_NO_CALENDARWIDGET |
|
222 |
# define QT_NO_CALENDARWIDGET |
|
223 |
#endif |
|
224 |
#ifndef QT_NO_DATETIMEEDIT |
|
225 |
# define QT_NO_DATETIMEEDIT |
|
226 |
#endif |
|
227 |
#ifndef QT_NO_MENU |
|
228 |
# define QT_NO_MENU |
|
229 |
#endif |
|
230 |
#ifndef QT_NO_CONTEXTMENU |
|
231 |
# define QT_NO_CONTEXTMENU |
|
232 |
#endif |
|
233 |
#ifndef QT_NO_MAINWINDOW |
|
234 |
# define QT_NO_MAINWINDOW |
|
235 |
#endif |
|
236 |
#ifndef QT_NO_DOCKWIDGET |
|
237 |
# define QT_NO_DOCKWIDGET |
|
238 |
#endif |
|
239 |
#ifndef QT_NO_TOOLBAR |
|
240 |
# define QT_NO_TOOLBAR |
|
241 |
#endif |
|
242 |
#ifndef QT_NO_MENUBAR |
|
243 |
# define QT_NO_MENUBAR |
|
244 |
#endif |
|
245 |
#ifndef QT_NO_WORKSPACE |
|
246 |
# define QT_NO_WORKSPACE |
|
247 |
#endif |
|
248 |
#ifndef QT_NO_PROGRESSBAR |
|
249 |
# define QT_NO_PROGRESSBAR |
|
250 |
#endif |
|
251 |
#ifndef QT_NO_SIZEGRIP |
|
252 |
# define QT_NO_SIZEGRIP |
|
253 |
#endif |
|
254 |
#ifndef QT_NO_DIAL |
|
255 |
# define QT_NO_DIAL |
|
256 |
#endif |
|
257 |
#ifndef QT_NO_STACKEDWIDGET |
|
258 |
# define QT_NO_STACKEDWIDGET |
|
259 |
#endif |
|
260 |
#ifndef QT_NO_TABWIDGET |
|
261 |
# define QT_NO_TABWIDGET |
|
262 |
#endif |
|
263 |
#ifndef QT_NO_STATUSBAR |
|
264 |
# define QT_NO_STATUSBAR |
|
265 |
#endif |
|
266 |
#ifndef QT_NO_STATUSTIP |
|
267 |
# define QT_NO_STATUSTIP |
|
268 |
#endif |
|
269 |
#ifndef QT_NO_TABLEWIDGET |
|
270 |
# define QT_NO_TABLEWIDGET |
|
271 |
#endif |
|
272 |
#ifndef QT_NO_TOOLBUTTON |
|
273 |
# define QT_NO_TOOLBUTTON |
|
274 |
#endif |
|
275 |
#ifndef QT_NO_TABBAR |
|
276 |
# define QT_NO_TABBAR |
|
277 |
#endif |
|
278 |
#ifndef QT_NO_TOOLBOX |
|
279 |
# define QT_NO_TOOLBOX |
|
280 |
#endif |
|
281 |
#ifndef QT_NO_WHATSTHIS |
|
282 |
# define QT_NO_WHATSTHIS |
|
283 |
#endif |
|
284 |
#ifndef QT_NO_TOOLTIP |
|
285 |
# define QT_NO_TOOLTIP |
|
286 |
#endif |
|
287 |
#ifndef QT_NO_TREEWIDGET |
|
288 |
# define QT_NO_TREEWIDGET |
|
289 |
#endif |
|
290 |
||
291 |
/* Windows */ |
|
292 |
#ifndef QT_NO_WIN_ACTIVEQT |
|
293 |
# define QT_NO_WIN_ACTIVEQT |
|
294 |
#endif |