annotate include/qtd_masterinclude.h @ 248:7664de4a55e5

Fixed #23. QtD_QObjectEntity is not created dynamically for shell classes any more. Class initialization is now performed by static constructors. When wrapping QObjects returned from functions, their run-time types are now taken into account. QObjects are allocated on GC heap, a doubly-linked list is used to prevent them from been collected (arguably a better solution than allocating on C heap and adding GC ranges) Minor changes (including unnecessary).
author maxter
date Thu, 20 Aug 2009 14:47:17 +0000
parents 345781d1a4d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
170
345781d1a4d9 missing file
eldar
parents:
diff changeset
1 #include <QtCore/QtCore>
345781d1a4d9 missing file
eldar
parents:
diff changeset
2 #include <QtGui/QtGui>
345781d1a4d9 missing file
eldar
parents:
diff changeset
3 #include <QtNetwork/QtNetwork>
345781d1a4d9 missing file
eldar
parents:
diff changeset
4 #include <QtSql/QtSql>
345781d1a4d9 missing file
eldar
parents:
diff changeset
5 #include <QtSvg/QtSvg>
345781d1a4d9 missing file
eldar
parents:
diff changeset
6 #include <QtXml/QtXml>
345781d1a4d9 missing file
eldar
parents:
diff changeset
7
345781d1a4d9 missing file
eldar
parents:
diff changeset
8 #ifndef QT_NO_XMLPATTERNS
345781d1a4d9 missing file
eldar
parents:
diff changeset
9 # include <QtXmlPatterns/QtXmlPatterns>
345781d1a4d9 missing file
eldar
parents:
diff changeset
10 #endif
345781d1a4d9 missing file
eldar
parents:
diff changeset
11
345781d1a4d9 missing file
eldar
parents:
diff changeset
12 #ifndef QT_NO_WEBKIT
345781d1a4d9 missing file
eldar
parents:
diff changeset
13 # include <QtWebKit/QtWebKit>
345781d1a4d9 missing file
eldar
parents:
diff changeset
14 #endif
345781d1a4d9 missing file
eldar
parents:
diff changeset
15 /*
345781d1a4d9 missing file
eldar
parents:
diff changeset
16 #ifndef QT_NO_PHONON
345781d1a4d9 missing file
eldar
parents:
diff changeset
17 # include <phonon/phonon>
345781d1a4d9 missing file
eldar
parents:
diff changeset
18 #endif
345781d1a4d9 missing file
eldar
parents:
diff changeset
19 */
345781d1a4d9 missing file
eldar
parents:
diff changeset
20 #ifndef QT_NO_OPENGL
345781d1a4d9 missing file
eldar
parents:
diff changeset
21 #include <QtOpenGL/QtOpenGL>
345781d1a4d9 missing file
eldar
parents:
diff changeset
22 #endif