Changeset 846 for trunk/src/tools
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 82 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/tools/bootstrap/bootstrap.pri
r561 r846 43 43 contains(CONFIG, debug_and_release_target) { 44 44 CONFIG(debug, debug|release) { 45 LIBS+=-L$$QT_BUILD_TREE/src/tools/bootstrap/debug45 QMAKE_LIBDIR += $$QT_BUILD_TREE/src/tools/bootstrap/debug 46 46 } else { 47 LIBS+=-L$$QT_BUILD_TREE/src/tools/bootstrap/release47 QMAKE_LIBDIR += $$QT_BUILD_TREE/src/tools/bootstrap/release 48 48 } 49 49 } else { 50 LIBS += -L$$QT_BUILD_TREE/src/tools/bootstrap50 QMAKE_LIBDIR += $$QT_BUILD_TREE/src/tools/bootstrap 51 51 } 52 52 LIBS += -lbootstrap 53 53 } 54 !contains(QT_CONFIG, zlib):!contains(QT_CONFIG, no-zlib) { 55 unix:LIBS += -lz 56 # win32:LIBS += libz.lib 54 !contains(QT_CONFIG, zlib):!contains(QT_CONFIG, no-zlib):!cross_compile { 55 symbian:LIBS_PRIVATE += -llibz 56 else:if(unix|win32-g++*):LIBS_PRIVATE += -lz 57 else:LIBS += zdll.lib 57 58 } 58 59 win32:LIBS += -luser32 … … 63 64 } 64 65 66 # Make dummy "sis" and "freeze" target to keep recursive "make sis/freeze" working. 67 sis_target.target = sis 68 sis_target.commands = 69 sis_target.depends = first 70 QMAKE_EXTRA_TARGETS += sis_target 71 freeze_target.target = freeze 72 freeze_target.commands = 73 freeze_target.depends = first 74 QMAKE_EXTRA_TARGETS += freeze_target -
trunk/src/tools/bootstrap/bootstrap.pro
r561 r846 88 88 89 89 win32:SOURCES += ../../corelib/io/qfsfileengine_win.cpp \ 90 ../../corelib/io/qfsfileengine_iterator_win.cpp 90 ../../corelib/io/qfsfileengine_iterator_win.cpp \ 91 ../../corelib/plugin/qsystemlibrary.cpp \ 91 92 92 93 os2:SOURCES += ../../corelib/io/qfsfileengine_os2.cpp \ … … 99 100 } 100 101 101 contains(QT_CONFIG, zlib) { 102 INCLUDEPATH += ../../3rdparty/zlib 103 SOURCES+= \ 104 ../3rdparty/zlib/adler32.c \ 105 ../3rdparty/zlib/compress.c \ 106 ../3rdparty/zlib/crc32.c \ 107 ../3rdparty/zlib/deflate.c \ 108 ../3rdparty/zlib/gzio.c \ 109 ../3rdparty/zlib/inffast.c \ 110 ../3rdparty/zlib/inflate.c \ 111 ../3rdparty/zlib/inftrees.c \ 112 ../3rdparty/zlib/trees.c \ 113 ../3rdparty/zlib/uncompr.c \ 114 ../3rdparty/zlib/zutil.c 115 } 102 if(contains(QT_CONFIG, zlib)|cross_compile):include(../../3rdparty/zlib.pri) 103 else:include(../../3rdparty/zlib_dependency.pri) 116 104 117 105 lib.CONFIG = dummy_install 118 106 INSTALLS += lib 107 108 # Make dummy "sis" and "freeze" target to keep recursive "make sis/freeze" working. 109 sis_target.target = sis 110 sis_target.commands = 111 sis_target.depends = first 112 QMAKE_EXTRA_TARGETS += sis_target 113 freeze_target.target = freeze 114 freeze_target.commands = 115 freeze_target.depends = first 116 QMAKE_EXTRA_TARGETS += freeze_target -
trunk/src/tools/idc/main.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/generator.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 174 174 fprintf(out, "static const uint qt_meta_data_%s[] = {\n", qualifiedClassNameIdentifier.constData()); 175 175 fprintf(out, "\n // content:\n"); 176 fprintf(out, " %4d, // revision\n", 4);176 fprintf(out, " %4d, // revision\n", 5); 177 177 fprintf(out, " %4d, // classname\n", strreg(cdef->qualified)); 178 178 fprintf(out, " %4d, %4d, // classinfo\n", cdef->classInfoList.count(), cdef->classInfoList.count() ? index : 0); … … 483 483 void Generator::generateProperties() 484 484 { 485 //486 // specify get function, for compatibiliy we accept functions487 // returning pointers, or const char * for QByteArray.488 //489 for (int i = 0; i < cdef->propertyList.count(); ++i) {490 PropertyDef &p = cdef->propertyList[i];491 if (p.read.isEmpty())492 continue;493 for (int j = 0; j < cdef->publicList.count(); ++j) {494 const FunctionDef &f = cdef->publicList.at(j);495 if (f.name != p.read)496 continue;497 if (!f.isConst) // get functions must be const498 continue;499 if (f.arguments.size()) // and must not take any arguments500 continue;501 PropertyDef::Specification spec = PropertyDef::ValueSpec;502 QByteArray tmp = f.normalizedType;503 if (p.type == "QByteArray" && tmp == "const char *")504 tmp = "QByteArray";505 if (tmp.left(6) == "const ")506 tmp = tmp.mid(6);507 if (p.type != tmp && tmp.endsWith('*')) {508 tmp.chop(1);509 spec = PropertyDef::PointerSpec;510 } else if (f.type.name.endsWith('&')) { // raw type, not normalized type511 spec = PropertyDef::ReferenceSpec;512 }513 if (p.type != tmp)514 continue;515 p.gspec = spec;516 break;517 }518 if(!p.notify.isEmpty()) {519 int notifyId = -1;520 for (int j = 0; j < cdef->signalList.count(); ++j) {521 const FunctionDef &f = cdef->signalList.at(j);522 if(f.name != p.notify) {523 continue;524 } else {525 notifyId = j /* Signal indexes start from 0 */;526 break;527 }528 }529 p.notifyId = notifyId;530 }531 }532 533 485 // 534 486 // Create meta data -
trunk/src/tools/moc/generator.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/keywords.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/main.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 362 362 363 363 if (autoInclude) { 364 int spos = filename.lastIndexOf(QDir::separator().toLatin1()); 364 365 int ppos = filename.lastIndexOf('.'); 365 moc.noInclude = (ppos >= 0 366 && tolower(filename[ppos + 1]) != 'h' 367 && tolower(filename[ppos + 1]) != QDir::separator().toLatin1() 368 ); 366 // spos >= -1 && ppos > spos => ppos >= 0 367 moc.noInclude = (ppos > spos && tolower(filename[ppos + 1]) != 'h'); 369 368 } 370 369 if (moc.includeFiles.isEmpty()) { -
trunk/src/tools/moc/moc.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 231 231 } 232 232 while (test(CONST) || test(VOLATILE) || test(SIGNED) || test(UNSIGNED) 233 || test(STAR) || test(AND) ) {233 || test(STAR) || test(AND) || test(ANDAND)) { 234 234 type.name += ' '; 235 235 type.name += lexem(); 236 236 if (lookup(0) == AND) 237 237 type.referenceType = Type::Reference; 238 else if (lookup(0) == ANDAND) 239 type.referenceType = Type::RValueReference; 238 240 else if (lookup(0) == STAR) 239 241 type.referenceType = Type::Pointer; … … 726 728 727 729 checkSuperClasses(&def); 730 checkProperties(&def); 728 731 729 732 classList += def; … … 1207 1210 } 1208 1211 } 1212 1213 //when searching commas within the default argument, we should take care of template depth (anglecount) 1214 // unfortunatelly, we do not have enough semantic information to know if '<' is the operator< or 1215 // the beginning of a template type. so we just use heuristics. 1216 int possible = -1; 1217 1209 1218 while (index < symbols.size()) { 1210 1219 Token t = symbols.at(index++).token; … … 1225 1234 && brackCount <= 0 1226 1235 && parenCount <= 0 1227 && (target != RANGLE || angleCount <= 0)) 1236 && (target != RANGLE || angleCount <= 0)) { 1237 if (target != COMMA || angleCount <= 0) 1238 return true; 1239 possible = index; 1240 } 1241 1242 if (target == COMMA && t == EQ && possible != -1) { 1243 index = possible; 1228 1244 return true; 1245 } 1229 1246 1230 1247 if (braceCount < 0 || brackCount < 0 || parenCount < 0 … … 1234 1251 } 1235 1252 } 1253 1254 if(target == COMMA && angleCount != 0 && possible != -1) { 1255 index = possible; 1256 return true; 1257 } 1258 1236 1259 return false; 1237 1260 } … … 1291 1314 } 1292 1315 1316 void Moc::checkProperties(ClassDef *cdef) 1317 { 1318 // 1319 // specify get function, for compatibiliy we accept functions 1320 // returning pointers, or const char * for QByteArray. 1321 // 1322 for (int i = 0; i < cdef->propertyList.count(); ++i) { 1323 PropertyDef &p = cdef->propertyList[i]; 1324 if (p.read.isEmpty()) 1325 continue; 1326 for (int j = 0; j < cdef->publicList.count(); ++j) { 1327 const FunctionDef &f = cdef->publicList.at(j); 1328 if (f.name != p.read) 1329 continue; 1330 if (!f.isConst) // get functions must be const 1331 continue; 1332 if (f.arguments.size()) // and must not take any arguments 1333 continue; 1334 PropertyDef::Specification spec = PropertyDef::ValueSpec; 1335 QByteArray tmp = f.normalizedType; 1336 if (p.type == "QByteArray" && tmp == "const char *") 1337 tmp = "QByteArray"; 1338 if (tmp.left(6) == "const ") 1339 tmp = tmp.mid(6); 1340 if (p.type != tmp && tmp.endsWith('*')) { 1341 tmp.chop(1); 1342 spec = PropertyDef::PointerSpec; 1343 } else if (f.type.name.endsWith('&')) { // raw type, not normalized type 1344 spec = PropertyDef::ReferenceSpec; 1345 } 1346 if (p.type != tmp) 1347 continue; 1348 p.gspec = spec; 1349 break; 1350 } 1351 if(!p.notify.isEmpty()) { 1352 int notifyId = -1; 1353 for (int j = 0; j < cdef->signalList.count(); ++j) { 1354 const FunctionDef &f = cdef->signalList.at(j); 1355 if(f.name != p.notify) { 1356 continue; 1357 } else { 1358 notifyId = j /* Signal indexes start from 0 */; 1359 break; 1360 } 1361 } 1362 p.notifyId = notifyId; 1363 if (notifyId == -1) { 1364 QByteArray msg = "NOTIFY signal '" + p.notify + "' of property '" + p.name 1365 + "' does not exist in class " + cdef->classname + "."; 1366 error(msg.constData()); 1367 } 1368 } 1369 } 1370 } 1371 1372 1293 1373 1294 1374 QT_END_NAMESPACE -
trunk/src/tools/moc/moc.h
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 56 56 struct Type 57 57 { 58 enum ReferenceType { NoReference, Reference, Pointer };58 enum ReferenceType { NoReference, Reference, RValueReference, Pointer }; 59 59 60 60 inline Type() : isVolatile(false), isScoped(false), firstToken(NOTOKEN), referenceType(NoReference) {} … … 239 239 240 240 void checkSuperClasses(ClassDef *def); 241 void checkProperties(ClassDef* cdef); 241 242 }; 242 243 243 244 inline QByteArray noRef(const QByteArray &type) 244 245 { 245 if (type.endsWith('&')) 246 if (type.endsWith('&')) { 247 if (type.endsWith("&&")) 248 return type.left(type.length()-2); 246 249 return type.left(type.length()-1); 250 } 247 251 return type; 248 252 } -
trunk/src/tools/moc/mwerks_mac.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/mwerks_mac.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/outputrevision.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/parser.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/parser.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/ppkeywords.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/preprocessor.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/preprocessor.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/symbols.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/token.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/token.h
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/util/generate.sh
r651 r846 2 2 ############################################################################# 3 3 ## 4 ## Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).4 ## Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 5 5 ## All rights reserved. 6 6 ## Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/util/generate_keywords.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/util/generate_keywords.pro
r2 r846 11 11 SOURCES += generate_keywords.cpp 12 12 CONFIG += qt create_prl link_prl 13 OBJECTS_DIR=.obj/debug-shared -
trunk/src/tools/moc/util/licenseheader.txt
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/moc/utils.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/rcc/main.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/rcc/rcc.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 545 545 RCCFileInfo *s = new RCCFileInfo(file); 546 546 s->m_parent = parent; 547 if (parent->m_children.contains(filename)) 548 qWarning("potential duplicate alias detected: '%s'", qPrintable(filename)); 547 if (parent->m_children.contains(filename)) { 548 foreach (const QString &fileName, m_fileNames) 549 qWarning("%s: Warning: potential duplicate alias detected: '%s'", 550 qPrintable(fileName), qPrintable(filename)); 551 } 549 552 parent->m_children.insertMulti(filename, s); 550 553 return true; -
trunk/src/tools/rcc/rcc.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/tools.pro
r561 r846 1 1 TEMPLATE = subdirs 2 2 3 TOOLS_SUBDIRS = src_tools_bootstrap src_tools_moc src_tools_rcc src_tools_uic 3 TOOLS_SUBDIRS = src_tools_bootstrap src_tools_moc src_tools_rcc 4 !contains(QT_CONFIG, no-gui): TOOLS_SUBDIRS += src_tools_uic 4 5 !cross_compile { 5 6 contains(QT_CONFIG, qt3support): SRC_SUBDIRS += src_tools_uic3 … … 21 22 src_tools_idc.target = sub-idc 22 23 23 !wince*:! symbian:!ordered {24 !wince*:!ordered { 24 25 # Set dependencies for each subdir 25 26 src_tools_moc.depends = src_tools_bootstrap … … 45 46 !isEqual(subname, src_tools_bootstrap):if(isEqual($$SUB_TEMPLATE, lib) | isEqual($$SUB_TEMPLATE, subdirs) | isEqual(subname, src_tools_idc) | isEqual(subname, src_tools_uic3)):!separate_debug_info { 46 47 #debug 47 eval(debug-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS)48 eval(debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) debug))48 debug-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS 49 debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) debug) 49 50 EXTRA_DEBUG_TARGETS += debug-$${subtarget} 50 51 QMAKE_EXTRA_TARGETS += debug-$${subtarget} 51 52 #release 52 eval(release-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS)53 eval(release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) release))53 release-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS 54 release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) release) 54 55 EXTRA_RELEASE_TARGETS += release-$${subtarget} 55 56 QMAKE_EXTRA_TARGETS += release-$${subtarget} 56 57 } else { #do not have a real debug target/release 57 58 #debug 58 eval(debug-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS)59 eval(debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first))59 debug-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_DEBUG_TARGETS 60 debug-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first) 60 61 EXTRA_DEBUG_TARGETS += debug-$${subtarget} 61 62 QMAKE_EXTRA_TARGETS += debug-$${subtarget} 62 63 #release 63 eval(release-$${subtarget}.depends = $${subdir}\$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS)64 eval(release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first))64 release-$${subtarget}.depends = $${subdir}$${QMAKE_DIR_SEP}$(MAKEFILE) $$EXTRA_RELEASE_TARGETS 65 release-$${subtarget}.commands = (cd $$subdir && $(MAKE) -f $(MAKEFILE) first) 65 66 EXTRA_RELEASE_TARGETS += release-$${subtarget} 66 67 QMAKE_EXTRA_TARGETS += release-$${subtarget} -
trunk/src/tools/uic/cpp/cppextractimages.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 77 77 f.setFileName(m_option.qrcOutputFile); 78 78 if (!f.open(QIODevice::WriteOnly | QFile::Text)) { 79 fprintf(stderr, " Could not create resource file\n");79 fprintf(stderr, "%s: Error: Could not create resource file\n", qPrintable(m_option.messagePrefix())); 80 80 return; 81 81 } … … 84 84 QDir dir = fi.absoluteDir(); 85 85 if (!dir.exists(QLatin1String("images")) && !dir.mkdir(QLatin1String("images"))) { 86 fprintf(stderr, " Could not create image dir\n");86 fprintf(stderr, "%s: Error: Could not create image dir\n", qPrintable(m_option.messagePrefix())); 87 87 return; 88 88 } … … 127 127 openMode |= QIODevice::Text; 128 128 if (!f.open(openMode)) { 129 fprintf(stderr, "Could not create image file %s: %s", qPrintable(fname), qPrintable(f.errorString())); 129 fprintf(stderr, "%s: Error: Could not create image file %s: %s", 130 qPrintable(m_option.messagePrefix()), 131 qPrintable(fname), qPrintable(f.errorString())); 130 132 return; 131 133 } … … 135 137 imageOut->setCodec(QTextCodec::codecForName("UTF-8")); 136 138 137 CPP::WriteIconData::writeImage(*imageOut, QString(), image);139 CPP::WriteIconData::writeImage(*imageOut, QString(), m_option.limitXPM_LineLength, image); 138 140 delete imageOut; 139 141 } else { -
trunk/src/tools/uic/cpp/cppextractimages.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwritedeclaration.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwritedeclaration.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwriteicondata.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 115 115 void WriteIconData::acceptImage(DomImage *image) 116 116 { 117 writeImage(output, option.indent, image); 117 // Limit line length when writing code. 118 writeImage(output, option.indent, true, image); 118 119 } 119 120 120 void WriteIconData::writeImage(QTextStream &output, const QString &indent, DomImage *image) 121 void WriteIconData::writeImage(QTextStream &output, const QString &indent, 122 bool limitXPM_LineLength, const DomImage *image) 121 123 { 122 124 QString img = image->attributeName() + QLatin1String("_data"); … … 134 136 int column = 0; 135 137 bool inQuote = false; 136 output << indent << "static const char* const " << img << "[] = { \n"; 138 output << indent << "/* XPM */\n" 139 << indent << "static const char* const " << img << "[] = { \n"; 137 140 while (baunzip[a] != '\"') 138 141 a++; … … 145 148 } 146 149 147 if (column++ >= 511 && inQuote) { 150 column++; 151 if (limitXPM_LineLength && column >= 512 && inQuote) { 148 152 output << "\"\n\""; // be nice with MSVC & Co. 149 153 column = 1; -
trunk/src/tools/uic/cpp/cppwriteicondata.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 65 65 void acceptImage(DomImage *image); 66 66 67 static void writeImage(QTextStream &output, const QString &indent, DomImage *image); 67 static void writeImage(QTextStream &output, const QString &indent, 68 bool limitXPM_LineLength, const DomImage *image); 68 69 static void writeImage(QIODevice &output, DomImage *image); 69 70 -
trunk/src/tools/uic/cpp/cppwriteicondeclaration.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwriteicondeclaration.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwriteiconinitialization.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwriteiconinitialization.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwriteincludes.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 127 127 if (m_uic->hasExternalPixmap() && m_uic->pixmapFunction() == QLatin1String("qPixmapFromMimeSource")) { 128 128 #ifdef QT_NO_QT3_SUPPORT 129 qWarning("Warning: The form file has external pixmaps or qPixmapFromMimeSource() set as a pixmap function. " 130 "This requires Qt 3 support, which is disabled. The resulting code will not compile."); 129 qWarning("%s: Warning: The form file has external pixmaps or qPixmapFromMimeSource() set as a pixmap function. " 130 "This requires Qt 3 support, which is disabled. The resulting code will not compile.", 131 qPrintable(m_uic->option().messagePrefix())); 131 132 #endif 132 133 add(QLatin1String("Q3MimeSourceFactory")); … … 213 214 header += QLatin1String(".h"); 214 215 if (warnHeaderGeneration) { 215 qWarning("Warning: generated header '%s' for class '%s'.", qPrintable(header), 216 qPrintable(className)); 216 qWarning("%s: Warning: generated header '%s' for class '%s'.", 217 qPrintable(m_uic->option().messagePrefix()), 218 qPrintable(header), qPrintable(className)); 217 219 218 220 } -
trunk/src/tools/uic/cpp/cppwriteincludes.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/cpp/cppwriteinitialization.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 156 156 if (!isIconFormat44(dri)) { 157 157 if (dri->text().isEmpty()) { 158 const QString msg = QString::fromUtf8("%1: An invalid icon property '%2' was encountered.").arg(fileName).arg(p->attributeName());158 const QString msg = QString::fromUtf8("%1: Warning: An invalid icon property '%2' was encountered.").arg(fileName).arg(p->attributeName()); 159 159 qWarning("%s", qPrintable(msg)); 160 160 return false; … … 166 166 if (const DomResourcePixmap *drp = p->elementPixmap()) 167 167 if (drp->text().isEmpty()) { 168 const QString msg = QString::fromUtf8("%1: An invalid pixmap property '%2' was encountered.").arg(fileName).arg(p->attributeName());168 const QString msg = QString::fromUtf8("%1: Warning: An invalid pixmap property '%2' was encountered.").arg(fileName).arg(p->attributeName()); 169 169 qWarning("%s", qPrintable(msg)); 170 170 return false; … … 540 540 541 541 if (!m_registeredWidgets.contains(b.objName)) { 542 fprintf(stderr, "'%s' isn't a valid widget\n", b.objName.toLatin1().data()); 542 fprintf(stderr, "%s: Warning: Buddy assignment: '%s' is not a valid widget.\n", 543 qPrintable(m_option.messagePrefix()), 544 b.objName.toLatin1().data()); 543 545 continue; 544 546 } else if (!m_registeredWidgets.contains(b.buddy)) { 545 fprintf(stderr, "'%s' isn't a valid widget\n", b.buddy.toLatin1().data()); 547 fprintf(stderr, "%s: Warning: Buddy assignment: '%s' is not a valid widget.\n", 548 qPrintable(m_option.messagePrefix()), 549 b.buddy.toLatin1().data()); 546 550 continue; 547 551 } … … 868 872 869 873 if (!m_registeredWidgets.contains(name)) { 870 fprintf(stderr, "'%s' isn't a valid widget\n", name.toLatin1().data()); 874 fprintf(stderr, "%s: Warning: Z-order assignment: '%s' is not a valid widget.\n", 875 qPrintable(m_option.messagePrefix()), 876 name.toLatin1().data()); 871 877 continue; 872 878 } … … 896 902 newGroup->setAttributeName(attributeName); 897 903 group = newGroup; 898 fprintf(stderr, "Warning: Creating button group `%s'\n", attributeName.toLatin1().data()); 904 fprintf(stderr, "%s: Warning: Creating button group `%s'\n", 905 qPrintable(m_option.messagePrefix()), 906 attributeName.toLatin1().data()); 899 907 } 900 908 const QString groupName = m_driver->findOrInsertButtonGroup(group); … … 1164 1172 } 1165 1173 } else if (!(m_driver->actionByName(actionName) || isSeparator)) { 1166 fprintf(stderr, "Warning: action `%s' not declared\n", actionName.toLatin1().data()); 1174 fprintf(stderr, "%s: Warning: action `%s' not declared\n", 1175 qPrintable(m_option.messagePrefix()), 1176 actionName.toLatin1().data()); 1167 1177 return; 1168 1178 } … … 1854 1864 1855 1865 if (!m_registeredWidgets.contains(name)) { 1856 fprintf(stderr, "'%s' isn't a valid widget\n", name.toLatin1().data()); 1866 fprintf(stderr, "%s: Warning: Tab-stop assignment: '%s' is not a valid widget.\n", 1867 qPrintable(m_option.messagePrefix()), 1868 name.toLatin1().data()); 1857 1869 continue; 1858 1870 } … … 2084 2096 break; 2085 2097 default: 2086 qWarning() << "Warning: Unknown icon format encountered. The ui-file was generated with a too-recent version of Designer."; 2098 qWarning("%s: Warning: Unknown icon format encountered. The ui-file was generated with a too-recent version of Designer.", 2099 qPrintable(m_option.messagePrefix())); 2087 2100 return QLatin1String("QIcon()"); 2088 2101 break; … … 2574 2587 2575 2588 if (table.isEmpty() || connection.isEmpty()) { 2576 fprintf(stderr, " invalid database connection\n");2589 fprintf(stderr, "%s: Warning: Invalid database connection\n", qPrintable(m_option.messagePrefix())); 2577 2590 return; 2578 2591 } … … 2614 2627 2615 2628 if (table.isEmpty() || connection.isEmpty()) { 2616 fprintf(stderr, " invalid database connection\n");2629 fprintf(stderr, "%s: Warning: Invalid database connection\n", qPrintable(m_option.messagePrefix())); 2617 2630 return; 2618 2631 } -
trunk/src/tools/uic/cpp/cppwriteinitialization.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/customwidgetsinfo.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/customwidgetsinfo.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/databaseinfo.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/databaseinfo.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/driver.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 179 179 180 180 if (alreadyUsed && className.size()) { 181 fprintf(stderr, "Warning: name %s is already used\n", qPrintable(instanceName)); 181 fprintf(stderr, "%s: Warning: The name '%s' (%s) is already in use, defaulting to '%s'.\n", 182 qPrintable(m_option.messagePrefix()), 183 qPrintable(instanceName), qPrintable(className), 184 qPrintable(name)); 182 185 } 183 186 -
trunk/src/tools/uic/driver.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/globaldefs.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/main.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/option.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 44 44 45 45 #include <QtCore/QString> 46 #include <QtCore/QDir> 46 47 47 48 QT_BEGIN_NAMESPACE … … 62 63 unsigned int dependencies : 1; 63 64 unsigned int extractImages : 1; 65 unsigned int limitXPM_LineLength : 1; 64 66 unsigned int implicitIncludes: 1; 65 67 Generator generator; … … 86 88 dependencies(0), 87 89 extractImages(0), 90 limitXPM_LineLength(0), 88 91 implicitIncludes(1), 89 92 generator(CppGenerator), 90 93 prefix(QLatin1String("Ui_")) 91 94 { indent.fill(QLatin1Char(' '), 4); } 95 96 QString messagePrefix() const 97 { 98 return inputFile.isEmpty() ? 99 QString(QLatin1String("stdin")) : 100 QDir::toNativeSeparators(inputFile); 101 } 92 102 }; 93 103 -
trunk/src/tools/uic/qclass_lib_map.h
r769 r846 1 QT_CLASS_LIB(QXmlStreamStringRef, QtCore, qxmlstream.h) 2 QT_CLASS_LIB(QXmlStreamAttribute, QtCore, qxmlstream.h) 3 QT_CLASS_LIB(QXmlStreamAttributes, QtCore, qxmlstream.h) 4 QT_CLASS_LIB(QXmlStreamNamespaceDeclaration, QtCore, qxmlstream.h) 5 QT_CLASS_LIB(QXmlStreamNamespaceDeclarations, QtCore, qxmlstream.h) 6 QT_CLASS_LIB(QXmlStreamNotationDeclaration, QtCore, qxmlstream.h) 7 QT_CLASS_LIB(QXmlStreamNotationDeclarations, QtCore, qxmlstream.h) 8 QT_CLASS_LIB(QXmlStreamEntityDeclaration, QtCore, qxmlstream.h) 9 QT_CLASS_LIB(QXmlStreamEntityDeclarations, QtCore, qxmlstream.h) 10 QT_CLASS_LIB(QXmlStreamEntityResolver, QtCore, qxmlstream.h) 11 QT_CLASS_LIB(QXmlStreamReader, QtCore, qxmlstream.h) 12 QT_CLASS_LIB(QXmlStreamWriter, QtCore, qxmlstream.h) 13 QT_CLASS_LIB(QAbstractFileEngine, QtCore, qabstractfileengine.h) 14 QT_CLASS_LIB(QAbstractFileEngineHandler, QtCore, qabstractfileengine.h) 15 QT_CLASS_LIB(QAbstractFileEngineIterator, QtCore, qabstractfileengine.h) 16 QT_CLASS_LIB(QBuffer, QtCore, qbuffer.h) 17 QT_CLASS_LIB(QDataStream, QtCore, qdatastream.h) 18 QT_CLASS_LIB(QtDebug, QtCore, qdebug.h) 19 QT_CLASS_LIB(QDebug, QtCore, qdebug.h) 20 QT_CLASS_LIB(QNoDebug, QtCore, qdebug.h) 21 QT_CLASS_LIB(QDir, QtCore, qdir.h) 22 QT_CLASS_LIB(QDirIterator, QtCore, qdiriterator.h) 23 QT_CLASS_LIB(QFile, QtCore, qfile.h) 24 QT_CLASS_LIB(QFileInfo, QtCore, qfileinfo.h) 25 QT_CLASS_LIB(QFileInfoList, QtCore, qfileinfo.h) 26 QT_CLASS_LIB(QFileInfoListIterator, QtCore, qfileinfo.h) 27 QT_CLASS_LIB(QFileSystemWatcher, QtCore, qfilesystemwatcher.h) 28 QT_CLASS_LIB(QFSFileEngine, QtCore, qfsfileengine.h) 29 QT_CLASS_LIB(QIODevice, QtCore, qiodevice.h) 30 QT_CLASS_LIB(Q_PID, QtCore, qprocess.h) 31 QT_CLASS_LIB(QProcessEnvironment, QtCore, qprocess.h) 32 QT_CLASS_LIB(QProcess, QtCore, qprocess.h) 33 QT_CLASS_LIB(QResource, QtCore, qresource.h) 34 QT_CLASS_LIB(QSettings, QtCore, qsettings.h) 35 QT_CLASS_LIB(QTemporaryFile, QtCore, qtemporaryfile.h) 36 QT_CLASS_LIB(QTextStream, QtCore, qtextstream.h) 37 QT_CLASS_LIB(QTextStreamFunction, QtCore, qtextstream.h) 38 QT_CLASS_LIB(QTextStreamManipulator, QtCore, qtextstream.h) 39 QT_CLASS_LIB(QTS, QtCore, qtextstream.h) 40 QT_CLASS_LIB(QTextIStream, QtCore, qtextstream.h) 41 QT_CLASS_LIB(QTextOStream, QtCore, qtextstream.h) 42 QT_CLASS_LIB(QUrl, QtCore, qurl.h) 43 QT_CLASS_LIB(QTextCodec, QtCore, qtextcodec.h) 44 QT_CLASS_LIB(QTextEncoder, QtCore, qtextcodec.h) 45 QT_CLASS_LIB(QTextDecoder, QtCore, qtextcodec.h) 46 QT_CLASS_LIB(QTextCodecFactoryInterface, QtCore, qtextcodecplugin.h) 47 QT_CLASS_LIB(QTextCodecPlugin, QtCore, qtextcodecplugin.h) 1 QT_CLASS_LIB(QAbstractAnimation, QtCore, qabstractanimation.h) 2 QT_CLASS_LIB(QAnimationGroup, QtCore, qanimationgroup.h) 3 QT_CLASS_LIB(QParallelAnimationGroup, QtCore, qparallelanimationgroup.h) 4 QT_CLASS_LIB(QPauseAnimation, QtCore, qpauseanimation.h) 5 QT_CLASS_LIB(QPropertyAnimation, QtCore, qpropertyanimation.h) 6 QT_CLASS_LIB(QSequentialAnimationGroup, QtCore, qsequentialanimationgroup.h) 7 QT_CLASS_LIB(QVariantAnimation, QtCore, qvariantanimation.h) 8 QT_CLASS_LIB(QAbstractEventDispatcher, QtCore, qabstracteventdispatcher.h) 9 QT_CLASS_LIB(QModelIndex, QtCore, qabstractitemmodel.h) 10 QT_CLASS_LIB(QPersistentModelIndex, QtCore, qabstractitemmodel.h) 11 QT_CLASS_LIB(QModelIndexList, QtCore, qabstractitemmodel.h) 12 QT_CLASS_LIB(QAbstractItemModel, QtCore, qabstractitemmodel.h) 13 QT_CLASS_LIB(QAbstractTableModel, QtCore, qabstractitemmodel.h) 14 QT_CLASS_LIB(QAbstractListModel, QtCore, qabstractitemmodel.h) 15 QT_CLASS_LIB(QBasicTimer, QtCore, qbasictimer.h) 16 QT_CLASS_LIB(QCoreApplication, QtCore, qcoreapplication.h) 17 QT_CLASS_LIB(QtCleanUpFunction, QtCore, qcoreapplication.h) 18 QT_CLASS_LIB(QEvent, QtCore, qcoreevent.h) 19 QT_CLASS_LIB(QTimerEvent, QtCore, qcoreevent.h) 20 QT_CLASS_LIB(QChildEvent, QtCore, qcoreevent.h) 21 QT_CLASS_LIB(QCustomEvent, QtCore, qcoreevent.h) 22 QT_CLASS_LIB(QDynamicPropertyChangeEvent, QtCore, qcoreevent.h) 23 QT_CLASS_LIB(QEventLoop, QtCore, qeventloop.h) 24 QT_CLASS_LIB(QMetaMethod, QtCore, qmetaobject.h) 25 QT_CLASS_LIB(QMetaEnum, QtCore, qmetaobject.h) 26 QT_CLASS_LIB(QMetaProperty, QtCore, qmetaobject.h) 27 QT_CLASS_LIB(QMetaClassInfo, QtCore, qmetaobject.h) 28 QT_CLASS_LIB(QMetaType, QtCore, qmetatype.h) 29 QT_CLASS_LIB(QMetaTypeId, QtCore, qmetatype.h) 30 QT_CLASS_LIB(QMetaTypeId2, QtCore, qmetatype.h) 31 QT_CLASS_LIB(QMimeData, QtCore, qmimedata.h) 32 QT_CLASS_LIB(QObjectList, QtCore, qobject.h) 33 QT_CLASS_LIB(QObjectData, QtCore, qobject.h) 34 QT_CLASS_LIB(QObject, QtCore, qobject.h) 35 QT_CLASS_LIB(QObjectUserData, QtCore, qobject.h) 36 QT_CLASS_LIB(QObjectCleanupHandler, QtCore, qobjectcleanuphandler.h) 37 QT_CLASS_LIB(QGenericArgument, QtCore, qobjectdefs.h) 38 QT_CLASS_LIB(QGenericReturnArgument, QtCore, qobjectdefs.h) 39 QT_CLASS_LIB(QArgument, QtCore, qobjectdefs.h) 40 QT_CLASS_LIB(QReturnArgument, QtCore, qobjectdefs.h) 41 QT_CLASS_LIB(QMetaObject, QtCore, qobjectdefs.h) 42 QT_CLASS_LIB(QMetaObjectAccessor, QtCore, qobjectdefs.h) 43 QT_CLASS_LIB(QMetaObjectExtraData, QtCore, qobjectdefs.h) 44 QT_CLASS_LIB(QPointer, QtCore, qpointer.h) 45 QT_CLASS_LIB(QSharedMemory, QtCore, qsharedmemory.h) 46 QT_CLASS_LIB(QSignalMapper, QtCore, qsignalmapper.h) 47 QT_CLASS_LIB(QSocketNotifier, QtCore, qsocketnotifier.h) 48 QT_CLASS_LIB(QSystemSemaphore, QtCore, qsystemsemaphore.h) 49 QT_CLASS_LIB(QTimer, QtCore, qtimer.h) 50 QT_CLASS_LIB(QTranslator, QtCore, qtranslator.h) 51 QT_CLASS_LIB(QVariant, QtCore, qvariant.h) 52 QT_CLASS_LIB(QVariantList, QtCore, qvariant.h) 53 QT_CLASS_LIB(QVariantMap, QtCore, qvariant.h) 54 QT_CLASS_LIB(QVariantHash, QtCore, qvariant.h) 55 QT_CLASS_LIB(QVariantComparisonHelper, QtCore, qvariant.h) 56 QT_CLASS_LIB(QtEndian, QtCore, qendian.h) 57 QT_CLASS_LIB(QtGlobal, QtCore, qglobal.h) 58 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 59 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 60 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 61 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 62 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 63 QT_CLASS_LIB(QNoImplicitBoolCast, QtCore, qglobal.h) 64 QT_CLASS_LIB(Q_INT8, QtCore, qglobal.h) 65 QT_CLASS_LIB(Q_UINT8, QtCore, qglobal.h) 66 QT_CLASS_LIB(Q_INT16, QtCore, qglobal.h) 67 QT_CLASS_LIB(Q_UINT16, QtCore, qglobal.h) 68 QT_CLASS_LIB(Q_INT32, QtCore, qglobal.h) 69 QT_CLASS_LIB(Q_UINT32, QtCore, qglobal.h) 70 QT_CLASS_LIB(Q_INT64, QtCore, qglobal.h) 71 QT_CLASS_LIB(Q_UINT64, QtCore, qglobal.h) 72 QT_CLASS_LIB(Q_LLONG, QtCore, qglobal.h) 73 QT_CLASS_LIB(Q_ULLONG, QtCore, qglobal.h) 74 QT_CLASS_LIB(Q_LONG, QtCore, qglobal.h) 75 QT_CLASS_LIB(Q_ULONG, QtCore, qglobal.h) 76 QT_CLASS_LIB(Q_LONG, QtCore, qglobal.h) 77 QT_CLASS_LIB(Q_ULONG, QtCore, qglobal.h) 78 QT_CLASS_LIB(QSysInfo, QtCore, qglobal.h) 79 QT_CLASS_LIB(QtMsgHandler, QtCore, qglobal.h) 80 QT_CLASS_LIB(QGlobalStatic, QtCore, qglobal.h) 81 QT_CLASS_LIB(QGlobalStatic, QtCore, qglobal.h) 82 QT_CLASS_LIB(QGlobalStaticDeleter, QtCore, qglobal.h) 83 QT_CLASS_LIB(QBool, QtCore, qglobal.h) 84 QT_CLASS_LIB(QTypeInfo, QtCore, qglobal.h) 85 QT_CLASS_LIB(QTypeInfo, QtCore, qglobal.h) 86 QT_CLASS_LIB(QTypeInfo, QtCore, qglobal.h) 87 QT_CLASS_LIB(QFlag, QtCore, qglobal.h) 88 QT_CLASS_LIB(QIncompatibleFlag, QtCore, qglobal.h) 89 QT_CLASS_LIB(QFlags, QtCore, qglobal.h) 90 QT_CLASS_LIB(QForeachContainer, QtCore, qglobal.h) 91 QT_CLASS_LIB(QForeachContainerBase, QtCore, qglobal.h) 92 QT_CLASS_LIB(QForeachContainer, QtCore, qglobal.h) 93 QT_CLASS_LIB(QLibraryInfo, QtCore, qlibraryinfo.h) 94 QT_CLASS_LIB(Qt, QtCore, qnamespace.h) 95 QT_CLASS_LIB(QInternal, QtCore, qnamespace.h) 96 QT_CLASS_LIB(QCOORD, QtCore, qnamespace.h) 97 QT_CLASS_LIB(QtConfig, QtCore, qconfig.h) 98 QT_CLASS_LIB(QAtomicInt, QtCore, qatomic.h) 99 QT_CLASS_LIB(QAtomicPointer, QtCore, qatomic.h) 100 QT_CLASS_LIB(QBasicAtomicInt, QtCore, qbasicatomic.h) 101 QT_CLASS_LIB(QBasicAtomicPointer, QtCore, qbasicatomic.h) 102 QT_CLASS_LIB(QMutex, QtCore, qmutex.h) 103 QT_CLASS_LIB(QMutexLocker, QtCore, qmutex.h) 104 QT_CLASS_LIB(QMutex, QtCore, qmutex.h) 105 QT_CLASS_LIB(QMutexLocker, QtCore, qmutex.h) 106 QT_CLASS_LIB(QReadWriteLock, QtCore, qreadwritelock.h) 107 QT_CLASS_LIB(QReadLocker, QtCore, qreadwritelock.h) 108 QT_CLASS_LIB(QWriteLocker, QtCore, qreadwritelock.h) 109 QT_CLASS_LIB(QReadWriteLock, QtCore, qreadwritelock.h) 110 QT_CLASS_LIB(QReadLocker, QtCore, qreadwritelock.h) 111 QT_CLASS_LIB(QWriteLocker, QtCore, qreadwritelock.h) 112 QT_CLASS_LIB(QSemaphore, QtCore, qsemaphore.h) 113 QT_CLASS_LIB(QThread, QtCore, qthread.h) 114 QT_CLASS_LIB(QThread, QtCore, qthread.h) 115 QT_CLASS_LIB(QThreadStorageData, QtCore, qthreadstorage.h) 116 QT_CLASS_LIB(QThreadStorage, QtCore, qthreadstorage.h) 117 QT_CLASS_LIB(QWaitCondition, QtCore, qwaitcondition.h) 118 QT_CLASS_LIB(QWaitCondition, QtCore, qwaitcondition.h) 119 QT_CLASS_LIB(QFactoryInterface, QtCore, qfactoryinterface.h) 120 QT_CLASS_LIB(QLibrary, QtCore, qlibrary.h) 121 QT_CLASS_LIB(QtPlugin, QtCore, qplugin.h) 122 QT_CLASS_LIB(QtPluginInstanceFunction, QtCore, qplugin.h) 123 QT_CLASS_LIB(QPluginLoader, QtCore, qpluginloader.h) 124 QT_CLASS_LIB(QUuid, QtCore, quuid.h) 48 125 QT_CLASS_LIB(QtAlgorithms, QtCore, qalgorithms.h) 49 126 QT_CLASS_LIB(QBitArray, QtCore, qbitarray.h) … … 64 141 QT_CLASS_LIB(QDateTime, QtCore, qdatetime.h) 65 142 QT_CLASS_LIB(QEasingCurve, QtCore, qeasingcurve.h) 143 QT_CLASS_LIB(QElapsedTimer, QtCore, qelapsedtimer.h) 66 144 QT_CLASS_LIB(QHashData, QtCore, qhash.h) 67 145 QT_CLASS_LIB(QHashDummyValue, QtCore, qhash.h) … … 135 213 QT_CLASS_LIB(QConcatenable, QtCore, qstringbuilder.h) 136 214 QT_CLASS_LIB(QStringBuilder, QtCore, qstringbuilder.h) 215 QT_CLASS_LIB(QStringBuilder, QtCore, qstringbuilder.h) 137 216 QT_CLASS_LIB(QConcatenable, QtCore, qstringbuilder.h) 138 217 QT_CLASS_LIB(QConcatenable, QtCore, qstringbuilder.h) … … 160 239 QT_CLASS_LIB(QVectorIterator, QtCore, qvector.h) 161 240 QT_CLASS_LIB(QMutableVectorIterator, QtCore, qvector.h) 162 QT_CLASS_LIB(QtEndian, QtCore, qendian.h) 163 QT_CLASS_LIB(QtGlobal, QtCore, qglobal.h) 164 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 165 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 166 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 167 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 168 QT_CLASS_LIB(QIntegerForSize, QtCore, qglobal.h) 169 QT_CLASS_LIB(QNoImplicitBoolCast, QtCore, qglobal.h) 170 QT_CLASS_LIB(Q_INT8, QtCore, qglobal.h) 171 QT_CLASS_LIB(Q_UINT8, QtCore, qglobal.h) 172 QT_CLASS_LIB(Q_INT16, QtCore, qglobal.h) 173 QT_CLASS_LIB(Q_UINT16, QtCore, qglobal.h) 174 QT_CLASS_LIB(Q_INT32, QtCore, qglobal.h) 175 QT_CLASS_LIB(Q_UINT32, QtCore, qglobal.h) 176 QT_CLASS_LIB(Q_INT64, QtCore, qglobal.h) 177 QT_CLASS_LIB(Q_UINT64, QtCore, qglobal.h) 178 QT_CLASS_LIB(Q_LLONG, QtCore, qglobal.h) 179 QT_CLASS_LIB(Q_ULLONG, QtCore, qglobal.h) 180 QT_CLASS_LIB(Q_LONG, QtCore, qglobal.h) 181 QT_CLASS_LIB(Q_ULONG, QtCore, qglobal.h) 182 QT_CLASS_LIB(Q_LONG, QtCore, qglobal.h) 183 QT_CLASS_LIB(Q_ULONG, QtCore, qglobal.h) 184 QT_CLASS_LIB(QSysInfo, QtCore, qglobal.h) 185 QT_CLASS_LIB(QtMsgHandler, QtCore, qglobal.h) 186 QT_CLASS_LIB(QGlobalStatic, QtCore, qglobal.h) 187 QT_CLASS_LIB(QGlobalStatic, QtCore, qglobal.h) 188 QT_CLASS_LIB(QGlobalStaticDeleter, QtCore, qglobal.h) 189 QT_CLASS_LIB(QBool, QtCore, qglobal.h) 190 QT_CLASS_LIB(QTypeInfo, QtCore, qglobal.h) 191 QT_CLASS_LIB(QTypeInfo, QtCore, qglobal.h) 192 QT_CLASS_LIB(QTypeInfo, QtCore, qglobal.h) 193 QT_CLASS_LIB(QFlag, QtCore, qglobal.h) 194 QT_CLASS_LIB(QIncompatibleFlag, QtCore, qglobal.h) 195 QT_CLASS_LIB(QFlags, QtCore, qglobal.h) 196 QT_CLASS_LIB(QForeachContainer, QtCore, qglobal.h) 197 QT_CLASS_LIB(QForeachContainerBase, QtCore, qglobal.h) 198 QT_CLASS_LIB(QForeachContainer, QtCore, qglobal.h) 199 QT_CLASS_LIB(QLibraryInfo, QtCore, qlibraryinfo.h) 200 QT_CLASS_LIB(Qt, QtCore, qnamespace.h) 201 QT_CLASS_LIB(QInternal, QtCore, qnamespace.h) 202 QT_CLASS_LIB(QCOORD, QtCore, qnamespace.h) 203 QT_CLASS_LIB(QAbstractEventDispatcher, QtCore, qabstracteventdispatcher.h) 204 QT_CLASS_LIB(QModelIndex, QtCore, qabstractitemmodel.h) 205 QT_CLASS_LIB(QPersistentModelIndex, QtCore, qabstractitemmodel.h) 206 QT_CLASS_LIB(QModelIndexList, QtCore, qabstractitemmodel.h) 207 QT_CLASS_LIB(QAbstractItemModel, QtCore, qabstractitemmodel.h) 208 QT_CLASS_LIB(QAbstractTableModel, QtCore, qabstractitemmodel.h) 209 QT_CLASS_LIB(QAbstractListModel, QtCore, qabstractitemmodel.h) 210 QT_CLASS_LIB(QBasicTimer, QtCore, qbasictimer.h) 211 QT_CLASS_LIB(QCoreApplication, QtCore, qcoreapplication.h) 212 QT_CLASS_LIB(QtCleanUpFunction, QtCore, qcoreapplication.h) 213 QT_CLASS_LIB(QEvent, QtCore, qcoreevent.h) 214 QT_CLASS_LIB(QTimerEvent, QtCore, qcoreevent.h) 215 QT_CLASS_LIB(QChildEvent, QtCore, qcoreevent.h) 216 QT_CLASS_LIB(QCustomEvent, QtCore, qcoreevent.h) 217 QT_CLASS_LIB(QDynamicPropertyChangeEvent, QtCore, qcoreevent.h) 218 QT_CLASS_LIB(QEventLoop, QtCore, qeventloop.h) 219 QT_CLASS_LIB(QMetaMethod, QtCore, qmetaobject.h) 220 QT_CLASS_LIB(QMetaEnum, QtCore, qmetaobject.h) 221 QT_CLASS_LIB(QMetaProperty, QtCore, qmetaobject.h) 222 QT_CLASS_LIB(QMetaClassInfo, QtCore, qmetaobject.h) 223 QT_CLASS_LIB(QMetaType, QtCore, qmetatype.h) 224 QT_CLASS_LIB(QMetaTypeId, QtCore, qmetatype.h) 225 QT_CLASS_LIB(QMetaTypeId2, QtCore, qmetatype.h) 226 QT_CLASS_LIB(QMimeData, QtCore, qmimedata.h) 227 QT_CLASS_LIB(QObjectList, QtCore, qobject.h) 228 QT_CLASS_LIB(QObjectData, QtCore, qobject.h) 229 QT_CLASS_LIB(QObject, QtCore, qobject.h) 230 QT_CLASS_LIB(QObjectUserData, QtCore, qobject.h) 231 QT_CLASS_LIB(QObjectCleanupHandler, QtCore, qobjectcleanuphandler.h) 232 QT_CLASS_LIB(QGenericArgument, QtCore, qobjectdefs.h) 233 QT_CLASS_LIB(QGenericReturnArgument, QtCore, qobjectdefs.h) 234 QT_CLASS_LIB(QArgument, QtCore, qobjectdefs.h) 235 QT_CLASS_LIB(QReturnArgument, QtCore, qobjectdefs.h) 236 QT_CLASS_LIB(QMetaObject, QtCore, qobjectdefs.h) 237 QT_CLASS_LIB(QMetaObjectAccessor, QtCore, qobjectdefs.h) 238 QT_CLASS_LIB(QMetaObjectExtraData, QtCore, qobjectdefs.h) 239 QT_CLASS_LIB(QPointer, QtCore, qpointer.h) 240 QT_CLASS_LIB(QSharedMemory, QtCore, qsharedmemory.h) 241 QT_CLASS_LIB(QSignalMapper, QtCore, qsignalmapper.h) 242 QT_CLASS_LIB(QSocketNotifier, QtCore, qsocketnotifier.h) 243 QT_CLASS_LIB(QSystemSemaphore, QtCore, qsystemsemaphore.h) 244 QT_CLASS_LIB(QTimer, QtCore, qtimer.h) 245 QT_CLASS_LIB(QTranslator, QtCore, qtranslator.h) 246 QT_CLASS_LIB(QVariant, QtCore, qvariant.h) 247 QT_CLASS_LIB(QVariantList, QtCore, qvariant.h) 248 QT_CLASS_LIB(QVariantMap, QtCore, qvariant.h) 249 QT_CLASS_LIB(QVariantHash, QtCore, qvariant.h) 250 QT_CLASS_LIB(QVariantComparisonHelper, QtCore, qvariant.h) 241 QT_CLASS_LIB(QXmlStreamStringRef, QtCore, qxmlstream.h) 242 QT_CLASS_LIB(QXmlStreamAttribute, QtCore, qxmlstream.h) 243 QT_CLASS_LIB(QXmlStreamAttributes, QtCore, qxmlstream.h) 244 QT_CLASS_LIB(QXmlStreamNamespaceDeclaration, QtCore, qxmlstream.h) 245 QT_CLASS_LIB(QXmlStreamNamespaceDeclarations, QtCore, qxmlstream.h) 246 QT_CLASS_LIB(QXmlStreamNotationDeclaration, QtCore, qxmlstream.h) 247 QT_CLASS_LIB(QXmlStreamNotationDeclarations, QtCore, qxmlstream.h) 248 QT_CLASS_LIB(QXmlStreamEntityDeclaration, QtCore, qxmlstream.h) 249 QT_CLASS_LIB(QXmlStreamEntityDeclarations, QtCore, qxmlstream.h) 250 QT_CLASS_LIB(QXmlStreamEntityResolver, QtCore, qxmlstream.h) 251 QT_CLASS_LIB(QXmlStreamReader, QtCore, qxmlstream.h) 252 QT_CLASS_LIB(QXmlStreamWriter, QtCore, qxmlstream.h) 253 QT_CLASS_LIB(QAbstractState, QtCore, qabstractstate.h) 254 QT_CLASS_LIB(QAbstractTransition, QtCore, qabstracttransition.h) 255 QT_CLASS_LIB(QEventTransition, QtCore, qeventtransition.h) 256 QT_CLASS_LIB(QFinalState, QtCore, qfinalstate.h) 257 QT_CLASS_LIB(QHistoryState, QtCore, qhistorystate.h) 258 QT_CLASS_LIB(QSignalTransition, QtCore, qsignaltransition.h) 259 QT_CLASS_LIB(QState, QtCore, qstate.h) 260 QT_CLASS_LIB(QStateMachine, QtCore, qstatemachine.h) 261 QT_CLASS_LIB(QTextCodec, QtCore, qtextcodec.h) 262 QT_CLASS_LIB(QTextEncoder, QtCore, qtextcodec.h) 263 QT_CLASS_LIB(QTextDecoder, QtCore, qtextcodec.h) 264 QT_CLASS_LIB(QTextCodecFactoryInterface, QtCore, qtextcodecplugin.h) 265 QT_CLASS_LIB(QTextCodecPlugin, QtCore, qtextcodecplugin.h) 266 QT_CLASS_LIB(QAbstractFileEngine, QtCore, qabstractfileengine.h) 267 QT_CLASS_LIB(QAbstractFileEngineHandler, QtCore, qabstractfileengine.h) 268 QT_CLASS_LIB(QAbstractFileEngineIterator, QtCore, qabstractfileengine.h) 269 QT_CLASS_LIB(QBuffer, QtCore, qbuffer.h) 270 QT_CLASS_LIB(QDataStream, QtCore, qdatastream.h) 271 QT_CLASS_LIB(QtDebug, QtCore, qdebug.h) 272 QT_CLASS_LIB(QDebug, QtCore, qdebug.h) 273 QT_CLASS_LIB(QNoDebug, QtCore, qdebug.h) 274 QT_CLASS_LIB(QDir, QtCore, qdir.h) 275 QT_CLASS_LIB(QDirIterator, QtCore, qdiriterator.h) 276 QT_CLASS_LIB(QFile, QtCore, qfile.h) 277 QT_CLASS_LIB(QFileInfo, QtCore, qfileinfo.h) 278 QT_CLASS_LIB(QFileInfoList, QtCore, qfileinfo.h) 279 QT_CLASS_LIB(QFileInfoListIterator, QtCore, qfileinfo.h) 280 QT_CLASS_LIB(QFileSystemWatcher, QtCore, qfilesystemwatcher.h) 281 QT_CLASS_LIB(QFSFileEngine, QtCore, qfsfileengine.h) 282 QT_CLASS_LIB(QIODevice, QtCore, qiodevice.h) 283 QT_CLASS_LIB(Q_PID, QtCore, qprocess.h) 284 QT_CLASS_LIB(QProcessEnvironment, QtCore, qprocess.h) 285 QT_CLASS_LIB(QProcess, QtCore, qprocess.h) 286 QT_CLASS_LIB(QResource, QtCore, qresource.h) 287 QT_CLASS_LIB(QSettings, QtCore, qsettings.h) 288 QT_CLASS_LIB(QTemporaryFile, QtCore, qtemporaryfile.h) 289 QT_CLASS_LIB(QTextStream, QtCore, qtextstream.h) 290 QT_CLASS_LIB(QTextStreamFunction, QtCore, qtextstream.h) 291 QT_CLASS_LIB(QTextStreamManipulator, QtCore, qtextstream.h) 292 QT_CLASS_LIB(QTS, QtCore, qtextstream.h) 293 QT_CLASS_LIB(QTextIStream, QtCore, qtextstream.h) 294 QT_CLASS_LIB(QTextOStream, QtCore, qtextstream.h) 295 QT_CLASS_LIB(QUrl, QtCore, qurl.h) 251 296 QT_CLASS_LIB(QFuture, QtCore, qfuture.h) 252 297 QT_CLASS_LIB(QFutureIterator, QtCore, qfuture.h) … … 265 310 QT_CLASS_LIB(QtConcurrentRun, QtCore, qtconcurrentrun.h) 266 311 QT_CLASS_LIB(QThreadPool, QtCore, qthreadpool.h) 267 QT_CLASS_LIB(QFactoryInterface, QtCore, qfactoryinterface.h) 268 QT_CLASS_LIB(QLibrary, QtCore, qlibrary.h) 269 QT_CLASS_LIB(QtPlugin, QtCore, qplugin.h) 270 QT_CLASS_LIB(QtPluginInstanceFunction, QtCore, qplugin.h) 271 QT_CLASS_LIB(QPluginLoader, QtCore, qpluginloader.h) 272 QT_CLASS_LIB(QUuid, QtCore, quuid.h) 273 QT_CLASS_LIB(QAtomicInt, QtCore, qatomic.h) 274 QT_CLASS_LIB(QAtomicPointer, QtCore, qatomic.h) 275 QT_CLASS_LIB(QBasicAtomicInt, QtCore, qbasicatomic.h) 276 QT_CLASS_LIB(QBasicAtomicPointer, QtCore, qbasicatomic.h) 277 QT_CLASS_LIB(QMutex, QtCore, qmutex.h) 278 QT_CLASS_LIB(QMutexLocker, QtCore, qmutex.h) 279 QT_CLASS_LIB(QMutex, QtCore, qmutex.h) 280 QT_CLASS_LIB(QMutexLocker, QtCore, qmutex.h) 281 QT_CLASS_LIB(QReadWriteLock, QtCore, qreadwritelock.h) 282 QT_CLASS_LIB(QReadLocker, QtCore, qreadwritelock.h) 283 QT_CLASS_LIB(QWriteLocker, QtCore, qreadwritelock.h) 284 QT_CLASS_LIB(QReadWriteLock, QtCore, qreadwritelock.h) 285 QT_CLASS_LIB(QReadLocker, QtCore, qreadwritelock.h) 286 QT_CLASS_LIB(QWriteLocker, QtCore, qreadwritelock.h) 287 QT_CLASS_LIB(QSemaphore, QtCore, qsemaphore.h) 288 QT_CLASS_LIB(QThread, QtCore, qthread.h) 289 QT_CLASS_LIB(QThread, QtCore, qthread.h) 290 QT_CLASS_LIB(QThreadStorageData, QtCore, qthreadstorage.h) 291 QT_CLASS_LIB(QThreadStorage, QtCore, qthreadstorage.h) 292 QT_CLASS_LIB(QWaitCondition, QtCore, qwaitcondition.h) 293 QT_CLASS_LIB(QWaitCondition, QtCore, qwaitcondition.h) 294 QT_CLASS_LIB(QAbstractState, QtCore, qabstractstate.h) 295 QT_CLASS_LIB(QAbstractTransition, QtCore, qabstracttransition.h) 296 QT_CLASS_LIB(QEventTransition, QtCore, qeventtransition.h) 297 QT_CLASS_LIB(QFinalState, QtCore, qfinalstate.h) 298 QT_CLASS_LIB(QHistoryState, QtCore, qhistorystate.h) 299 QT_CLASS_LIB(QSignalTransition, QtCore, qsignaltransition.h) 300 QT_CLASS_LIB(QState, QtCore, qstate.h) 301 QT_CLASS_LIB(QStateMachine, QtCore, qstatemachine.h) 302 QT_CLASS_LIB(QAbstractAnimation, QtCore, qabstractanimation.h) 303 QT_CLASS_LIB(QAnimationGroup, QtCore, qanimationgroup.h) 304 QT_CLASS_LIB(QParallelAnimationGroup, QtCore, qparallelanimationgroup.h) 305 QT_CLASS_LIB(QPauseAnimation, QtCore, qpauseanimation.h) 306 QT_CLASS_LIB(QPropertyAnimation, QtCore, qpropertyanimation.h) 307 QT_CLASS_LIB(QSequentialAnimationGroup, QtCore, qsequentialanimationgroup.h) 308 QT_CLASS_LIB(QVariantAnimation, QtCore, qvariantanimation.h) 312 QT_CLASS_LIB(QDeclarativeComponent, QtDeclarative, qdeclarativecomponent.h) 313 QT_CLASS_LIB(QDeclarativeContext, QtDeclarative, qdeclarativecontext.h) 314 QT_CLASS_LIB(QDeclarativeEngine, QtDeclarative, qdeclarativeengine.h) 315 QT_CLASS_LIB(QDeclarativeError, QtDeclarative, qdeclarativeerror.h) 316 QT_CLASS_LIB(QDeclarativeExpression, QtDeclarative, qdeclarativeexpression.h) 317 QT_CLASS_LIB(QDeclarativeExtensionInterface, QtDeclarative, qdeclarativeextensioninterface.h) 318 QT_CLASS_LIB(QDeclarativeExtensionPlugin, QtDeclarative, qdeclarativeextensionplugin.h) 319 QT_CLASS_LIB(QDeclarativeImageProvider, QtDeclarative, qdeclarativeimageprovider.h) 320 QT_CLASS_LIB(QDeclarativeInfo, QtDeclarative, qdeclarativeinfo.h) 321 QT_CLASS_LIB(QDeclarativeListProperty, QtDeclarative, qdeclarativelist.h) 322 QT_CLASS_LIB(QDeclarativeListReference, QtDeclarative, qdeclarativelist.h) 323 QT_CLASS_LIB(QDeclarativeNetworkAccessManagerFactory, QtDeclarative, qdeclarativenetworkaccessmanagerfactory.h) 324 QT_CLASS_LIB(QDeclarativeParserStatus, QtDeclarative, qdeclarativeparserstatus.h) 325 QT_CLASS_LIB(QDeclarativeAttachedPropertiesFunc, QtDeclarative, qdeclarativeprivate.h) 326 QT_CLASS_LIB(QDeclarativeTypeInfo, QtDeclarative, qdeclarativeprivate.h) 327 QT_CLASS_LIB(QDeclarativeProperty, QtDeclarative, qdeclarativeproperty.h) 328 QT_CLASS_LIB(QDeclarativeProperties, QtDeclarative, qdeclarativeproperty.h) 329 QT_CLASS_LIB(QDeclarativePropertyValueInterceptor, QtDeclarative, qdeclarativepropertyvalueinterceptor.h) 330 QT_CLASS_LIB(QDeclarativePropertyValueSource, QtDeclarative, qdeclarativepropertyvaluesource.h) 331 QT_CLASS_LIB(QDeclarativeScriptString, QtDeclarative, qdeclarativescriptstring.h) 332 QT_CLASS_LIB(QDeclarativeItem, QtDeclarative, qdeclarativeitem.h) 333 QT_CLASS_LIB(QDeclarativePropertyMap, QtDeclarative, qdeclarativepropertymap.h) 334 QT_CLASS_LIB(QDeclarativeView, QtDeclarative, qdeclarativeview.h) 309 335 QT_CLASS_LIB(QMacGLCompatTypes, QtOpenGL, qgl.h) 310 336 QT_CLASS_LIB(QMacGLCompatTypes, QtOpenGL, qgl.h) … … 315 341 QT_CLASS_LIB(QGLContext, QtOpenGL, qgl.h) 316 342 QT_CLASS_LIB(QGLWidget, QtOpenGL, qgl.h) 343 QT_CLASS_LIB(QGLBuffer, QtOpenGL, qglbuffer.h) 317 344 QT_CLASS_LIB(QGLColormap, QtOpenGL, qglcolormap.h) 318 345 QT_CLASS_LIB(QGLFramebufferObject, QtOpenGL, qglframebufferobject.h) … … 323 350 QT_CLASS_LIB(QGLShader, QtOpenGL, qglshaderprogram.h) 324 351 QT_CLASS_LIB(QGLShaderProgram, QtOpenGL, qglshaderprogram.h) 352 QT_CLASS_LIB(QXmlStreamAttribute, QtXml, qxmlstream.h) 353 QT_CLASS_LIB(QXmlStreamAttributes, QtXml, qxmlstream.h) 354 QT_CLASS_LIB(QXmlStreamEntityDeclaration, QtXml, qxmlstream.h) 355 QT_CLASS_LIB(QXmlStreamEntityDeclarations, QtXml, qxmlstream.h) 356 QT_CLASS_LIB(QXmlStreamEntityResolver, QtXml, qxmlstream.h) 357 QT_CLASS_LIB(QXmlStreamNamespaceDeclaration, QtXml, qxmlstream.h) 358 QT_CLASS_LIB(QXmlStreamNamespaceDeclarations, QtXml, qxmlstream.h) 359 QT_CLASS_LIB(QXmlStreamNotationDeclaration, QtXml, qxmlstream.h) 360 QT_CLASS_LIB(QXmlStreamNotationDeclarations, QtXml, qxmlstream.h) 361 QT_CLASS_LIB(QXmlStreamReader, QtXml, qxmlstream.h) 362 QT_CLASS_LIB(QXmlStreamStringRef, QtXml, qxmlstream.h) 363 QT_CLASS_LIB(QXmlStreamWriter, QtXml, qxmlstream.h) 325 364 QT_CLASS_LIB(QXmlNamespaceSupport, QtXml, qxml.h) 326 365 QT_CLASS_LIB(QXmlAttributes, QtXml, qxml.h) … … 354 393 QT_CLASS_LIB(QDomEntityReference, QtXml, qdom.h) 355 394 QT_CLASS_LIB(QDomProcessingInstruction, QtXml, qdom.h) 356 QT_CLASS_LIB(QXmlStreamAttribute, QtXml, qxmlstream.h) 357 QT_CLASS_LIB(QXmlStreamAttributes, QtXml, qxmlstream.h) 358 QT_CLASS_LIB(QXmlStreamEntityDeclaration, QtXml, qxmlstream.h) 359 QT_CLASS_LIB(QXmlStreamEntityDeclarations, QtXml, qxmlstream.h) 360 QT_CLASS_LIB(QXmlStreamEntityResolver, QtXml, qxmlstream.h) 361 QT_CLASS_LIB(QXmlStreamNamespaceDeclaration, QtXml, qxmlstream.h) 362 QT_CLASS_LIB(QXmlStreamNamespaceDeclarations, QtXml, qxmlstream.h) 363 QT_CLASS_LIB(QXmlStreamNotationDeclaration, QtXml, qxmlstream.h) 364 QT_CLASS_LIB(QXmlStreamNotationDeclarations, QtXml, qxmlstream.h) 365 QT_CLASS_LIB(QXmlStreamReader, QtXml, qxmlstream.h) 366 QT_CLASS_LIB(QXmlStreamStringRef, QtXml, qxmlstream.h) 367 QT_CLASS_LIB(QXmlStreamWriter, QtXml, qxmlstream.h) 395 QT_CLASS_LIB(QAuthenticator, QtNetwork, qauthenticator.h) 396 QT_CLASS_LIB(QIPv6Address, QtNetwork, qhostaddress.h) 397 QT_CLASS_LIB(Q_IPV6ADDR, QtNetwork, qhostaddress.h) 398 QT_CLASS_LIB(QHostAddress, QtNetwork, qhostaddress.h) 399 QT_CLASS_LIB(QHostInfo, QtNetwork, qhostinfo.h) 400 QT_CLASS_LIB(QNetworkAddressEntry, QtNetwork, qnetworkinterface.h) 401 QT_CLASS_LIB(QNetworkInterface, QtNetwork, qnetworkinterface.h) 402 QT_CLASS_LIB(QNetworkProxyQuery, QtNetwork, qnetworkproxy.h) 403 QT_CLASS_LIB(QNetworkProxy, QtNetwork, qnetworkproxy.h) 404 QT_CLASS_LIB(QNetworkProxyFactory, QtNetwork, qnetworkproxy.h) 405 QT_CLASS_LIB(QUrlInfo, QtNetwork, qurlinfo.h) 406 QT_CLASS_LIB(QNetworkConfigurationManager, QtNetwork, qnetworkconfigmanager.h) 407 QT_CLASS_LIB(QNetworkConfiguration, QtNetwork, qnetworkconfiguration.h) 408 QT_CLASS_LIB(QNetworkSession, QtNetwork, qnetworksession.h) 368 409 QT_CLASS_LIB(QNetworkCacheMetaData, QtNetwork, qabstractnetworkcache.h) 369 410 QT_CLASS_LIB(QAbstractNetworkCache, QtNetwork, qabstractnetworkcache.h) … … 379 420 QT_CLASS_LIB(QNetworkReply, QtNetwork, qnetworkreply.h) 380 421 QT_CLASS_LIB(QNetworkRequest, QtNetwork, qnetworkrequest.h) 381 QT_CLASS_LIB(QAuthenticator, QtNetwork, qauthenticator.h)382 QT_CLASS_LIB(QIPv6Address, QtNetwork, qhostaddress.h)383 QT_CLASS_LIB(Q_IPV6ADDR, QtNetwork, qhostaddress.h)384 QT_CLASS_LIB(QHostAddress, QtNetwork, qhostaddress.h)385 QT_CLASS_LIB(QHostInfo, QtNetwork, qhostinfo.h)386 QT_CLASS_LIB(QNetworkAddressEntry, QtNetwork, qnetworkinterface.h)387 QT_CLASS_LIB(QNetworkInterface, QtNetwork, qnetworkinterface.h)388 QT_CLASS_LIB(QNetworkProxyQuery, QtNetwork, qnetworkproxy.h)389 QT_CLASS_LIB(QNetworkProxy, QtNetwork, qnetworkproxy.h)390 QT_CLASS_LIB(QNetworkProxyFactory, QtNetwork, qnetworkproxy.h)391 QT_CLASS_LIB(QUrlInfo, QtNetwork, qurlinfo.h)392 422 QT_CLASS_LIB(QAbstractSocket, QtNetwork, qabstractsocket.h) 393 423 QT_CLASS_LIB(QLocalServer, QtNetwork, qlocalserver.h) … … 415 445 QT_CLASS_LIB(QHelpSearchQueryWidget, QtHelp, qhelpsearchquerywidget.h) 416 446 QT_CLASS_LIB(QHelpSearchResultWidget, QtHelp, qhelpsearchresultwidget.h) 417 QT_CLASS_LIB(QAssistantClient, QtAssistant, qassistantclient.h)418 447 QT_CLASS_LIB(QAbstractMessageHandler, QtXmlPatterns, qabstractmessagehandler.h) 419 448 QT_CLASS_LIB(QAbstractUriResolver, QtXmlPatterns, qabstracturiresolver.h) … … 432 461 QT_CLASS_LIB(QXmlSchemaValidator, QtXmlPatterns, qxmlschemavalidator.h) 433 462 QT_CLASS_LIB(QXmlSerializer, QtXmlPatterns, qxmlserializer.h) 463 QT_CLASS_LIB(QMeeGoFenceSync, QtMeeGoGraphicsSystemHelper, qmeegofencesync.h) 464 QT_CLASS_LIB(QMeeGoGraphicsSystemHelper, QtMeeGoGraphicsSystemHelper, qmeegographicssystemhelper.h) 465 QT_CLASS_LIB(QMeeGoLivePixmap, QtMeeGoGraphicsSystemHelper, qmeegolivepixmap.h) 466 QT_CLASS_LIB(QMeeGoOverlayWidget, QtMeeGoGraphicsSystemHelper, qmeegooverlaywidget.h) 467 QT_CLASS_LIB(QMeeGoRuntime, QtMeeGoGraphicsSystemHelper, qmeegoruntime.h) 468 QT_CLASS_LIB(QMeeGoSwitchEvent, QtMeeGoGraphicsSystemHelper, qmeegoswitchevent.h) 434 469 QT_CLASS_LIB(QAxBase, ActiveQt, qaxbase.h) 435 470 QT_CLASS_LIB(QAxObject, ActiveQt, qaxobject.h) … … 552 587 QT_CLASS_LIB(QSqlRelationalTableModel, QtSql, qsqlrelationaltablemodel.h) 553 588 QT_CLASS_LIB(QSqlTableModel, QtSql, qsqltablemodel.h) 589 QT_CLASS_LIB(QTDSResult, QtSql, qsql_tds.h) 590 QT_CLASS_LIB(QTDSDriver, QtSql, qsql_tds.h) 554 591 QT_CLASS_LIB(QSQLite2Result, QtSql, qsql_sqlite2.h) 555 592 QT_CLASS_LIB(QSQLite2Driver, QtSql, qsql_sqlite2.h) 556 QT_CLASS_LIB(QODBCResult, QtSql, qsql_odbc.h)557 QT_CLASS_LIB(QODBCDriver, QtSql, qsql_odbc.h)558 QT_CLASS_LIB(QTDSResult, QtSql, qsql_tds.h)559 QT_CLASS_LIB(QTDSDriver, QtSql, qsql_tds.h)560 QT_CLASS_LIB(QIBaseResult, QtSql, qsql_ibase.h)561 QT_CLASS_LIB(QIBaseDriver, QtSql, qsql_ibase.h)562 593 QT_CLASS_LIB(QSQLiteResult, QtSql, qsql_sqlite.h) 563 594 QT_CLASS_LIB(QSQLiteDriver, QtSql, qsql_sqlite.h) 564 QT_CLASS_LIB(QMYSQLResult, QtSql, qsql_mysql.h)565 QT_CLASS_LIB(QMYSQLDriver, QtSql, qsql_mysql.h)566 595 QT_CLASS_LIB(QPSQLResult, QtSql, qsql_psql.h) 567 596 QT_CLASS_LIB(QPSQLDriver, QtSql, qsql_psql.h) 568 597 QT_CLASS_LIB(QOCIResult, QtSql, qsql_oci.h) 569 598 QT_CLASS_LIB(QOCIDriver, QtSql, qsql_oci.h) 599 QT_CLASS_LIB(QIBaseResult, QtSql, qsql_ibase.h) 600 QT_CLASS_LIB(QIBaseDriver, QtSql, qsql_ibase.h) 601 QT_CLASS_LIB(QODBCResult, QtSql, qsql_odbc.h) 602 QT_CLASS_LIB(QODBCDriver, QtSql, qsql_odbc.h) 570 603 QT_CLASS_LIB(QDB2Result, QtSql, qsql_db2.h) 571 604 QT_CLASS_LIB(QDB2Driver, QtSql, qsql_db2.h) 572 QT_CLASS_LIB(QBitmap, QtGui, qbitmap.h) 573 QT_CLASS_LIB(QIcon, QtGui, qicon.h) 574 QT_CLASS_LIB(QIconSet, QtGui, qicon.h) 575 QT_CLASS_LIB(QIconEngine, QtGui, qiconengine.h) 576 QT_CLASS_LIB(QIconEngineV2, QtGui, qiconengine.h) 577 QT_CLASS_LIB(QIconEngineFactoryInterface, QtGui, qiconengineplugin.h) 578 QT_CLASS_LIB(QIconEnginePlugin, QtGui, qiconengineplugin.h) 579 QT_CLASS_LIB(QIconEngineFactoryInterfaceV2, QtGui, qiconengineplugin.h) 580 QT_CLASS_LIB(QIconEnginePluginV2, QtGui, qiconengineplugin.h) 581 QT_CLASS_LIB(QImageTextKeyLang, QtGui, qimage.h) 582 QT_CLASS_LIB(QImage, QtGui, qimage.h) 583 QT_CLASS_LIB(QImageIOHandler, QtGui, qimageiohandler.h) 584 QT_CLASS_LIB(QImageIOHandlerFactoryInterface, QtGui, qimageiohandler.h) 585 QT_CLASS_LIB(QImageIOPlugin, QtGui, qimageiohandler.h) 586 QT_CLASS_LIB(QImageReader, QtGui, qimagereader.h) 587 QT_CLASS_LIB(QImageWriter, QtGui, qimagewriter.h) 588 QT_CLASS_LIB(QMovie, QtGui, qmovie.h) 589 QT_CLASS_LIB(QPicture, QtGui, qpicture.h) 590 QT_CLASS_LIB(QPictureIO, QtGui, qpicture.h) 591 QT_CLASS_LIB(QPictureFormatInterface, QtGui, qpictureformatplugin.h) 592 QT_CLASS_LIB(QPictureFormatPlugin, QtGui, qpictureformatplugin.h) 593 QT_CLASS_LIB(QPixmap, QtGui, qpixmap.h) 594 QT_CLASS_LIB(QPixmapCache, QtGui, qpixmapcache.h) 595 QT_CLASS_LIB(QS60MainApplication, QtGui, qs60mainapplication.h) 596 QT_CLASS_LIB(QS60MainAppUi, QtGui, qs60mainappui.h) 597 QT_CLASS_LIB(QS60MainDocument, QtGui, qs60maindocument.h) 605 QT_CLASS_LIB(QMYSQLResult, QtSql, qsql_mysql.h) 606 QT_CLASS_LIB(QMYSQLDriver, QtSql, qsql_mysql.h) 607 QT_CLASS_LIB(QAbstractPageSetupDialog, QtGui, qabstractpagesetupdialog.h) 608 QT_CLASS_LIB(QAbstractPrintDialog, QtGui, qabstractprintdialog.h) 609 QT_CLASS_LIB(QColorDialog, QtGui, qcolordialog.h) 610 QT_CLASS_LIB(QDialog, QtGui, qdialog.h) 611 QT_CLASS_LIB(QErrorMessage, QtGui, qerrormessage.h) 612 QT_CLASS_LIB(QFileDialog, QtGui, qfiledialog.h) 613 QT_CLASS_LIB(QFileSystemModel, QtGui, qfilesystemmodel.h) 614 QT_CLASS_LIB(QFontDialog, QtGui, qfontdialog.h) 615 QT_CLASS_LIB(QInputDialog, QtGui, qinputdialog.h) 616 QT_CLASS_LIB(QMessageBox, QtGui, qmessagebox.h) 617 QT_CLASS_LIB(QPageSetupDialog, QtGui, qpagesetupdialog.h) 618 QT_CLASS_LIB(QUnixPrintWidget, QtGui, qprintdialog.h) 619 QT_CLASS_LIB(QPrintDialog, QtGui, qprintdialog.h) 620 QT_CLASS_LIB(QPrintPreviewDialog, QtGui, qprintpreviewdialog.h) 621 QT_CLASS_LIB(QProgressDialog, QtGui, qprogressdialog.h) 622 QT_CLASS_LIB(QWizard, QtGui, qwizard.h) 623 QT_CLASS_LIB(QWizardPage, QtGui, qwizard.h) 598 624 QT_CLASS_LIB(QCopChannel, QtGui, qcopchannel_qws.h) 599 625 QT_CLASS_LIB(QDecorationAction, QtGui, qdecoration_qws.h) … … 665 691 QT_CLASS_LIB(QWSSocket, QtGui, qwssocket_qws.h) 666 692 QT_CLASS_LIB(QWSServerSocket, QtGui, qwssocket_qws.h) 667 QT_CLASS_LIB(QAbstractButton, QtGui, qabstractbutton.h)668 QT_CLASS_LIB(QAbstractScrollArea, QtGui, qabstractscrollarea.h)669 QT_CLASS_LIB(QAbstractSlider, QtGui, qabstractslider.h)670 QT_CLASS_LIB(QAbstractSpinBox, QtGui, qabstractspinbox.h)671 QT_CLASS_LIB(QButtonGroup, QtGui, qbuttongroup.h)672 QT_CLASS_LIB(QCalendarWidget, QtGui, qcalendarwidget.h)673 QT_CLASS_LIB(QCheckBox, QtGui, qcheckbox.h)674 QT_CLASS_LIB(QComboBox, QtGui, qcombobox.h)675 QT_CLASS_LIB(QCommandLinkButton, QtGui, qcommandlinkbutton.h)676 QT_CLASS_LIB(QDateTimeEdit, QtGui, qdatetimeedit.h)677 QT_CLASS_LIB(QTimeEdit, QtGui, qdatetimeedit.h)678 QT_CLASS_LIB(QDateEdit, QtGui, qdatetimeedit.h)679 QT_CLASS_LIB(QDial, QtGui, qdial.h)680 QT_CLASS_LIB(QDialogButtonBox, QtGui, qdialogbuttonbox.h)681 QT_CLASS_LIB(QDockWidget, QtGui, qdockwidget.h)682 QT_CLASS_LIB(QFocusFrame, QtGui, qfocusframe.h)683 QT_CLASS_LIB(QFontComboBox, QtGui, qfontcombobox.h)684 QT_CLASS_LIB(QFrame, QtGui, qframe.h)685 QT_CLASS_LIB(QGroupBox, QtGui, qgroupbox.h)686 QT_CLASS_LIB(QLabel, QtGui, qlabel.h)687 QT_CLASS_LIB(QLCDNumber, QtGui, qlcdnumber.h)688 QT_CLASS_LIB(QLineEdit, QtGui, qlineedit.h)689 QT_CLASS_LIB(QMacCocoaViewContainer, QtGui, qmaccocoaviewcontainer_mac.h)690 QT_CLASS_LIB(QMacNativeWidget, QtGui, qmacnativewidget_mac.h)691 QT_CLASS_LIB(QMainWindow, QtGui, qmainwindow.h)692 QT_CLASS_LIB(QMdiArea, QtGui, qmdiarea.h)693 QT_CLASS_LIB(QMdiSubWindow, QtGui, qmdisubwindow.h)694 QT_CLASS_LIB(QMenu, QtGui, qmenu.h)695 QT_CLASS_LIB(QMenuBar, QtGui, qmenubar.h)696 QT_CLASS_LIB(QMenuItem, QtGui, qmenudata.h)697 QT_CLASS_LIB(QPlainTextEdit, QtGui, qplaintextedit.h)698 QT_CLASS_LIB(QPlainTextDocumentLayout, QtGui, qplaintextedit.h)699 QT_CLASS_LIB(QPrintPreviewWidget, QtGui, qprintpreviewwidget.h)700 QT_CLASS_LIB(QProgressBar, QtGui, qprogressbar.h)701 QT_CLASS_LIB(QPushButton, QtGui, qpushbutton.h)702 QT_CLASS_LIB(QRadioButton, QtGui, qradiobutton.h)703 QT_CLASS_LIB(QRubberBand, QtGui, qrubberband.h)704 QT_CLASS_LIB(QScrollArea, QtGui, qscrollarea.h)705 QT_CLASS_LIB(QScrollBar, QtGui, qscrollbar.h)706 QT_CLASS_LIB(QSizeGrip, QtGui, qsizegrip.h)707 QT_CLASS_LIB(QSlider, QtGui, qslider.h)708 QT_CLASS_LIB(QSpinBox, QtGui, qspinbox.h)709 QT_CLASS_LIB(QDoubleSpinBox, QtGui, qspinbox.h)710 QT_CLASS_LIB(QSplashScreen, QtGui, qsplashscreen.h)711 QT_CLASS_LIB(QSplitter, QtGui, qsplitter.h)712 QT_CLASS_LIB(QSplitterHandle, QtGui, qsplitter.h)713 QT_CLASS_LIB(QStackedWidget, QtGui, qstackedwidget.h)714 QT_CLASS_LIB(QStatusBar, QtGui, qstatusbar.h)715 QT_CLASS_LIB(QTabBar, QtGui, qtabbar.h)716 QT_CLASS_LIB(QTabWidget, QtGui, qtabwidget.h)717 QT_CLASS_LIB(QTextBrowser, QtGui, qtextbrowser.h)718 QT_CLASS_LIB(QTextEdit, QtGui, qtextedit.h)719 QT_CLASS_LIB(QToolBar, QtGui, qtoolbar.h)720 QT_CLASS_LIB(QToolBox, QtGui, qtoolbox.h)721 QT_CLASS_LIB(QToolButton, QtGui, qtoolbutton.h)722 QT_CLASS_LIB(QValidator, QtGui, qvalidator.h)723 QT_CLASS_LIB(QIntValidator, QtGui, qvalidator.h)724 QT_CLASS_LIB(QDoubleValidator, QtGui, qvalidator.h)725 QT_CLASS_LIB(QRegExpValidator, QtGui, qvalidator.h)726 QT_CLASS_LIB(QWorkspace, QtGui, qworkspace.h)727 QT_CLASS_LIB(QInputContext, QtGui, qinputcontext.h)728 QT_CLASS_LIB(QInputContextFactory, QtGui, qinputcontextfactory.h)729 QT_CLASS_LIB(QInputContextFactoryInterface, QtGui, qinputcontextplugin.h)730 QT_CLASS_LIB(QInputContextPlugin, QtGui, qinputcontextplugin.h)731 693 QT_CLASS_LIB(QGraphicsAnchor, QtGui, qgraphicsanchorlayout.h) 732 694 QT_CLASS_LIB(QGraphicsAnchorLayout, QtGui, qgraphicsanchorlayout.h) … … 764 726 QT_CLASS_LIB(QGraphicsView, QtGui, qgraphicsview.h) 765 727 QT_CLASS_LIB(QGraphicsWidget, QtGui, qgraphicswidget.h) 766 QT_CLASS_LIB(QGenericMatrix, QtGui, qgenericmatrix.h)767 QT_CLASS_LIB(QMatrix2x2, QtGui, qgenericmatrix.h)768 QT_CLASS_LIB(QMatrix2x3, QtGui, qgenericmatrix.h)769 QT_CLASS_LIB(QMatrix2x4, QtGui, qgenericmatrix.h)770 QT_CLASS_LIB(QMatrix3x2, QtGui, qgenericmatrix.h)771 QT_CLASS_LIB(QMatrix3x3, QtGui, qgenericmatrix.h)772 QT_CLASS_LIB(QMatrix3x4, QtGui, qgenericmatrix.h)773 QT_CLASS_LIB(QMatrix4x2, QtGui, qgenericmatrix.h)774 QT_CLASS_LIB(QMatrix4x3, QtGui, qgenericmatrix.h)775 QT_CLASS_LIB(QMatrix4x4, QtGui, qmatrix4x4.h)776 QT_CLASS_LIB(QQuaternion, QtGui, qquaternion.h)777 QT_CLASS_LIB(QVector2D, QtGui, qvector2d.h)778 QT_CLASS_LIB(QVector3D, QtGui, qvector3d.h)779 QT_CLASS_LIB(QVector4D, QtGui, qvector4d.h)780 QT_CLASS_LIB(QFontEngineInfo, QtGui, qabstractfontengine_qws.h)781 QT_CLASS_LIB(QFontEngineFactoryInterface, QtGui, qabstractfontengine_qws.h)782 QT_CLASS_LIB(QFontEnginePlugin, QtGui, qabstractfontengine_qws.h)783 QT_CLASS_LIB(QAbstractFontEngine, QtGui, qabstractfontengine_qws.h)784 QT_CLASS_LIB(QAbstractTextDocumentLayout, QtGui, qabstracttextdocumentlayout.h)785 QT_CLASS_LIB(QTextObjectInterface, QtGui, qabstracttextdocumentlayout.h)786 QT_CLASS_LIB(QFont, QtGui, qfont.h)787 QT_CLASS_LIB(QFontDatabase, QtGui, qfontdatabase.h)788 QT_CLASS_LIB(QFontInfo, QtGui, qfontinfo.h)789 QT_CLASS_LIB(QFontMetrics, QtGui, qfontmetrics.h)790 QT_CLASS_LIB(QFontMetricsF, QtGui, qfontmetrics.h)791 QT_CLASS_LIB(QSyntaxHighlighter, QtGui, qsyntaxhighlighter.h)792 QT_CLASS_LIB(QTextCursor, QtGui, qtextcursor.h)793 QT_CLASS_LIB(QAbstractUndoItem, QtGui, qtextdocument.h)794 QT_CLASS_LIB(QTextDocument, QtGui, qtextdocument.h)795 QT_CLASS_LIB(QTextDocumentFragment, QtGui, qtextdocumentfragment.h)796 QT_CLASS_LIB(QTextDocumentWriter, QtGui, qtextdocumentwriter.h)797 QT_CLASS_LIB(QTextLength, QtGui, qtextformat.h)798 QT_CLASS_LIB(QTextFormat, QtGui, qtextformat.h)799 QT_CLASS_LIB(QTextCharFormat, QtGui, qtextformat.h)800 QT_CLASS_LIB(QTextBlockFormat, QtGui, qtextformat.h)801 QT_CLASS_LIB(QTextListFormat, QtGui, qtextformat.h)802 QT_CLASS_LIB(QTextImageFormat, QtGui, qtextformat.h)803 QT_CLASS_LIB(QTextFrameFormat, QtGui, qtextformat.h)804 QT_CLASS_LIB(QTextTableFormat, QtGui, qtextformat.h)805 QT_CLASS_LIB(QTextTableCellFormat, QtGui, qtextformat.h)806 QT_CLASS_LIB(QTextInlineObject, QtGui, qtextlayout.h)807 QT_CLASS_LIB(QTextLayout, QtGui, qtextlayout.h)808 QT_CLASS_LIB(QTextLine, QtGui, qtextlayout.h)809 QT_CLASS_LIB(QTextList, QtGui, qtextlist.h)810 QT_CLASS_LIB(QTextObject, QtGui, qtextobject.h)811 QT_CLASS_LIB(QTextBlockGroup, QtGui, qtextobject.h)812 QT_CLASS_LIB(QTextFrameLayoutData, QtGui, qtextobject.h)813 QT_CLASS_LIB(QTextFrame, QtGui, qtextobject.h)814 QT_CLASS_LIB(QTextBlockUserData, QtGui, qtextobject.h)815 QT_CLASS_LIB(QTextBlock, QtGui, qtextobject.h)816 QT_CLASS_LIB(QTextFragment, QtGui, qtextobject.h)817 QT_CLASS_LIB(QTextOption, QtGui, qtextoption.h)818 QT_CLASS_LIB(QTextTableCell, QtGui, qtexttable.h)819 QT_CLASS_LIB(QTextTable, QtGui, qtexttable.h)820 QT_CLASS_LIB(QAbstractPageSetupDialog, QtGui, qabstractpagesetupdialog.h)821 QT_CLASS_LIB(QAbstractPrintDialog, QtGui, qabstractprintdialog.h)822 QT_CLASS_LIB(QColorDialog, QtGui, qcolordialog.h)823 QT_CLASS_LIB(QDialog, QtGui, qdialog.h)824 QT_CLASS_LIB(QErrorMessage, QtGui, qerrormessage.h)825 QT_CLASS_LIB(QFileDialog, QtGui, qfiledialog.h)826 QT_CLASS_LIB(QFileSystemModel, QtGui, qfilesystemmodel.h)827 QT_CLASS_LIB(QFontDialog, QtGui, qfontdialog.h)828 QT_CLASS_LIB(QInputDialog, QtGui, qinputdialog.h)829 QT_CLASS_LIB(QMessageBox, QtGui, qmessagebox.h)830 QT_CLASS_LIB(QPageSetupDialog, QtGui, qpagesetupdialog.h)831 QT_CLASS_LIB(QUnixPrintWidget, QtGui, qprintdialog.h)832 QT_CLASS_LIB(QPrintDialog, QtGui, qprintdialog.h)833 QT_CLASS_LIB(QPrintPreviewDialog, QtGui, qprintpreviewdialog.h)834 QT_CLASS_LIB(QProgressDialog, QtGui, qprogressdialog.h)835 QT_CLASS_LIB(QWizard, QtGui, qwizard.h)836 QT_CLASS_LIB(QWizardPage, QtGui, qwizard.h)837 QT_CLASS_LIB(QAccessible, QtGui, qaccessible.h)838 QT_CLASS_LIB(QAccessibleInterface, QtGui, qaccessible.h)839 QT_CLASS_LIB(QAccessibleInterfaceEx, QtGui, qaccessible.h)840 QT_CLASS_LIB(QAccessibleEvent, QtGui, qaccessible.h)841 QT_CLASS_LIB(QAccessible2Interface, QtGui, qaccessible2.h)842 QT_CLASS_LIB(QAccessibleTextInterface, QtGui, qaccessible2.h)843 QT_CLASS_LIB(QAccessibleEditableTextInterface, QtGui, qaccessible2.h)844 QT_CLASS_LIB(QAccessibleSimpleEditableTextInterface, QtGui, qaccessible2.h)845 QT_CLASS_LIB(QAccessibleValueInterface, QtGui, qaccessible2.h)846 QT_CLASS_LIB(QAccessibleTableInterface, QtGui, qaccessible2.h)847 QT_CLASS_LIB(QAccessibleActionInterface, QtGui, qaccessible2.h)848 QT_CLASS_LIB(QAccessibleImageInterface, QtGui, qaccessible2.h)849 QT_CLASS_LIB(QAccessibleBridge, QtGui, qaccessiblebridge.h)850 QT_CLASS_LIB(QAccessibleBridgeFactoryInterface, QtGui, qaccessiblebridge.h)851 QT_CLASS_LIB(QAccessibleBridgePlugin, QtGui, qaccessiblebridge.h)852 QT_CLASS_LIB(QAccessibleObject, QtGui, qaccessibleobject.h)853 QT_CLASS_LIB(QAccessibleObjectEx, QtGui, qaccessibleobject.h)854 QT_CLASS_LIB(QAccessibleApplication, QtGui, qaccessibleobject.h)855 QT_CLASS_LIB(QAccessibleFactoryInterface, QtGui, qaccessibleplugin.h)856 QT_CLASS_LIB(QAccessiblePlugin, QtGui, qaccessibleplugin.h)857 QT_CLASS_LIB(QAccessibleWidget, QtGui, qaccessiblewidget.h)858 QT_CLASS_LIB(QAccessibleWidgetEx, QtGui, qaccessiblewidget.h)859 728 QT_CLASS_LIB(QAction, QtGui, qaction.h) 860 729 QT_CLASS_LIB(QActionGroup, QtGui, qactiongroup.h) … … 943 812 QT_CLASS_LIB(QX11EmbedContainer, QtGui, qx11embed_x11.h) 944 813 QT_CLASS_LIB(QX11Info, QtGui, qx11info_x11.h) 814 QT_CLASS_LIB(QGraphicsEffect, QtGui, qgraphicseffect.h) 815 QT_CLASS_LIB(QGraphicsColorizeEffect, QtGui, qgraphicseffect.h) 816 QT_CLASS_LIB(QGraphicsBlurEffect, QtGui, qgraphicseffect.h) 817 QT_CLASS_LIB(QGraphicsDropShadowEffect, QtGui, qgraphicseffect.h) 818 QT_CLASS_LIB(QGraphicsOpacityEffect, QtGui, qgraphicseffect.h) 819 QT_CLASS_LIB(QS60MainApplicationBase, QtGui, qs60mainapplication.h) 820 QT_CLASS_LIB(QS60MainApplicationBase, QtGui, qs60mainapplication.h) 821 QT_CLASS_LIB(QS60MainApplication, QtGui, qs60mainapplication.h) 822 QT_CLASS_LIB(QS60MainAppUiBase, QtGui, qs60mainappui.h) 823 QT_CLASS_LIB(QS60StubAknAppUiBase, QtGui, qs60mainappui.h) 824 QT_CLASS_LIB(QS60StubMEikStatusPaneObserver, QtGui, qs60mainappui.h) 825 QT_CLASS_LIB(QS60StubMAknTouchPaneObserver, QtGui, qs60mainappui.h) 826 QT_CLASS_LIB(QS60StubAknAppUi, QtGui, qs60mainappui.h) 827 QT_CLASS_LIB(QS60MainAppUiBase, QtGui, qs60mainappui.h) 828 QT_CLASS_LIB(QS60MainAppUi, QtGui, qs60mainappui.h) 829 QT_CLASS_LIB(QS60MainDocumentBase, QtGui, qs60maindocument.h) 830 QT_CLASS_LIB(QS60MainDocumentBase, QtGui, qs60maindocument.h) 831 QT_CLASS_LIB(QS60MainDocument, QtGui, qs60maindocument.h) 832 QT_CLASS_LIB(QGenericMatrix, QtGui, qgenericmatrix.h) 833 QT_CLASS_LIB(QMatrix2x2, QtGui, qgenericmatrix.h) 834 QT_CLASS_LIB(QMatrix2x3, QtGui, qgenericmatrix.h) 835 QT_CLASS_LIB(QMatrix2x4, QtGui, qgenericmatrix.h) 836 QT_CLASS_LIB(QMatrix3x2, QtGui, qgenericmatrix.h) 837 QT_CLASS_LIB(QMatrix3x3, QtGui, qgenericmatrix.h) 838 QT_CLASS_LIB(QMatrix3x4, QtGui, qgenericmatrix.h) 839 QT_CLASS_LIB(QMatrix4x2, QtGui, qgenericmatrix.h) 840 QT_CLASS_LIB(QMatrix4x3, QtGui, qgenericmatrix.h) 841 QT_CLASS_LIB(QMatrix4x4, QtGui, qmatrix4x4.h) 842 QT_CLASS_LIB(QQuaternion, QtGui, qquaternion.h) 843 QT_CLASS_LIB(QVector2D, QtGui, qvector2d.h) 844 QT_CLASS_LIB(QVector3D, QtGui, qvector3d.h) 845 QT_CLASS_LIB(QVector4D, QtGui, qvector4d.h) 846 QT_CLASS_LIB(QBitmap, QtGui, qbitmap.h) 847 QT_CLASS_LIB(QIcon, QtGui, qicon.h) 848 QT_CLASS_LIB(QIconSet, QtGui, qicon.h) 849 QT_CLASS_LIB(QIconEngine, QtGui, qiconengine.h) 850 QT_CLASS_LIB(QIconEngineV2, QtGui, qiconengine.h) 851 QT_CLASS_LIB(QIconEngineFactoryInterface, QtGui, qiconengineplugin.h) 852 QT_CLASS_LIB(QIconEnginePlugin, QtGui, qiconengineplugin.h) 853 QT_CLASS_LIB(QIconEngineFactoryInterfaceV2, QtGui, qiconengineplugin.h) 854 QT_CLASS_LIB(QIconEnginePluginV2, QtGui, qiconengineplugin.h) 855 QT_CLASS_LIB(QImageTextKeyLang, QtGui, qimage.h) 856 QT_CLASS_LIB(QImage, QtGui, qimage.h) 857 QT_CLASS_LIB(QImageIOHandler, QtGui, qimageiohandler.h) 858 QT_CLASS_LIB(QImageIOHandlerFactoryInterface, QtGui, qimageiohandler.h) 859 QT_CLASS_LIB(QImageIOPlugin, QtGui, qimageiohandler.h) 860 QT_CLASS_LIB(QImageReader, QtGui, qimagereader.h) 861 QT_CLASS_LIB(QImageWriter, QtGui, qimagewriter.h) 862 QT_CLASS_LIB(QMovie, QtGui, qmovie.h) 863 QT_CLASS_LIB(QPicture, QtGui, qpicture.h) 864 QT_CLASS_LIB(QPictureIO, QtGui, qpicture.h) 865 QT_CLASS_LIB(QPictureFormatInterface, QtGui, qpictureformatplugin.h) 866 QT_CLASS_LIB(QPictureFormatPlugin, QtGui, qpictureformatplugin.h) 867 QT_CLASS_LIB(QPixmap, QtGui, qpixmap.h) 868 QT_CLASS_LIB(QPixmapCache, QtGui, qpixmapcache.h) 869 QT_CLASS_LIB(QSymbianEvent, QtGui, qsymbianevent.h) 870 QT_CLASS_LIB(QFontEngineInfo, QtGui, qabstractfontengine_qws.h) 871 QT_CLASS_LIB(QFontEngineFactoryInterface, QtGui, qabstractfontengine_qws.h) 872 QT_CLASS_LIB(QFontEnginePlugin, QtGui, qabstractfontengine_qws.h) 873 QT_CLASS_LIB(QAbstractFontEngine, QtGui, qabstractfontengine_qws.h) 874 QT_CLASS_LIB(QAbstractTextDocumentLayout, QtGui, qabstracttextdocumentlayout.h) 875 QT_CLASS_LIB(QTextObjectInterface, QtGui, qabstracttextdocumentlayout.h) 876 QT_CLASS_LIB(QFont, QtGui, qfont.h) 877 QT_CLASS_LIB(QFontDatabase, QtGui, qfontdatabase.h) 878 QT_CLASS_LIB(QFontInfo, QtGui, qfontinfo.h) 879 QT_CLASS_LIB(QFontMetrics, QtGui, qfontmetrics.h) 880 QT_CLASS_LIB(QFontMetricsF, QtGui, qfontmetrics.h) 881 QT_CLASS_LIB(QStaticText, QtGui, qstatictext.h) 882 QT_CLASS_LIB(QSyntaxHighlighter, QtGui, qsyntaxhighlighter.h) 883 QT_CLASS_LIB(QTextCursor, QtGui, qtextcursor.h) 884 QT_CLASS_LIB(QAbstractUndoItem, QtGui, qtextdocument.h) 885 QT_CLASS_LIB(QTextDocument, QtGui, qtextdocument.h) 886 QT_CLASS_LIB(QTextDocumentFragment, QtGui, qtextdocumentfragment.h) 887 QT_CLASS_LIB(QTextDocumentWriter, QtGui, qtextdocumentwriter.h) 888 QT_CLASS_LIB(QTextLength, QtGui, qtextformat.h) 889 QT_CLASS_LIB(QTextFormat, QtGui, qtextformat.h) 890 QT_CLASS_LIB(QTextCharFormat, QtGui, qtextformat.h) 891 QT_CLASS_LIB(QTextBlockFormat, QtGui, qtextformat.h) 892 QT_CLASS_LIB(QTextListFormat, QtGui, qtextformat.h) 893 QT_CLASS_LIB(QTextImageFormat, QtGui, qtextformat.h) 894 QT_CLASS_LIB(QTextFrameFormat, QtGui, qtextformat.h) 895 QT_CLASS_LIB(QTextTableFormat, QtGui, qtextformat.h) 896 QT_CLASS_LIB(QTextTableCellFormat, QtGui, qtextformat.h) 897 QT_CLASS_LIB(QTextInlineObject, QtGui, qtextlayout.h) 898 QT_CLASS_LIB(QTextLayout, QtGui, qtextlayout.h) 899 QT_CLASS_LIB(QTextLine, QtGui, qtextlayout.h) 900 QT_CLASS_LIB(QTextList, QtGui, qtextlist.h) 901 QT_CLASS_LIB(QTextObject, QtGui, qtextobject.h) 902 QT_CLASS_LIB(QTextBlockGroup, QtGui, qtextobject.h) 903 QT_CLASS_LIB(QTextFrameLayoutData, QtGui, qtextobject.h) 904 QT_CLASS_LIB(QTextFrame, QtGui, qtextobject.h) 905 QT_CLASS_LIB(QTextBlockUserData, QtGui, qtextobject.h) 906 QT_CLASS_LIB(QTextBlock, QtGui, qtextobject.h) 907 QT_CLASS_LIB(QTextFragment, QtGui, qtextobject.h) 908 QT_CLASS_LIB(QTextOption, QtGui, qtextoption.h) 909 QT_CLASS_LIB(QTextTableCell, QtGui, qtexttable.h) 910 QT_CLASS_LIB(QTextTable, QtGui, qtexttable.h) 945 911 QT_CLASS_LIB(QAbstractItemDelegate, QtGui, qabstractitemdelegate.h) 946 912 QT_CLASS_LIB(QAbstractItemView, QtGui, qabstractitemview.h) … … 976 942 QT_CLASS_LIB(QTreeWidget, QtGui, qtreewidget.h) 977 943 QT_CLASS_LIB(QTreeWidgetItemIterator, QtGui, qtreewidgetitemiterator.h) 978 QT_CLASS_LIB(QBrush, QtGui, qbrush.h) 979 QT_CLASS_LIB(QBrushData, QtGui, qbrush.h) 980 QT_CLASS_LIB(QGradientStop, QtGui, qbrush.h) 981 QT_CLASS_LIB(QGradientStops, QtGui, qbrush.h) 982 QT_CLASS_LIB(QGradient, QtGui, qbrush.h) 983 QT_CLASS_LIB(QLinearGradient, QtGui, qbrush.h) 984 QT_CLASS_LIB(QRadialGradient, QtGui, qbrush.h) 985 QT_CLASS_LIB(QConicalGradient, QtGui, qbrush.h) 986 QT_CLASS_LIB(QColor, QtGui, qcolor.h) 987 QT_CLASS_LIB(QColormap, QtGui, qcolormap.h) 988 QT_CLASS_LIB(QTileRules, QtGui, qdrawutil.h) 989 QT_CLASS_LIB(QMatrix, QtGui, qmatrix.h) 990 QT_CLASS_LIB(QPaintDevice, QtGui, qpaintdevice.h) 991 QT_CLASS_LIB(QTextItem, QtGui, qpaintengine.h) 992 QT_CLASS_LIB(QPaintEngine, QtGui, qpaintengine.h) 993 QT_CLASS_LIB(QPaintEngineState, QtGui, qpaintengine.h) 994 QT_CLASS_LIB(QPainter, QtGui, qpainter.h) 995 QT_CLASS_LIB(QPainterPath, QtGui, qpainterpath.h) 996 QT_CLASS_LIB(QPainterPathPrivate, QtGui, qpainterpath.h) 997 QT_CLASS_LIB(QPainterPathStroker, QtGui, qpainterpath.h) 998 QT_CLASS_LIB(QPen, QtGui, qpen.h) 999 QT_CLASS_LIB(QPolygon, QtGui, qpolygon.h) 1000 QT_CLASS_LIB(QPolygonF, QtGui, qpolygon.h) 1001 QT_CLASS_LIB(QPrintEngine, QtGui, qprintengine.h) 1002 QT_CLASS_LIB(QPrinter, QtGui, qprinter.h) 1003 QT_CLASS_LIB(QPrinterInfo, QtGui, qprinterinfo.h) 1004 QT_CLASS_LIB(QRegion, QtGui, qregion.h) 1005 QT_CLASS_LIB(QRgb, QtGui, qrgb.h) 1006 QT_CLASS_LIB(QStylePainter, QtGui, qstylepainter.h) 1007 QT_CLASS_LIB(QTransform, QtGui, qtransform.h) 1008 QT_CLASS_LIB(QWMatrix, QtGui, qwmatrix.h) 1009 QT_CLASS_LIB(QSymbianEvent, QtGui, qsymbianevent.h) 944 QT_CLASS_LIB(QAbstractButton, QtGui, qabstractbutton.h) 945 QT_CLASS_LIB(QAbstractScrollArea, QtGui, qabstractscrollarea.h) 946 QT_CLASS_LIB(QAbstractSlider, QtGui, qabstractslider.h) 947 QT_CLASS_LIB(QAbstractSpinBox, QtGui, qabstractspinbox.h) 948 QT_CLASS_LIB(QButtonGroup, QtGui, qbuttongroup.h) 949 QT_CLASS_LIB(QCalendarWidget, QtGui, qcalendarwidget.h) 950 QT_CLASS_LIB(QCheckBox, QtGui, qcheckbox.h) 951 QT_CLASS_LIB(QComboBox, QtGui, qcombobox.h) 952 QT_CLASS_LIB(QCommandLinkButton, QtGui, qcommandlinkbutton.h) 953 QT_CLASS_LIB(QDateTimeEdit, QtGui, qdatetimeedit.h) 954 QT_CLASS_LIB(QTimeEdit, QtGui, qdatetimeedit.h) 955 QT_CLASS_LIB(QDateEdit, QtGui, qdatetimeedit.h) 956 QT_CLASS_LIB(QDial, QtGui, qdial.h) 957 QT_CLASS_LIB(QDialogButtonBox, QtGui, qdialogbuttonbox.h) 958 QT_CLASS_LIB(QDockWidget, QtGui, qdockwidget.h) 959 QT_CLASS_LIB(QFocusFrame, QtGui, qfocusframe.h) 960 QT_CLASS_LIB(QFontComboBox, QtGui, qfontcombobox.h) 961 QT_CLASS_LIB(QFrame, QtGui, qframe.h) 962 QT_CLASS_LIB(QGroupBox, QtGui, qgroupbox.h) 963 QT_CLASS_LIB(QLabel, QtGui, qlabel.h) 964 QT_CLASS_LIB(QLCDNumber, QtGui, qlcdnumber.h) 965 QT_CLASS_LIB(QLineEdit, QtGui, qlineedit.h) 966 QT_CLASS_LIB(QMacCocoaViewContainer, QtGui, qmaccocoaviewcontainer_mac.h) 967 QT_CLASS_LIB(QMacNativeWidget, QtGui, qmacnativewidget_mac.h) 968 QT_CLASS_LIB(QMainWindow, QtGui, qmainwindow.h) 969 QT_CLASS_LIB(QMdiArea, QtGui, qmdiarea.h) 970 QT_CLASS_LIB(QMdiSubWindow, QtGui, qmdisubwindow.h) 971 QT_CLASS_LIB(QMenu, QtGui, qmenu.h) 972 QT_CLASS_LIB(QMenuBar, QtGui, qmenubar.h) 973 QT_CLASS_LIB(QMenuItem, QtGui, qmenudata.h) 974 QT_CLASS_LIB(QPlainTextEdit, QtGui, qplaintextedit.h) 975 QT_CLASS_LIB(QPlainTextDocumentLayout, QtGui, qplaintextedit.h) 976 QT_CLASS_LIB(QPrintPreviewWidget, QtGui, qprintpreviewwidget.h) 977 QT_CLASS_LIB(QProgressBar, QtGui, qprogressbar.h) 978 QT_CLASS_LIB(QPushButton, QtGui, qpushbutton.h) 979 QT_CLASS_LIB(QRadioButton, QtGui, qradiobutton.h) 980 QT_CLASS_LIB(QRubberBand, QtGui, qrubberband.h) 981 QT_CLASS_LIB(QScrollArea, QtGui, qscrollarea.h) 982 QT_CLASS_LIB(QScrollBar, QtGui, qscrollbar.h) 983 QT_CLASS_LIB(QSizeGrip, QtGui, qsizegrip.h) 984 QT_CLASS_LIB(QSlider, QtGui, qslider.h) 985 QT_CLASS_LIB(QSpinBox, QtGui, qspinbox.h) 986 QT_CLASS_LIB(QDoubleSpinBox, QtGui, qspinbox.h) 987 QT_CLASS_LIB(QSplashScreen, QtGui, qsplashscreen.h) 988 QT_CLASS_LIB(QSplitter, QtGui, qsplitter.h) 989 QT_CLASS_LIB(QSplitterHandle, QtGui, qsplitter.h) 990 QT_CLASS_LIB(QStackedWidget, QtGui, qstackedwidget.h) 991 QT_CLASS_LIB(QStatusBar, QtGui, qstatusbar.h) 992 QT_CLASS_LIB(QTabBar, QtGui, qtabbar.h) 993 QT_CLASS_LIB(QTabWidget, QtGui, qtabwidget.h) 994 QT_CLASS_LIB(QTextBrowser, QtGui, qtextbrowser.h) 995 QT_CLASS_LIB(QTextEdit, QtGui, qtextedit.h) 996 QT_CLASS_LIB(QToolBar, QtGui, qtoolbar.h) 997 QT_CLASS_LIB(QToolBox, QtGui, qtoolbox.h) 998 QT_CLASS_LIB(QToolButton, QtGui, qtoolbutton.h) 999 QT_CLASS_LIB(QValidator, QtGui, qvalidator.h) 1000 QT_CLASS_LIB(QIntValidator, QtGui, qvalidator.h) 1001 QT_CLASS_LIB(QDoubleValidator, QtGui, qvalidator.h) 1002 QT_CLASS_LIB(QRegExpValidator, QtGui, qvalidator.h) 1003 QT_CLASS_LIB(QWorkspace, QtGui, qworkspace.h) 1004 QT_CLASS_LIB(QKeyEventTransition, QtGui, qkeyeventtransition.h) 1005 QT_CLASS_LIB(QMouseEventTransition, QtGui, qmouseeventtransition.h) 1006 QT_CLASS_LIB(QCompleter, QtGui, qcompleter.h) 1007 QT_CLASS_LIB(QDesktopServices, QtGui, qdesktopservices.h) 1008 QT_CLASS_LIB(QSystemTrayIcon, QtGui, qsystemtrayicon.h) 1009 QT_CLASS_LIB(QUndoGroup, QtGui, qundogroup.h) 1010 QT_CLASS_LIB(QUndoCommand, QtGui, qundostack.h) 1011 QT_CLASS_LIB(QUndoStack, QtGui, qundostack.h) 1012 QT_CLASS_LIB(QUndoView, QtGui, qundoview.h) 1013 QT_CLASS_LIB(QAccessible, QtGui, qaccessible.h) 1014 QT_CLASS_LIB(QAccessibleInterface, QtGui, qaccessible.h) 1015 QT_CLASS_LIB(QAccessibleInterfaceEx, QtGui, qaccessible.h) 1016 QT_CLASS_LIB(QAccessibleEvent, QtGui, qaccessible.h) 1017 QT_CLASS_LIB(QAccessible2Interface, QtGui, qaccessible2.h) 1018 QT_CLASS_LIB(QAccessibleTextInterface, QtGui, qaccessible2.h) 1019 QT_CLASS_LIB(QAccessibleEditableTextInterface, QtGui, qaccessible2.h) 1020 QT_CLASS_LIB(QAccessibleSimpleEditableTextInterface, QtGui, qaccessible2.h) 1021 QT_CLASS_LIB(QAccessibleValueInterface, QtGui, qaccessible2.h) 1022 QT_CLASS_LIB(QAccessibleTableInterface, QtGui, qaccessible2.h) 1023 QT_CLASS_LIB(QAccessibleActionInterface, QtGui, qaccessible2.h) 1024 QT_CLASS_LIB(QAccessibleImageInterface, QtGui, qaccessible2.h) 1025 QT_CLASS_LIB(QAccessibleBridge, QtGui, qaccessiblebridge.h) 1026 QT_CLASS_LIB(QAccessibleBridgeFactoryInterface, QtGui, qaccessiblebridge.h) 1027 QT_CLASS_LIB(QAccessibleBridgePlugin, QtGui, qaccessiblebridge.h) 1028 QT_CLASS_LIB(QAccessibleObject, QtGui, qaccessibleobject.h) 1029 QT_CLASS_LIB(QAccessibleObjectEx, QtGui, qaccessibleobject.h) 1030 QT_CLASS_LIB(QAccessibleApplication, QtGui, qaccessibleobject.h) 1031 QT_CLASS_LIB(QAccessibleFactoryInterface, QtGui, qaccessibleplugin.h) 1032 QT_CLASS_LIB(QAccessiblePlugin, QtGui, qaccessibleplugin.h) 1033 QT_CLASS_LIB(QAccessibleWidget, QtGui, qaccessiblewidget.h) 1034 QT_CLASS_LIB(QAccessibleWidgetEx, QtGui, qaccessiblewidget.h) 1010 1035 QT_CLASS_LIB(QCDEStyle, QtGui, qcdestyle.h) 1011 1036 QT_CLASS_LIB(QCleanlooksStyle, QtGui, qcleanlooksstyle.h) … … 1068 1093 QT_CLASS_LIB(QWindowsVistaStyle, QtGui, qwindowsvistastyle.h) 1069 1094 QT_CLASS_LIB(QWindowsXPStyle, QtGui, qwindowsxpstyle.h) 1070 QT_CLASS_LIB(QKeyEventTransition, QtGui, qkeyeventtransition.h) 1071 QT_CLASS_LIB(QMouseEventTransition, QtGui, qmouseeventtransition.h) 1072 QT_CLASS_LIB(QGraphicsEffect, QtGui, qgraphicseffect.h) 1073 QT_CLASS_LIB(QGraphicsColorizeEffect, QtGui, qgraphicseffect.h) 1074 QT_CLASS_LIB(QGraphicsBlurEffect, QtGui, qgraphicseffect.h) 1075 QT_CLASS_LIB(QGraphicsDropShadowEffect, QtGui, qgraphicseffect.h) 1076 QT_CLASS_LIB(QGraphicsOpacityEffect, QtGui, qgraphicseffect.h) 1077 QT_CLASS_LIB(QCompleter, QtGui, qcompleter.h) 1078 QT_CLASS_LIB(QDesktopServices, QtGui, qdesktopservices.h) 1079 QT_CLASS_LIB(QSystemTrayIcon, QtGui, qsystemtrayicon.h) 1080 QT_CLASS_LIB(QUndoGroup, QtGui, qundogroup.h) 1081 QT_CLASS_LIB(QUndoCommand, QtGui, qundostack.h) 1082 QT_CLASS_LIB(QUndoStack, QtGui, qundostack.h) 1083 QT_CLASS_LIB(QUndoView, QtGui, qundoview.h) 1095 QT_CLASS_LIB(QInputContext, QtGui, qinputcontext.h) 1096 QT_CLASS_LIB(QInputContextFactory, QtGui, qinputcontextfactory.h) 1097 QT_CLASS_LIB(QInputContextFactoryInterface, QtGui, qinputcontextplugin.h) 1098 QT_CLASS_LIB(QInputContextPlugin, QtGui, qinputcontextplugin.h) 1099 QT_CLASS_LIB(QBrush, QtGui, qbrush.h) 1100 QT_CLASS_LIB(QBrushData, QtGui, qbrush.h) 1101 QT_CLASS_LIB(QGradientStop, QtGui, qbrush.h) 1102 QT_CLASS_LIB(QGradientStops, QtGui, qbrush.h) 1103 QT_CLASS_LIB(QGradient, QtGui, qbrush.h) 1104 QT_CLASS_LIB(QLinearGradient, QtGui, qbrush.h) 1105 QT_CLASS_LIB(QRadialGradient, QtGui, qbrush.h) 1106 QT_CLASS_LIB(QConicalGradient, QtGui, qbrush.h) 1107 QT_CLASS_LIB(QColor, QtGui, qcolor.h) 1108 QT_CLASS_LIB(QColormap, QtGui, qcolormap.h) 1109 QT_CLASS_LIB(QTileRules, QtGui, qdrawutil.h) 1110 QT_CLASS_LIB(QMatrix, QtGui, qmatrix.h) 1111 QT_CLASS_LIB(QPaintDevice, QtGui, qpaintdevice.h) 1112 QT_CLASS_LIB(QTextItem, QtGui, qpaintengine.h) 1113 QT_CLASS_LIB(QPaintEngine, QtGui, qpaintengine.h) 1114 QT_CLASS_LIB(QPaintEngineState, QtGui, qpaintengine.h) 1115 QT_CLASS_LIB(QPainter, QtGui, qpainter.h) 1116 QT_CLASS_LIB(QPainterPath, QtGui, qpainterpath.h) 1117 QT_CLASS_LIB(QPainterPathPrivate, QtGui, qpainterpath.h) 1118 QT_CLASS_LIB(QPainterPathStroker, QtGui, qpainterpath.h) 1119 QT_CLASS_LIB(QPen, QtGui, qpen.h) 1120 QT_CLASS_LIB(QPolygon, QtGui, qpolygon.h) 1121 QT_CLASS_LIB(QPolygonF, QtGui, qpolygon.h) 1122 QT_CLASS_LIB(QPrintEngine, QtGui, qprintengine.h) 1123 QT_CLASS_LIB(QPrinter, QtGui, qprinter.h) 1124 QT_CLASS_LIB(QPrinterInfo, QtGui, qprinterinfo.h) 1125 QT_CLASS_LIB(QRegion, QtGui, qregion.h) 1126 QT_CLASS_LIB(QRgb, QtGui, qrgb.h) 1127 QT_CLASS_LIB(QStylePainter, QtGui, qstylepainter.h) 1128 QT_CLASS_LIB(QTransform, QtGui, qtransform.h) 1129 QT_CLASS_LIB(QWMatrix, QtGui, qwmatrix.h) 1084 1130 QT_CLASS_LIB(QScriptEngineDebugger, QtScriptTools, qscriptenginedebugger.h) 1085 1131 QT_CLASS_LIB(QUiLoader, QtUiTools, quiloader.h) 1086 1132 QT_CLASS_LIB(QDesignerComponents, QtDesigner, qdesigner_components.h) 1087 QT_CLASS_LIB(QExtensionFactory, QtDesigner, default_extensionfactory.h)1088 QT_CLASS_LIB(QAbstractExtensionFactory, QtDesigner, extension.h)1089 QT_CLASS_LIB(QAbstractExtensionManager, QtDesigner, extension.h)1090 QT_CLASS_LIB(QExtensionManager, QtDesigner, qextensionmanager.h)1091 1133 QT_CLASS_LIB(QDesignerActionEditorInterface, QtDesigner, abstractactioneditor.h) 1092 1134 QT_CLASS_LIB(QDesignerBrushManagerInterface, QtDesigner, abstractbrushmanager.h) … … 1117 1159 QT_CLASS_LIB(QDesignerPropertySheetExtension, QtDesigner, propertysheet.h) 1118 1160 QT_CLASS_LIB(QDesignerTaskMenuExtension, QtDesigner, taskmenu.h) 1161 QT_CLASS_LIB(QExtensionFactory, QtDesigner, default_extensionfactory.h) 1162 QT_CLASS_LIB(QAbstractExtensionFactory, QtDesigner, extension.h) 1163 QT_CLASS_LIB(QAbstractExtensionManager, QtDesigner, extension.h) 1164 QT_CLASS_LIB(QExtensionManager, QtDesigner, qextensionmanager.h) 1119 1165 QT_CLASS_LIB(QAbstractFormBuilder, QtDesigner, abstractformbuilder.h) 1120 1166 QT_CLASS_LIB(QDesignerContainerExtension, QtDesigner, container.h) … … 1127 1173 QT_CLASS_LIB(Phonon::AbstractVideoOutput, phonon, abstractvideooutput.h) 1128 1174 QT_CLASS_LIB(Phonon::AddonInterface, phonon, addoninterface.h) 1175 QT_CLASS_LIB(Phonon::AudioDataOutput, phonon, audiodataoutput.h) 1176 QT_CLASS_LIB(Phonon::AudioDataOutputInterface, phonon, audiodataoutputinterface.h) 1129 1177 QT_CLASS_LIB(Phonon::AudioOutput, phonon, audiooutput.h) 1130 1178 QT_CLASS_LIB(Phonon::AudioOutputInterface40, phonon, audiooutputinterface.h) … … 1138 1186 QT_CLASS_LIB(Phonon::EffectParameter, phonon, effectparameter.h) 1139 1187 QT_CLASS_LIB(Phonon::EffectWidget, phonon, effectwidget.h) 1188 QT_CLASS_LIB(Phonon::GlobalConfig, phonon, globalconfig.h) 1140 1189 QT_CLASS_LIB(Phonon::MediaController, phonon, mediacontroller.h) 1141 1190 QT_CLASS_LIB(Phonon::MediaNode, phonon, medianode.h) … … 1160 1209 QT_CLASS_LIB(Phonon::Global, phonon, phononnamespace.h) 1161 1210 QT_CLASS_LIB(Phonon::PlatformPlugin, phonon, platformplugin.h) 1211 QT_CLASS_LIB(Phonon::PulseSupport, phonon, pulsesupport.h) 1162 1212 QT_CLASS_LIB(Phonon::SeekSlider, phonon, seekslider.h) 1163 1213 QT_CLASS_LIB(Phonon::StreamInterface, phonon, streaminterface.h) … … 1165 1215 QT_CLASS_LIB(Phonon::VideoWidget, phonon, videowidget.h) 1166 1216 QT_CLASS_LIB(Phonon::VideoWidgetInterface, phonon, videowidgetinterface.h) 1217 QT_CLASS_LIB(Phonon::VideoWidgetInterface44, phonon, videowidgetinterface.h) 1218 QT_CLASS_LIB(Phonon::VideoWidgetInterfaceLatest, phonon, videowidgetinterface.h) 1219 QT_CLASS_LIB(Phonon::VideoWidgetInterfaceLatest, phonon, videowidgetinterface.h) 1167 1220 QT_CLASS_LIB(Phonon::VolumeFaderEffect, phonon, volumefadereffect.h) 1168 1221 QT_CLASS_LIB(Phonon::VolumeFaderInterface, phonon, volumefaderinterface.h) … … 1172 1225 QT_CLASS_LIB(QSvgRenderer, QtSvg, qsvgrenderer.h) 1173 1226 QT_CLASS_LIB(QSvgWidget, QtSvg, qsvgwidget.h) 1174 QT_CLASS_LIB(Q3Action, Qt3Support, q3action.h) 1175 QT_CLASS_LIB(Q3ActionGroup, Qt3Support, q3action.h) 1176 QT_CLASS_LIB(Q3Button, Qt3Support, q3button.h) 1177 QT_CLASS_LIB(Q3ButtonGroup, Qt3Support, q3buttongroup.h) 1178 QT_CLASS_LIB(Q3VButtonGroup, Qt3Support, q3buttongroup.h) 1179 QT_CLASS_LIB(Q3HButtonGroup, Qt3Support, q3buttongroup.h) 1180 QT_CLASS_LIB(Q3ComboBox, Qt3Support, q3combobox.h) 1181 QT_CLASS_LIB(Q3DateTimeEditBase, Qt3Support, q3datetimeedit.h) 1182 QT_CLASS_LIB(Q3DateEdit, Qt3Support, q3datetimeedit.h) 1183 QT_CLASS_LIB(Q3TimeEdit, Qt3Support, q3datetimeedit.h) 1184 QT_CLASS_LIB(Q3DateTimeEdit, Qt3Support, q3datetimeedit.h) 1185 QT_CLASS_LIB(Q3DockAreaLayout, Qt3Support, q3dockarea.h) 1186 QT_CLASS_LIB(Q3DockArea, Qt3Support, q3dockarea.h) 1187 QT_CLASS_LIB(Q3DockWindow, Qt3Support, q3dockwindow.h) 1188 QT_CLASS_LIB(Q3Frame, Qt3Support, q3frame.h) 1189 QT_CLASS_LIB(Q3Grid, Qt3Support, q3grid.h) 1190 QT_CLASS_LIB(Q3GridView, Qt3Support, q3gridview.h) 1191 QT_CLASS_LIB(Q3GroupBox, Qt3Support, q3groupbox.h) 1192 QT_CLASS_LIB(Q3HBox, Qt3Support, q3hbox.h) 1193 QT_CLASS_LIB(Q3Header, Qt3Support, q3header.h) 1194 QT_CLASS_LIB(Q3HGroupBox, Qt3Support, q3hgroupbox.h) 1195 QT_CLASS_LIB(Q3MainWindow, Qt3Support, q3mainwindow.h) 1196 QT_CLASS_LIB(Q3PopupMenu, Qt3Support, q3popupmenu.h) 1197 QT_CLASS_LIB(Q3ProgressBar, Qt3Support, q3progressbar.h) 1198 QT_CLASS_LIB(Q3RangeControl, Qt3Support, q3rangecontrol.h) 1199 QT_CLASS_LIB(Q3SpinWidget, Qt3Support, q3rangecontrol.h) 1200 QT_CLASS_LIB(Q3ScrollView, Qt3Support, q3scrollview.h) 1201 QT_CLASS_LIB(Q3ToolBar, Qt3Support, q3toolbar.h) 1202 QT_CLASS_LIB(Q3VBox, Qt3Support, q3vbox.h) 1203 QT_CLASS_LIB(Q3VGroupBox, Qt3Support, q3vgroupbox.h) 1204 QT_CLASS_LIB(Q3WhatsThis, Qt3Support, q3whatsthis.h) 1205 QT_CLASS_LIB(Q3WidgetStack, Qt3Support, q3widgetstack.h) 1227 QT_CLASS_LIB(Q3FileIconProvider, Qt3Support, q3filedialog.h) 1228 QT_CLASS_LIB(Q3FilePreview, Qt3Support, q3filedialog.h) 1229 QT_CLASS_LIB(Q3FileDialog, Qt3Support, q3filedialog.h) 1230 QT_CLASS_LIB(Q3ProgressDialog, Qt3Support, q3progressdialog.h) 1231 QT_CLASS_LIB(Q3TabDialog, Qt3Support, q3tabdialog.h) 1232 QT_CLASS_LIB(Q3Wizard, Qt3Support, q3wizard.h) 1206 1233 QT_CLASS_LIB(Q3DataBrowser, Qt3Support, q3databrowser.h) 1207 1234 QT_CLASS_LIB(Q3DataTable, Qt3Support, q3datatable.h) … … 1216 1243 QT_CLASS_LIB(Q3SqlRecordInfo, Qt3Support, q3sqlrecordinfo.h) 1217 1244 QT_CLASS_LIB(Q3SqlSelectCursor, Qt3Support, q3sqlselectcursor.h) 1218 QT_CLASS_LIB(Q3Dns, Qt3Support, q3dns.h)1219 QT_CLASS_LIB(Q3DnsSocket, Qt3Support, q3dns.h)1220 QT_CLASS_LIB(Q3Ftp, Qt3Support, q3ftp.h)1221 QT_CLASS_LIB(Q3HttpHeader, Qt3Support, q3http.h)1222 QT_CLASS_LIB(Q3HttpResponseHeader, Qt3Support, q3http.h)1223 QT_CLASS_LIB(Q3HttpRequestHeader, Qt3Support, q3http.h)1224 QT_CLASS_LIB(Q3Http, Qt3Support, q3http.h)1225 QT_CLASS_LIB(Q3LocalFs, Qt3Support, q3localfs.h)1226 QT_CLASS_LIB(Q3NetworkProtocolFactoryBase, Qt3Support, q3networkprotocol.h)1227 QT_CLASS_LIB(Q3NetworkProtocolFactory, Qt3Support, q3networkprotocol.h)1228 QT_CLASS_LIB(Q3NetworkProtocolDict, Qt3Support, q3networkprotocol.h)1229 QT_CLASS_LIB(Q3NetworkProtocol, Qt3Support, q3networkprotocol.h)1230 QT_CLASS_LIB(Q3NetworkOperation, Qt3Support, q3networkprotocol.h)1231 QT_CLASS_LIB(Q3ServerSocket, Qt3Support, q3serversocket.h)1232 QT_CLASS_LIB(Q3Socket, Qt3Support, q3socket.h)1233 QT_CLASS_LIB(Q3SocketDevice, Qt3Support, q3socketdevice.h)1234 QT_CLASS_LIB(Q3Url, Qt3Support, q3url.h)1235 QT_CLASS_LIB(Q3UrlOperator, Qt3Support, q3urloperator.h)1236 QT_CLASS_LIB(Q3MultiLineEdit, Qt3Support, q3multilineedit.h)1237 QT_CLASS_LIB(Q3SimpleRichText, Qt3Support, q3simplerichtext.h)1238 QT_CLASS_LIB(Q3StyleSheetItem, Qt3Support, q3stylesheet.h)1239 QT_CLASS_LIB(Q3StyleSheet, Qt3Support, q3stylesheet.h)1240 QT_CLASS_LIB(Q3SyntaxHighlighter, Qt3Support, q3syntaxhighlighter.h)1241 QT_CLASS_LIB(Q3TextBrowser, Qt3Support, q3textbrowser.h)1242 QT_CLASS_LIB(Q3TextEditOptimPrivate, Qt3Support, q3textedit.h)1243 QT_CLASS_LIB(Q3TextEdit, Qt3Support, q3textedit.h)1244 QT_CLASS_LIB(Q3TextStream, Qt3Support, q3textstream.h)1245 QT_CLASS_LIB(Q3TSFUNC, Qt3Support, q3textstream.h)1246 QT_CLASS_LIB(Q3TextView, Qt3Support, q3textview.h)1247 QT_CLASS_LIB(Q3FileIconProvider, Qt3Support, q3filedialog.h)1248 QT_CLASS_LIB(Q3FilePreview, Qt3Support, q3filedialog.h)1249 QT_CLASS_LIB(Q3FileDialog, Qt3Support, q3filedialog.h)1250 QT_CLASS_LIB(Q3ProgressDialog, Qt3Support, q3progressdialog.h)1251 QT_CLASS_LIB(Q3TabDialog, Qt3Support, q3tabdialog.h)1252 QT_CLASS_LIB(Q3Wizard, Qt3Support, q3wizard.h)1253 1245 QT_CLASS_LIB(Q3Accel, Qt3Support, q3accel.h) 1254 1246 QT_CLASS_LIB(Q3BoxLayout, Qt3Support, q3boxlayout.h) … … 1266 1258 QT_CLASS_LIB(Q3PolygonScanner, Qt3Support, q3polygonscanner.h) 1267 1259 QT_CLASS_LIB(Q3Process, Qt3Support, q3process.h) 1260 QT_CLASS_LIB(Q3CanvasItemList, Qt3Support, q3canvas.h) 1261 QT_CLASS_LIB(Q3CanvasItem, Qt3Support, q3canvas.h) 1262 QT_CLASS_LIB(Q3Canvas, Qt3Support, q3canvas.h) 1263 QT_CLASS_LIB(Q3CanvasView, Qt3Support, q3canvas.h) 1264 QT_CLASS_LIB(Q3CanvasPixmap, Qt3Support, q3canvas.h) 1265 QT_CLASS_LIB(Q3CanvasPixmapArray, Qt3Support, q3canvas.h) 1266 QT_CLASS_LIB(Q3CanvasSprite, Qt3Support, q3canvas.h) 1267 QT_CLASS_LIB(Q3CanvasPolygonalItem, Qt3Support, q3canvas.h) 1268 QT_CLASS_LIB(Q3CanvasRectangle, Qt3Support, q3canvas.h) 1269 QT_CLASS_LIB(Q3CanvasPolygon, Qt3Support, q3canvas.h) 1270 QT_CLASS_LIB(Q3CanvasSpline, Qt3Support, q3canvas.h) 1271 QT_CLASS_LIB(Q3CanvasLine, Qt3Support, q3canvas.h) 1272 QT_CLASS_LIB(Q3CanvasEllipse, Qt3Support, q3canvas.h) 1273 QT_CLASS_LIB(Q3CanvasText, Qt3Support, q3canvas.h) 1274 QT_CLASS_LIB(Q3MultiLineEdit, Qt3Support, q3multilineedit.h) 1275 QT_CLASS_LIB(Q3SimpleRichText, Qt3Support, q3simplerichtext.h) 1276 QT_CLASS_LIB(Q3StyleSheetItem, Qt3Support, q3stylesheet.h) 1277 QT_CLASS_LIB(Q3StyleSheet, Qt3Support, q3stylesheet.h) 1278 QT_CLASS_LIB(Q3SyntaxHighlighter, Qt3Support, q3syntaxhighlighter.h) 1279 QT_CLASS_LIB(Q3TextBrowser, Qt3Support, q3textbrowser.h) 1280 QT_CLASS_LIB(Q3TextEditOptimPrivate, Qt3Support, q3textedit.h) 1281 QT_CLASS_LIB(Q3TextEdit, Qt3Support, q3textedit.h) 1282 QT_CLASS_LIB(Q3TextStream, Qt3Support, q3textstream.h) 1283 QT_CLASS_LIB(Q3TSFUNC, Qt3Support, q3textstream.h) 1284 QT_CLASS_LIB(Q3TextView, Qt3Support, q3textview.h) 1268 1285 QT_CLASS_LIB(Q3AsciiCache, Qt3Support, q3asciicache.h) 1269 1286 QT_CLASS_LIB(Q3AsciiCacheIterator, Qt3Support, q3asciicache.h) … … 1340 1357 QT_CLASS_LIB(Q3CheckTableItem, Qt3Support, q3table.h) 1341 1358 QT_CLASS_LIB(Q3Table, Qt3Support, q3table.h) 1359 QT_CLASS_LIB(Q3Action, Qt3Support, q3action.h) 1360 QT_CLASS_LIB(Q3ActionGroup, Qt3Support, q3action.h) 1361 QT_CLASS_LIB(Q3Button, Qt3Support, q3button.h) 1362 QT_CLASS_LIB(Q3ButtonGroup, Qt3Support, q3buttongroup.h) 1363 QT_CLASS_LIB(Q3VButtonGroup, Qt3Support, q3buttongroup.h) 1364 QT_CLASS_LIB(Q3HButtonGroup, Qt3Support, q3buttongroup.h) 1365 QT_CLASS_LIB(Q3ComboBox, Qt3Support, q3combobox.h) 1366 QT_CLASS_LIB(Q3DateTimeEditBase, Qt3Support, q3datetimeedit.h) 1367 QT_CLASS_LIB(Q3DateEdit, Qt3Support, q3datetimeedit.h) 1368 QT_CLASS_LIB(Q3TimeEdit, Qt3Support, q3datetimeedit.h) 1369 QT_CLASS_LIB(Q3DateTimeEdit, Qt3Support, q3datetimeedit.h) 1370 QT_CLASS_LIB(Q3DockAreaLayout, Qt3Support, q3dockarea.h) 1371 QT_CLASS_LIB(Q3DockArea, Qt3Support, q3dockarea.h) 1372 QT_CLASS_LIB(Q3DockWindow, Qt3Support, q3dockwindow.h) 1373 QT_CLASS_LIB(Q3Frame, Qt3Support, q3frame.h) 1374 QT_CLASS_LIB(Q3Grid, Qt3Support, q3grid.h) 1375 QT_CLASS_LIB(Q3GridView, Qt3Support, q3gridview.h) 1376 QT_CLASS_LIB(Q3GroupBox, Qt3Support, q3groupbox.h) 1377 QT_CLASS_LIB(Q3HBox, Qt3Support, q3hbox.h) 1378 QT_CLASS_LIB(Q3Header, Qt3Support, q3header.h) 1379 QT_CLASS_LIB(Q3HGroupBox, Qt3Support, q3hgroupbox.h) 1380 QT_CLASS_LIB(Q3MainWindow, Qt3Support, q3mainwindow.h) 1381 QT_CLASS_LIB(Q3PopupMenu, Qt3Support, q3popupmenu.h) 1382 QT_CLASS_LIB(Q3ProgressBar, Qt3Support, q3progressbar.h) 1383 QT_CLASS_LIB(Q3RangeControl, Qt3Support, q3rangecontrol.h) 1384 QT_CLASS_LIB(Q3SpinWidget, Qt3Support, q3rangecontrol.h) 1385 QT_CLASS_LIB(Q3ScrollView, Qt3Support, q3scrollview.h) 1386 QT_CLASS_LIB(Q3ToolBar, Qt3Support, q3toolbar.h) 1387 QT_CLASS_LIB(Q3VBox, Qt3Support, q3vbox.h) 1388 QT_CLASS_LIB(Q3VGroupBox, Qt3Support, q3vgroupbox.h) 1389 QT_CLASS_LIB(Q3WhatsThis, Qt3Support, q3whatsthis.h) 1390 QT_CLASS_LIB(Q3WidgetStack, Qt3Support, q3widgetstack.h) 1391 QT_CLASS_LIB(Q3Dns, Qt3Support, q3dns.h) 1392 QT_CLASS_LIB(Q3DnsSocket, Qt3Support, q3dns.h) 1393 QT_CLASS_LIB(Q3Ftp, Qt3Support, q3ftp.h) 1394 QT_CLASS_LIB(Q3HttpHeader, Qt3Support, q3http.h) 1395 QT_CLASS_LIB(Q3HttpResponseHeader, Qt3Support, q3http.h) 1396 QT_CLASS_LIB(Q3HttpRequestHeader, Qt3Support, q3http.h) 1397 QT_CLASS_LIB(Q3Http, Qt3Support, q3http.h) 1398 QT_CLASS_LIB(Q3LocalFs, Qt3Support, q3localfs.h) 1399 QT_CLASS_LIB(Q3NetworkProtocolFactoryBase, Qt3Support, q3networkprotocol.h) 1400 QT_CLASS_LIB(Q3NetworkProtocolFactory, Qt3Support, q3networkprotocol.h) 1401 QT_CLASS_LIB(Q3NetworkProtocolDict, Qt3Support, q3networkprotocol.h) 1402 QT_CLASS_LIB(Q3NetworkProtocol, Qt3Support, q3networkprotocol.h) 1403 QT_CLASS_LIB(Q3NetworkOperation, Qt3Support, q3networkprotocol.h) 1404 QT_CLASS_LIB(Q3ServerSocket, Qt3Support, q3serversocket.h) 1405 QT_CLASS_LIB(Q3Socket, Qt3Support, q3socket.h) 1406 QT_CLASS_LIB(Q3SocketDevice, Qt3Support, q3socketdevice.h) 1407 QT_CLASS_LIB(Q3Url, Qt3Support, q3url.h) 1408 QT_CLASS_LIB(Q3UrlOperator, Qt3Support, q3urloperator.h) 1342 1409 QT_CLASS_LIB(Q3PaintDeviceMetrics, Qt3Support, q3paintdevicemetrics.h) 1343 1410 QT_CLASS_LIB(Q3Painter, Qt3Support, q3painter.h) 1344 1411 QT_CLASS_LIB(Q3Picture, Qt3Support, q3picture.h) 1345 1412 QT_CLASS_LIB(Q3PointArray, Qt3Support, q3pointarray.h) 1346 QT_CLASS_LIB(Q3CanvasItemList, Qt3Support, q3canvas.h)1347 QT_CLASS_LIB(Q3CanvasItem, Qt3Support, q3canvas.h)1348 QT_CLASS_LIB(Q3Canvas, Qt3Support, q3canvas.h)1349 QT_CLASS_LIB(Q3CanvasView, Qt3Support, q3canvas.h)1350 QT_CLASS_LIB(Q3CanvasPixmap, Qt3Support, q3canvas.h)1351 QT_CLASS_LIB(Q3CanvasPixmapArray, Qt3Support, q3canvas.h)1352 QT_CLASS_LIB(Q3CanvasSprite, Qt3Support, q3canvas.h)1353 QT_CLASS_LIB(Q3CanvasPolygonalItem, Qt3Support, q3canvas.h)1354 QT_CLASS_LIB(Q3CanvasRectangle, Qt3Support, q3canvas.h)1355 QT_CLASS_LIB(Q3CanvasPolygon, Qt3Support, q3canvas.h)1356 QT_CLASS_LIB(Q3CanvasSpline, Qt3Support, q3canvas.h)1357 QT_CLASS_LIB(Q3CanvasLine, Qt3Support, q3canvas.h)1358 QT_CLASS_LIB(Q3CanvasEllipse, Qt3Support, q3canvas.h)1359 QT_CLASS_LIB(Q3CanvasText, Qt3Support, q3canvas.h) -
trunk/src/tools/uic/treewalker.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/treewalker.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/ui4.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/ui4.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/uic.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/uic.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/utils.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/validator.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic/validator.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/converter.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 519 519 Option opt; 520 520 opt.extractImages = m_extractImages; 521 opt.limitXPM_LineLength = (m_options & LimitXPM_LineLength) ? 1 : 0; 521 522 opt.qrcOutputFile = m_qrcOutputFile; 522 523 CPP::ExtractImages(opt).acceptUI(ui); -
trunk/src/tools/uic3/deps.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/domtool.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/domtool.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/embed.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/form.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 257 257 d.option().copyrightHeader = false; 258 258 d.option().extractImages = m_extractImages; 259 d.option().limitXPM_LineLength = (m_options & LimitXPM_LineLength) ? 1 : 0; 259 260 d.option().qrcOutputFile = m_qrcOutputFile; 260 261 d.option().implicitIncludes = (m_options & ImplicitIncludes) ? 1 : 0; -
trunk/src/tools/uic3/main.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 150 150 } else if (opt == "layout-names") { 151 151 readerOptions |= Ui3Reader::PreserveLayoutNames; 152 } else if (opt == "limit-xpm-linelength") { 153 readerOptions |= Ui3Reader::LimitXPM_LineLength; 152 154 } else if (opt == "nounload") { 153 155 // skip … … 252 254 "\t-o file Write output to file rather than stdout\n" 253 255 "\t-extract qrcFile Create resource file and extract embedded images into \"image\" dir\n" 256 "\t-limit-xpm-linelength Limit the line length of XPM files for -extract.\n" 254 257 "\t-pch file Add #include \"file\" as the first statement in implementation\n" 255 258 "\t-nofwd Omit forward declarations of custom classes\n" -
trunk/src/tools/uic3/object.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/parser.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/parser.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/qt3to4.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/qt3to4.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/subclassing.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/ui3reader.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/ui3reader.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 69 69 { 70 70 public: 71 enum Options { CustomWidgetForwardDeclarations = 0x1, ImplicitIncludes = 0x2, PreserveLayoutNames = 0x4 }; 71 enum Options { CustomWidgetForwardDeclarations = 0x1, ImplicitIncludes = 0x2, 72 PreserveLayoutNames = 0x4, LimitXPM_LineLength = 0x8 }; 72 73 73 74 explicit Ui3Reader(QTextStream &stream, unsigned options); -
trunk/src/tools/uic3/uic.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/uic.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/widgetinfo.cpp
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) -
trunk/src/tools/uic3/widgetinfo.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com)
Note:
See TracChangeset
for help on using the changeset viewer.